diff --git a/.travis.yml b/.travis.yml index 1a72afff62..e808a4634b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,13 @@ language: go go: - - 1.6.3 + - 1.7.5 branches: only: - master -install: make script: - - make test + - make ci sudo: false diff --git a/CHANGELOG.md b/CHANGELOG.md index e48fb9bc71..109fe4bb94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,23 +1,115 @@ -## 0.7.1 (UNRELEASED) +## 0.7.4 (February 6, 2017) -BACKWARDS INCOMPATIBILITIES: +IMPROVEMENTS: + +* agent: Integrated gopsutil library to use built in host UUID as node ID, if available, instead of a randomly generated UUID. This makes it easier for other applications on the same host to generate the same node ID without coordinating with Consul. [GH-2697] +* agent: Added a configuration option, `tls_min_version`, for setting the minimum allowed TLS version used for the HTTP API and RPC. [GH-2699] +* agent: Added a `relay-factor` option to keyring operations to allow nodes to relay their response through N randomly-chosen other nodes in the cluster. [GH-2704] +* build: Consul is now built with Go 1.7.5. [GH-2682] +* dns: Add ability to lookup Consul agents by either their Node ID or Node Name through the node interface (e.g. DNS `(node-id|node-name).node.consul`). [GH-2702] + +BUG FIXES: + +* dns: Fixed an issue where SRV lookups for services on a node registered with non-IP addresses were missing the CNAME record in the additional section of the response. [GH-2695] + +## 0.7.3 (January 26, 2017) + +FEATURES: + +* **KV Import/Export CLI:** `consul kv export` and `consul kv import` can be used to move parts of the KV tree between disconnected consul clusters, using JSON as the intermediate representation. [GH-2633] +* **Node Metadata:** Support for assigning user-defined metadata key/value pairs to nodes has been added. This can be viewed when looking up node info, and can be used to filter the results of various catalog and health endpoints. For more information, see the [Catalog](https://www.consul.io/docs/agent/http/catalog.html), [Health](https://www.consul.io/docs/agent/http/health.html), and [Prepared Query](https://www.consul.io/docs/agent/http/query.html) endpoint documentation, as well as the [Node Meta](https://www.consul.io/docs/agent/options.html#_node_meta) section of the agent configuration. [GH-2654] +* **Node Identifiers:** Consul agents can now be configured with a unique identifier, or they will generate one at startup that will persist across agent restarts. This identifier is designed to represent a node across all time, even if the name or address of the node changes. Identifiers are currently only exposed in node-related endpoints, but they will be used in future versions of Consul to help manage Consul servers and the Raft quorum in a more robust manner, as the quorum is currently tracked via addresses, which can change. [GH-2661] +* **Improved Blocking Queries:** Consul's [blocking query](https://www.consul.io/docs/agent/http.html#blocking-queries) implementation was improved to provide a much more fine-grained mechanism for detecting changes. For example, in previous versions of Consul blocking to wait on a change to a specific service would result in a wake up if any service changed. Now, wake ups are scoped to the specific service being watched, if possible. This support has been added to all endpoints that support blocking queries, nothing new is required to take advantage of this feature. [GH-2671] +* **GCE auto-discovery:** New `-retry-join-gce` configuration options added to allow bootstrapping by automatically discovering Google Cloud instances with a given tag at startup. [GH-2570] + +IMPROVEMENTS: + +* build: Consul is now built with Go 1.7.4. [GH-2676] +* cli: `consul kv get` now has a `-base64` flag to base 64 encode the value. [GH-2631] +* cli: `consul kv put` now has a `-base64` flag for setting values which are base 64 encoded. [GH-2632] +* ui: Added a notice that JS is required when viewing the web UI with JS disabled. [GH-2636] + +BUG FIXES: + +* agent: Redacted the AWS access key and secret key ID from the /v1/agent/self output so they are not disclosed. [GH-2677] +* agent: Fixed a rare startup panic due to a Raft/Serf race condition. [GH-1899] +* cli: Fixed a panic when an empty quoted argument was given to `consul kv put`. [GH-2635] +* tests: Fixed a race condition with check mock's map usage. [GH-2578] + +## 0.7.2 (December 19, 2016) + +FEATURES: + +* **Keyring API:** A new `/v1/operator/keyring` HTTP endpoint was added that allows for performing operations such as list, install, use, and remove on the encryption keys in the gossip keyring. See the [Keyring Endpoint](https://www.consul.io/docs/agent/http/operator.html#keyring) for more details. [GH-2509] +* **Monitor API:** A new `/v1/agent/monitor` HTTP endpoint was added to allow for viewing streaming log output from the agent, similar to the `consul monitor` command. See the [Monitor Endpoint](https://www.consul.io/docs/agent/http/agent.html#agent_monitor) for more details. [GH-2511] +* **Reload API:** A new `/v1/agent/reload` HTTP endpoint was added for triggering a reload of the agent's configuration. See the [Reload Endpoint](https://www.consul.io/docs/agent/http/agent.html#agent_reload) for more details. [GH-2516] +* **Leave API:** A new `/v1/agent/leave` HTTP endpoint was added for causing an agent to gracefully shutdown and leave the cluster (previously, only `force-leave` was present in the HTTP API). See the [Leave Endpoint](https://www.consul.io/docs/agent/http/agent.html#agent_leave) for more details. [GH-2516] +* **Bind Address Templates (beta):** Consul agents now allow [go-sockaddr/template](https://godoc.org/github.com/hashicorp/go-sockaddr/template) syntax to be used for any bind address configuration (`advertise_addr`, `bind_addr`, `client_addr`, and others). This allows for easy creation of immutable images for Consul that can fetch their own address based on an interface name, network CIDR, address family from an actual RFC number, and many other possible schemes. This feature is in beta and we may tweak the template syntax before final release, but we encourage the community to try this and provide feedback. [GH-2563] +* **Complete ACL Coverage (beta):** Consul 0.8 will feature complete ACL coverage for all of Consul. To ease the transition to the new policies, a beta version of complete ACL support was added to help with testing and migration to the new features. Please see the [ACLs Internals Guide](https://www.consul.io/docs/internals/acl.html#version_8_acls) for more details. [GH-2594, GH-2592, GH-2590] + +IMPROVEMENTS: + +* agent: Defaults to `?pretty` JSON for HTTP API requests when in `-dev` mode. [GH-2518] +* agent: Updated Circonus metrics library and added new Circonus configration options for Consul for customizing check display name and tags. [GH-2555] +* agent: Added a checksum to UDP gossip messages to guard against packet corruption. [GH-2574] +* agent: Check whether a snapshot needs to be taken more often (every 5 seconds instead of 2 minutes) to keep the raft file smaller and to avoid doing huge truncations when writing lots of entries very quickly. [GH-2591] +* agent: Allow gossiping to suspected/recently dead nodes. [GH-2593] +* agent: Changed the gossip suspicion timeout to grow smoothly as the number of nodes grows. [GH-2593] +* agent: Added a deprecation notice for Atlas features to the CLI and docs. [GH-2597] +* agent: Give a better error message when the given data-dir is not a directory. [GH-2529] + +BUG FIXES: + +* agent: Fixed a panic when SIGPIPE signal was received. [GH-2404] +* api: Added missing Raft index fields to `CatalogService` structure. [GH-2366] +* api: Added missing notes field to `AgentServiceCheck` structure. [GH-2336] +* api: Changed type of `AgentServiceCheck.TLSSkipVerify` from `string` to `bool`. [GH-2530] +* api: Added new `HealthChecks.AggregatedStatus()` method that makes it easy get an overall health status from a list of checks. [GH-2544] +* api: Changed type of `KVTxnOp.Verb` from `string` to `KVOp`. [GH-2531] +* cli: Fixed an issue with the `consul kv put` command where a negative value would be interpreted as an argument to read from standard input. [GH-2526] +* ui: Fixed an issue where extra commas would be shown around service tags. [GH-2340] +* ui: Customized Bootstrap config to avoid missing font file references. [GH-2485] +* ui: Removed "Deregister" button as removing nodes from the catalog isn't a common operation and leads to lots of user confusion. [GH-2541] + +## 0.7.1 (November 10, 2016) + +BREAKING CHANGES: * Child process reaping support has been removed, along with the `reap` configuration option. Reaping is also done via [dumb-init](https://github.com/Yelp/dumb-init) in the [Consul Docker image](https://github.com/hashicorp/docker-consul), so removing it from Consul itself simplifies the code and eases future maintainence for Consul. If you are running Consul as PID 1 in a container you will need to arrange for a wrapper process to reap child processes. [GH-1988] +* The default for `max_stale` has been increased to a near-indefinite threshold (10 years) to allow DNS queries to continue to be served in the event of a long outage with no leader. A new telemetry counter has also been added at `consul.dns.stale_queries` to track when agents serve DNS queries that are over a certain staleness (>5 seconds). [GH-2481] +* The api package's `PreparedQuery.Delete()` method now takes `WriteOptions` instead of `QueryOptions`. [GH-2417] FEATURES: * **Key/Value Store Command Line Interface:** New `consul kv` commands were added for easy access to all basic key/value store operations. [GH-2360] +* **Snapshot/Restore:** A new /v1/snapshot HTTP endpoint and corresponding set of `consul snapshot` commands were added for easy point-in-time snapshots for disaster recovery. Snapshots include all state managed by Consul's Raft [consensus protocol](/docs/internals/consensus.html), including Key/Value Entries, Service Catalog, Prepared Queries, Sessions, and ACLs. Snapshots can be restored on the fly into a completely fresh cluster. [GH-2396] +* **AWS auto-discovery:** New `-retry-join-ec2` configuration options added to allow bootstrapping by automatically discovering AWS instances with a given tag key/value at startup. [GH-2459] IMPROVEMENTS: * api: All session options can now be set when using `api.Lock()`. [GH-2372] +* agent: Added the ability to bind Serf WAN and LAN to different interfaces than the general bind address. [GH-2007] +* agent: Added a new `tls_skip_verify` configuration option for HTTP checks. [GH-1984] +* build: Consul is now built with Go 1.7.3. [GH-2281] BUG FIXES: * agent: Fixed a Go race issue with log buffering at startup. [GH-2262] * agent: Fixed a panic during anti-entropy sync for services and checks. [GH-2125] * agent: Fixed an issue on Windows where "wsarecv" errors were logged when CLI commands accessed the RPC interface. [GH-2356] +* agent: Syslog initialization will now retry on errors for up to 60 seconds to avoid a race condition at system startup. [GH-1610] +* agent: Fixed a panic when both -dev and -bootstrap-expect flags were provided. [GH-2464] +* agent: Added a retry with backoff when a session fails to invalidate after expiring. [GH-2435] +* agent: Fixed an issue where Consul would fail to start because of leftover malformed check/service state files. [GH-1221] +* agent: Fixed agent crashes on macOS Sierra by upgrading Go. [GH-2407, GH-2281] +* agent: Log a warning instead of success when attempting to deregister a nonexistent service. [GH-2492] +* api: Trim leading slashes from keys/prefixes when querying KV endpoints to avoid a bug with redirects in Go 1.7 (golang/go#4800). [GH-2403] +* dns: Fixed external services that pointed to consul addresses (CNAME records) not resolving to A-records. [GH-1228] +* dns: Fixed an issue with SRV lookups where the service address was different from the node's. [GH-832] +* dns: Fixed an issue where truncated records from a recursor query were improperly reported as errors. [GH-2384] * server: Fixed the port numbers in the sample JSON inside peers.info. [GH-2391] +* server: Squashes ACL datacenter name to lower case and checks for proper formatting at startup. [GH-2059, GH-1778, GH-2478] +* ui: Fixed an XSS issue with the display of sessions and ACLs in the web UI. [GH-2456] ## 0.7.0 (September 14, 2016) diff --git a/GNUmakefile b/GNUmakefile index a11af8532a..2e9a11da8c 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -4,23 +4,31 @@ GOTOOLS = \ github.com/mitchellh/gox \ golang.org/x/tools/cmd/cover \ golang.org/x/tools/cmd/stringer -PACKAGES=$(shell go list ./... | grep -v '^github.com/hashicorp/consul/vendor/') +PACKAGES=$(shell go list ./... | grep -v '/vendor/') VETARGS?=-asmdecl -atomic -bool -buildtags -copylocks -methods \ -nilfunc -printf -rangeloops -shift -structtags -unsafeptr -VERSION?=$(shell awk -F\" '/^const Version/ { print $$2; exit }' version.go) +BUILD_TAGS?=consul # all builds binaries for all targets -all: tools +all: bin + +ci: + if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then \ + $(MAKE) bin ;\ + fi + @$(MAKE) test + +bin: tools @mkdir -p bin/ - @sh -c "'$(CURDIR)/scripts/build.sh'" + @BUILD_TAGS='$(BUILD_TAGS)' sh -c "'$(CURDIR)/scripts/build.sh'" # dev creates binaries for testing locally - these are put into ./bin and $GOPATH dev: format - @CONSUL_DEV=1 sh -c "'$(CURDIR)/scripts/build.sh'" + @CONSUL_DEV=1 BUILD_TAGS='$(BUILD_TAGS)' sh -c "'$(CURDIR)/scripts/build.sh'" # dist builds binaries for all platforms and packages them for distribution dist: - @sh -c "'$(CURDIR)/scripts/dist.sh' $(VERSION)" + @BUILD_TAGS='$(BUILD_TAGS)' sh -c "'$(CURDIR)/scripts/dist.sh'" cov: gocov test ./... | gocov-html > /tmp/coverage.html @@ -29,7 +37,7 @@ cov: test: format @$(MAKE) vet @./scripts/verify_no_uuid.sh - @./scripts/test.sh + @BUILD_TAGS='$(BUILD_TAGS)' sh -c "'$(CURDIR)/scripts/test.sh'" cover: go list ./... | xargs -n1 go test --cover @@ -41,7 +49,7 @@ format: vet: @echo "--> Running go tool vet $(VETARGS) ." @go list ./... \ - | grep -v ^github.com/hashicorp/consul/vendor/ \ + | grep -v /vendor/ \ | cut -d '/' -f 4- \ | xargs -n1 \ go tool vet $(VETARGS) ;\ @@ -51,6 +59,11 @@ vet: echo "and fix them if necessary before submitting the code for reviewal."; \ fi +# build the static web ui and build static assets inside a Docker container, the +# same way a release build works +ui: + @sh -c "'$(CURDIR)/scripts/ui.sh'" + # generates the static web ui that's compiled into the binary static-assets: @echo "--> Generating static assets" @@ -61,4 +74,4 @@ static-assets: tools: go get -u -v $(GOTOOLS) -.PHONY: all bin dev dist cov test cover format vet static-assets tools +.PHONY: all ci bin dev dist cov test cover format vet ui static-assets tools diff --git a/README.md b/README.md index 9668f7b8b8..6196e79db3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Consul [![Build Status](https://travis-ci.org/hashicorp/consul.png)](https://travis-ci.org/hashicorp/consul) [![Join the chat at https://gitter.im/hashicorp-consul/Lobby](https://badges.gitter.im/hashicorp-consul/Lobby.svg)](https://gitter.im/hashicorp-consul/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +# Consul [![Build Status](https://travis-ci.org/hashicorp/consul.svg?branch=master)](https://travis-ci.org/hashicorp/consul) [![Join the chat at https://gitter.im/hashicorp-consul/Lobby](https://badges.gitter.im/hashicorp-consul/Lobby.svg)](https://gitter.im/hashicorp-consul/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) * Website: https://www.consul.io * Chat: [Gitter](https://gitter.im/hashicorp-consul/Lobby) @@ -42,7 +42,7 @@ https://www.consul.io/docs ## Developing Consul If you wish to work on Consul itself, you'll first need [Go](https://golang.org) -installed (version 1.6+ is _required_). Make sure you have Go properly installed, +installed (version 1.7+ is _required_). Make sure you have Go properly installed, including setting up your [GOPATH](https://golang.org/doc/code.html#GOPATH). Next, clone this repository into `$GOPATH/src/github.com/hashicorp/consul` and @@ -64,7 +64,7 @@ format the code according to Go standards. ### Building Consul on Windows -Make sure Go 1.6+ is installed on your system and that the Go command is in your +Make sure Go 1.7+ is installed on your system and that the Go command is in your %PATH%. For building Consul on Windows, you also need to have MinGW installed. diff --git a/acl/acl.go b/acl/acl.go index f13dc5b569..3ade9d4055 100644 --- a/acl/acl.go +++ b/acl/acl.go @@ -35,6 +35,26 @@ func init() { // ACL is the interface for policy enforcement. type ACL interface { + // ACLList checks for permission to list all the ACLs + ACLList() bool + + // ACLModify checks for permission to manipulate ACLs + ACLModify() bool + + // AgentRead checks for permission to read from agent endpoints for a + // given node. + AgentRead(string) bool + + // AgentWrite checks for permission to make changes via agent endpoints + // for a given node. + AgentWrite(string) bool + + // EventRead determines if a specific event can be queried. + EventRead(string) bool + + // EventWrite determines if a specific event may be fired. + EventWrite(string) bool + // KeyRead checks for permission to read a given key KeyRead(string) bool @@ -46,26 +66,6 @@ type ACL interface { // that deny a write. KeyWritePrefix(string) bool - // ServiceWrite checks for permission to read a given service - ServiceWrite(string) bool - - // ServiceRead checks for permission to read a given service - ServiceRead(string) bool - - // EventRead determines if a specific event can be queried. - EventRead(string) bool - - // EventWrite determines if a specific event may be fired. - EventWrite(string) bool - - // PrepardQueryRead determines if a specific prepared query can be read - // to show its contents (this is not used for execution). - PreparedQueryRead(string) bool - - // PreparedQueryWrite determines if a specific prepared query can be - // created, modified, or deleted. - PreparedQueryWrite(string) bool - // KeyringRead determines if the encryption keyring used in // the gossip layer can be read. KeyringRead() bool @@ -73,6 +73,13 @@ type ACL interface { // KeyringWrite determines if the keyring can be manipulated KeyringWrite() bool + // NodeRead checks for permission to read (discover) a given node. + NodeRead(string) bool + + // NodeWrite checks for permission to create or update (register) a + // given node. + NodeWrite(string) bool + // OperatorRead determines if the read-only Consul operator functions // can be used. OperatorRead() bool @@ -81,11 +88,30 @@ type ACL interface { // functions can be used. OperatorWrite() bool - // ACLList checks for permission to list all the ACLs - ACLList() bool + // PrepardQueryRead determines if a specific prepared query can be read + // to show its contents (this is not used for execution). + PreparedQueryRead(string) bool - // ACLModify checks for permission to manipulate ACLs - ACLModify() bool + // PreparedQueryWrite determines if a specific prepared query can be + // created, modified, or deleted. + PreparedQueryWrite(string) bool + + // ServiceRead checks for permission to read a given service + ServiceRead(string) bool + + // ServiceWrite checks for permission to create or update a given + // service + ServiceWrite(string) bool + + // SessionRead checks for permission to read sessions for a given node. + SessionRead(string) bool + + // SessionWrite checks for permission to create sessions for a given + // node. + SessionWrite(string) bool + + // Snapshot checks for permission to take and restore snapshots. + Snapshot() bool } // StaticACL is used to implement a base ACL policy. It either @@ -96,6 +122,30 @@ type StaticACL struct { defaultAllow bool } +func (s *StaticACL) ACLList() bool { + return s.allowManage +} + +func (s *StaticACL) ACLModify() bool { + return s.allowManage +} + +func (s *StaticACL) AgentRead(string) bool { + return s.defaultAllow +} + +func (s *StaticACL) AgentWrite(string) bool { + return s.defaultAllow +} + +func (s *StaticACL) EventRead(string) bool { + return s.defaultAllow +} + +func (s *StaticACL) EventWrite(string) bool { + return s.defaultAllow +} + func (s *StaticACL) KeyRead(string) bool { return s.defaultAllow } @@ -108,30 +158,6 @@ func (s *StaticACL) KeyWritePrefix(string) bool { return s.defaultAllow } -func (s *StaticACL) ServiceRead(string) bool { - return s.defaultAllow -} - -func (s *StaticACL) ServiceWrite(string) bool { - return s.defaultAllow -} - -func (s *StaticACL) EventRead(string) bool { - return s.defaultAllow -} - -func (s *StaticACL) EventWrite(string) bool { - return s.defaultAllow -} - -func (s *StaticACL) PreparedQueryRead(string) bool { - return s.defaultAllow -} - -func (s *StaticACL) PreparedQueryWrite(string) bool { - return s.defaultAllow -} - func (s *StaticACL) KeyringRead() bool { return s.defaultAllow } @@ -140,6 +166,14 @@ func (s *StaticACL) KeyringWrite() bool { return s.defaultAllow } +func (s *StaticACL) NodeRead(string) bool { + return s.defaultAllow +} + +func (s *StaticACL) NodeWrite(string) bool { + return s.defaultAllow +} + func (s *StaticACL) OperatorRead() bool { return s.defaultAllow } @@ -148,11 +182,31 @@ func (s *StaticACL) OperatorWrite() bool { return s.defaultAllow } -func (s *StaticACL) ACLList() bool { - return s.allowManage +func (s *StaticACL) PreparedQueryRead(string) bool { + return s.defaultAllow } -func (s *StaticACL) ACLModify() bool { +func (s *StaticACL) PreparedQueryWrite(string) bool { + return s.defaultAllow +} + +func (s *StaticACL) ServiceRead(string) bool { + return s.defaultAllow +} + +func (s *StaticACL) ServiceWrite(string) bool { + return s.defaultAllow +} + +func (s *StaticACL) SessionRead(string) bool { + return s.defaultAllow +} + +func (s *StaticACL) SessionWrite(string) bool { + return s.defaultAllow +} + +func (s *StaticACL) Snapshot() bool { return s.allowManage } @@ -192,12 +246,21 @@ type PolicyACL struct { // no matching rule. parent ACL + // agentRules contains the agent policies + agentRules *radix.Tree + // keyRules contains the key policies keyRules *radix.Tree + // nodeRules contains the node policies + nodeRules *radix.Tree + // serviceRules contains the service policies serviceRules *radix.Tree + // sessionRules contains the session policies + sessionRules *radix.Tree + // eventRules contains the user event policies eventRules *radix.Tree @@ -218,22 +281,40 @@ type PolicyACL struct { func New(parent ACL, policy *Policy) (*PolicyACL, error) { p := &PolicyACL{ parent: parent, + agentRules: radix.New(), keyRules: radix.New(), + nodeRules: radix.New(), serviceRules: radix.New(), + sessionRules: radix.New(), eventRules: radix.New(), preparedQueryRules: radix.New(), } + // Load the agent policy + for _, ap := range policy.Agents { + p.agentRules.Insert(ap.Node, ap.Policy) + } + // Load the key policy for _, kp := range policy.Keys { p.keyRules.Insert(kp.Prefix, kp.Policy) } + // Load the node policy + for _, np := range policy.Nodes { + p.nodeRules.Insert(np.Name, np.Policy) + } + // Load the service policy for _, sp := range policy.Services { p.serviceRules.Insert(sp.Name, sp.Policy) } + // Load the session policy + for _, sp := range policy.Sessions { + p.sessionRules.Insert(sp.Node, sp.Policy) + } + // Load the event policy for _, ep := range policy.Events { p.eventRules.Insert(ep.Event, ep.Policy) @@ -253,6 +334,88 @@ func New(parent ACL, policy *Policy) (*PolicyACL, error) { return p, nil } +// ACLList checks if listing of ACLs is allowed +func (p *PolicyACL) ACLList() bool { + return p.parent.ACLList() +} + +// ACLModify checks if modification of ACLs is allowed +func (p *PolicyACL) ACLModify() bool { + return p.parent.ACLModify() +} + +// AgentRead checks for permission to read from agent endpoints for a given +// node. +func (p *PolicyACL) AgentRead(node string) bool { + // Check for an exact rule or catch-all + _, rule, ok := p.agentRules.LongestPrefix(node) + + if ok { + switch rule { + case PolicyRead, PolicyWrite: + return true + default: + return false + } + } + + // No matching rule, use the parent. + return p.parent.AgentRead(node) +} + +// AgentWrite checks for permission to make changes via agent endpoints for a +// given node. +func (p *PolicyACL) AgentWrite(node string) bool { + // Check for an exact rule or catch-all + _, rule, ok := p.agentRules.LongestPrefix(node) + + if ok { + switch rule { + case PolicyWrite: + return true + default: + return false + } + } + + // No matching rule, use the parent. + return p.parent.AgentWrite(node) +} + +// Snapshot checks if taking and restoring snapshots is allowed. +func (p *PolicyACL) Snapshot() bool { + return p.parent.Snapshot() +} + +// EventRead is used to determine if the policy allows for a +// specific user event to be read. +func (p *PolicyACL) EventRead(name string) bool { + // Longest-prefix match on event names + if _, rule, ok := p.eventRules.LongestPrefix(name); ok { + switch rule { + case PolicyRead, PolicyWrite: + return true + default: + return false + } + } + + // Nothing matched, use parent + return p.parent.EventRead(name) +} + +// EventWrite is used to determine if new events can be created +// (fired) by the policy. +func (p *PolicyACL) EventWrite(name string) bool { + // Longest-prefix match event names + if _, rule, ok := p.eventRules.LongestPrefix(name); ok { + return rule == PolicyWrite + } + + // No match, use parent + return p.parent.EventWrite(name) +} + // KeyRead returns if a key is allowed to be read func (p *PolicyACL) KeyRead(key string) bool { // Look for a matching rule @@ -320,10 +483,43 @@ func (p *PolicyACL) KeyWritePrefix(prefix string) bool { return p.parent.KeyWritePrefix(prefix) } -// ServiceRead checks if reading (discovery) of a service is allowed -func (p *PolicyACL) ServiceRead(name string) bool { +// KeyringRead is used to determine if the keyring can be +// read by the current ACL token. +func (p *PolicyACL) KeyringRead() bool { + switch p.keyringRule { + case PolicyRead, PolicyWrite: + return true + case PolicyDeny: + return false + default: + return p.parent.KeyringRead() + } +} + +// KeyringWrite determines if the keyring can be manipulated. +func (p *PolicyACL) KeyringWrite() bool { + if p.keyringRule == PolicyWrite { + return true + } + return p.parent.KeyringWrite() +} + +// OperatorRead determines if the read-only operator functions are allowed. +func (p *PolicyACL) OperatorRead() bool { + switch p.operatorRule { + case PolicyRead, PolicyWrite: + return true + case PolicyDeny: + return false + default: + return p.parent.OperatorRead() + } +} + +// NodeRead checks if reading (discovery) of a node is allowed +func (p *PolicyACL) NodeRead(name string) bool { // Check for an exact rule or catch-all - _, rule, ok := p.serviceRules.LongestPrefix(name) + _, rule, ok := p.nodeRules.LongestPrefix(name) if ok { switch rule { @@ -335,13 +531,13 @@ func (p *PolicyACL) ServiceRead(name string) bool { } // No matching rule, use the parent. - return p.parent.ServiceRead(name) + return p.parent.NodeRead(name) } -// ServiceWrite checks if writing (registering) a service is allowed -func (p *PolicyACL) ServiceWrite(name string) bool { +// NodeWrite checks if writing (registering) a node is allowed +func (p *PolicyACL) NodeWrite(name string) bool { // Check for an exact rule or catch-all - _, rule, ok := p.serviceRules.LongestPrefix(name) + _, rule, ok := p.nodeRules.LongestPrefix(name) if ok { switch rule { @@ -353,36 +549,16 @@ func (p *PolicyACL) ServiceWrite(name string) bool { } // No matching rule, use the parent. - return p.parent.ServiceWrite(name) + return p.parent.NodeWrite(name) } -// EventRead is used to determine if the policy allows for a -// specific user event to be read. -func (p *PolicyACL) EventRead(name string) bool { - // Longest-prefix match on event names - if _, rule, ok := p.eventRules.LongestPrefix(name); ok { - switch rule { - case PolicyRead, PolicyWrite: - return true - default: - return false - } +// OperatorWrite determines if the state-changing operator functions are +// allowed. +func (p *PolicyACL) OperatorWrite() bool { + if p.operatorRule == PolicyWrite { + return true } - - // Nothing matched, use parent - return p.parent.EventRead(name) -} - -// EventWrite is used to determine if new events can be created -// (fired) by the policy. -func (p *PolicyACL) EventWrite(name string) bool { - // Longest-prefix match event names - if _, rule, ok := p.eventRules.LongestPrefix(name); ok { - return rule == PolicyWrite - } - - // No match, use parent - return p.parent.EventWrite(name) + return p.parent.OperatorWrite() } // PreparedQueryRead checks if reading (listing) of a prepared query is @@ -423,54 +599,74 @@ func (p *PolicyACL) PreparedQueryWrite(prefix string) bool { return p.parent.PreparedQueryWrite(prefix) } -// KeyringRead is used to determine if the keyring can be -// read by the current ACL token. -func (p *PolicyACL) KeyringRead() bool { - switch p.keyringRule { - case PolicyRead, PolicyWrite: - return true - case PolicyDeny: - return false - default: - return p.parent.KeyringRead() +// ServiceRead checks if reading (discovery) of a service is allowed +func (p *PolicyACL) ServiceRead(name string) bool { + // Check for an exact rule or catch-all + _, rule, ok := p.serviceRules.LongestPrefix(name) + + if ok { + switch rule { + case PolicyRead, PolicyWrite: + return true + default: + return false + } } + + // No matching rule, use the parent. + return p.parent.ServiceRead(name) } -// KeyringWrite determines if the keyring can be manipulated. -func (p *PolicyACL) KeyringWrite() bool { - if p.keyringRule == PolicyWrite { - return true +// ServiceWrite checks if writing (registering) a service is allowed +func (p *PolicyACL) ServiceWrite(name string) bool { + // Check for an exact rule or catch-all + _, rule, ok := p.serviceRules.LongestPrefix(name) + + if ok { + switch rule { + case PolicyWrite: + return true + default: + return false + } } - return p.parent.KeyringWrite() + + // No matching rule, use the parent. + return p.parent.ServiceWrite(name) } -// OperatorRead determines if the read-only operator functions are allowed. -func (p *PolicyACL) OperatorRead() bool { - switch p.operatorRule { - case PolicyRead, PolicyWrite: - return true - case PolicyDeny: - return false - default: - return p.parent.OperatorRead() +// SessionRead checks for permission to read sessions for a given node. +func (p *PolicyACL) SessionRead(node string) bool { + // Check for an exact rule or catch-all + _, rule, ok := p.sessionRules.LongestPrefix(node) + + if ok { + switch rule { + case PolicyRead, PolicyWrite: + return true + default: + return false + } } + + // No matching rule, use the parent. + return p.parent.SessionRead(node) } -// OperatorWrite determines if the state-changing operator functions are -// allowed. -func (p *PolicyACL) OperatorWrite() bool { - if p.operatorRule == PolicyWrite { - return true +// SessionWrite checks for permission to create sessions for a given node. +func (p *PolicyACL) SessionWrite(node string) bool { + // Check for an exact rule or catch-all + _, rule, ok := p.sessionRules.LongestPrefix(node) + + if ok { + switch rule { + case PolicyWrite: + return true + default: + return false + } } - return p.parent.OperatorWrite() -} -// ACLList checks if listing of ACLs is allowed -func (p *PolicyACL) ACLList() bool { - return p.parent.ACLList() -} - -// ACLModify checks if modification of ACLs is allowed -func (p *PolicyACL) ACLModify() bool { - return p.parent.ACLModify() + // No matching rule, use the parent. + return p.parent.SessionWrite(node) } diff --git a/acl/acl_test.go b/acl/acl_test.go index aa1c7972d4..b008846fc7 100644 --- a/acl/acl_test.go +++ b/acl/acl_test.go @@ -35,16 +35,16 @@ func TestStaticACL(t *testing.T) { t.Fatalf("expected static") } - if !all.KeyRead("foobar") { + if all.ACLList() { + t.Fatalf("should not allow") + } + if all.ACLModify() { + t.Fatalf("should not allow") + } + if !all.AgentRead("foobar") { t.Fatalf("should allow") } - if !all.KeyWrite("foobar") { - t.Fatalf("should allow") - } - if !all.ServiceRead("foobar") { - t.Fatalf("should allow") - } - if !all.ServiceWrite("foobar") { + if !all.AgentWrite("foobar") { t.Fatalf("should allow") } if !all.EventRead("foobar") { @@ -53,10 +53,10 @@ func TestStaticACL(t *testing.T) { if !all.EventWrite("foobar") { t.Fatalf("should allow") } - if !all.PreparedQueryRead("foobar") { + if !all.KeyRead("foobar") { t.Fatalf("should allow") } - if !all.PreparedQueryWrite("foobar") { + if !all.KeyWrite("foobar") { t.Fatalf("should allow") } if !all.KeyringRead() { @@ -65,29 +65,50 @@ func TestStaticACL(t *testing.T) { if !all.KeyringWrite() { t.Fatalf("should allow") } + if !all.NodeRead("foobar") { + t.Fatalf("should allow") + } + if !all.NodeWrite("foobar") { + t.Fatalf("should allow") + } if !all.OperatorRead() { t.Fatalf("should allow") } if !all.OperatorWrite() { t.Fatalf("should allow") } - if all.ACLList() { - t.Fatalf("should not allow") + if !all.PreparedQueryRead("foobar") { + t.Fatalf("should allow") } - if all.ACLModify() { + if !all.PreparedQueryWrite("foobar") { + t.Fatalf("should allow") + } + if !all.ServiceRead("foobar") { + t.Fatalf("should allow") + } + if !all.ServiceWrite("foobar") { + t.Fatalf("should allow") + } + if !all.SessionRead("foobar") { + t.Fatalf("should allow") + } + if !all.SessionWrite("foobar") { + t.Fatalf("should allow") + } + if all.Snapshot() { t.Fatalf("should not allow") } - if none.KeyRead("foobar") { + if none.ACLList() { t.Fatalf("should not allow") } - if none.KeyWrite("foobar") { + if none.ACLModify() { t.Fatalf("should not allow") } - if none.ServiceRead("foobar") { + if none.AgentRead("foobar") { t.Fatalf("should not allow") } - if none.ServiceWrite("foobar") { + if none.AgentWrite("foobar") { t.Fatalf("should not allow") } if none.EventRead("foobar") { @@ -102,10 +123,10 @@ func TestStaticACL(t *testing.T) { if none.EventWrite("") { t.Fatalf("should not allow") } - if none.PreparedQueryRead("foobar") { + if none.KeyRead("foobar") { t.Fatalf("should not allow") } - if none.PreparedQueryWrite("foobar") { + if none.KeyWrite("foobar") { t.Fatalf("should not allow") } if none.KeyringRead() { @@ -114,29 +135,50 @@ func TestStaticACL(t *testing.T) { if none.KeyringWrite() { t.Fatalf("should not allow") } + if none.NodeRead("foobar") { + t.Fatalf("should not allow") + } + if none.NodeWrite("foobar") { + t.Fatalf("should not allow") + } if none.OperatorRead() { t.Fatalf("should now allow") } if none.OperatorWrite() { t.Fatalf("should not allow") } - if none.ACLList() { + if none.PreparedQueryRead("foobar") { t.Fatalf("should not allow") } - if none.ACLModify() { + if none.PreparedQueryWrite("foobar") { + t.Fatalf("should not allow") + } + if none.ServiceRead("foobar") { + t.Fatalf("should not allow") + } + if none.ServiceWrite("foobar") { + t.Fatalf("should not allow") + } + if none.SessionRead("foobar") { + t.Fatalf("should not allow") + } + if none.SessionWrite("foobar") { + t.Fatalf("should not allow") + } + if none.Snapshot() { t.Fatalf("should not allow") } - if !manage.KeyRead("foobar") { + if !manage.ACLList() { t.Fatalf("should allow") } - if !manage.KeyWrite("foobar") { + if !manage.ACLModify() { t.Fatalf("should allow") } - if !manage.ServiceRead("foobar") { + if !manage.AgentRead("foobar") { t.Fatalf("should allow") } - if !manage.ServiceWrite("foobar") { + if !manage.AgentWrite("foobar") { t.Fatalf("should allow") } if !manage.EventRead("foobar") { @@ -145,10 +187,10 @@ func TestStaticACL(t *testing.T) { if !manage.EventWrite("foobar") { t.Fatalf("should allow") } - if !manage.PreparedQueryRead("foobar") { + if !manage.KeyRead("foobar") { t.Fatalf("should allow") } - if !manage.PreparedQueryWrite("foobar") { + if !manage.KeyWrite("foobar") { t.Fatalf("should allow") } if !manage.KeyringRead() { @@ -157,16 +199,37 @@ func TestStaticACL(t *testing.T) { if !manage.KeyringWrite() { t.Fatalf("should allow") } + if !manage.NodeRead("foobar") { + t.Fatalf("should allow") + } + if !manage.NodeWrite("foobar") { + t.Fatalf("should allow") + } if !manage.OperatorRead() { t.Fatalf("should allow") } if !manage.OperatorWrite() { t.Fatalf("should allow") } - if !manage.ACLList() { + if !manage.PreparedQueryRead("foobar") { t.Fatalf("should allow") } - if !manage.ACLModify() { + if !manage.PreparedQueryWrite("foobar") { + t.Fatalf("should allow") + } + if !manage.ServiceRead("foobar") { + t.Fatalf("should allow") + } + if !manage.ServiceWrite("foobar") { + t.Fatalf("should allow") + } + if !manage.SessionRead("foobar") { + t.Fatalf("should allow") + } + if !manage.SessionWrite("foobar") { + t.Fatalf("should allow") + } + if !manage.Snapshot() { t.Fatalf("should allow") } } @@ -174,6 +237,20 @@ func TestStaticACL(t *testing.T) { func TestPolicyACL(t *testing.T) { all := AllowAll() policy := &Policy{ + Events: []*EventPolicy{ + &EventPolicy{ + Event: "", + Policy: PolicyRead, + }, + &EventPolicy{ + Event: "foo", + Policy: PolicyWrite, + }, + &EventPolicy{ + Event: "bar", + Policy: PolicyDeny, + }, + }, Keys: []*KeyPolicy{ &KeyPolicy{ Prefix: "foo/", @@ -192,38 +269,6 @@ func TestPolicyACL(t *testing.T) { Policy: PolicyRead, }, }, - Services: []*ServicePolicy{ - &ServicePolicy{ - Name: "", - Policy: PolicyWrite, - }, - &ServicePolicy{ - Name: "foo", - Policy: PolicyRead, - }, - &ServicePolicy{ - Name: "bar", - Policy: PolicyDeny, - }, - &ServicePolicy{ - Name: "barfoo", - Policy: PolicyWrite, - }, - }, - Events: []*EventPolicy{ - &EventPolicy{ - Event: "", - Policy: PolicyRead, - }, - &EventPolicy{ - Event: "foo", - Policy: PolicyWrite, - }, - &EventPolicy{ - Event: "bar", - Policy: PolicyDeny, - }, - }, PreparedQueries: []*PreparedQueryPolicy{ &PreparedQueryPolicy{ Prefix: "", @@ -242,6 +287,24 @@ func TestPolicyACL(t *testing.T) { Policy: PolicyWrite, }, }, + Services: []*ServicePolicy{ + &ServicePolicy{ + Name: "", + Policy: PolicyWrite, + }, + &ServicePolicy{ + Name: "foo", + Policy: PolicyRead, + }, + &ServicePolicy{ + Name: "bar", + Policy: PolicyDeny, + }, + &ServicePolicy{ + Name: "barfoo", + Policy: PolicyWrite, + }, + }, } acl, err := New(all, policy) if err != nil { @@ -360,16 +423,6 @@ func TestPolicyACL_Parent(t *testing.T) { Policy: PolicyRead, }, }, - Services: []*ServicePolicy{ - &ServicePolicy{ - Name: "other", - Policy: PolicyWrite, - }, - &ServicePolicy{ - Name: "foo", - Policy: PolicyRead, - }, - }, PreparedQueries: []*PreparedQueryPolicy{ &PreparedQueryPolicy{ Prefix: "other", @@ -380,6 +433,16 @@ func TestPolicyACL_Parent(t *testing.T) { Policy: PolicyRead, }, }, + Services: []*ServicePolicy{ + &ServicePolicy{ + Name: "other", + Policy: PolicyWrite, + }, + &ServicePolicy{ + Name: "foo", + Policy: PolicyRead, + }, + }, } root, err := New(deny, policyRoot) if err != nil { @@ -401,18 +464,18 @@ func TestPolicyACL_Parent(t *testing.T) { Policy: PolicyRead, }, }, - Services: []*ServicePolicy{ - &ServicePolicy{ - Name: "bar", - Policy: PolicyDeny, - }, - }, PreparedQueries: []*PreparedQueryPolicy{ &PreparedQueryPolicy{ Prefix: "bar", Policy: PolicyDeny, }, }, + Services: []*ServicePolicy{ + &ServicePolicy{ + Name: "bar", + Policy: PolicyDeny, + }, + }, } acl, err := New(root, policy) if err != nil { @@ -495,6 +558,92 @@ func TestPolicyACL_Parent(t *testing.T) { if acl.ACLModify() { t.Fatalf("should not allow") } + if acl.Snapshot() { + t.Fatalf("should not allow") + } +} + +func TestPolicyACL_Agent(t *testing.T) { + deny := DenyAll() + policyRoot := &Policy{ + Agents: []*AgentPolicy{ + &AgentPolicy{ + Node: "root-nope", + Policy: PolicyDeny, + }, + &AgentPolicy{ + Node: "root-ro", + Policy: PolicyRead, + }, + &AgentPolicy{ + Node: "root-rw", + Policy: PolicyWrite, + }, + &AgentPolicy{ + Node: "override", + Policy: PolicyDeny, + }, + }, + } + root, err := New(deny, policyRoot) + if err != nil { + t.Fatalf("err: %v", err) + } + + policy := &Policy{ + Agents: []*AgentPolicy{ + &AgentPolicy{ + Node: "child-nope", + Policy: PolicyDeny, + }, + &AgentPolicy{ + Node: "child-ro", + Policy: PolicyRead, + }, + &AgentPolicy{ + Node: "child-rw", + Policy: PolicyWrite, + }, + &AgentPolicy{ + Node: "override", + Policy: PolicyWrite, + }, + }, + } + acl, err := New(root, policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + type agentcase struct { + inp string + read bool + write bool + } + cases := []agentcase{ + {"nope", false, false}, + {"root-nope", false, false}, + {"root-ro", true, false}, + {"root-rw", true, true}, + {"root-nope-prefix", false, false}, + {"root-ro-prefix", true, false}, + {"root-rw-prefix", true, true}, + {"child-nope", false, false}, + {"child-ro", true, false}, + {"child-rw", true, true}, + {"child-nope-prefix", false, false}, + {"child-ro-prefix", true, false}, + {"child-rw-prefix", true, true}, + {"override", true, true}, + } + for _, c := range cases { + if c.read != acl.AgentRead(c.inp) { + t.Fatalf("Read fail: %#v", c) + } + if c.write != acl.AgentWrite(c.inp) { + t.Fatalf("Write fail: %#v", c) + } + } } func TestPolicyACL_Keyring(t *testing.T) { @@ -548,3 +697,169 @@ func TestPolicyACL_Operator(t *testing.T) { } } } + +func TestPolicyACL_Node(t *testing.T) { + deny := DenyAll() + policyRoot := &Policy{ + Nodes: []*NodePolicy{ + &NodePolicy{ + Name: "root-nope", + Policy: PolicyDeny, + }, + &NodePolicy{ + Name: "root-ro", + Policy: PolicyRead, + }, + &NodePolicy{ + Name: "root-rw", + Policy: PolicyWrite, + }, + &NodePolicy{ + Name: "override", + Policy: PolicyDeny, + }, + }, + } + root, err := New(deny, policyRoot) + if err != nil { + t.Fatalf("err: %v", err) + } + + policy := &Policy{ + Nodes: []*NodePolicy{ + &NodePolicy{ + Name: "child-nope", + Policy: PolicyDeny, + }, + &NodePolicy{ + Name: "child-ro", + Policy: PolicyRead, + }, + &NodePolicy{ + Name: "child-rw", + Policy: PolicyWrite, + }, + &NodePolicy{ + Name: "override", + Policy: PolicyWrite, + }, + }, + } + acl, err := New(root, policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + type nodecase struct { + inp string + read bool + write bool + } + cases := []nodecase{ + {"nope", false, false}, + {"root-nope", false, false}, + {"root-ro", true, false}, + {"root-rw", true, true}, + {"root-nope-prefix", false, false}, + {"root-ro-prefix", true, false}, + {"root-rw-prefix", true, true}, + {"child-nope", false, false}, + {"child-ro", true, false}, + {"child-rw", true, true}, + {"child-nope-prefix", false, false}, + {"child-ro-prefix", true, false}, + {"child-rw-prefix", true, true}, + {"override", true, true}, + } + for _, c := range cases { + if c.read != acl.NodeRead(c.inp) { + t.Fatalf("Read fail: %#v", c) + } + if c.write != acl.NodeWrite(c.inp) { + t.Fatalf("Write fail: %#v", c) + } + } +} + +func TestPolicyACL_Session(t *testing.T) { + deny := DenyAll() + policyRoot := &Policy{ + Sessions: []*SessionPolicy{ + &SessionPolicy{ + Node: "root-nope", + Policy: PolicyDeny, + }, + &SessionPolicy{ + Node: "root-ro", + Policy: PolicyRead, + }, + &SessionPolicy{ + Node: "root-rw", + Policy: PolicyWrite, + }, + &SessionPolicy{ + Node: "override", + Policy: PolicyDeny, + }, + }, + } + root, err := New(deny, policyRoot) + if err != nil { + t.Fatalf("err: %v", err) + } + + policy := &Policy{ + Sessions: []*SessionPolicy{ + &SessionPolicy{ + Node: "child-nope", + Policy: PolicyDeny, + }, + &SessionPolicy{ + Node: "child-ro", + Policy: PolicyRead, + }, + &SessionPolicy{ + Node: "child-rw", + Policy: PolicyWrite, + }, + &SessionPolicy{ + Node: "override", + Policy: PolicyWrite, + }, + }, + } + acl, err := New(root, policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + type sessioncase struct { + inp string + read bool + write bool + } + cases := []sessioncase{ + {"nope", false, false}, + {"root-nope", false, false}, + {"root-ro", true, false}, + {"root-rw", true, true}, + {"root-nope-prefix", false, false}, + {"root-ro-prefix", true, false}, + {"root-rw-prefix", true, true}, + {"child-nope", false, false}, + {"child-ro", true, false}, + {"child-rw", true, true}, + {"child-nope-prefix", false, false}, + {"child-ro-prefix", true, false}, + {"child-rw-prefix", true, true}, + {"override", true, true}, + } + for _, c := range cases { + if c.read != acl.SessionRead(c.inp) { + t.Fatalf("Read fail: %#v", c) + } + if c.write != acl.SessionWrite(c.inp) { + t.Fatalf("Write fail: %#v", c) + } + } +} diff --git a/acl/policy.go b/acl/policy.go index ae69067fea..f7781b81e7 100644 --- a/acl/policy.go +++ b/acl/policy.go @@ -16,14 +16,28 @@ const ( // an ACL configuration. type Policy struct { ID string `hcl:"-"` + Agents []*AgentPolicy `hcl:"agent,expand"` Keys []*KeyPolicy `hcl:"key,expand"` + Nodes []*NodePolicy `hcl:"node,expand"` Services []*ServicePolicy `hcl:"service,expand"` + Sessions []*SessionPolicy `hcl:"session,expand"` Events []*EventPolicy `hcl:"event,expand"` PreparedQueries []*PreparedQueryPolicy `hcl:"query,expand"` Keyring string `hcl:"keyring"` Operator string `hcl:"operator"` } +// AgentPolicy represents a policy for working with agent endpoints on nodes +// with specific name prefixes. +type AgentPolicy struct { + Node string `hcl:",key"` + Policy string +} + +func (a *AgentPolicy) GoString() string { + return fmt.Sprintf("%#v", *a) +} + // KeyPolicy represents a policy for a key type KeyPolicy struct { Prefix string `hcl:",key"` @@ -34,14 +48,35 @@ func (k *KeyPolicy) GoString() string { return fmt.Sprintf("%#v", *k) } +// NodePolicy represents a policy for a node +type NodePolicy struct { + Name string `hcl:",key"` + Policy string +} + +func (n *NodePolicy) GoString() string { + return fmt.Sprintf("%#v", *n) +} + // ServicePolicy represents a policy for a service type ServicePolicy struct { Name string `hcl:",key"` Policy string } -func (k *ServicePolicy) GoString() string { - return fmt.Sprintf("%#v", *k) +func (s *ServicePolicy) GoString() string { + return fmt.Sprintf("%#v", *s) +} + +// SessionPolicy represents a policy for making sessions tied to specific node +// name prefixes. +type SessionPolicy struct { + Node string `hcl:",key"` + Policy string +} + +func (s *SessionPolicy) GoString() string { + return fmt.Sprintf("%#v", *s) } // EventPolicy represents a user event policy. @@ -60,8 +95,8 @@ type PreparedQueryPolicy struct { Policy string } -func (e *PreparedQueryPolicy) GoString() string { - return fmt.Sprintf("%#v", *e) +func (p *PreparedQueryPolicy) GoString() string { + return fmt.Sprintf("%#v", *p) } // isPolicyValid makes sure the given string matches one of the valid policies. @@ -93,6 +128,13 @@ func Parse(rules string) (*Policy, error) { return nil, fmt.Errorf("Failed to parse ACL rules: %v", err) } + // Validate the agent policy + for _, ap := range p.Agents { + if !isPolicyValid(ap.Policy) { + return nil, fmt.Errorf("Invalid agent policy: %#v", ap) + } + } + // Validate the key policy for _, kp := range p.Keys { if !isPolicyValid(kp.Policy) { @@ -100,13 +142,27 @@ func Parse(rules string) (*Policy, error) { } } - // Validate the service policy + // Validate the node policies + for _, np := range p.Nodes { + if !isPolicyValid(np.Policy) { + return nil, fmt.Errorf("Invalid node policy: %#v", np) + } + } + + // Validate the service policies for _, sp := range p.Services { if !isPolicyValid(sp.Policy) { return nil, fmt.Errorf("Invalid service policy: %#v", sp) } } + // Validate the session policies + for _, sp := range p.Sessions { + if !isPolicyValid(sp.Policy) { + return nil, fmt.Errorf("Invalid session policy: %#v", sp) + } + } + // Validate the user event policies for _, ep := range p.Events { if !isPolicyValid(ep.Policy) { diff --git a/acl/policy_test.go b/acl/policy_test.go index 7f31bf8608..d7b8138e9f 100644 --- a/acl/policy_test.go +++ b/acl/policy_test.go @@ -8,6 +8,21 @@ import ( func TestACLPolicy_Parse_HCL(t *testing.T) { inp := ` +agent "foo" { + policy = "read" +} +agent "bar" { + policy = "write" +} +event "" { + policy = "read" +} +event "foo" { + policy = "write" +} +event "bar" { + policy = "deny" +} key "" { policy = "read" } @@ -20,19 +35,27 @@ key "foo/bar/" { key "foo/bar/baz" { policy = "deny" } +keyring = "deny" +node "" { + policy = "read" +} +node "foo" { + policy = "write" +} +node "bar" { + policy = "deny" +} +operator = "deny" service "" { policy = "write" } service "foo" { policy = "read" } -event "" { - policy = "read" -} -event "foo" { +session "foo" { policy = "write" } -event "bar" { +session "bar" { policy = "deny" } query "" { @@ -44,10 +67,33 @@ query "foo" { query "bar" { policy = "deny" } -keyring = "deny" -operator = "deny" ` exp := &Policy{ + Agents: []*AgentPolicy{ + &AgentPolicy{ + Node: "foo", + Policy: PolicyRead, + }, + &AgentPolicy{ + Node: "bar", + Policy: PolicyWrite, + }, + }, + Events: []*EventPolicy{ + &EventPolicy{ + Event: "", + Policy: PolicyRead, + }, + &EventPolicy{ + Event: "foo", + Policy: PolicyWrite, + }, + &EventPolicy{ + Event: "bar", + Policy: PolicyDeny, + }, + }, + Keyring: PolicyDeny, Keys: []*KeyPolicy{ &KeyPolicy{ Prefix: "", @@ -66,30 +112,21 @@ operator = "deny" Policy: PolicyDeny, }, }, - Services: []*ServicePolicy{ - &ServicePolicy{ + Nodes: []*NodePolicy{ + &NodePolicy{ Name: "", - Policy: PolicyWrite, + Policy: PolicyRead, }, - &ServicePolicy{ + &NodePolicy{ Name: "foo", - Policy: PolicyRead, - }, - }, - Events: []*EventPolicy{ - &EventPolicy{ - Event: "", - Policy: PolicyRead, - }, - &EventPolicy{ - Event: "foo", Policy: PolicyWrite, }, - &EventPolicy{ - Event: "bar", + &NodePolicy{ + Name: "bar", Policy: PolicyDeny, }, }, + Operator: PolicyDeny, PreparedQueries: []*PreparedQueryPolicy{ &PreparedQueryPolicy{ Prefix: "", @@ -104,8 +141,26 @@ operator = "deny" Policy: PolicyDeny, }, }, - Keyring: PolicyDeny, - Operator: PolicyDeny, + Services: []*ServicePolicy{ + &ServicePolicy{ + Name: "", + Policy: PolicyWrite, + }, + &ServicePolicy{ + Name: "foo", + Policy: PolicyRead, + }, + }, + Sessions: []*SessionPolicy{ + &SessionPolicy{ + Node: "foo", + Policy: PolicyWrite, + }, + &SessionPolicy{ + Node: "bar", + Policy: PolicyDeny, + }, + }, } out, err := Parse(inp) @@ -120,6 +175,25 @@ operator = "deny" func TestACLPolicy_Parse_JSON(t *testing.T) { inp := `{ + "agent": { + "foo": { + "policy": "write" + }, + "bar": { + "policy": "deny" + } + }, + "event": { + "": { + "policy": "read" + }, + "foo": { + "policy": "write" + }, + "bar": { + "policy": "deny" + } + }, "key": { "": { "policy": "read" @@ -134,15 +208,8 @@ func TestACLPolicy_Parse_JSON(t *testing.T) { "policy": "deny" } }, - "service": { - "": { - "policy": "write" - }, - "foo": { - "policy": "read" - } - }, - "event": { + "keyring": "deny", + "node": { "": { "policy": "read" }, @@ -153,6 +220,7 @@ func TestACLPolicy_Parse_JSON(t *testing.T) { "policy": "deny" } }, + "operator": "deny", "query": { "": { "policy": "read" @@ -164,10 +232,49 @@ func TestACLPolicy_Parse_JSON(t *testing.T) { "policy": "deny" } }, - "keyring": "deny", - "operator": "deny" + "service": { + "": { + "policy": "write" + }, + "foo": { + "policy": "read" + } + }, + "session": { + "foo": { + "policy": "write" + }, + "bar": { + "policy": "deny" + } + } }` exp := &Policy{ + Agents: []*AgentPolicy{ + &AgentPolicy{ + Node: "foo", + Policy: PolicyWrite, + }, + &AgentPolicy{ + Node: "bar", + Policy: PolicyDeny, + }, + }, + Events: []*EventPolicy{ + &EventPolicy{ + Event: "", + Policy: PolicyRead, + }, + &EventPolicy{ + Event: "foo", + Policy: PolicyWrite, + }, + &EventPolicy{ + Event: "bar", + Policy: PolicyDeny, + }, + }, + Keyring: PolicyDeny, Keys: []*KeyPolicy{ &KeyPolicy{ Prefix: "", @@ -186,30 +293,21 @@ func TestACLPolicy_Parse_JSON(t *testing.T) { Policy: PolicyDeny, }, }, - Services: []*ServicePolicy{ - &ServicePolicy{ + Nodes: []*NodePolicy{ + &NodePolicy{ Name: "", - Policy: PolicyWrite, + Policy: PolicyRead, }, - &ServicePolicy{ + &NodePolicy{ Name: "foo", - Policy: PolicyRead, - }, - }, - Events: []*EventPolicy{ - &EventPolicy{ - Event: "", - Policy: PolicyRead, - }, - &EventPolicy{ - Event: "foo", Policy: PolicyWrite, }, - &EventPolicy{ - Event: "bar", + &NodePolicy{ + Name: "bar", Policy: PolicyDeny, }, }, + Operator: PolicyDeny, PreparedQueries: []*PreparedQueryPolicy{ &PreparedQueryPolicy{ Prefix: "", @@ -224,8 +322,26 @@ func TestACLPolicy_Parse_JSON(t *testing.T) { Policy: PolicyDeny, }, }, - Keyring: PolicyDeny, - Operator: PolicyDeny, + Services: []*ServicePolicy{ + &ServicePolicy{ + Name: "", + Policy: PolicyWrite, + }, + &ServicePolicy{ + Name: "foo", + Policy: PolicyRead, + }, + }, + Sessions: []*SessionPolicy{ + &SessionPolicy{ + Node: "foo", + Policy: PolicyWrite, + }, + &SessionPolicy{ + Node: "bar", + Policy: PolicyDeny, + }, + }, } out, err := Parse(inp) @@ -276,12 +392,15 @@ operator = "" func TestACLPolicy_Bad_Policy(t *testing.T) { cases := []string{ - `key "" { policy = "nope" }`, - `service "" { policy = "nope" }`, + `agent "" { policy = "nope" }`, `event "" { policy = "nope" }`, - `query "" { policy = "nope" }`, + `key "" { policy = "nope" }`, `keyring = "nope"`, + `node "" { policy = "nope" }`, `operator = "nope"`, + `query "" { policy = "nope" }`, + `service "" { policy = "nope" }`, + `session "" { policy = "nope" }`, } for _, c := range cases { _, err := Parse(c) diff --git a/api/agent.go b/api/agent.go index 87a6c10016..1893d1cf35 100644 --- a/api/agent.go +++ b/api/agent.go @@ -1,6 +1,7 @@ package api import ( + "bufio" "fmt" ) @@ -73,6 +74,8 @@ type AgentServiceCheck struct { HTTP string `json:",omitempty"` TCP string `json:",omitempty"` Status string `json:",omitempty"` + Notes string `json:",omitempty"` + TLSSkipVerify bool `json:",omitempty"` // In Consul 0.7 and later, checks that are associated with a service // may also contain this optional DeregisterCriticalServiceAfter field, @@ -114,6 +117,17 @@ func (a *Agent) Self() (map[string]map[string]interface{}, error) { return out, nil } +// Reload triggers a configuration reload for the agent we are connected to. +func (a *Agent) Reload() error { + r := a.c.newRequest("PUT", "/v1/agent/reload") + _, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return err + } + resp.Body.Close() + return nil +} + // NodeName is used to get the node name of the agent func (a *Agent) NodeName() (string, error) { if a.nodeName != "" { @@ -345,6 +359,17 @@ func (a *Agent) Join(addr string, wan bool) error { return nil } +// Leave is used to have the agent gracefully leave the cluster and shutdown +func (a *Agent) Leave() error { + r := a.c.newRequest("PUT", "/v1/agent/leave") + _, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return err + } + resp.Body.Close() + return nil +} + // ForceLeave is used to have the agent eject a failed node func (a *Agent) ForceLeave(node string) error { r := a.c.newRequest("PUT", "/v1/agent/force-leave/"+node) @@ -409,3 +434,38 @@ func (a *Agent) DisableNodeMaintenance() error { resp.Body.Close() return nil } + +// Monitor returns a channel which will receive streaming logs from the agent +// Providing a non-nil stopCh can be used to close the connection and stop the +// log stream +func (a *Agent) Monitor(loglevel string, stopCh chan struct{}, q *QueryOptions) (chan string, error) { + r := a.c.newRequest("GET", "/v1/agent/monitor") + r.setQueryOptions(q) + if loglevel != "" { + r.params.Add("loglevel", loglevel) + } + _, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return nil, err + } + + logCh := make(chan string, 64) + go func() { + defer resp.Body.Close() + + scanner := bufio.NewScanner(resp.Body) + for { + select { + case <-stopCh: + close(logCh) + return + default: + } + if scanner.Scan() { + logCh <- scanner.Text() + } + } + }() + + return logCh, nil +} diff --git a/api/agent_test.go b/api/agent_test.go index 215d240dc9..beaf26317d 100644 --- a/api/agent_test.go +++ b/api/agent_test.go @@ -1,8 +1,15 @@ package api import ( + "io" + "io/ioutil" "strings" "testing" + + "time" + + "github.com/hashicorp/consul/testutil" + "github.com/hashicorp/serf/serf" ) func TestAgent_Self(t *testing.T) { @@ -23,6 +30,51 @@ func TestAgent_Self(t *testing.T) { } } +func TestAgent_Reload(t *testing.T) { + t.Parallel() + + // Create our initial empty config file, to be overwritten later + configFile, err := ioutil.TempFile("", "reload") + if err != nil { + t.Fatalf("err: %s", err) + } + if _, err := configFile.Write([]byte("{}")); err != nil { + t.Fatalf("err: %s", err) + } + configFile.Close() + + c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) { + conf.Args = []string{"-config-file", configFile.Name()} + }) + defer s.Stop() + + agent := c.Agent() + + // Update the config file with a service definition + config := `{"service":{"name":"redis", "port":1234}}` + err = ioutil.WriteFile(configFile.Name(), []byte(config), 0644) + if err != nil { + t.Fatalf("err: %v", err) + } + + if err = agent.Reload(); err != nil { + t.Fatalf("err: %v", err) + } + + services, err := agent.Services() + if err != nil { + t.Fatalf("err: %v", err) + } + + service, ok := services["redis"] + if !ok { + t.Fatalf("bad: %v", ok) + } + if service.Port != 1234 { + t.Fatalf("bad: %v", service.Port) + } +} + func TestAgent_Members(t *testing.T) { t.Parallel() c, s := makeClient(t) @@ -544,6 +596,41 @@ func TestAgent_Join(t *testing.T) { } } +func TestAgent_Leave(t *testing.T) { + t.Parallel() + c1, s1 := makeClient(t) + defer s1.Stop() + + c2, s2 := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) { + conf.Server = false + conf.Bootstrap = false + }) + defer s2.Stop() + + if err := c2.Agent().Join(s1.LANAddr, false); err != nil { + t.Fatalf("err: %v", err) + } + + // We sometimes see an EOF response to this one, depending on timing. + err := c2.Agent().Leave() + if err != nil && err != io.EOF { + t.Fatalf("err: %v", err) + } + + // Make sure the second agent's status is 'Left' + members, err := c1.Agent().Members(false) + if err != nil { + t.Fatalf("err: %v", err) + } + member := members[0] + if member.Name == s1.Config.NodeName { + member = members[1] + } + if member.Status != int(serf.StatusLeft) { + t.Fatalf("bad: %v", *member) + } +} + func TestAgent_ForceLeave(t *testing.T) { t.Parallel() c, s := makeClient(t) @@ -558,6 +645,29 @@ func TestAgent_ForceLeave(t *testing.T) { } } +func TestAgent_Monitor(t *testing.T) { + t.Parallel() + c, s := makeClient(t) + defer s.Stop() + + agent := c.Agent() + + logCh, err := agent.Monitor("info", nil, nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Wait for the first log message and validate it + select { + case log := <-logCh: + if !strings.Contains(log, "[INFO]") { + t.Fatalf("bad: %q", log) + } + case <-time.After(10 * time.Second): + t.Fatalf("failed to get a log message") + } +} + func TestServiceMaintenance(t *testing.T) { t.Parallel() c, s := makeClient(t) diff --git a/api/api.go b/api/api.go index dd811fde4b..9a59b724cb 100644 --- a/api/api.go +++ b/api/api.go @@ -20,6 +20,28 @@ import ( "github.com/hashicorp/go-cleanhttp" ) +const ( + // HTTPAddrEnvName defines an environment variable name which sets + // the HTTP address if there is no -http-addr specified. + HTTPAddrEnvName = "CONSUL_HTTP_ADDR" + + // HTTPTokenEnvName defines an environment variable name which sets + // the HTTP token. + HTTPTokenEnvName = "CONSUL_HTTP_TOKEN" + + // HTTPAuthEnvName defines an environment variable name which sets + // the HTTP authentication header. + HTTPAuthEnvName = "CONSUL_HTTP_AUTH" + + // HTTPSSLEnvName defines an environment variable name which sets + // whether or not to use HTTPS. + HTTPSSLEnvName = "CONSUL_HTTP_SSL" + + // HTTPSSLVerifyEnvName defines an environment variable name which sets + // whether or not to disable certificate checking. + HTTPSSLVerifyEnvName = "CONSUL_HTTP_SSL_VERIFY" +) + // QueryOptions are used to parameterize a query type QueryOptions struct { // Providing a datacenter overwrites the DC provided @@ -52,6 +74,11 @@ type QueryOptions struct { // that node. Setting this to "_agent" will use the agent's node // for the sort. Near string + + // NodeMeta is used to filter results by nodes with the given + // metadata key/value pairs. Currently, only one key/value pair can + // be provided for filtering. + NodeMeta map[string]string } // WriteOptions are used to parameterize a write @@ -181,15 +208,15 @@ func defaultConfig(transportFn func() *http.Transport) *Config { }, } - if addr := os.Getenv("CONSUL_HTTP_ADDR"); addr != "" { + if addr := os.Getenv(HTTPAddrEnvName); addr != "" { config.Address = addr } - if token := os.Getenv("CONSUL_HTTP_TOKEN"); token != "" { + if token := os.Getenv(HTTPTokenEnvName); token != "" { config.Token = token } - if auth := os.Getenv("CONSUL_HTTP_AUTH"); auth != "" { + if auth := os.Getenv(HTTPAuthEnvName); auth != "" { var username, password string if strings.Contains(auth, ":") { split := strings.SplitN(auth, ":", 2) @@ -205,10 +232,10 @@ func defaultConfig(transportFn func() *http.Transport) *Config { } } - if ssl := os.Getenv("CONSUL_HTTP_SSL"); ssl != "" { + if ssl := os.Getenv(HTTPSSLEnvName); ssl != "" { enabled, err := strconv.ParseBool(ssl) if err != nil { - log.Printf("[WARN] client: could not parse CONSUL_HTTP_SSL: %s", err) + log.Printf("[WARN] client: could not parse %s: %s", HTTPSSLEnvName, err) } if enabled { @@ -216,10 +243,10 @@ func defaultConfig(transportFn func() *http.Transport) *Config { } } - if verify := os.Getenv("CONSUL_HTTP_SSL_VERIFY"); verify != "" { + if verify := os.Getenv(HTTPSSLVerifyEnvName); verify != "" { doVerify, err := strconv.ParseBool(verify) if err != nil { - log.Printf("[WARN] client: could not parse CONSUL_HTTP_SSL_VERIFY: %s", err) + log.Printf("[WARN] client: could not parse %s: %s", HTTPSSLVerifyEnvName, err) } if !doVerify { @@ -364,6 +391,11 @@ func (r *request) setQueryOptions(q *QueryOptions) { if q.Near != "" { r.params.Set("near", q.Near) } + if len(q.NodeMeta) > 0 { + for key, value := range q.NodeMeta { + r.params.Add("node-meta", key+":"+value) + } + } } // durToMsec converts a duration to a millisecond specified string. If the diff --git a/api/api_test.go b/api/api_test.go index b00101bd31..f2f2b40e5a 100644 --- a/api/api_test.go +++ b/api/api_test.go @@ -76,16 +76,16 @@ func TestDefaultConfig_env(t *testing.T) { token := "abcd1234" auth := "username:password" - os.Setenv("CONSUL_HTTP_ADDR", addr) - defer os.Setenv("CONSUL_HTTP_ADDR", "") - os.Setenv("CONSUL_HTTP_TOKEN", token) - defer os.Setenv("CONSUL_HTTP_TOKEN", "") - os.Setenv("CONSUL_HTTP_AUTH", auth) - defer os.Setenv("CONSUL_HTTP_AUTH", "") - os.Setenv("CONSUL_HTTP_SSL", "1") - defer os.Setenv("CONSUL_HTTP_SSL", "") - os.Setenv("CONSUL_HTTP_SSL_VERIFY", "0") - defer os.Setenv("CONSUL_HTTP_SSL_VERIFY", "") + os.Setenv(HTTPAddrEnvName, addr) + defer os.Setenv(HTTPAddrEnvName, "") + os.Setenv(HTTPTokenEnvName, token) + defer os.Setenv(HTTPTokenEnvName, "") + os.Setenv(HTTPAuthEnvName, auth) + defer os.Setenv(HTTPAuthEnvName, "") + os.Setenv(HTTPSSLEnvName, "1") + defer os.Setenv(HTTPSSLEnvName, "") + os.Setenv(HTTPSSLVerifyEnvName, "0") + defer os.Setenv(HTTPSSLVerifyEnvName, "") for i, config := range []*Config{DefaultConfig(), DefaultNonPooledConfig()} { if config.Address != addr { diff --git a/api/catalog.go b/api/catalog.go index 337772ec0b..96226f11f8 100644 --- a/api/catalog.go +++ b/api/catalog.go @@ -1,21 +1,27 @@ package api type Node struct { + ID string Node string Address string TaggedAddresses map[string]string + Meta map[string]string } type CatalogService struct { + ID string Node string Address string TaggedAddresses map[string]string + NodeMeta map[string]string ServiceID string ServiceName string ServiceAddress string ServiceTags []string ServicePort int ServiceEnableTagOverride bool + CreateIndex uint64 + ModifyIndex uint64 } type CatalogNode struct { @@ -24,9 +30,11 @@ type CatalogNode struct { } type CatalogRegistration struct { + ID string Node string Address string TaggedAddresses map[string]string + NodeMeta map[string]string Datacenter string Service *AgentService Check *AgentCheck @@ -34,7 +42,7 @@ type CatalogRegistration struct { type CatalogDeregistration struct { Node string - Address string + Address string // Obsolete. Datacenter string ServiceID string CheckID string diff --git a/api/catalog_test.go b/api/catalog_test.go index 9ca8323047..ed70e38586 100644 --- a/api/catalog_test.go +++ b/api/catalog_test.go @@ -31,7 +31,6 @@ func TestCatalog_Datacenters(t *testing.T) { } func TestCatalog_Nodes(t *testing.T) { - t.Parallel() c, s := makeClient(t) defer s.Stop() @@ -52,6 +51,64 @@ func TestCatalog_Nodes(t *testing.T) { } if _, ok := nodes[0].TaggedAddresses["wan"]; !ok { + return false, fmt.Errorf("Bad: %v", nodes[0]) + } + + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) +} + +func TestCatalog_Nodes_MetaFilter(t *testing.T) { + meta := map[string]string{"somekey": "somevalue"} + c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) { + conf.NodeMeta = meta + }) + defer s.Stop() + + catalog := c.Catalog() + + // Make sure we get the node back when filtering by its metadata + testutil.WaitForResult(func() (bool, error) { + nodes, meta, err := catalog.Nodes(&QueryOptions{NodeMeta: meta}) + if err != nil { + return false, err + } + + if meta.LastIndex == 0 { + return false, fmt.Errorf("Bad: %v", meta) + } + + if len(nodes) == 0 { + return false, fmt.Errorf("Bad: %v", nodes) + } + + if _, ok := nodes[0].TaggedAddresses["wan"]; !ok { + return false, fmt.Errorf("Bad: %v", nodes[0]) + } + + if v, ok := nodes[0].Meta["somekey"]; !ok || v != "somevalue" { + return false, fmt.Errorf("Bad: %v", nodes[0].Meta) + } + + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) + + // Get nothing back when we use an invalid filter + testutil.WaitForResult(func() (bool, error) { + nodes, meta, err := catalog.Nodes(&QueryOptions{NodeMeta: map[string]string{"nope": "nope"}}) + if err != nil { + return false, err + } + + if meta.LastIndex == 0 { + return false, fmt.Errorf("Bad: %v", meta) + } + + if len(nodes) != 0 { return false, fmt.Errorf("Bad: %v", nodes) } @@ -88,6 +145,56 @@ func TestCatalog_Services(t *testing.T) { }) } +func TestCatalog_Services_NodeMetaFilter(t *testing.T) { + meta := map[string]string{"somekey": "somevalue"} + c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) { + conf.NodeMeta = meta + }) + defer s.Stop() + + catalog := c.Catalog() + + // Make sure we get the service back when filtering by the node's metadata + testutil.WaitForResult(func() (bool, error) { + services, meta, err := catalog.Services(&QueryOptions{NodeMeta: meta}) + if err != nil { + return false, err + } + + if meta.LastIndex == 0 { + return false, fmt.Errorf("Bad: %v", meta) + } + + if len(services) == 0 { + return false, fmt.Errorf("Bad: %v", services) + } + + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) + + // Get nothing back when using an invalid filter + testutil.WaitForResult(func() (bool, error) { + services, meta, err := catalog.Services(&QueryOptions{NodeMeta: map[string]string{"nope": "nope"}}) + if err != nil { + return false, err + } + + if meta.LastIndex == 0 { + return false, fmt.Errorf("Bad: %v", meta) + } + + if len(services) != 0 { + return false, fmt.Errorf("Bad: %v", services) + } + + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) +} + func TestCatalog_Service(t *testing.T) { t.Parallel() c, s := makeClient(t) @@ -115,6 +222,36 @@ func TestCatalog_Service(t *testing.T) { }) } +func TestCatalog_Service_NodeMetaFilter(t *testing.T) { + t.Parallel() + meta := map[string]string{"somekey": "somevalue"} + c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) { + conf.NodeMeta = meta + }) + defer s.Stop() + + catalog := c.Catalog() + + testutil.WaitForResult(func() (bool, error) { + services, meta, err := catalog.Service("consul", "", &QueryOptions{NodeMeta: meta}) + if err != nil { + return false, err + } + + if meta.LastIndex == 0 { + return false, fmt.Errorf("Bad: %v", meta) + } + + if len(services) == 0 { + return false, fmt.Errorf("Bad: %v", services) + } + + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) +} + func TestCatalog_Node(t *testing.T) { t.Parallel() c, s := makeClient(t) @@ -174,6 +311,7 @@ func TestCatalog_Registration(t *testing.T) { Datacenter: "dc1", Node: "foobar", Address: "192.168.10.10", + NodeMeta: map[string]string{"somekey": "somevalue"}, Service: service, Check: check, } @@ -201,6 +339,10 @@ func TestCatalog_Registration(t *testing.T) { return false, fmt.Errorf("missing checkid service:redis1") } + if v, ok := node.Node.Meta["somekey"]; !ok || v != "somevalue" { + return false, fmt.Errorf("missing node meta pair somekey:somevalue") + } + return true, nil }, func(err error) { t.Fatalf("err: %s", err) diff --git a/api/health.go b/api/health.go index 74da949c8d..8abe2393ad 100644 --- a/api/health.go +++ b/api/health.go @@ -2,6 +2,7 @@ package api import ( "fmt" + "strings" ) const ( @@ -11,6 +12,15 @@ const ( HealthPassing = "passing" HealthWarning = "warning" HealthCritical = "critical" + HealthMaint = "maintenance" +) + +const ( + // NodeMaint is the special key set by a node in maintenance mode. + NodeMaint = "_node_maintenance" + + // ServiceMaintPrefix is the prefix for a service in maintenance mode. + ServiceMaintPrefix = "_service_maintenance:" ) // HealthCheck is used to represent a single check @@ -25,11 +35,56 @@ type HealthCheck struct { ServiceName string } +// HealthChecks is a collection of HealthCheck structs. +type HealthChecks []*HealthCheck + +// AggregatedStatus returns the "best" status for the list of health checks. +// Because a given entry may have many service and node-level health checks +// attached, this function determines the best representative of the status as +// as single string using the following heuristic: +// +// maintenance > critical > warning > passing +// +func (c HealthChecks) AggregatedStatus() string { + var passing, warning, critical, maintenance bool + for _, check := range c { + id := string(check.CheckID) + if id == NodeMaint || strings.HasPrefix(id, ServiceMaintPrefix) { + maintenance = true + continue + } + + switch check.Status { + case HealthPassing: + passing = true + case HealthWarning: + warning = true + case HealthCritical: + critical = true + default: + return "" + } + } + + switch { + case maintenance: + return HealthMaint + case critical: + return HealthCritical + case warning: + return HealthWarning + case passing: + return HealthPassing + default: + return HealthPassing + } +} + // ServiceEntry is used for the health service endpoint type ServiceEntry struct { Node *Node Service *AgentService - Checks []*HealthCheck + Checks HealthChecks } // Health can be used to query the Health endpoints @@ -43,7 +98,7 @@ func (c *Client) Health() *Health { } // Node is used to query for checks belonging to a given node -func (h *Health) Node(node string, q *QueryOptions) ([]*HealthCheck, *QueryMeta, error) { +func (h *Health) Node(node string, q *QueryOptions) (HealthChecks, *QueryMeta, error) { r := h.c.newRequest("GET", "/v1/health/node/"+node) r.setQueryOptions(q) rtt, resp, err := requireOK(h.c.doRequest(r)) @@ -56,7 +111,7 @@ func (h *Health) Node(node string, q *QueryOptions) ([]*HealthCheck, *QueryMeta, parseQueryMeta(resp, qm) qm.RequestTime = rtt - var out []*HealthCheck + var out HealthChecks if err := decodeBody(resp, &out); err != nil { return nil, nil, err } @@ -64,7 +119,7 @@ func (h *Health) Node(node string, q *QueryOptions) ([]*HealthCheck, *QueryMeta, } // Checks is used to return the checks associated with a service -func (h *Health) Checks(service string, q *QueryOptions) ([]*HealthCheck, *QueryMeta, error) { +func (h *Health) Checks(service string, q *QueryOptions) (HealthChecks, *QueryMeta, error) { r := h.c.newRequest("GET", "/v1/health/checks/"+service) r.setQueryOptions(q) rtt, resp, err := requireOK(h.c.doRequest(r)) @@ -77,7 +132,7 @@ func (h *Health) Checks(service string, q *QueryOptions) ([]*HealthCheck, *Query parseQueryMeta(resp, qm) qm.RequestTime = rtt - var out []*HealthCheck + var out HealthChecks if err := decodeBody(resp, &out); err != nil { return nil, nil, err } @@ -115,7 +170,7 @@ func (h *Health) Service(service, tag string, passingOnly bool, q *QueryOptions) // State is used to retrieve all the checks in a given state. // The wildcard "any" state can also be used for all checks. -func (h *Health) State(state string, q *QueryOptions) ([]*HealthCheck, *QueryMeta, error) { +func (h *Health) State(state string, q *QueryOptions) (HealthChecks, *QueryMeta, error) { switch state { case HealthAny: case HealthWarning: @@ -136,7 +191,7 @@ func (h *Health) State(state string, q *QueryOptions) ([]*HealthCheck, *QueryMet parseQueryMeta(resp, qm) qm.RequestTime = rtt - var out []*HealthCheck + var out HealthChecks if err := decodeBody(resp, &out); err != nil { return nil, nil, err } diff --git a/api/health_test.go b/api/health_test.go index b6f463d563..4140a2811a 100644 --- a/api/health_test.go +++ b/api/health_test.go @@ -38,6 +38,139 @@ func TestHealth_Node(t *testing.T) { }) } +func TestHealthChecks_AggregatedStatus(t *testing.T) { + t.Parallel() + + cases := []struct { + name string + checks HealthChecks + exp string + }{ + { + "empty", + nil, + HealthPassing, + }, + { + "passing", + HealthChecks{ + &HealthCheck{ + Status: HealthPassing, + }, + }, + HealthPassing, + }, + { + "warning", + HealthChecks{ + &HealthCheck{ + Status: HealthWarning, + }, + }, + HealthWarning, + }, + { + "critical", + HealthChecks{ + &HealthCheck{ + Status: HealthCritical, + }, + }, + HealthCritical, + }, + { + "node_maintenance", + HealthChecks{ + &HealthCheck{ + CheckID: NodeMaint, + }, + }, + HealthMaint, + }, + { + "service_maintenance", + HealthChecks{ + &HealthCheck{ + CheckID: ServiceMaintPrefix + "service", + }, + }, + HealthMaint, + }, + { + "unknown", + HealthChecks{ + &HealthCheck{ + Status: "nope-nope-noper", + }, + }, + "", + }, + { + "maintenance_over_critical", + HealthChecks{ + &HealthCheck{ + CheckID: NodeMaint, + }, + &HealthCheck{ + Status: HealthCritical, + }, + }, + HealthMaint, + }, + { + "critical_over_warning", + HealthChecks{ + &HealthCheck{ + Status: HealthCritical, + }, + &HealthCheck{ + Status: HealthWarning, + }, + }, + HealthCritical, + }, + { + "warning_over_passing", + HealthChecks{ + &HealthCheck{ + Status: HealthWarning, + }, + &HealthCheck{ + Status: HealthPassing, + }, + }, + HealthWarning, + }, + { + "lots", + HealthChecks{ + &HealthCheck{ + Status: HealthPassing, + }, + &HealthCheck{ + Status: HealthPassing, + }, + &HealthCheck{ + Status: HealthPassing, + }, + &HealthCheck{ + Status: HealthWarning, + }, + }, + HealthWarning, + }, + } + + for i, tc := range cases { + t.Run(fmt.Sprintf("%d_%s", i, tc.name), func(t *testing.T) { + act := tc.checks.AggregatedStatus() + if tc.exp != act { + t.Errorf("\nexp: %#v\nact: %#v", tc.exp, act) + } + }) + } +} + func TestHealth_Checks(t *testing.T) { t.Parallel() c, s := makeClient(t) @@ -75,8 +208,47 @@ func TestHealth_Checks(t *testing.T) { }) } -func TestHealth_Service(t *testing.T) { +func TestHealth_Checks_NodeMetaFilter(t *testing.T) { t.Parallel() + meta := map[string]string{"somekey": "somevalue"} + c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) { + conf.NodeMeta = meta + }) + defer s.Stop() + + agent := c.Agent() + health := c.Health() + + // Make a service with a check + reg := &AgentServiceRegistration{ + Name: "foo", + Check: &AgentServiceCheck{ + TTL: "15s", + }, + } + if err := agent.ServiceRegister(reg); err != nil { + t.Fatalf("err: %v", err) + } + defer agent.ServiceDeregister("foo") + + testutil.WaitForResult(func() (bool, error) { + checks, meta, err := health.Checks("foo", &QueryOptions{NodeMeta: meta}) + if err != nil { + return false, err + } + if meta.LastIndex == 0 { + return false, fmt.Errorf("bad: %v", meta) + } + if len(checks) == 0 { + return false, fmt.Errorf("Bad: %v", checks) + } + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) +} + +func TestHealth_Service(t *testing.T) { c, s := makeClient(t) defer s.Stop() @@ -95,8 +267,38 @@ func TestHealth_Service(t *testing.T) { return false, fmt.Errorf("Bad: %v", checks) } if _, ok := checks[0].Node.TaggedAddresses["wan"]; !ok { + return false, fmt.Errorf("Bad: %v", checks[0].Node) + } + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) +} + +func TestHealth_Service_NodeMetaFilter(t *testing.T) { + meta := map[string]string{"somekey": "somevalue"} + c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) { + conf.NodeMeta = meta + }) + defer s.Stop() + + health := c.Health() + + testutil.WaitForResult(func() (bool, error) { + // consul service should always exist... + checks, meta, err := health.Service("consul", "", true, &QueryOptions{NodeMeta: meta}) + if err != nil { + return false, err + } + if meta.LastIndex == 0 { + return false, fmt.Errorf("bad: %v", meta) + } + if len(checks) == 0 { return false, fmt.Errorf("Bad: %v", checks) } + if _, ok := checks[0].Node.TaggedAddresses["wan"]; !ok { + return false, fmt.Errorf("Bad: %v", checks[0].Node) + } return true, nil }, func(err error) { t.Fatalf("err: %s", err) @@ -126,3 +328,30 @@ func TestHealth_State(t *testing.T) { t.Fatalf("err: %s", err) }) } + +func TestHealth_State_NodeMetaFilter(t *testing.T) { + t.Parallel() + meta := map[string]string{"somekey": "somevalue"} + c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) { + conf.NodeMeta = meta + }) + defer s.Stop() + + health := c.Health() + + testutil.WaitForResult(func() (bool, error) { + checks, meta, err := health.State("any", &QueryOptions{NodeMeta: meta}) + if err != nil { + return false, err + } + if meta.LastIndex == 0 { + return false, fmt.Errorf("bad: %v", meta) + } + if len(checks) == 0 { + return false, fmt.Errorf("Bad: %v", checks) + } + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) +} diff --git a/api/kv.go b/api/kv.go index 2b93fa8539..44e06bbb47 100644 --- a/api/kv.go +++ b/api/kv.go @@ -50,21 +50,21 @@ type KVOp string const ( KVSet KVOp = "set" - KVDelete = "delete" - KVDeleteCAS = "delete-cas" - KVDeleteTree = "delete-tree" - KVCAS = "cas" - KVLock = "lock" - KVUnlock = "unlock" - KVGet = "get" - KVGetTree = "get-tree" - KVCheckSession = "check-session" - KVCheckIndex = "check-index" + KVDelete KVOp = "delete" + KVDeleteCAS KVOp = "delete-cas" + KVDeleteTree KVOp = "delete-tree" + KVCAS KVOp = "cas" + KVLock KVOp = "lock" + KVUnlock KVOp = "unlock" + KVGet KVOp = "get" + KVGetTree KVOp = "get-tree" + KVCheckSession KVOp = "check-session" + KVCheckIndex KVOp = "check-index" ) // KVTxnOp defines a single operation inside a transaction. type KVTxnOp struct { - Verb string + Verb KVOp Key string Value []byte Flags uint64 @@ -92,7 +92,8 @@ func (c *Client) KV() *KV { return &KV{c} } -// Get is used to lookup a single key +// Get is used to lookup a single key. The returned pointer +// to the KVPair will be nil if the key does not exist. func (k *KV) Get(key string, q *QueryOptions) (*KVPair, *QueryMeta, error) { resp, qm, err := k.getInternal(key, nil, q) if err != nil { @@ -155,7 +156,7 @@ func (k *KV) Keys(prefix, separator string, q *QueryOptions) ([]string, *QueryMe } func (k *KV) getInternal(key string, params map[string]string, q *QueryOptions) (*http.Response, *QueryMeta, error) { - r := k.c.newRequest("GET", "/v1/kv/"+key) + r := k.c.newRequest("GET", "/v1/kv/"+strings.TrimPrefix(key, "/")) r.setQueryOptions(q) for param, val := range params { r.params.Set(param, val) @@ -276,7 +277,7 @@ func (k *KV) DeleteTree(prefix string, w *WriteOptions) (*WriteMeta, error) { } func (k *KV) deleteInternal(key string, params map[string]string, q *WriteOptions) (bool, *WriteMeta, error) { - r := k.c.newRequest("DELETE", "/v1/kv/"+key) + r := k.c.newRequest("DELETE", "/v1/kv/"+strings.TrimPrefix(key, "/")) r.setWriteOptions(q) for param, val := range params { r.params.Set(param, val) diff --git a/api/kv_test.go b/api/kv_test.go index bd9f2ef397..148bcc9866 100644 --- a/api/kv_test.go +++ b/api/kv_test.go @@ -244,6 +244,7 @@ func TestClient_WatchGet(t *testing.T) { // Put the key value := []byte("test") + doneCh := make(chan struct{}) go func() { kv := c.KV() @@ -252,6 +253,7 @@ func TestClient_WatchGet(t *testing.T) { if _, err := kv.Put(p, nil); err != nil { t.Fatalf("err: %v", err) } + doneCh <- struct{}{} }() // Get should work @@ -272,6 +274,9 @@ func TestClient_WatchGet(t *testing.T) { if meta2.LastIndex <= meta.LastIndex { t.Fatalf("unexpected value: %#v", meta2) } + + // Block until put finishes to avoid a race between it and deferred s.Stop() + <-doneCh } func TestClient_WatchList(t *testing.T) { @@ -297,6 +302,7 @@ func TestClient_WatchList(t *testing.T) { // Put the key value := []byte("test") + doneCh := make(chan struct{}) go func() { kv := c.KV() @@ -305,6 +311,7 @@ func TestClient_WatchList(t *testing.T) { if _, err := kv.Put(p, nil); err != nil { t.Fatalf("err: %v", err) } + doneCh <- struct{}{} }() // Get should work @@ -326,6 +333,8 @@ func TestClient_WatchList(t *testing.T) { t.Fatalf("unexpected value: %#v", meta2) } + // Block until put finishes to avoid a race between it and deferred s.Stop() + <-doneCh } func TestClient_Keys_DeleteRecurse(t *testing.T) { diff --git a/api/lock_test.go b/api/lock_test.go index 5cc74e19c3..f7c00f58e6 100644 --- a/api/lock_test.go +++ b/api/lock_test.go @@ -139,7 +139,7 @@ func TestLock_DeleteKey(t *testing.T) { // Should loose leadership select { case <-leaderCh: - case <-time.After(time.Second): + case <-time.After(10 * time.Second): t.Fatalf("should not be leader") } }() diff --git a/api/operator.go b/api/operator.go index 48d74f3ca6..a8d04a38eb 100644 --- a/api/operator.go +++ b/api/operator.go @@ -43,6 +43,26 @@ type RaftConfiguration struct { Index uint64 } +// keyringRequest is used for performing Keyring operations +type keyringRequest struct { + Key string +} + +// KeyringResponse is returned when listing the gossip encryption keys +type KeyringResponse struct { + // Whether this response is for a WAN ring + WAN bool + + // The datacenter name this request corresponds to + Datacenter string + + // A map of the encryption keys to the number of nodes they're installed on + Keys map[string]int + + // The total number of nodes in this ring + NumNodes int +} + // RaftGetConfiguration is used to query the current Raft peer set. func (op *Operator) RaftGetConfiguration(q *QueryOptions) (*RaftConfiguration, error) { r := op.c.newRequest("GET", "/v1/operator/raft/configuration") @@ -79,3 +99,65 @@ func (op *Operator) RaftRemovePeerByAddress(address string, q *WriteOptions) err resp.Body.Close() return nil } + +// KeyringInstall is used to install a new gossip encryption key into the cluster +func (op *Operator) KeyringInstall(key string, q *WriteOptions) error { + r := op.c.newRequest("POST", "/v1/operator/keyring") + r.setWriteOptions(q) + r.obj = keyringRequest{ + Key: key, + } + _, resp, err := requireOK(op.c.doRequest(r)) + if err != nil { + return err + } + resp.Body.Close() + return nil +} + +// KeyringList is used to list the gossip keys installed in the cluster +func (op *Operator) KeyringList(q *QueryOptions) ([]*KeyringResponse, error) { + r := op.c.newRequest("GET", "/v1/operator/keyring") + r.setQueryOptions(q) + _, resp, err := requireOK(op.c.doRequest(r)) + if err != nil { + return nil, err + } + defer resp.Body.Close() + + var out []*KeyringResponse + if err := decodeBody(resp, &out); err != nil { + return nil, err + } + return out, nil +} + +// KeyringRemove is used to remove a gossip encryption key from the cluster +func (op *Operator) KeyringRemove(key string, q *WriteOptions) error { + r := op.c.newRequest("DELETE", "/v1/operator/keyring") + r.setWriteOptions(q) + r.obj = keyringRequest{ + Key: key, + } + _, resp, err := requireOK(op.c.doRequest(r)) + if err != nil { + return err + } + resp.Body.Close() + return nil +} + +// KeyringUse is used to change the active gossip encryption key +func (op *Operator) KeyringUse(key string, q *WriteOptions) error { + r := op.c.newRequest("PUT", "/v1/operator/keyring") + r.setWriteOptions(q) + r.obj = keyringRequest{ + Key: key, + } + _, resp, err := requireOK(op.c.doRequest(r)) + if err != nil { + return err + } + resp.Body.Close() + return nil +} diff --git a/api/operator_test.go b/api/operator_test.go index f9d242b810..e55495e2e9 100644 --- a/api/operator_test.go +++ b/api/operator_test.go @@ -3,6 +3,8 @@ package api import ( "strings" "testing" + + "github.com/hashicorp/consul/testutil" ) func TestOperator_RaftGetConfiguration(t *testing.T) { @@ -36,3 +38,69 @@ func TestOperator_RaftRemovePeerByAddress(t *testing.T) { t.Fatalf("err: %v", err) } } + +func TestOperator_KeyringInstallListPutRemove(t *testing.T) { + oldKey := "d8wu8CSUrqgtjVsvcBPmhQ==" + newKey := "qxycTi/SsePj/TZzCBmNXw==" + t.Parallel() + c, s := makeClientWithConfig(t, nil, func(c *testutil.TestServerConfig) { + c.Encrypt = oldKey + }) + defer s.Stop() + + operator := c.Operator() + if err := operator.KeyringInstall(newKey, nil); err != nil { + t.Fatalf("err: %v", err) + } + + listResponses, err := operator.KeyringList(nil) + if err != nil { + t.Fatalf("err %v", err) + } + + // Make sure the new key is installed + if len(listResponses) != 2 { + t.Fatalf("bad: %v", len(listResponses)) + } + for _, response := range listResponses { + if len(response.Keys) != 2 { + t.Fatalf("bad: %v", len(response.Keys)) + } + if _, ok := response.Keys[oldKey]; !ok { + t.Fatalf("bad: %v", ok) + } + if _, ok := response.Keys[newKey]; !ok { + t.Fatalf("bad: %v", ok) + } + } + + // Switch the primary to the new key + if err := operator.KeyringUse(newKey, nil); err != nil { + t.Fatalf("err: %v", err) + } + + if err := operator.KeyringRemove(oldKey, nil); err != nil { + t.Fatalf("err: %v", err) + } + + listResponses, err = operator.KeyringList(nil) + if err != nil { + t.Fatalf("err %v", err) + } + + // Make sure the old key is removed + if len(listResponses) != 2 { + t.Fatalf("bad: %v", len(listResponses)) + } + for _, response := range listResponses { + if len(response.Keys) != 1 { + t.Fatalf("bad: %v", len(response.Keys)) + } + if _, ok := response.Keys[oldKey]; ok { + t.Fatalf("bad: %v", ok) + } + if _, ok := response.Keys[newKey]; !ok { + t.Fatalf("bad: %v", ok) + } + } +} diff --git a/api/prepared_query.go b/api/prepared_query.go index 63e741e050..ff210de3f0 100644 --- a/api/prepared_query.go +++ b/api/prepared_query.go @@ -43,6 +43,11 @@ type ServiceQuery struct { // this list it must be present. If the tag is preceded with "!" then // it is disallowed. Tags []string + + // NodeMeta is a map of required node metadata fields. If a key/value + // pair is in this map it must be present on the node in order for the + // service entry to be returned. + NodeMeta map[string]string } // QueryTemplate carries the arguments for creating a templated query. @@ -167,19 +172,18 @@ func (c *PreparedQuery) Get(queryID string, q *QueryOptions) ([]*PreparedQueryDe } // Delete is used to delete a specific prepared query. -func (c *PreparedQuery) Delete(queryID string, q *QueryOptions) (*QueryMeta, error) { +func (c *PreparedQuery) Delete(queryID string, q *WriteOptions) (*WriteMeta, error) { r := c.c.newRequest("DELETE", "/v1/query/"+queryID) - r.setQueryOptions(q) + r.setWriteOptions(q) rtt, resp, err := requireOK(c.c.doRequest(r)) if err != nil { return nil, err } defer resp.Body.Close() - qm := &QueryMeta{} - parseQueryMeta(resp, qm) - qm.RequestTime = rtt - return qm, nil + wm := &WriteMeta{} + wm.RequestTime = rtt + return wm, nil } // Execute is used to execute a specific prepared query. You can execute using diff --git a/api/prepared_query_test.go b/api/prepared_query_test.go index d16f007c9d..667e1dea38 100644 --- a/api/prepared_query_test.go +++ b/api/prepared_query_test.go @@ -20,6 +20,7 @@ func TestPreparedQuery(t *testing.T) { TaggedAddresses: map[string]string{ "wan": "127.0.0.1", }, + NodeMeta: map[string]string{"somekey": "somevalue"}, Service: &AgentService{ ID: "redis1", Service: "redis", @@ -45,8 +46,10 @@ func TestPreparedQuery(t *testing.T) { // Create a simple prepared query. def := &PreparedQueryDefinition{ + Name: "test", Service: ServiceQuery{ - Service: "redis", + Service: "redis", + NodeMeta: map[string]string{"somekey": "somevalue"}, }, } diff --git a/api/snapshot.go b/api/snapshot.go new file mode 100644 index 0000000000..e902377dd5 --- /dev/null +++ b/api/snapshot.go @@ -0,0 +1,47 @@ +package api + +import ( + "io" +) + +// Snapshot can be used to query the /v1/snapshot endpoint to take snapshots of +// Consul's internal state and restore snapshots for disaster recovery. +type Snapshot struct { + c *Client +} + +// Snapshot returns a handle that exposes the snapshot endpoints. +func (c *Client) Snapshot() *Snapshot { + return &Snapshot{c} +} + +// Save requests a new snapshot and provides an io.ReadCloser with the snapshot +// data to save. If this doesn't return an error, then it's the responsibility +// of the caller to close it. Only a subset of the QueryOptions are supported: +// Datacenter, AllowStale, and Token. +func (s *Snapshot) Save(q *QueryOptions) (io.ReadCloser, *QueryMeta, error) { + r := s.c.newRequest("GET", "/v1/snapshot") + r.setQueryOptions(q) + + rtt, resp, err := requireOK(s.c.doRequest(r)) + if err != nil { + return nil, nil, err + } + + qm := &QueryMeta{} + parseQueryMeta(resp, qm) + qm.RequestTime = rtt + return resp.Body, qm, nil +} + +// Restore streams in an existing snapshot and attempts to restore it. +func (s *Snapshot) Restore(q *WriteOptions, in io.Reader) error { + r := s.c.newRequest("PUT", "/v1/snapshot") + r.body = in + r.setWriteOptions(q) + _, _, err := requireOK(s.c.doRequest(r)) + if err != nil { + return err + } + return nil +} diff --git a/api/snapshot_test.go b/api/snapshot_test.go new file mode 100644 index 0000000000..7d639f8916 --- /dev/null +++ b/api/snapshot_test.go @@ -0,0 +1,134 @@ +package api + +import ( + "bytes" + "strings" + "testing" +) + +func TestSnapshot(t *testing.T) { + t.Parallel() + c, s := makeClient(t) + defer s.Stop() + + // Place an initial key into the store. + kv := c.KV() + key := &KVPair{Key: testKey(), Value: []byte("hello")} + if _, err := kv.Put(key, nil); err != nil { + t.Fatalf("err: %v", err) + } + + // Make sure it reads back. + pair, _, err := kv.Get(key.Key, nil) + if err != nil { + t.Fatalf("err: %v", err) + } + if pair == nil { + t.Fatalf("expected value: %#v", pair) + } + if !bytes.Equal(pair.Value, []byte("hello")) { + t.Fatalf("unexpected value: %#v", pair) + } + + // Take a snapshot. + snapshot := c.Snapshot() + snap, qm, err := snapshot.Save(nil) + if err != nil { + t.Fatalf("err: %v", err) + } + defer snap.Close() + + // Sanity check th query metadata. + if qm.LastIndex == 0 || !qm.KnownLeader || + qm.RequestTime == 0 { + t.Fatalf("bad: %v", qm) + } + + // Overwrite the key's value. + key.Value = []byte("goodbye") + if _, err := kv.Put(key, nil); err != nil { + t.Fatalf("err: %v", err) + } + + // Read the key back and look for the new value. + pair, _, err = kv.Get(key.Key, nil) + if err != nil { + t.Fatalf("err: %v", err) + } + if pair == nil { + t.Fatalf("expected value: %#v", pair) + } + if !bytes.Equal(pair.Value, []byte("goodbye")) { + t.Fatalf("unexpected value: %#v", pair) + } + + // Restore the snapshot. + if err := snapshot.Restore(nil, snap); err != nil { + t.Fatalf("err: %v", err) + } + + // Read the key back and look for the original value. + pair, _, err = kv.Get(key.Key, nil) + if err != nil { + t.Fatalf("err: %v", err) + } + if pair == nil { + t.Fatalf("expected value: %#v", pair) + } + if !bytes.Equal(pair.Value, []byte("hello")) { + t.Fatalf("unexpected value: %#v", pair) + } +} + +func TestSnapshot_Options(t *testing.T) { + t.Parallel() + c, s := makeACLClient(t) + defer s.Stop() + + // Try to take a snapshot with a bad token. + snapshot := c.Snapshot() + _, _, err := snapshot.Save(&QueryOptions{Token: "anonymous"}) + if err == nil || !strings.Contains(err.Error(), "Permission denied") { + t.Fatalf("err: %v", err) + } + + // Now try an unknown DC. + _, _, err = snapshot.Save(&QueryOptions{Datacenter: "nope"}) + if err == nil || !strings.Contains(err.Error(), "No path to datacenter") { + t.Fatalf("err: %v", err) + } + + // This should work with a valid token. + snap, _, err := snapshot.Save(&QueryOptions{Token: "root"}) + if err != nil { + t.Fatalf("err: %v", err) + } + defer snap.Close() + + // This should work with a stale snapshot. This doesn't have good feedback + // that the stale option was sent, but it makes sure nothing bad happens. + snap, _, err = snapshot.Save(&QueryOptions{Token: "root", AllowStale: true}) + if err != nil { + t.Fatalf("err: %v", err) + } + defer snap.Close() + + // Try to restore a snapshot with a bad token. + null := bytes.NewReader([]byte("")) + err = snapshot.Restore(&WriteOptions{Token: "anonymous"}, null) + if err == nil || !strings.Contains(err.Error(), "Permission denied") { + t.Fatalf("err: %v", err) + } + + // Now try an unknown DC. + null = bytes.NewReader([]byte("")) + err = snapshot.Restore(&WriteOptions{Datacenter: "nope"}, null) + if err == nil || !strings.Contains(err.Error(), "No path to datacenter") { + t.Fatalf("err: %v", err) + } + + // This should work. + if err := snapshot.Restore(&WriteOptions{Token: "root"}, snap); err != nil { + t.Fatalf("err: %v", err) + } +} diff --git a/bench/Makefile b/bench/Makefile index e766e77044..7d3d5bf9e8 100644 --- a/bench/Makefile +++ b/bench/Makefile @@ -1,4 +1,4 @@ -REQ=20480 +REQ=262144 CLIENTS=64 ADDR=http://127.0.0.1:8500/v1/kv/bench DATA="74a31e96-1d0f-4fa7-aa14-7212a326986e" diff --git a/bench/README.md b/bench/README.md index b26b85ee4b..c1eb71f607 100644 --- a/bench/README.md +++ b/bench/README.md @@ -1,13 +1,14 @@ Consul Benchmark ================ -This repo contains the Packer automation necessary for the Consul benchmarks. +This repo contains the automation necessary for the Consul benchmarks. There is a single main Packer file `bench.json`. To use it, the variables -for `do_client_id` and `do_api_key` must be provided. There correspond to -your DigitalOcean client id and API key. +for `do_client_id` and `do_api_key` must be provided. These correspond to +your DigitalOcean client ID and API key. When Packer runs, it will generate 3 images: + * bench-bootstrap - Consul server in bootstrap mode * bench-server - Consul server * bench-worker - Worker node diff --git a/bench/bench.json b/bench/bench.json index d2c2d3c2ec..cac46c8d0a 100644 --- a/bench/bench.json +++ b/bench/bench.json @@ -1,86 +1,81 @@ { - "variables": { - "do_client_id": "", - "do_api_key": "" - }, - "builders": [ - { - "type": "digitalocean", - "api_key": "{{ user `do_api_key` }}", - "client_id": "{{ user `do_client_id` }}", - "region_id": "1", - "size_id": "66", - "image_id": "3101045", - "snapshot_name": "bench-bootstrap-{{ isotime }}", - "name": "bootstrap" + "variables": { + "do_size": "16gb", + "do_image": "ubuntu-14-04-x64", + "do_region": "nyc3" + }, + "builders": [ + { + "type": "digitalocean", + "region": "{{ user `do_region` }}", + "size": "{{ user `do_size` }}", + "image": "{{ user `do_image` }}", + "snapshot_name": "bench-bootstrap-{{ isotime }}", + "name": "bootstrap" }, { - "type": "digitalocean", - "api_key": "{{ user `do_api_key` }}", - "client_id": "{{ user `do_client_id` }}", - "region_id": "1", - "size_id": "66", - "image_id": "3101045", - "snapshot_name": "bench-server-{{ isotime }}", - "name": "server" + "type": "digitalocean", + "region": "{{ user `do_region` }}", + "size": "{{ user `do_size` }}", + "image": "{{ user `do_image` }}", + "snapshot_name": "bench-server-{{ isotime }}", + "name": "server" }, { - "type": "digitalocean", - "api_key": "{{ user `do_api_key` }}", - "client_id": "{{ user `do_client_id` }}", - "region_id": "1", - "size_id": "66", - "image_id": "3101045", - "snapshot_name": "bench-worker-{{ isotime }}", - "name": "worker" + "type": "digitalocean", + "region": "{{ user `do_region` }}", + "size": "{{ user `do_size` }}", + "image": "{{ user `do_image` }}", + "snapshot_name": "bench-worker-{{ isotime }}", + "name": "worker" } - ], - "provisioners":[ + ], + "provisioners":[ { - "type": "file", - "source": "conf/upstart.conf", - "destination": "/etc/init/consul.conf" + "type": "file", + "source": "conf/upstart.conf", + "destination": "/etc/init/consul.conf" }, { - "type": "shell", - "inline": [ - "mkdir /etc/consul.d", - "apt-get update", - "apt-get install unzip make", - "wget https://releases.hashicorp.com/consul/0.5.2/consul_0.5.2_linux_amd64.zip", - "unzip 0.5.2_linux_amd64.zip", - "mv consul /usr/local/bin/consul", - "chmod +x /usr/local/bin/consul" - ] + "type": "shell", + "inline": [ + "mkdir /etc/consul.d", + "apt-get update", + "apt-get install -y unzip make", + "wget https://releases.hashicorp.com/consul/0.7.1/consul_0.7.1_linux_amd64.zip", + "unzip consul_*_linux_amd64.zip", + "mv consul /usr/local/bin/consul", + "chmod +x /usr/local/bin/consul" + ] }, { - "type": "file", - "source": "conf/common.json", - "destination": "/etc/consul.d/common.json" + "type": "file", + "source": "conf/common.json", + "destination": "/etc/consul.d/common.json" }, { - "type": "file", - "source": "conf/bootstrap.json", - "destination": "/etc/consul.d/bootstrap.json", - "only": ["bootstrap"] + "type": "file", + "source": "conf/bootstrap.json", + "destination": "/etc/consul.d/bootstrap.json", + "only": ["bootstrap"] }, { - "type": "file", - "source": "conf/server.json", - "destination": "/etc/consul.d/server.json", - "only": ["server"] + "type": "file", + "source": "conf/server.json", + "destination": "/etc/consul.d/server.json", + "only": ["server"] }, { - "type": "shell", - "inline": [ - "curl https://s3.amazonaws.com/hc-ops/boom_linux_amd64 -o /usr/local/bin/boom", - "chmod +x /usr/local/bin/boom" - ] + "type": "shell", + "inline": [ + "curl https://s3.amazonaws.com/hc-ops/boom_linux_amd64 -o /usr/local/bin/boom", + "chmod +x /usr/local/bin/boom" + ] }, { - "type": "file", - "source": "Makefile", - "destination": "/Makefile" + "type": "file", + "source": "Makefile", + "destination": "/Makefile" } - ] + ] } diff --git a/bench/results-0.7.1.md b/bench/results-0.7.1.md new file mode 100644 index 0000000000..2f60609db3 --- /dev/null +++ b/bench/results-0.7.1.md @@ -0,0 +1,223 @@ +# Consul Benchmark Results + +As part of a benchmark, we started a 4 node DigitalOcean cluster to benchmark. +There are 3 servers, meaning writes must commit to at least 2 servers. +The cluster uses the 16GB DigitalOcean droplet which has the following specs: + + * 8 CPU Cores, 2Ghz + * 16GB RAM + * 160GB SSD disk + * 1Gbps NIC + +# Output + +Below is the output for a test run on a benchmark cluster. We ran the benchmark +several times to warm up the nodes, and this is just a single representative sample. + +Note, that a single worker was running the benchmark. This means the "stale" test +is not representative of total throughput, as the client was only routing to a +single server. + +We also did an initial run where we got lots of noise in the results, so we +increased the number of requests to try to get a better sample. + +``` +===== PUT test ===== +GOMAXPROCS=4 boom -m PUT -d "74a31e96-1d0f-4fa7-aa14-7212a326986e" -n 262144 -c 64 http://127.0.0.1:8500/v1/kv/bench +262144 / 262144 Booooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo! 100.00 % + +Summary: + Total: 69.3512 secs. + Slowest: 0.0966 secs. + Fastest: 0.0026 secs. + Average: 0.0169 secs. + Requests/sec: 3779.9491 + Total Data Received: 1048576 bytes. + Response Size per Request: 4 bytes. + +Status code distribution: + [200] 262144 responses + +Response time histogram: + 0.003 [1] | + 0.012 [66586] |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎ + 0.021 [146064] |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎ + 0.031 [34189] |∎∎∎∎∎∎∎∎∎ + 0.040 [9178] |∎∎ + 0.050 [3682] |∎ + 0.059 [1773] | + 0.068 [464] | + 0.078 [124] | + 0.087 [63] | + 0.097 [20] | + +Latency distribution: + 10% in 0.0095 secs. + 25% in 0.0119 secs. + 50% in 0.0151 secs. + 75% in 0.0195 secs. + 90% in 0.0260 secs. + 95% in 0.0323 secs. + 99% in 0.0489 secs. + +===== GET default test ===== +GOMAXPROCS=4 boom -n 262144 -c 64 http://127.0.0.1:8500/v1/kv/bench +262144 / 262144 Booooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo! 100.00 % + +Summary: + Total: 34.8371 secs. + Slowest: 0.9568 secs. + Fastest: 0.0014 secs. + Average: 0.0085 secs. + Requests/sec: 7524.8570 + Total Data Received: 36175872 bytes. + Response Size per Request: 138 bytes. + +Status code distribution: + [200] 262144 responses + +Response time histogram: + 0.001 [1] | + 0.097 [261977] |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎ + 0.192 [38] | + 0.288 [64] | + 0.384 [0] | + 0.479 [0] | + 0.575 [0] | + 0.670 [0] | + 0.766 [0] | + 0.861 [38] | + 0.957 [26] | + +Latency distribution: + 10% in 0.0044 secs. + 25% in 0.0055 secs. + 50% in 0.0072 secs. + 75% in 0.0098 secs. + 90% in 0.0130 secs. + 95% in 0.0157 secs. + 99% in 0.0228 secs. + +===== GET stale test ===== +GOMAXPROCS=4 boom -n 262144 -c 64 http://127.0.0.1:8500/v1/kv/bench?stale +262144 / 262144 Booooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo! 100.00 % + +Summary: + Total: 26.8200 secs. + Slowest: 0.0838 secs. + Fastest: 0.0005 secs. + Average: 0.0065 secs. + Requests/sec: 9774.1922 + Total Data Received: 36175872 bytes. + Response Size per Request: 138 bytes. + +Status code distribution: + [200] 262144 responses + +Response time histogram: + 0.001 [1] | + 0.009 [214210] |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎ + 0.017 [42999] |∎∎∎∎∎∎∎∎ + 0.026 [3709] | + 0.034 [589] | + 0.042 [313] | + 0.050 [166] | + 0.059 [102] | + 0.067 [42] | + 0.075 [11] | + 0.084 [2] | + +Latency distribution: + 10% in 0.0031 secs. + 25% in 0.0041 secs. + 50% in 0.0056 secs. + 75% in 0.0079 secs. + 90% in 0.0109 secs. + 95% in 0.0134 secs. + 99% in 0.0203 secs. + +===== GET consistent test ===== +GOMAXPROCS=4 boom -n 262144 -c 64 http://127.0.0.1:8500/v1/kv/bench?consistent +262144 / 262144 Booooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo! 100.00 % + +Summary: + Total: 35.6962 secs. + Slowest: 0.0826 secs. + Fastest: 0.0016 secs. + Average: 0.0087 secs. + Requests/sec: 7343.7475 + Total Data Received: 36175872 bytes. + Response Size per Request: 138 bytes. + +Status code distribution: + [200] 262144 responses + +Response time histogram: + 0.002 [1] | + 0.010 [183123] |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎ + 0.018 [70460] |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎ + 0.026 [6955] |∎ + 0.034 [657] | + 0.042 [391] | + 0.050 [229] | + 0.058 [120] | + 0.066 [121] | + 0.074 [68] | + 0.083 [19] | + +Latency distribution: + 10% in 0.0047 secs. + 25% in 0.0059 secs. + 50% in 0.0077 secs. + 75% in 0.0104 secs. + 90% in 0.0137 secs. + 95% in 0.0162 secs. + 99% in 0.0227 secs. +``` + +# Profile + +In order to probe performance a bit, we ran the get-stale benchmark on the +leader itself and collected pprof data. Here's the output of the benchmark: + +``` +===== GET stale test ===== +GOMAXPROCS=4 boom -n 262144 -c 64 http://127.0.0.1:8500/v1/kv/bench?stale +262144 / 262144 Booooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo! 100.00 % + +Summary: + Total: 16.3139 secs. + Slowest: 0.0815 secs. + Fastest: 0.0001 secs. + Average: 0.0040 secs. + Requests/sec: 16068.7946 + Total Data Received: 36175872 bytes. + Response Size per Request: 138 bytes. + +Status code distribution: + [200] 262144 responses + +Response time histogram: + 0.000 [1] | + 0.008 [240221] |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎ + 0.016 [18761] |∎∎∎ + 0.025 [1937] | + 0.033 [496] | + 0.041 [293] | + 0.049 [131] | + 0.057 [162] | + 0.065 [127] | + 0.073 [10] | + 0.081 [5] | + +Latency distribution: + 10% in 0.0013 secs. + 25% in 0.0019 secs. + 50% in 0.0030 secs. + 75% in 0.0046 secs. + 90% in 0.0074 secs. + 95% in 0.0109 secs. + 99% in 0.0174 secs. +``` + +And here's the [resulting flame graph](results-0.7.1.svg). diff --git a/bench/results-0.7.1.svg b/bench/results-0.7.1.svg new file mode 100644 index 0000000000..bf2478cae8 --- /dev/null +++ b/bench/results-0.7.1.svg @@ -0,0 +1,8395 @@ + + + + + + + + + + + + + +Flame Graph + +Reset Zoom +Search + + +github.com/hashicorp/consul/command/agent.setMeta (62 samples, 2.61%) +gi.. + + +runtime.systemstack (2 samples, 0.08%) + + + +runtime.slicebytetostring (2 samples, 0.08%) + + + +runtime.gosweepone (21 samples, 0.89%) + + + +runtime.casgstatus (3 samples, 0.13%) + + + +runtime.memclr (1 samples, 0.04%) + + + +runtime.heapBitsForObject (1 samples, 0.04%) + + + +github.com/hashicorp/consul/command/agent.(*HTTPServer).parse (97 samples, 4.09%) +gith.. + + +sync.(*RWMutex).RUnlock (1 samples, 0.04%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime.memeqbody (1 samples, 0.04%) + + + +runtime.mapassign1 (27 samples, 1.14%) + + + +runtime.newobject (6 samples, 0.25%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +net/url.QueryUnescape (1 samples, 0.04%) + + + +runtime.growslice (3 samples, 0.13%) + + + +runtime/internal/atomic.Store (1 samples, 0.04%) + + + +runtime.scanobject (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree.func1 (2 samples, 0.08%) + + + +encoding/json.isEmptyValue (2 samples, 0.08%) + + + +github.com/hashicorp/consul/command/agent.parseConsistency (18 samples, 0.76%) + + + +net/textproto.trim (2 samples, 0.08%) + + + +runtime.systemstack (4 samples, 0.17%) + + + +runtime/internal/atomic.Or8 (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.gcAssistAlloc (48 samples, 2.02%) +r.. + + +runtime.markroot (10 samples, 0.42%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*Metrics).MeasureSince (2 samples, 0.08%) + + + +runtime.typedmemmove (1 samples, 0.04%) + + + +runtime.mallocgc (8 samples, 0.34%) + + + +runtime.(*mcache).nextFree (6 samples, 0.25%) + + + +runtime.injectglist (7 samples, 0.30%) + + + +runtime.newobject (5 samples, 0.21%) + + + +runtime.stringtoslicebyte (4 samples, 0.17%) + + + +runtime.systemstack (2 samples, 0.08%) + + + +runtime.mapdelete (2 samples, 0.08%) + + + +sync.(*Pool).pin (3 samples, 0.13%) + + + +runtime.gcAssistAlloc.func1 (2 samples, 0.08%) + + + +runtime.casgstatus (1 samples, 0.04%) + + + +sync.(*RWMutex).Unlock (4 samples, 0.17%) + + + +runtime.newarray (4 samples, 0.17%) + + + +runtime.mapaccess2_faststr (1 samples, 0.04%) + + + +runtime.updatememstats (1 samples, 0.04%) + + + +runtime.mapassign1 (5 samples, 0.21%) + + + +github.com/hashicorp/consul/command/agent.parseWait (22 samples, 0.93%) + + + +runtime.(*mspan).refillAllocCache (1 samples, 0.04%) + + + +net/http.HandlerFunc.ServeHTTP (1,071 samples, 45.15%) +net/http.HandlerFunc.ServeHTTP + + +runtime.(*mcache).nextFree (1 samples, 0.04%) + + + +runtime.gcDrain (2 samples, 0.08%) + + + +sync.(*RWMutex).RLock (1 samples, 0.04%) + + + +syscall.write (2 samples, 0.08%) + + + +runtime.writebarrierptr (10 samples, 0.42%) + + + +runtime.heapBitsSetType (1 samples, 0.04%) + + + +reflect.typedmemmove (1 samples, 0.04%) + + + +net/rpc.(*Server).readRequestHeader (29 samples, 1.22%) + + + +sync/atomic.AddUint32 (2 samples, 0.08%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.mallocgc (12 samples, 0.51%) + + + +context.WithCancel (26 samples, 1.10%) + + + +net/textproto.(*Reader).readLineSlice (5 samples, 0.21%) + + + +runtime.typedmemmove (1 samples, 0.04%) + + + +runtime.newstack (11 samples, 0.46%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree (4 samples, 0.17%) + + + +runtime.shade (1 samples, 0.04%) + + + +syscall.Syscall (2 samples, 0.08%) + + + +net/url.unescape (1 samples, 0.04%) + + + +runtime.pcvalue (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.(*netPipeline).AppendEntries (2 samples, 0.08%) + + + +github.com/hashicorp/consul/consul.(*inmemCodec).WriteResponse (8 samples, 0.34%) + + + +github.com/hashicorp/consul/vendor/github.com/miekg/dns.(*Server).readUDP (1 samples, 0.04%) + + + +net.(*pollDesc).prepareWrite (2 samples, 0.08%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime.memeqbody (3 samples, 0.13%) + + + +runtime.(*mSpanList).remove (1 samples, 0.04%) + + + +reflect.(*rtype).common (2 samples, 0.08%) + + + +runtime.futexsleep (5 samples, 0.21%) + + + +runtime.concatstrings (2 samples, 0.08%) + + + +net/http.(*response).Write (51 samples, 2.15%) +n.. + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/logutils.(*LevelFilter).Check (8 samples, 0.34%) + + + +time.Time.Truncate (2 samples, 0.08%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree (1 samples, 0.04%) + + + +runtime.shade (1 samples, 0.04%) + + + +runtime.gcAssistAlloc.func1 (1 samples, 0.04%) + + + +runtime.(*mcache).refill (4 samples, 0.17%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.unlock (1 samples, 0.04%) + + + +runtime.gcBgMarkWorker (156 samples, 6.58%) +runtime... + + +runtime.deferproc.func1 (1 samples, 0.04%) + + + +runtime.mallocgc (4 samples, 0.17%) + + + +net/url.unescape (3 samples, 0.13%) + + + +runtime.mProf_Malloc (1 samples, 0.04%) + + + +runtime.rawstring (9 samples, 0.38%) + + + +runtime.gcAssistAlloc.func1 (1 samples, 0.04%) + + + +bufio.(*Reader).Peek (2 samples, 0.08%) + + + +runtime.growslice (9 samples, 0.38%) + + + +runtime.gcAssistAlloc (3 samples, 0.13%) + + + +runtime.growslice (1 samples, 0.04%) + + + +runtime._System (99 samples, 4.17%) +runt.. + + +runtime.systemstack (2 samples, 0.08%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +runtime.flushallmcaches (2 samples, 0.08%) + + + +net/url.(*URL).Query (16 samples, 0.67%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.newobject (2 samples, 0.08%) + + + +runtime.shade (1 samples, 0.04%) + + + +runtime.freedefer (1 samples, 0.04%) + + + +runtime.(*mspan).sweep (1 samples, 0.04%) + + + +net.(*UDPConn).writeTo (1 samples, 0.04%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +strings.Replace (3 samples, 0.13%) + + + +runtime.typedmemmove (2 samples, 0.08%) + + + +runtime.typedmemmove (11 samples, 0.46%) + + + +runtime.pcvalue (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime.scanobject (1 samples, 0.04%) + + + +runtime.mallocgc (3 samples, 0.13%) + + + +sync/atomic.AddUint32 (3 samples, 0.13%) + + + +runtime.(*mheap).reclaim (1 samples, 0.04%) + + + +runtime.lock (1 samples, 0.04%) + + + +net/http.(*response).bodyAllowed (1 samples, 0.04%) + + + +runtime.freedefer (1 samples, 0.04%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +sync.runtime_procPin (1 samples, 0.04%) + + + +runtime.memclr (1 samples, 0.04%) + + + +context.propagateCancel (10 samples, 0.42%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*Decoder).decode (1 samples, 0.04%) + + + +runtime.mapassign1 (15 samples, 0.63%) + + + +time.fmtInt (1 samples, 0.04%) + + + +runtime.rawstring (3 samples, 0.13%) + + + +runtime.(*mcache).nextFree.func1 (1 samples, 0.04%) + + + +runtime.gcAssistAlloc.func1 (5 samples, 0.21%) + + + +net/url.(*URL).Query (20 samples, 0.84%) + + + +net/http.(*conn).hijacked (12 samples, 0.51%) + + + +runtime.pcvalue (1 samples, 0.04%) + + + +runtime.futex (1 samples, 0.04%) + + + +net/http.(*response).write (48 samples, 2.02%) +n.. + + +github.com/hashicorp/consul/command/agent.(*Agent).RPC (347 samples, 14.63%) +github.com/hashicorp/c.. + + +sync/atomic.CompareAndSwapUint32 (1 samples, 0.04%) + + + +runtime.memmove (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*Metrics).IncrCounter (45 samples, 1.90%) +g.. + + +runtime.aeshashbody (2 samples, 0.08%) + + + +runtime.newobject (3 samples, 0.13%) + + + +runtime.mallocgc (10 samples, 0.42%) + + + +runtime.slicebytetostring (2 samples, 0.08%) + + + +runtime.mapiterinit (3 samples, 0.13%) + + + +runtime.memhash128 (2 samples, 0.08%) + + + +runtime.interequal (3 samples, 0.13%) + + + +runtime.mallocgc (2 samples, 0.08%) + + + +runtime.mallocgc (4 samples, 0.17%) + + + +net/textproto.CanonicalMIMEHeaderKey (2 samples, 0.08%) + + + +net/url.ParseQuery (22 samples, 0.93%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +runtime.newobject (4 samples, 0.17%) + + + +runtime.typedmemmove (2 samples, 0.08%) + + + +net/http.(*chunkWriter).Write (90 samples, 3.79%) +net/.. + + +runtime.readmemstats_m (1 samples, 0.04%) + + + +runtime.freedefer (1 samples, 0.04%) + + + +runtime.(*mspan).nextFreeIndex (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.(*raftState).goFunc.func1 (2 samples, 0.08%) + + + +runtime.stringiter2 (5 samples, 0.21%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +fmt.(*pp).doPrintf (32 samples, 1.35%) + + + +runtime.rawstring (56 samples, 2.36%) +r.. + + +time.Now (1 samples, 0.04%) + + + +runtime.slicebytetostring (7 samples, 0.30%) + + + +runtime.(*mheap).alloc_m (1 samples, 0.04%) + + + +net/textproto.MIMEHeader.Set (8 samples, 0.34%) + + + +runtime.(*mcentral).grow (4 samples, 0.17%) + + + +net.(*pollDesc).wait (6 samples, 0.25%) + + + +runtime.rawstringtmp (5 samples, 0.21%) + + + +net/http.(*ServeMux).handler (108 samples, 4.55%) +net/h.. + + +runtime.gcMarkTermination.func1 (1 samples, 0.04%) + + + +reflect.directlyAssignable (3 samples, 0.13%) + + + +net/url.QueryUnescape (2 samples, 0.08%) + + + +runtime.(*mcache).nextFree.func1 (3 samples, 0.13%) + + + +net/http.(*transferReader).fixTransferEncoding (4 samples, 0.17%) + + + +net/http.readRequest (333 samples, 14.04%) +net/http.readRequest + + +runtime.gcAssistAlloc.func1 (1 samples, 0.04%) + + + +runtime.deferreturn.func1 (2 samples, 0.08%) + + + +fmt.glob..func1 (3 samples, 0.13%) + + + +runtime.systemstack (71 samples, 2.99%) +ru.. + + +runtime.gosweepone.func1 (1 samples, 0.04%) + + + +syscall.Write (208 samples, 8.77%) +syscall.Write + + +runtime.handoff (1 samples, 0.04%) + + + +runtime.makeslice (11 samples, 0.46%) + + + +net/url.(*URL).Query (37 samples, 1.56%) + + + +sync.(*Mutex).Unlock (1 samples, 0.04%) + + + +runtime.growslice (8 samples, 0.34%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.memmove (1 samples, 0.04%) + + + +runtime.(*mcache).refill (1 samples, 0.04%) + + + +bufio.(*Reader).ReadLine (93 samples, 3.92%) +bufi.. + + +runtime.deferreturn (2 samples, 0.08%) + + + +runtime.gopreempt_m (7 samples, 0.30%) + + + +runtime.mapaccess2_faststr (1 samples, 0.04%) + + + +runtime.scanblock (1 samples, 0.04%) + + + +runtime.deferproc (1 samples, 0.04%) + + + +runtime.scanframeworker (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree.func1 (4 samples, 0.17%) + + + +runtime.gcMarkDone (1 samples, 0.04%) + + + +runtime.memmove (1 samples, 0.04%) + + + +runtime.(*mcentral).grow (1 samples, 0.04%) + + + +runtime.heapBitsBulkBarrier (1 samples, 0.04%) + + + +runtime.makechan (7 samples, 0.30%) + + + +runtime.newarray (7 samples, 0.30%) + + + +runtime.mapaccess2_faststr (6 samples, 0.25%) + + + +runtime.assertI2T2 (2 samples, 0.08%) + + + +runtime.gcMarkTermination (1 samples, 0.04%) + + + +strconv.AppendUint (2 samples, 0.08%) + + + +runtime.morestack (11 samples, 0.46%) + + + +runtime.mallocgc (3 samples, 0.13%) + + + +runtime.gcDrainN (1 samples, 0.04%) + + + +runtime.systemstack (46 samples, 1.94%) +r.. + + +runtime.stopm (3 samples, 0.13%) + + + +runtime.markroot.func1 (71 samples, 2.99%) +ru.. + + +runtime.gcMark (1 samples, 0.04%) + + + +context.(*cancelCtx).Done (3 samples, 0.13%) + + + +net.(*conn).Read (87 samples, 3.67%) +net... + + +runtime.deferreturn.func1 (1 samples, 0.04%) + + + +encoding/json.(*encodeState).reflectValue (83 samples, 3.50%) +enc.. + + +runtime.systemstack (2 samples, 0.08%) + + + +io/ioutil.(*nopCloser).Close (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +runtime.(*gcWork).balance (1 samples, 0.04%) + + + +net/url.parse (29 samples, 1.22%) + + + +runtime/internal/atomic.Or8 (1 samples, 0.04%) + + + +bufio.(*Writer).Write (3 samples, 0.13%) + + + +runtime.deferreturn (3 samples, 0.13%) + + + +runtime.mallocgc (3 samples, 0.13%) + + + +time.div (1 samples, 0.04%) + + + +runtime.(*_type).typeOff (5 samples, 0.21%) + + + +runtime.heapBitsBulkBarrier (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).(github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.probe)-fm (1 samples, 0.04%) + + + +runtime.makemap (7 samples, 0.30%) + + + +runtime.deferproc (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.(*Raft).startStopReplication.func1 (2 samples, 0.08%) + + + +runtime.startm (1 samples, 0.04%) + + + +runtime.scanblock (15 samples, 0.63%) + + + +runtime.gcAssistAlloc.func1 (3 samples, 0.13%) + + + +runtime.gentraceback (1 samples, 0.04%) + + + +encoding/json.(*arrayEncoder).encode (64 samples, 2.70%) +en.. + + +runtime.deferreturn.func1 (1 samples, 0.04%) + + + +runtime.scanobject (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).mergeRemoteState (1 samples, 0.04%) + + + +runtime.scanobject (3 samples, 0.13%) + + + +runtime.(*mcache).nextFree (4 samples, 0.17%) + + + +time.now (2 samples, 0.08%) + + + +runtime.rawstringtmp (1 samples, 0.04%) + + + +runtime.memclr (1 samples, 0.04%) + + + +runtime.retake (1 samples, 0.04%) + + + +reflect.Value.Interface (1 samples, 0.04%) + + + +time.div (2 samples, 0.08%) + + + +sync.(*RWMutex).RUnlock (2 samples, 0.08%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +time.now (1 samples, 0.04%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).probe (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.mallocgc (7 samples, 0.30%) + + + +runtime/internal/atomic.Or8 (2 samples, 0.08%) + + + +runtime.mallocgc (5 samples, 0.21%) + + + +runtime.systemstack (2 samples, 0.08%) + + + +runtime.newobject (3 samples, 0.13%) + + + +runtime.futex (6 samples, 0.25%) + + + +runtime.mallocgc (7 samples, 0.30%) + + + +runtime.closechan (2 samples, 0.08%) + + + +runtime.tracebackdefers (1 samples, 0.04%) + + + +runtime.stackcache_clear (1 samples, 0.04%) + + + +runtime.gcUnlockStackBarriers (1 samples, 0.04%) + + + +runtime.gcDrainN (2 samples, 0.08%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +net.runtime_pollWait (6 samples, 0.25%) + + + +runtime.memclr (1 samples, 0.04%) + + + +runtime.convT2E (16 samples, 0.67%) + + + +reflect.(*rtype).typeOff (5 samples, 0.21%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime.stringiter2 (3 samples, 0.13%) + + + +syscall.Write (2 samples, 0.08%) + + + +sync.(*Pool).Get (4 samples, 0.17%) + + + +runtime.gcAssistAlloc.func1 (3 samples, 0.13%) + + + +runtime.casgstatus (4 samples, 0.17%) + + + +runtime.send (1 samples, 0.04%) + + + +runtime.mapiternext (4 samples, 0.17%) + + + +runtime.(*mcache).refill (2 samples, 0.08%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.scanobject (1 samples, 0.04%) + + + +runtime.(*mspan).nextFreeIndex (1 samples, 0.04%) + + + +runtime.mallocgc (5 samples, 0.21%) + + + +runtime.heapBitsSetType (2 samples, 0.08%) + + + +runtime.mapaccess1_faststr (2 samples, 0.08%) + + + +bufio.(*Reader).ReadSlice (3 samples, 0.13%) + + + +strconv.formatBits (5 samples, 0.21%) + + + +runtime.heapBitsSetType (1 samples, 0.04%) + + + +runtime.heapBitsSetType (2 samples, 0.08%) + + + +runtime.getcallersp (1 samples, 0.04%) + + + +runtime.assertE2I2 (4 samples, 0.17%) + + + +runtime.mapiternext (57 samples, 2.40%) +ru.. + + +runtime.mallocgc (5 samples, 0.21%) + + + +runtime/internal/atomic.Xchg (1 samples, 0.04%) + + + +runtime.newobject (1 samples, 0.04%) + + + +runtime.typedmemmove (2 samples, 0.08%) + + + +runtime.getcallerpc (1 samples, 0.04%) + + + +runtime.typedslicecopy (2 samples, 0.08%) + + + +runtime.newdefer (2 samples, 0.08%) + + + +runtime.typedmemmove (1 samples, 0.04%) + + + +encoding/json.(*sliceEncoder).(encoding/json.encode)-fm (69 samples, 2.91%) +en.. + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.gcDrainN (1 samples, 0.04%) + + + +runtime.mstart (10 samples, 0.42%) + + + +runtime.gosweepone.func1 (20 samples, 0.84%) + + + +runtime.scanobject (2 samples, 0.08%) + + + +runtime.shade (1 samples, 0.04%) + + + +runtime.scanobject (1 samples, 0.04%) + + + +runtime.sysmon (10 samples, 0.42%) + + + +runtime.(*mcentral).cacheSpan (2 samples, 0.08%) + + + +strings.Replace (4 samples, 0.17%) + + + +bufio.(*Reader).ReadLine (4 samples, 0.17%) + + + +runtime.concatstrings (6 samples, 0.25%) + + + +runtime.heapBitsSetType (1 samples, 0.04%) + + + +runtime.futex (1 samples, 0.04%) + + + +runtime.(*mcentral).grow (3 samples, 0.13%) + + + +runtime.greyobject (1 samples, 0.04%) + + + +runtime.newarray (8 samples, 0.34%) + + + +runtime.deferproc.func1 (3 samples, 0.13%) + + + +runtime.makemap (2 samples, 0.08%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +reflect.Value.Type (2 samples, 0.08%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +runtime.(*mheap).reclaim (1 samples, 0.04%) + + + +runtime.unlock (1 samples, 0.04%) + + + +runtime.systemstack (6 samples, 0.25%) + + + +runtime.pcvalue (1 samples, 0.04%) + + + +runtime.aeshashbody (2 samples, 0.08%) + + + +syscall.Syscall6 (1 samples, 0.04%) + + + +runtime.notewakeup (1 samples, 0.04%) + + + +net/url.escape (3 samples, 0.13%) + + + +net.(*netFD).Read (86 samples, 3.63%) +net... + + +runtime.scanstack.func1 (1 samples, 0.04%) + + + +runtime.(*mheap).alloc_m (1 samples, 0.04%) + + + +runtime.mallocgc (2 samples, 0.08%) + + + +runtime.heapBitsSetType (2 samples, 0.08%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*Txn).First (18 samples, 0.76%) + + + +runtime.heapBitsSetType (1 samples, 0.04%) + + + +sync.(*Pool).pin (4 samples, 0.17%) + + + +runtime.runqput (2 samples, 0.08%) + + + +runtime/internal/atomic.Or8 (1 samples, 0.04%) + + + +runtime.startm (1 samples, 0.04%) + + + +runtime.(*mcentral).cacheSpan (1 samples, 0.04%) + + + +runtime/internal/atomic.Xchg (2 samples, 0.08%) + + + +runtime.(*mcache).nextFree.func1 (1 samples, 0.04%) + + + +runtime.rawstringtmp (1 samples, 0.04%) + + + +runtime.duffcopy (1 samples, 0.04%) + + + +runtime.gentraceback (61 samples, 2.57%) +ru.. + + +bufio.(*Reader).ReadByte (2 samples, 0.08%) + + + +runtime.systemstack (2 samples, 0.08%) + + + +runtime.gcAssistAlloc.func1 (2 samples, 0.08%) + + + +syscall.sendto (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*Txn).First (73 samples, 3.08%) +git.. + + +sync.(*RWMutex).RUnlock (1 samples, 0.04%) + + + +runtime.gcDrainN (1 samples, 0.04%) + + + +runtime.gcTryRemoveAllStackBarriers (1 samples, 0.04%) + + + +runtime.fastrand1 (2 samples, 0.08%) + + + +runtime.newMarkBits (2 samples, 0.08%) + + + +runtime.callers (1 samples, 0.04%) + + + +runtime.checkdead (1 samples, 0.04%) + + + +syscall.Read (61 samples, 2.57%) +sy.. + + +runtime.deferproc (1 samples, 0.04%) + + + +runtime/internal/atomic.Xadd64 (1 samples, 0.04%) + + + +encoding/json.(*arrayEncoder).(encoding/json.encode)-fm (64 samples, 2.70%) +en.. + + +runtime.typedmemmove (2 samples, 0.08%) + + + +runtime.futex (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.scanstack (1 samples, 0.04%) + + + +reflect.typedmemmove (2 samples, 0.08%) + + + +runtime.reentersyscall (4 samples, 0.17%) + + + +runtime.findrunnable (50 samples, 2.11%) +r.. + + +runtime.shade (1 samples, 0.04%) + + + +runtime.memmove (1 samples, 0.04%) + + + +net/url.QueryUnescape (3 samples, 0.13%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*Decoder).Decode (1 samples, 0.04%) + + + +runtime.newobject (3 samples, 0.13%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +net/http.(*conn).hijacked (2 samples, 0.08%) + + + +runtime.futexwakeup (1 samples, 0.04%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime.slicebytetostring (6 samples, 0.25%) + + + +runtime.gentraceback (1 samples, 0.04%) + + + +net/http.(*response).WriteHeader (42 samples, 1.77%) + + + +runtime.mallocgc (3 samples, 0.13%) + + + +runtime.gcAssistAlloc (2 samples, 0.08%) + + + +runtime.(*mspan).sweep (1 samples, 0.04%) + + + +runtime.deductSweepCredit (1 samples, 0.04%) + + + +runtime.memclr (1 samples, 0.04%) + + + +runtime.futex (5 samples, 0.21%) + + + +runtime.(*mcache).nextFree (1 samples, 0.04%) + + + +runtime.markroot (1 samples, 0.04%) + + + +runtime.newobject (2 samples, 0.08%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime/internal/atomic.Store (1 samples, 0.04%) + + + +net.(*conn).Read (2 samples, 0.08%) + + + +runtime.gcDrain (2 samples, 0.08%) + + + +runtime.newobject (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).rawSendMsgUDP (1 samples, 0.04%) + + + +runtime.deferreturn (7 samples, 0.30%) + + + +runtime.goschedImpl (6 samples, 0.25%) + + + +runtime.(*gcWork).init (1 samples, 0.04%) + + + +runtime.(*mspan).sweep (1 samples, 0.04%) + + + +runtime.scanstack.func1 (1 samples, 0.04%) + + + +runtime.lock (1 samples, 0.04%) + + + +runtime.scanstack (2 samples, 0.08%) + + + +runtime.procyield (1 samples, 0.04%) + + + +runtime.memmove (1 samples, 0.04%) + + + +runtime.step (1 samples, 0.04%) + + + +runtime.stringiter2 (1 samples, 0.04%) + + + +runtime.deferreturn (1 samples, 0.04%) + + + +runtime.(*mcentral).uncacheSpan (1 samples, 0.04%) + + + +runtime.mallocgc (7 samples, 0.30%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Node).Get (4 samples, 0.17%) + + + +sync.(*RWMutex).RUnlock (1 samples, 0.04%) + + + +runtime.rawstringtmp (56 samples, 2.36%) +r.. + + +sync.(*RWMutex).RLock (4 samples, 0.17%) + + + +runtime.funcspdelta (1 samples, 0.04%) + + + +fmt.(*fmt).fmt_s (3 samples, 0.13%) + + + +runtime.heapBitsForObject (1 samples, 0.04%) + + + +runtime.casgstatus (3 samples, 0.13%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +github.com/hashicorp/consul/consul.(*KVS).Get (199 samples, 8.39%) +github.com/.. + + +runtime.newobject (1 samples, 0.04%) + + + +runtime.newobject (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*Decoder).decodeValue (1 samples, 0.04%) + + + +encoding/json.(*ptrEncoder).(encoding/json.encode)-fm (59 samples, 2.49%) +en.. + + +runtime.mProf_GC (2 samples, 0.08%) + + + +runtime.futexsleep (1 samples, 0.04%) + + + +runtime.newarray (4 samples, 0.17%) + + + +github.com/hashicorp/consul/consul/state.(*StateStore).kvsGetTxn (110 samples, 4.64%) +githu.. + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +runtime.adjustframe (2 samples, 0.08%) + + + +runtime.gcDrainN (3 samples, 0.13%) + + + +runtime.lock (1 samples, 0.04%) + + + +runtime.newarray (7 samples, 0.30%) + + + +sync.(*Pool).pin (2 samples, 0.08%) + + + +sync.(*Pool).Get (8 samples, 0.34%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Txn).Get (4 samples, 0.17%) + + + +runtime.unlock (1 samples, 0.04%) + + + +runtime.aeshashbody (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree (1 samples, 0.04%) + + + +runtime.casgstatus (1 samples, 0.04%) + + + +runtime.lock (1 samples, 0.04%) + + + +runtime.growslice (12 samples, 0.51%) + + + +runtime.(*mcache).nextFree (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime.(*mspan).sweep (1 samples, 0.04%) + + + +runtime.newobject (3 samples, 0.13%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +reflect.Value.Bytes (5 samples, 0.21%) + + + +time.Time.date (2 samples, 0.08%) + + + +runtime.lock (1 samples, 0.04%) + + + +net.(*netFD).readUnlock (2 samples, 0.08%) + + + +runtime.growslice (4 samples, 0.17%) + + + +runtime.gcstopm (3 samples, 0.13%) + + + +runtime.scanobject (1 samples, 0.04%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime.scanframeworker (1 samples, 0.04%) + + + +runtime.memmove (1 samples, 0.04%) + + + +runtime.scanobject (1 samples, 0.04%) + + + +runtime.sweepone (1 samples, 0.04%) + + + +runtime.gchelper (1 samples, 0.04%) + + + +bytes.Equal (1 samples, 0.04%) + + + +reflect.packEface (1 samples, 0.04%) + + + +runtime.mapaccess1_faststr (6 samples, 0.25%) + + + +runtime.scanobject (2 samples, 0.08%) + + + +runtime/internal/atomic.Cas (1 samples, 0.04%) + + + +runtime.systemstack (2 samples, 0.08%) + + + +runtime.slicebytetostring (2 samples, 0.08%) + + + +runtime.greyobject (1 samples, 0.04%) + + + +runtime.gcAssistAlloc.func1 (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).sendMsg (1 samples, 0.04%) + + + +runtime/internal/atomic.Xchg (1 samples, 0.04%) + + + +runtime.(*mspan).nextFreeIndex (1 samples, 0.04%) + + + +runtime.mapaccess1_faststr (1 samples, 0.04%) + + + +runtime.mapiternext (3 samples, 0.13%) + + + +runtime.heapBitsForObject (1 samples, 0.04%) + + + +runtime.mallocgc (3 samples, 0.13%) + + + +net.(*TCPConn).Write (1 samples, 0.04%) + + + +time.Duration.String (6 samples, 0.25%) + + + +runtime.slicebytetostring (11 samples, 0.46%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).handleConn (1 samples, 0.04%) + + + +github.com/hashicorp/consul/consul.(*Server).RPC (346 samples, 14.59%) +github.com/hashicorp/c.. + + +runtime/internal/atomic.Cas64 (1 samples, 0.04%) + + + +runtime.lock (1 samples, 0.04%) + + + +github.com/hashicorp/consul/consul.(*KVS).Get.func1 (135 samples, 5.69%) +github... + + +runtime.gcDrainN (2 samples, 0.08%) + + + +runtime.(*mcache).nextFree (2 samples, 0.08%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +net/http.Header.WriteSubset (45 samples, 1.90%) +n.. + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.mallocgc (3 samples, 0.13%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/serf/serf.(*delegate).MergeRemoteState (1 samples, 0.04%) + + + +net/http.Header.clone (40 samples, 1.69%) + + + +runtime.(*mcache).nextFree (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1.func1 (6 samples, 0.25%) + + + +net/http.newTextprotoReader (5 samples, 0.21%) + + + +net/url.(*URL).Query (26 samples, 1.10%) + + + +runtime.mapaccess1_faststr (5 samples, 0.21%) + + + +encoding/json.fieldByIndex (7 samples, 0.30%) + + + +runtime.newobject (1 samples, 0.04%) + + + +runtime.scanobject (2 samples, 0.08%) + + + +sync/atomic.AddUint32 (1 samples, 0.04%) + + + +runtime.slicebytetostring (3 samples, 0.13%) + + + +net/http.(*response).shouldReuseConnection (1 samples, 0.04%) + + + +encoding/base64.(*Encoding).Encode (4 samples, 0.17%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.scanstack.func1 (37 samples, 1.56%) + + + +runtime.(*gcWork).balance (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree.func1 (1 samples, 0.04%) + + + +runtime.newMarkBits (2 samples, 0.08%) + + + +runtime.heapBitsForObject (3 samples, 0.13%) + + + +runtime.mallocgc (4 samples, 0.17%) + + + +runtime.rawstring (2 samples, 0.08%) + + + +runtime.netpollinited (1 samples, 0.04%) + + + +reflect.Value.Elem (1 samples, 0.04%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +runtime.concatstring2 (8 samples, 0.34%) + + + +runtime.markroot.func1 (8 samples, 0.34%) + + + +sync.runtime_Semacquire (3 samples, 0.13%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime.interhash (2 samples, 0.08%) + + + +runtime.gcDrainN (3 samples, 0.13%) + + + +runtime.mapassign1 (5 samples, 0.21%) + + + +runtime.ifaceeq (1 samples, 0.04%) + + + +strings.Count (1 samples, 0.04%) + + + +runtime.notewakeup (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree (1 samples, 0.04%) + + + +runtime.typedmemmove (3 samples, 0.13%) + + + +reflect.Value.assignTo (1 samples, 0.04%) + + + +net/url.parseQuery (31 samples, 1.31%) + + + +runtime.deferproc (2 samples, 0.08%) + + + +runtime.systemstack (6 samples, 0.25%) + + + +runtime.mapassign1 (10 samples, 0.42%) + + + +reflect.(*rtype).Align (2 samples, 0.08%) + + + +runtime.(*gcWork).dispose (1 samples, 0.04%) + + + +bufio.(*Writer).flush (2 samples, 0.08%) + + + +reflect.Value.Len (1 samples, 0.04%) + + + +github.com/hashicorp/consul/command/agent.setHeaders (1 samples, 0.04%) + + + +syscall.read (60 samples, 2.53%) +sy.. + + +net/url.ParseQuery (26 samples, 1.10%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +net/url.(*URL).Query (27 samples, 1.14%) + + + +runtime.futexsleep (1 samples, 0.04%) + + + +reflect.flag.mustBe (1 samples, 0.04%) + + + +reflect.Value.Set (4 samples, 0.17%) + + + +net/rpc.(*Server).getRequest (14 samples, 0.59%) + + + +runtime.scanobject (1 samples, 0.04%) + + + +github.com/hashicorp/consul/consul.(*Server).resolveToken (1 samples, 0.04%) + + + +runtime/internal/atomic.Xchg (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.scanobject (3 samples, 0.13%) + + + +github.com/hashicorp/consul/consul.(*Server).blockingRPC (193 samples, 8.14%) +github.com/.. + + +net/http.readTransfer (20 samples, 0.84%) + + + +runtime.mapaccess2_fast64 (3 samples, 0.13%) + + + +runtime.gcAssistAlloc (2 samples, 0.08%) + + + +runtime.deferreturn (1 samples, 0.04%) + + + +runtime.pcdatavalue (1 samples, 0.04%) + + + +runtime.scanobject (1 samples, 0.04%) + + + +runtime.rawstring (2 samples, 0.08%) + + + +strings.IndexAny (3 samples, 0.13%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*ioDecReader).readn1 (2 samples, 0.08%) + + + +runtime.lock (2 samples, 0.08%) + + + +runtime.notewakeup (6 samples, 0.25%) + + + +runtime.(*mheap).alloc.func1 (1 samples, 0.04%) + + + +runtime.mapaccess2_faststr (2 samples, 0.08%) + + + +runtime.memmove (1 samples, 0.04%) + + + +runtime.slicebytetostring (2 samples, 0.08%) + + + +runtime.memclr (2 samples, 0.08%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.scanobject (1 samples, 0.04%) + + + +runtime.systemstack (2 samples, 0.08%) + + + +runtime.funcdata (1 samples, 0.04%) + + + +runtime.duffzero (1 samples, 0.04%) + + + +runtime.shade (1 samples, 0.04%) + + + +runtime.bgsweep (21 samples, 0.89%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +runtime.gcDrainN (46 samples, 1.94%) +r.. + + +github.com/hashicorp/consul/command/agent.(*HTTPServer).KVSEndpoint (589 samples, 24.83%) +github.com/hashicorp/consul/command/age.. + + +bufio.(*Writer).flush (324 samples, 13.66%) +bufio.(*Writer).flush + + +runtime.(*mcentral).grow (2 samples, 0.08%) + + + +runtime.heapBitsSetType (1 samples, 0.04%) + + + +runtime.gcmarknewobject (1 samples, 0.04%) + + + +runtime.mapaccess1 (5 samples, 0.21%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Node).getEdge (2 samples, 0.08%) + + + +runtime.netpoll (1 samples, 0.04%) + + + +net/http.(*ServeMux).ServeHTTP (1,189 samples, 50.13%) +net/http.(*ServeMux).ServeHTTP + + +runtime.duffcopy (11 samples, 0.46%) + + + +runtime.greyobject (1 samples, 0.04%) + + + +runtime.step (1 samples, 0.04%) + + + +runtime.mapassign1 (13 samples, 0.55%) + + + +runtime.gcMarkTermination (6 samples, 0.25%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*Metrics).collectStats (1 samples, 0.04%) + + + +github.com/hashicorp/consul/command/agent.(*HTTPServer).wrap.func1 (999 samples, 42.12%) +github.com/hashicorp/consul/command/agent.(*HTTPServer).wrap.func1 + + +runtime.heapBitsSetType (1 samples, 0.04%) + + + +runtime.mallocgc (12 samples, 0.51%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).gossip (3 samples, 0.13%) + + + +runtime.deferreturn.func1 (2 samples, 0.08%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +runtime.duffzero (1 samples, 0.04%) + + + +runtime.shade (1 samples, 0.04%) + + + +runtime.newobject (1 samples, 0.04%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +sync.(*Mutex).Lock (3 samples, 0.13%) + + + +runtime.(*mheap).alloc_m (1 samples, 0.04%) + + + +runtime.gcAssistAlloc (2 samples, 0.08%) + + + +runtime.(*mcache).releaseAll (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +net/http.(*chunkWriter).close (2 samples, 0.08%) + + + +context.removeChild (8 samples, 0.34%) + + + +runtime.fastrand1 (2 samples, 0.08%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*Txn).Abort (1 samples, 0.04%) + + + +net/textproto.MIMEHeader.Get (2 samples, 0.08%) + + + +runtime.stopm (3 samples, 0.13%) + + + +runtime.handoffp (1 samples, 0.04%) + + + +runtime.memmove (1 samples, 0.04%) + + + +net.(*conn).Write (2 samples, 0.08%) + + + +net/url.ParseQuery (27 samples, 1.14%) + + + +runtime.mapassign1 (7 samples, 0.30%) + + + +runtime.makemap (4 samples, 0.17%) + + + +runtime.heapBitsSetType (1 samples, 0.04%) + + + +runtime.gchelper (1 samples, 0.04%) + + + +runtime.(*mcentral).cacheSpan (2 samples, 0.08%) + + + +runtime.timerproc (1 samples, 0.04%) + + + +github.com/hashicorp/consul/consul/structs.(*KeyRequest).IsRead (1 samples, 0.04%) + + + +reflect.Value.Index (2 samples, 0.08%) + + + +runtime.duffzero (1 samples, 0.04%) + + + +runtime.greyobject (9 samples, 0.38%) + + + +net.(*netFD).writeTo (1 samples, 0.04%) + + + +runtime.newMarkBits (1 samples, 0.04%) + + + +runtime.resetspinning (2 samples, 0.08%) + + + +fmt.Sprintf (48 samples, 2.02%) +f.. + + +time.Time.date (2 samples, 0.08%) + + + +runtime.gentraceback (1 samples, 0.04%) + + + +runtime.injectglist (1 samples, 0.04%) + + + +runtime.mallocgc (13 samples, 0.55%) + + + +github.com/hashicorp/consul/consul/state.maxIndexTxn (84 samples, 3.54%) +git.. + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime.aeshashbody (2 samples, 0.08%) + + + +strings.Index (2 samples, 0.08%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.sendRPC (2 samples, 0.08%) + + + +net/url.QueryUnescape (1 samples, 0.04%) + + + +runtime.mallocgc (3 samples, 0.13%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +net/textproto.TrimString (2 samples, 0.08%) + + + +sync.runtime_procPin (1 samples, 0.04%) + + + +runtime.freespecial (1 samples, 0.04%) + + + +net/http.extraHeader.Write (4 samples, 0.17%) + + + +runtime.mallocgc (2 samples, 0.08%) + + + +runtime.(*mcache).refill (3 samples, 0.13%) + + + +runtime.mallocgc (4 samples, 0.17%) + + + +net/url.unescape (2 samples, 0.08%) + + + +runtime.casgstatus (2 samples, 0.08%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +runtime.scanobject (67 samples, 2.82%) +ru.. + + +runtime/internal/atomic.Or8 (1 samples, 0.04%) + + + +runtime.stringiter2 (3 samples, 0.13%) + + + +runtime.lock (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime/internal/atomic.Or8 (2 samples, 0.08%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).getExistingInterval (6 samples, 0.25%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +sync.(*Mutex).Lock (6 samples, 0.25%) + + + +runtime.trygetfull (1 samples, 0.04%) + + + +runtime.gcstopm (1 samples, 0.04%) + + + +runtime.gcAssistAlloc (2 samples, 0.08%) + + + +runtime.newobject (2 samples, 0.08%) + + + +runtime.deferproc (7 samples, 0.30%) + + + +runtime.deferreturn (1 samples, 0.04%) + + + +runtime.markroot.func1 (1 samples, 0.04%) + + + +runtime.duffcopy (2 samples, 0.08%) + + + +sync.(*Pool).Put (4 samples, 0.17%) + + + +runtime.goready.func1 (1 samples, 0.04%) + + + +net/url.ParseQuery (31 samples, 1.31%) + + + +runtime.heapBitsSetType (2 samples, 0.08%) + + + +sync.(*Mutex).Lock (1 samples, 0.04%) + + + +runtime.rawstringtmp (3 samples, 0.13%) + + + +vendor/golang_org/x/net/lex/httplex.ValidHeaderFieldName (9 samples, 0.38%) + + + +runtime.goparkunlock (2 samples, 0.08%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*MemDB).getRoot (3 samples, 0.13%) + + + +net.(*netFD).Read (2 samples, 0.08%) + + + +runtime.markBits.setMarked (1 samples, 0.04%) + + + +runtime.deferproc (1 samples, 0.04%) + + + +runtime.stopm (1 samples, 0.04%) + + + +runtime.scanstack (1 samples, 0.04%) + + + +net/http.Header.Set (11 samples, 0.46%) + + + +runtime.pcdatavalue (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*Txn).getIndexValue (47 samples, 1.98%) +g.. + + +runtime.mallocgc (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +encoding/json.(*sliceEncoder).encode (66 samples, 2.78%) +en.. + + +runtime.shade (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +runtime.rawstringtmp (10 samples, 0.42%) + + + +encoding/json.(*structEncoder).encode (56 samples, 2.36%) +e.. + + +runtime.systemstack (1 samples, 0.04%) + + + +sync.(*Mutex).Unlock (1 samples, 0.04%) + + + +runtime.(*mheap).alloc.func1 (2 samples, 0.08%) + + + +runtime.newobject (3 samples, 0.13%) + + + +net/http.Header.Get (2 samples, 0.08%) + + + +runtime/internal/atomic.Load (1 samples, 0.04%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +runtime.scanblock (6 samples, 0.25%) + + + +go.(*struct (5 samples, 0.21%) + + + +runtime.deferreturn (2 samples, 0.08%) + + + +time.Time.Date (2 samples, 0.08%) + + + +runtime.systemstack (5 samples, 0.21%) + + + +runtime/internal/atomic.Or8 (1 samples, 0.04%) + + + +runtime.deferproc (4 samples, 0.17%) + + + +runtime.(*mcentral).grow (1 samples, 0.04%) + + + +runtime.mallocgc (8 samples, 0.34%) + + + +runtime.(*waitq).dequeue (2 samples, 0.08%) + + + +path.Clean (5 samples, 0.21%) + + + +runtime.gcDrainN (1 samples, 0.04%) + + + +runtime.gentraceback (1 samples, 0.04%) + + + +runtime.(*mspan).nextFreeIndex (1 samples, 0.04%) + + + +runtime.systemstack (2 samples, 0.08%) + + + +syscall.read (2 samples, 0.08%) + + + +github.com/hashicorp/consul/command/agent.NewDNSServer.func1 (1 samples, 0.04%) + + + +runtime.heapBitsSetType (2 samples, 0.08%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.systemstack (2 samples, 0.08%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*Decoder).decode (2 samples, 0.08%) + + + +reflect.Value.Elem (2 samples, 0.08%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +net/url.parseQuery (22 samples, 0.93%) + + + +runtime.readgstatus (2 samples, 0.08%) + + + +runtime.gorecover (1 samples, 0.04%) + + + +reflect.(*rtype).Kind (2 samples, 0.08%) + + + +runtime.mallocgc (2 samples, 0.08%) + + + +runtime.mapaccess2_faststr (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*StringFieldIndex).FromArgs (7 samples, 0.30%) + + + +net.(*fdMutex).rwunlock (1 samples, 0.04%) + + + +sync.(*Mutex).Lock (4 samples, 0.17%) + + + +runtime.memclr (2 samples, 0.08%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +runtime.scang (1 samples, 0.04%) + + + +runtime.newobject (6 samples, 0.25%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.gosweepone.func1 (1 samples, 0.04%) + + + +runtime.mallocgc (2 samples, 0.08%) + + + +runtime.scanframeworker (35 samples, 1.48%) + + + +runtime.(*bucket).mp (2 samples, 0.08%) + + + +runtime.gcDrainN (1 samples, 0.04%) + + + +runtime.heapBitsForObject (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree (2 samples, 0.08%) + + + +net/http.(*chunkWriter).writeHeader (90 samples, 3.79%) +net/.. + + +runtime.mput (1 samples, 0.04%) + + + +runtime.lock (1 samples, 0.04%) + + + +runtime.heapBits.initSpan (1 samples, 0.04%) + + + +runtime.deferproc.func1 (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Node).Get (8 samples, 0.34%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/logutils.(*LevelFilter).Write (8 samples, 0.34%) + + + +runtime.futexsleep (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*AggregateSample).Ingest (4 samples, 0.17%) + + + +runtime.futexwakeup (6 samples, 0.25%) + + + +runtime.(*mSpanList).insertBack (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree.func1 (1 samples, 0.04%) + + + +runtime.scanstack (64 samples, 2.70%) +ru.. + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.heapBitsBulkBarrier (1 samples, 0.04%) + + + +runtime.getitab (3 samples, 0.13%) + + + +runtime.typedmemmove (1 samples, 0.04%) + + + +runtime.mapiternext (2 samples, 0.08%) + + + +runtime.memmove (3 samples, 0.13%) + + + +runtime.gcAssistAlloc.func1 (2 samples, 0.08%) + + + +runtime.strequal (1 samples, 0.04%) + + + +bytes.HasPrefix (1 samples, 0.04%) + + + +runtime.heapBitsSetType (1 samples, 0.04%) + + + +runtime.memeqbody (4 samples, 0.17%) + + + +runtime.duffcopy (1 samples, 0.04%) + + + +runtime.park_m (71 samples, 2.99%) +ru.. + + +net/url.(*URL).Query (17 samples, 0.72%) + + + +runtime.cmpbody (2 samples, 0.08%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.readgstatus (1 samples, 0.04%) + + + +runtime.notesleep (5 samples, 0.21%) + + + +runtime.readvarint (6 samples, 0.25%) + + + +runtime.newobject (7 samples, 0.30%) + + + +runtime.futexwakeup (1 samples, 0.04%) + + + +runtime.ready (1 samples, 0.04%) + + + +runtime.newMarkBits (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +net/url.split (3 samples, 0.13%) + + + +net.(*netFD).Write (227 samples, 9.57%) +net.(*netFD)... + + +runtime.(*mcache).nextFree (2 samples, 0.08%) + + + +net/url.parseQuery (26 samples, 1.10%) + + + +runtime.heapBitsSetType (3 samples, 0.13%) + + + +bytes.(*Buffer).WriteByte (1 samples, 0.04%) + + + +runtime.mapaccess2_faststr (1 samples, 0.04%) + + + +github.com/hashicorp/consul/command/agent.(*HTTPServer).wrap.func1.1 (125 samples, 5.27%) +github.. + + +runtime.notesleep (1 samples, 0.04%) + + + +runtime.memclr (1 samples, 0.04%) + + + +reflect.Indirect (2 samples, 0.08%) + + + +runtime.deferproc (1 samples, 0.04%) + + + +runtime.(*gcWork).dispose (1 samples, 0.04%) + + + +github.com/hashicorp/consul/command/agent.(*HTTPServer).KVSGet (457 samples, 19.27%) +github.com/hashicorp/consul/co.. + + +runtime.scanstack (2 samples, 0.08%) + + + +syscall.write (207 samples, 8.73%) +syscall.write + + +runtime.stopm (3 samples, 0.13%) + + + +time.Time.Sub (1 samples, 0.04%) + + + +encoding/json.(*encodeState).string (3 samples, 0.13%) + + + +runtime.(*mcentral).cacheSpan (1 samples, 0.04%) + + + +runtime/internal/atomic.Xadd (1 samples, 0.04%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +runtime.heapBitsForObject (2 samples, 0.08%) + + + +runtime.gcMarkTermination.func1 (1 samples, 0.04%) + + + +runtime.(*mheap).allocSpanLocked (1 samples, 0.04%) + + + +runtime.markroot (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*Txn).readableIndex (18 samples, 0.76%) + + + +runtime.gcAssistAlloc.func1 (1 samples, 0.04%) + + + +net/textproto.MIMEHeader.Del (4 samples, 0.17%) + + + +runtime.deferreturn (2 samples, 0.08%) + + + +runtime.heapBitsSetType (2 samples, 0.08%) + + + +runtime.gcDrain (1 samples, 0.04%) + + + +runtime.newobject (5 samples, 0.21%) + + + +runtime.(*mcache).refill (1 samples, 0.04%) + + + +strings.IndexAny (7 samples, 0.30%) + + + +runtime.(*mcache).nextFree (1 samples, 0.04%) + + + +runtime.gcMarkTermination.func2 (2 samples, 0.08%) + + + +runtime.heapBitsForObject (1 samples, 0.04%) + + + +runtime.helpgc (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree (7 samples, 0.30%) + + + +reflect.Value.Call (245 samples, 10.33%) +reflect.Value.C.. + + +runtime/internal/atomic.Or8 (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.mallocgc (2 samples, 0.08%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.MeasureSince (55 samples, 2.32%) +g.. + + +runtime.systemstack (3 samples, 0.13%) + + + +runtime.gcMarkDone (1 samples, 0.04%) + + + +runtime.stringiter2 (2 samples, 0.08%) + + + +runtime.stringiter2 (7 samples, 0.30%) + + + +runtime.(*mheap).allocSpanLocked (1 samples, 0.04%) + + + +runtime.mapaccess1_faststr (1 samples, 0.04%) + + + +runtime.lock (1 samples, 0.04%) + + + +runtime.(*mspan).sweep (2 samples, 0.08%) + + + +strconv.AppendInt (2 samples, 0.08%) + + + +runtime.newobject (2 samples, 0.08%) + + + +runtime.gcSweep (2 samples, 0.08%) + + + +runtime.mapaccess1_faststr (1 samples, 0.04%) + + + +runtime.readgstatus (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree.func1 (4 samples, 0.17%) + + + +net/http.Header.sortedKeyValues (25 samples, 1.05%) + + + +runtime.mallocgc (9 samples, 0.38%) + + + +runtime.mapiternext (4 samples, 0.17%) + + + +runtime.(*mheap).alloc (1 samples, 0.04%) + + + +net/http.cleanPath (7 samples, 0.30%) + + + +runtime.(*mcentral).grow (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +reflect.unsafe_New (8 samples, 0.34%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +net/textproto.MIMEHeader.Set (16 samples, 0.67%) + + + +net.(*netFD).readLock (2 samples, 0.08%) + + + +runtime.notetsleep (1 samples, 0.04%) + + + +runtime.rawstring (1 samples, 0.04%) + + + +runtime.memeqbody (1 samples, 0.04%) + + + +runtime.gcDrainN (2 samples, 0.08%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.greyobject (10 samples, 0.42%) + + + +runtime.gcMarkDone.func1 (1 samples, 0.04%) + + + +runtime.memclr (3 samples, 0.13%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +net/url.shouldEscape (4 samples, 0.17%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +strconv.formatBits (2 samples, 0.08%) + + + +runtime.(*mcentral).cacheSpan (1 samples, 0.04%) + + + +reflect.(*rtype).In (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.IncrCounter (47 samples, 1.98%) +g.. + + +runtime.globrunqget (2 samples, 0.08%) + + + +reflect.Value.Field (5 samples, 0.21%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +sync.(*Pool).Put (2 samples, 0.08%) + + + +runtime.notewakeup (1 samples, 0.04%) + + + +net.(*netFD).readFrom (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.gogo (2 samples, 0.08%) + + + +runtime.mallocgc (8 samples, 0.34%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +runtime.casgstatus (2 samples, 0.08%) + + + +io.(*multiWriter).Write (22 samples, 0.93%) + + + +sync.runtime_Semacquire (4 samples, 0.17%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +encoding/json.(*ptrEncoder).encode (58 samples, 2.45%) +en.. + + +github.com/hashicorp/consul/vendor/github.com/miekg/dns.ReadFromSessionUDP (1 samples, 0.04%) + + + +strings.Index (2 samples, 0.08%) + + + +runtime.gcAssistAlloc.func1 (2 samples, 0.08%) + + + +runtime.newMarkBits (1 samples, 0.04%) + + + +runtime.deferproc.func1 (2 samples, 0.08%) + + + +runtime.(*mcache).refill (1 samples, 0.04%) + + + +net/http.(*response).finishRequest (336 samples, 14.17%) +net/http.(*response)... + + +runtime.gopark (4 samples, 0.17%) + + + +sync.(*Pool).Get (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime.(*mcache).refill (3 samples, 0.13%) + + + +sync.(*Mutex).Unlock (2 samples, 0.08%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +runtime.shade (1 samples, 0.04%) + + + +log.(*Logger).formatHeader (16 samples, 0.67%) + + + +runtime/internal/atomic.Cas (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*MemDB).Txn (16 samples, 0.67%) + + + +runtime.mapaccess1_fast32 (2 samples, 0.08%) + + + +runtime.ReadMemStats (1 samples, 0.04%) + + + +runtime.goready (1 samples, 0.04%) + + + +runtime.step (5 samples, 0.21%) + + + +github.com/hashicorp/consul/vendor/github.com/miekg/dns.(*Server).ListenAndServe (1 samples, 0.04%) + + + +syscall.Read (2 samples, 0.08%) + + + +runtime.memmove (1 samples, 0.04%) + + + +reflect.(*rtype).ptrTo (5 samples, 0.21%) + + + +runtime/internal/atomic.Xadd64 (1 samples, 0.04%) + + + +runtime.gcAssistAlloc (6 samples, 0.25%) + + + +runtime.gcDrainN (2 samples, 0.08%) + + + +runtime.(*mcache).nextFree (2 samples, 0.08%) + + + +runtime.stringiter2 (5 samples, 0.21%) + + + +runtime.mallocgc (2 samples, 0.08%) + + + +runtime.exitsyscall (11 samples, 0.46%) + + + +net/http.shouldClose (5 samples, 0.21%) + + + +net/http.Header.Set (25 samples, 1.05%) + + + +runtime.mallocgc (5 samples, 0.21%) + + + +net/http.Header.Del (4 samples, 0.17%) + + + +runtime.adjustpointers (1 samples, 0.04%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +runtime.gcSweep (1 samples, 0.04%) + + + +bufio.(*Reader).fill (2 samples, 0.08%) + + + +net/rpc.(*service).call (271 samples, 11.42%) +net/rpc.(*service.. + + +net/http.(*connReader).Read (88 samples, 3.71%) +net/.. + + +runtime.memclr (1 samples, 0.04%) + + + +runtime.unlock (1 samples, 0.04%) + + + +runtime.memmove (1 samples, 0.04%) + + + +runtime.(*fixalloc).alloc (1 samples, 0.04%) + + + +runtime.mapassign1 (9 samples, 0.38%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +runtime.mapassign1 (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.schedule (5 samples, 0.21%) + + + +runtime.(*mcache).refill (1 samples, 0.04%) + + + +strings.Join (7 samples, 0.30%) + + + +runtime.rawbyteslice (4 samples, 0.17%) + + + +runtime.indexbytebody (1 samples, 0.04%) + + + +reflect.mapassign (1 samples, 0.04%) + + + +sync/atomic.AddUint32 (1 samples, 0.04%) + + + +time.(*Duration).String (6 samples, 0.25%) + + + +runtime.exitsyscall0 (3 samples, 0.13%) + + + +runtime.gosweepone.func1 (1 samples, 0.04%) + + + +runtime.deferreturn.func1 (1 samples, 0.04%) + + + +runtime.startm (1 samples, 0.04%) + + + +strings.Index (1 samples, 0.04%) + + + +runtime.shade (1 samples, 0.04%) + + + +runtime.deferreturn.func1 (1 samples, 0.04%) + + + +net.(*UDPConn).readFrom (1 samples, 0.04%) + + + +runtime.newobject (7 samples, 0.30%) + + + +runtime.memclr (1 samples, 0.04%) + + + +runtime.makeslice (6 samples, 0.25%) + + + +runtime/internal/atomic.Xadd64 (1 samples, 0.04%) + + + +runtime.(*mspan).refillAllocCache (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.mallocgc (2 samples, 0.08%) + + + +runtime.netpoll (10 samples, 0.42%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +fmt.(*pp).printArg (26 samples, 1.10%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Node).Get (5 samples, 0.21%) + + + +bufio.(*Writer).WriteString (7 samples, 0.30%) + + + +github.com/hashicorp/consul/consul/state.(*StateStore).KVSGet (134 samples, 5.65%) +github... + + +runtime.systemstack (2 samples, 0.08%) + + + +runtime.makemap (2 samples, 0.08%) + + + +runtime.gcAssistAlloc (2 samples, 0.08%) + + + +bytes.(*Buffer).grow (3 samples, 0.13%) + + + +sort.Search (3 samples, 0.13%) + + + +net/textproto.(*Reader).readLineSlice (95 samples, 4.01%) +net/.. + + +runtime.futex (1 samples, 0.04%) + + + +time.Now (1 samples, 0.04%) + + + +runtime.heapBitsBulkBarrier (1 samples, 0.04%) + + + +net/textproto.CanonicalMIMEHeaderKey (7 samples, 0.30%) + + + +runtime.heapBitsSetType (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Node).getEdge.func1 (2 samples, 0.08%) + + + +sync/atomic.CompareAndSwapUint32 (1 samples, 0.04%) + + + +reflect.(*rtype).AssignableTo (1 samples, 0.04%) + + + +sync.(*Mutex).Unlock (1 samples, 0.04%) + + + +runtime.typedmemmove (1 samples, 0.04%) + + + +runtime.scanobject (2 samples, 0.08%) + + + +net/textproto.(*Reader).closeDot (1 samples, 0.04%) + + + +net/http.(*conn).setState (2 samples, 0.08%) + + + +runtime.step (1 samples, 0.04%) + + + +runtime.gcDrainN (1 samples, 0.04%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +sync.(*RWMutex).RLock (3 samples, 0.13%) + + + +context.parentCancelCtx (2 samples, 0.08%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.reimburseSweepCredit (1 samples, 0.04%) + + + +runtime.growslice (1 samples, 0.04%) + + + +runtime.scanstack.func1 (1 samples, 0.04%) + + + +runtime.sweepone (20 samples, 0.84%) + + + +runtime.(*mcache).nextFree (4 samples, 0.17%) + + + +sort.insertionSort (6 samples, 0.25%) + + + +runtime.heapBitsSetType (4 samples, 0.17%) + + + +runtime.lock (2 samples, 0.08%) + + + +syscall.Syscall (202 samples, 8.52%) +syscall.Sysc.. + + +net/url.ParseQuery (20 samples, 0.84%) + + + +runtime.(*mcache).refill (2 samples, 0.08%) + + + +sync.(*Pool).pin (1 samples, 0.04%) + + + +net/rpc.(*Server).readRequest (66 samples, 2.78%) +ne.. + + +runtime.rawstring (5 samples, 0.21%) + + + +runtime.greyobject (1 samples, 0.04%) + + + +runtime.newobject (2 samples, 0.08%) + + + +runtime.heapBitsSetType (2 samples, 0.08%) + + + +runtime.systemstack (20 samples, 0.84%) + + + +net.(*fdMutex).rwlock (2 samples, 0.08%) + + + +runtime.(*mheap).alloc (1 samples, 0.04%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime.growslice (1 samples, 0.04%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +reflect.(*rtype).Elem (2 samples, 0.08%) + + + +net.(*netFD).Write (2 samples, 0.08%) + + + +net.(*fdMutex).rwlock (2 samples, 0.08%) + + + +runtime.mallocgc (3 samples, 0.13%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).getInterval (7 samples, 0.30%) + + + +syscall.Sendto (1 samples, 0.04%) + + + +runtime.systemstack (6 samples, 0.25%) + + + +runtime.mallocgc (2 samples, 0.08%) + + + +runtime.heapBits.initSpan (1 samples, 0.04%) + + + +net.(*UDPConn).readMsg (1 samples, 0.04%) + + + +runtime.memeqbody (1 samples, 0.04%) + + + +net/url.QueryUnescape (1 samples, 0.04%) + + + +runtime.findrunnable (3 samples, 0.13%) + + + +runtime.newarray (2 samples, 0.08%) + + + +runtime/internal/atomic.Xchg (1 samples, 0.04%) + + + +runtime.gcAssistAlloc (3 samples, 0.13%) + + + +net.(*conn).Write (227 samples, 9.57%) +net.(*conn).W.. + + +time.Time.Date (3 samples, 0.13%) + + + +runtime/internal/atomic.Loadp (1 samples, 0.04%) + + + +runtime.memeqbody (3 samples, 0.13%) + + + +runtime.gcMarkDone (1 samples, 0.04%) + + + +runtime.reentersyscall (8 samples, 0.34%) + + + +runtime.newobject (4 samples, 0.17%) + + + +net/rpc.(*Server).sendResponse (17 samples, 0.72%) + + + +runtime.gcAssistAlloc.func1 (46 samples, 1.94%) +r.. + + +runtime.(*mspan).refillAllocCache (1 samples, 0.04%) + + + +runtime.mallocgc (6 samples, 0.25%) + + + +strings.(*Replacer).Replace (5 samples, 0.21%) + + + +runtime.memmove (1 samples, 0.04%) + + + +net/textproto.(*Reader).readContinuedLineSlice (13 samples, 0.55%) + + + +runtime.typedmemmove (1 samples, 0.04%) + + + +runtime.aeshashbody (1 samples, 0.04%) + + + +runtime.memequal64 (1 samples, 0.04%) + + + +runtime.makeslice (4 samples, 0.17%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*Txn).readableIndex (10 samples, 0.42%) + + + +runtime.rawbyteslice (4 samples, 0.17%) + + + +runtime.shade (4 samples, 0.17%) + + + +runtime.futex (1 samples, 0.04%) + + + +runtime.duffzero (1 samples, 0.04%) + + + +runtime.gcTryRemoveAllStackBarriers (1 samples, 0.04%) + + + +runtime.newobject (5 samples, 0.21%) + + + +net.(*netFD).writeLock (2 samples, 0.08%) + + + +runtime.deductSweepCredit (1 samples, 0.04%) + + + +runtime.makemap (3 samples, 0.13%) + + + +runtime.startm (7 samples, 0.30%) + + + +runtime.mallocgc (5 samples, 0.21%) + + + +fmt.(*fmt).padString (2 samples, 0.08%) + + + +runtime.(*mcache).nextFree (4 samples, 0.17%) + + + +reflect.resolveTypeOff (5 samples, 0.21%) + + + +runtime.mapiterinit (7 samples, 0.30%) + + + +runtime.(*mcentral).cacheSpan (4 samples, 0.17%) + + + +runtime.newarray (14 samples, 0.59%) + + + +runtime.netpollblock (5 samples, 0.21%) + + + +runtime.forEachP (1 samples, 0.04%) + + + +runtime.growslice (6 samples, 0.25%) + + + +runtime.deferreturn (2 samples, 0.08%) + + + +runtime.heapBitsForObject (1 samples, 0.04%) + + + +runtime/internal/atomic.Xchg (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore (1 samples, 0.04%) + + + +runtime.(*mcentral).cacheSpan (2 samples, 0.08%) + + + +runtime.futexwakeup (1 samples, 0.04%) + + + +net/textproto.CanonicalMIMEHeaderKey (1 samples, 0.04%) + + + +bytes.(*Buffer).WriteByte (1 samples, 0.04%) + + + +runtime.deferproc.func1 (5 samples, 0.21%) + + + +runtime.gcDrainN (1 samples, 0.04%) + + + +runtime/internal/atomic.Xadd (5 samples, 0.21%) + + + +runtime.gchelper (2 samples, 0.08%) + + + +runtime.duffcopy (2 samples, 0.08%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).AddSample (2 samples, 0.08%) + + + +runtime.scanstack.func1 (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*decFnInfo).kMap (1 samples, 0.04%) + + + +runtime.ifaceeq (1 samples, 0.04%) + + + +runtime.(*mSpanList).remove (1 samples, 0.04%) + + + +github.com/hashicorp/consul/command/agent.missingKey (2 samples, 0.08%) + + + +runtime.slicebytetostring (2 samples, 0.08%) + + + +runtime.(*mspan).sweep (1 samples, 0.04%) + + + +runtime.wakep (1 samples, 0.04%) + + + +runtime.memclr (1 samples, 0.04%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +runtime.epollwait (1 samples, 0.04%) + + + +runtime.funcspdelta (3 samples, 0.13%) + + + +net/textproto.CanonicalMIMEHeaderKey (6 samples, 0.25%) + + + +net/http.serverHandler.ServeHTTP (1,189 samples, 50.13%) +net/http.serverHandler.ServeHTTP + + +runtime.goschedImpl (7 samples, 0.30%) + + + +runtime.casgstatus (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/miekg/dns.(*defaultReader).ReadUDP (1 samples, 0.04%) + + + +runtime.runqgrab (4 samples, 0.17%) + + + +runtime.helpgc (1 samples, 0.04%) + + + +fmt.(*pp).free (5 samples, 0.21%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.heapBitsSetType (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.indexbytebody (1 samples, 0.04%) + + + +net/http.statusLine (5 samples, 0.21%) + + + +bufio.(*Writer).WriteString (2 samples, 0.08%) + + + +runtime.concatstring3 (3 samples, 0.13%) + + + +runtime.(*mcache).nextFree (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Txn).Get (5 samples, 0.21%) + + + +runtime.gcDrainN (1 samples, 0.04%) + + + +runtime.markrootBlock (6 samples, 0.25%) + + + +runtime.usleep (1 samples, 0.04%) + + + +runtime.rawstringtmp (4 samples, 0.17%) + + + +sync.(*Mutex).Lock (2 samples, 0.08%) + + + +runtime.makemap (5 samples, 0.21%) + + + +runtime.mallocgc (54 samples, 2.28%) +r.. + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.newArena (1 samples, 0.04%) + + + +runtime.systemstack (2 samples, 0.08%) + + + +runtime/internal/atomic.Or8 (1 samples, 0.04%) + + + +runtime.gcDrainN (5 samples, 0.21%) + + + +runtime.mapaccess1_faststr (2 samples, 0.08%) + + + +runtime.(*gcWork).tryGet (1 samples, 0.04%) + + + +runtime.heapBitsBulkBarrier (1 samples, 0.04%) + + + +runtime.notetsleep_internal (1 samples, 0.04%) + + + +net/http.readRequest.func1 (2 samples, 0.08%) + + + +runtime.ReadMemStats.func1 (1 samples, 0.04%) + + + +runtime.(*mheap).alloc (3 samples, 0.13%) + + + +runtime.gcMarkTermination (1 samples, 0.04%) + + + +runtime.deferproc (1 samples, 0.04%) + + + +runtime.scanframeworker (4 samples, 0.17%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime.stackmapdata (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).encodeAndSendMsg (1 samples, 0.04%) + + + +net/url.(*URL).EscapedPath (5 samples, 0.21%) + + + +runtime.(*mcache).nextFree (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/serf/serf.decodeMessage (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree (4 samples, 0.17%) + + + +runtime.slicebytetostring (4 samples, 0.17%) + + + +runtime.(*mcentral).cacheSpan (4 samples, 0.17%) + + + +runtime.mallocgc (3 samples, 0.13%) + + + +runtime/internal/atomic.Xchg (1 samples, 0.04%) + + + +runtime.mapaccess1_faststr (1 samples, 0.04%) + + + +runtime.memmove (1 samples, 0.04%) + + + +runtime.(*mcache).refill (1 samples, 0.04%) + + + +syscall.Syscall (60 samples, 2.53%) +sy.. + + +net/textproto.canonicalMIMEHeaderKey (7 samples, 0.30%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime.interequal (1 samples, 0.04%) + + + +runtime.newdefer (2 samples, 0.08%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.decodeResponse (2 samples, 0.08%) + + + +runtime.gcDrainN (2 samples, 0.08%) + + + +runtime.(*mspan).sweep (1 samples, 0.04%) + + + +runtime.entersyscall (4 samples, 0.17%) + + + +sync/atomic.CompareAndSwapUint32 (1 samples, 0.04%) + + + +runtime.unlock (1 samples, 0.04%) + + + +runtime.funcspdelta (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree.func1 (1 samples, 0.04%) + + + +github.com/hashicorp/consul/consul/structs.(*KeyRequest).AllowStaleRead (1 samples, 0.04%) + + + +encoding/json.(*encodeState).string (5 samples, 0.21%) + + + +runtime.memmove (1 samples, 0.04%) + + + +runtime.newdefer (1 samples, 0.04%) + + + +runtime.scang (71 samples, 2.99%) +ru.. + + +runtime.(*gcWork).tryGet (1 samples, 0.04%) + + + +strings.IndexAny (2 samples, 0.08%) + + + +runtime.gcDrainN (2 samples, 0.08%) + + + +sync/atomic.LoadUint32 (1 samples, 0.04%) + + + +runtime.futexwakeup (1 samples, 0.04%) + + + +reflect.ValueOf (1 samples, 0.04%) + + + +runtime.gcDrainN (2 samples, 0.08%) + + + +runtime.(*mSpanList).remove (1 samples, 0.04%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +runtime.heapBitsSetType (4 samples, 0.17%) + + + +runtime/internal/atomic.Cas (1 samples, 0.04%) + + + +strconv.FormatUint (2 samples, 0.08%) + + + +reflect.Value.IsNil (1 samples, 0.04%) + + + +runtime/internal/atomic.Xadd64 (1 samples, 0.04%) + + + +time.fmtFrac (1 samples, 0.04%) + + + +sort.quickSort (6 samples, 0.25%) + + + +runtime.heapBitsForObject (1 samples, 0.04%) + + + +runtime.(*gcControllerState).enlistWorker (1 samples, 0.04%) + + + +runtime.concatstring2 (2 samples, 0.08%) + + + +strings.Index (1 samples, 0.04%) + + + +strings.Count (1 samples, 0.04%) + + + +runtime.duffcopy (1 samples, 0.04%) + + + +runtime.memmove (1 samples, 0.04%) + + + +runtime.pcvalue (12 samples, 0.51%) + + + +runtime.scanobject (1 samples, 0.04%) + + + +runtime.findfunc (1 samples, 0.04%) + + + +runtime.newobject (11 samples, 0.46%) + + + +reflect.Value.Set (11 samples, 0.46%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +bytes.(*Buffer).Write (3 samples, 0.13%) + + + +runtime.(*mspan).sweep (10 samples, 0.42%) + + + +runtime.findrunnable (2 samples, 0.08%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +net/textproto.CanonicalMIMEHeaderKey (2 samples, 0.08%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*Metrics).emitRuntimeStats (1 samples, 0.04%) + + + +encoding/json.encodeByteSlice (16 samples, 0.67%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime.(*mspan).countFree (2 samples, 0.08%) + + + +runtime._ExternalCode (75 samples, 3.16%) +run.. + + +runtime.deferreturn (1 samples, 0.04%) + + + +runtime.osyield (3 samples, 0.13%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime/internal/atomic.Xchg (1 samples, 0.04%) + + + +reflect.Value.SetMapIndex (1 samples, 0.04%) + + + +runtime.systemstack (4 samples, 0.17%) + + + +runtime.(*mcentral).cacheSpan (4 samples, 0.17%) + + + +runtime.mcall (81 samples, 3.41%) +run.. + + +runtime.futex (1 samples, 0.04%) + + + +runtime.(*mcentral).cacheSpan (1 samples, 0.04%) + + + +runtime.sweepone (1 samples, 0.04%) + + + +runtime.memmove (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*Metrics).MeasureSince (50 samples, 2.11%) +g.. + + +reflect.(*rtype).IsVariadic (1 samples, 0.04%) + + + +runtime.(*mcentral).cacheSpan (1 samples, 0.04%) + + + +runtime.gcMarkDone (1 samples, 0.04%) + + + +runtime.greyobject (1 samples, 0.04%) + + + +runtime.greyobject (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.pcdatavalue (1 samples, 0.04%) + + + +fmt.(*pp).fmtString (6 samples, 0.25%) + + + +net/http.checkConnErrorWriter.Write (231 samples, 9.74%) +net/http.check.. + + +runtime.newMarkBits (1 samples, 0.04%) + + + +runtime.heapBitsSetType (1 samples, 0.04%) + + + +strconv.formatBits (2 samples, 0.08%) + + + +runtime.mcall (2 samples, 0.08%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).flattenKey (1 samples, 0.04%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +runtime.systemstack (3 samples, 0.13%) + + + +runtime.memmove (1 samples, 0.04%) + + + +reflect.directlyAssignable (1 samples, 0.04%) + + + +runtime.epollwait (6 samples, 0.25%) + + + +runtime.greyobject (1 samples, 0.04%) + + + +runtime.heapBitsForObject (1 samples, 0.04%) + + + +runtime/internal/atomic.And8 (1 samples, 0.04%) + + + +runtime/internal/atomic.Xchg (1 samples, 0.04%) + + + +runtime.gcMarkTermination (1 samples, 0.04%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +net.(*fdMutex).rwunlock (2 samples, 0.08%) + + + +runtime.gcAssistAlloc (2 samples, 0.08%) + + + +runtime.gcLockStackBarriers (1 samples, 0.04%) + + + +encoding/json.uintEncoder (6 samples, 0.25%) + + + +runtime.return0 (1 samples, 0.04%) + + + +runtime.(*mspan).sweep (1 samples, 0.04%) + + + +runtime.acquireSudog (1 samples, 0.04%) + + + +runtime.makemap (4 samples, 0.17%) + + + +runtime.newdefer (3 samples, 0.13%) + + + +runtime.newobject (5 samples, 0.21%) + + + +reflect.(*rtype).Elem (3 samples, 0.13%) + + + +strings.IndexAny (2 samples, 0.08%) + + + +runtime.heapBitsForObject (1 samples, 0.04%) + + + +runtime.runqget (4 samples, 0.17%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime.gentraceback (2 samples, 0.08%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +runtime.gosweepone.func1 (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +sync/atomic.AddUint32 (1 samples, 0.04%) + + + +runtime.execute (3 samples, 0.13%) + + + +runtime/internal/atomic.Xadd64 (1 samples, 0.04%) + + + +runtime.gcDrain (1 samples, 0.04%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +net/textproto.(*Reader).upcomingHeaderNewlines (4 samples, 0.17%) + + + +runtime.mallocgc (7 samples, 0.30%) + + + +runtime.systemstack (4 samples, 0.17%) + + + +runtime.deferreturn (3 samples, 0.13%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +reflect.(*rtype).NumMethod (2 samples, 0.08%) + + + +runtime.funcspdelta (14 samples, 0.59%) + + + +runtime.newdefer (2 samples, 0.08%) + + + +runtime.deferproc (1 samples, 0.04%) + + + +runtime.rawstring (4 samples, 0.17%) + + + +github.com/hashicorp/consul/command/agent.setLastContact (21 samples, 0.89%) + + + +runtime.(*mcentral).grow (1 samples, 0.04%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +reflect.flag.mustBeAssignable (1 samples, 0.04%) + + + +net/http.(*conn).hijacked (4 samples, 0.17%) + + + +runtime.netpollready (3 samples, 0.13%) + + + +bufio.(*Writer).Flush (326 samples, 13.74%) +bufio.(*Writer).Flush + + +sync.(*RWMutex).RLock (5 samples, 0.21%) + + + +log.itoa (9 samples, 0.38%) + + + +runtime.heapBitsForObject (1 samples, 0.04%) + + + +net/url.parseQuery (22 samples, 0.93%) + + + +sync.(*Pool).pin (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree.func1 (3 samples, 0.13%) + + + +runtime.futexsleep (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).probeNode (1 samples, 0.04%) + + + +runtime.(*mheap).alloc.func1 (2 samples, 0.08%) + + + +runtime.procyield (2 samples, 0.08%) + + + +runtime.newobject (1 samples, 0.04%) + + + +reflect.New (16 samples, 0.67%) + + + +runtime.mapdelete (2 samples, 0.08%) + + + +runtime.markroot (2 samples, 0.08%) + + + +runtime.gcMarkTermination.func1 (1 samples, 0.04%) + + + +runtime/internal/atomic.Load (1 samples, 0.04%) + + + +runtime.convT2E (7 samples, 0.30%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*StringFieldIndex).FromArgs (29 samples, 1.22%) + + + +net/rpc.(*Server).freeResponse (2 samples, 0.08%) + + + +encoding/json.(*encodeState).marshal.func1 (2 samples, 0.08%) + + + +runtime.mallocgc (5 samples, 0.21%) + + + +runtime.newarray (8 samples, 0.34%) + + + +net.(*UDPConn).ReadFrom (1 samples, 0.04%) + + + +runtime.stringiter2 (2 samples, 0.08%) + + + +runtime.makemap (5 samples, 0.21%) + + + +runtime.selectgo (1 samples, 0.04%) + + + +runtime.procyield (1 samples, 0.04%) + + + +runtime.gcAssistAlloc.func1 (1 samples, 0.04%) + + + +runtime.lock (4 samples, 0.17%) + + + +runtime.mallocgc (6 samples, 0.25%) + + + +runtime.pcvalue (18 samples, 0.76%) + + + +time.Time.Clock (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.(*Raft).replicate (2 samples, 0.08%) + + + +bytes.IndexByte (1 samples, 0.04%) + + + +runtime.growslice (1 samples, 0.04%) + + + +runtime.futexwakeup (1 samples, 0.04%) + + + +runtime.findmoduledatap (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).flattenKey (11 samples, 0.46%) + + + +runtime.convT2E (4 samples, 0.17%) + + + +runtime.mallocgc (3 samples, 0.13%) + + + +runtime.duffzero (1 samples, 0.04%) + + + +strings.Map (9 samples, 0.38%) + + + +runtime.mallocgc (3 samples, 0.13%) + + + +runtime.(*mcentral).freeSpan (4 samples, 0.17%) + + + +runtime.deferproc.func1 (1 samples, 0.04%) + + + +reflect.packEface (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +net/http.Header.Set (8 samples, 0.34%) + + + +runtime.systemstack (2 samples, 0.08%) + + + +runtime.greyobject (9 samples, 0.38%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +strings.IndexByte (2 samples, 0.08%) + + + +runtime.(*mcache).refill (1 samples, 0.04%) + + + +strings.IndexAny (5 samples, 0.21%) + + + +runtime.heapBitsSetType (4 samples, 0.17%) + + + +runtime.rawstringtmp (2 samples, 0.08%) + + + +runtime.(*mcentral).cacheSpan (1 samples, 0.04%) + + + +net/url.parseQuery (19 samples, 0.80%) + + + +runtime.scang (1 samples, 0.04%) + + + +runtime/internal/atomic.Or8 (1 samples, 0.04%) + + + +runtime.gosched_m (7 samples, 0.30%) + + + +runtime.selectgoImpl (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +sync.(*Mutex).Lock (1 samples, 0.04%) + + + +runtime.markroot.func1 (1 samples, 0.04%) + + + +runtime.(*mcentral).cacheSpan (1 samples, 0.04%) + + + +runtime.sweepone (1 samples, 0.04%) + + + +reflect.Value.NumMethod (2 samples, 0.08%) + + + +context.WithCancel.func1 (11 samples, 0.46%) + + + +runtime.scanstack.func1 (4 samples, 0.17%) + + + +net/textproto.CanonicalMIMEHeaderKey (1 samples, 0.04%) + + + +runtime.fastrand1 (3 samples, 0.13%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +runtime.shade (1 samples, 0.04%) + + + +runtime.mapaccess1_faststr (1 samples, 0.04%) + + + +runtime.systemstack (2 samples, 0.08%) + + + +runtime.callers.func1 (1 samples, 0.04%) + + + +runtime.(*gcControllerState).findRunnableGCWorker (1 samples, 0.04%) + + + +runtime.heapBitsSetType (3 samples, 0.13%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.mallocgc (2 samples, 0.08%) + + + +runtime.assertI2I2 (4 samples, 0.17%) + + + +runtime.gcAssistAlloc.func1 (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime.newMarkBits (1 samples, 0.04%) + + + +runtime/internal/atomic.Cas (1 samples, 0.04%) + + + +runtime.markroot.func1 (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.markroot (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.indexbytebody (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime.mapiterinit (5 samples, 0.21%) + + + +runtime.mallocgc (3 samples, 0.13%) + + + +encoding/json.valueEncoder (12 samples, 0.51%) + + + +sync.(*Mutex).Lock (1 samples, 0.04%) + + + +runtime.rawstring (5 samples, 0.21%) + + + +runtime.gcAssistAlloc.func1 (1 samples, 0.04%) + + + +runtime.mallocgc (3 samples, 0.13%) + + + +runtime.systemstack (4 samples, 0.17%) + + + +runtime.greyobject (2 samples, 0.08%) + + + +runtime.mapaccess1_faststr (14 samples, 0.59%) + + + +runtime.rawstringtmp (6 samples, 0.25%) + + + +runtime.systemstack (3 samples, 0.13%) + + + +encoding/json.(*encodeState).marshal (90 samples, 3.79%) +enco.. + + +runtime.slicebytetostring (1 samples, 0.04%) + + + +net/url.(*URL).EscapedPath (6 samples, 0.25%) + + + +runtime.shade (1 samples, 0.04%) + + + +runtime.gcDrainN (1 samples, 0.04%) + + + +runtime.(*mspan).sweep (1 samples, 0.04%) + + + +runtime.(*mcache).releaseAll (1 samples, 0.04%) + + + +github.com/hashicorp/consul/command/agent.(*HTTPServer).handleFuncMetrics.func1 (1,069 samples, 45.07%) +github.com/hashicorp/consul/command/agent.(*HTTPServer).handleFuncMetrics.. + + +reflect.(*rtype).Out (1 samples, 0.04%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +runtime.heapBitsBulkBarrier (1 samples, 0.04%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +sync.runtime_procPin (1 samples, 0.04%) + + + +runtime.semacquire (4 samples, 0.17%) + + + +runtime.lock (2 samples, 0.08%) + + + +github.com/hashicorp/consul/consul.(*Server).setQueryMeta (2 samples, 0.08%) + + + +runtime.rawstring (2 samples, 0.08%) + + + +runtime.(*mcache).refill (1 samples, 0.04%) + + + +runtime.heapBitsForObject (1 samples, 0.04%) + + + +runtime.systemstack (2 samples, 0.08%) + + + +runtime.memmove (1 samples, 0.04%) + + + +net/textproto.MIMEHeader.Set (11 samples, 0.46%) + + + +net/http.Header.Del (4 samples, 0.17%) + + + +net/rpc.(*Server).ServeRequest (338 samples, 14.25%) +net/rpc.(*Server).Ser.. + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +runtime.systemstack (2 samples, 0.08%) + + + +runtime.heapBitsForObject (10 samples, 0.42%) + + + +runtime.memclr (1 samples, 0.04%) + + + +runtime.pcvalue (3 samples, 0.13%) + + + +runtime.deferreturn (2 samples, 0.08%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).(github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.gossip)-fm (3 samples, 0.13%) + + + +runtime.pcvalue (1 samples, 0.04%) + + + +runtime.deferreturn (1 samples, 0.04%) + + + +runtime.greyobject (2 samples, 0.08%) + + + +strings.Join (1 samples, 0.04%) + + + +net.(*UDPConn).ReadMsgUDP (1 samples, 0.04%) + + + +runtime.heapBitsSetType (2 samples, 0.08%) + + + +runtime.mallocgc (4 samples, 0.17%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +runtime.newobject (3 samples, 0.13%) + + + +github.com/hashicorp/consul/vendor/github.com/miekg/dns.(*Server).serveUDP (1 samples, 0.04%) + + + +runtime.gcAssistAlloc.func1 (2 samples, 0.08%) + + + +net/http.putBufioWriter (2 samples, 0.08%) + + + +runtime.newobject (7 samples, 0.30%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +sort.Search (4 samples, 0.17%) + + + +runtime.systemstack (3 samples, 0.13%) + + + +net/url.ParseQuery (17 samples, 0.72%) + + + +sync/atomic.CompareAndSwapUint32 (1 samples, 0.04%) + + + +runtime.startm (1 samples, 0.04%) + + + +github.com/hashicorp/consul/command/agent.(*HTTPServer).KVSEndpoint-fm (592 samples, 24.96%) +github.com/hashicorp/consul/command/age.. + + +sync/atomic.CompareAndSwapUint32 (2 samples, 0.08%) + + + +runtime.notesleep (2 samples, 0.08%) + + + +runtime.greyobject (1 samples, 0.04%) + + + +runtime.heapBitsSetType (1 samples, 0.04%) + + + +runtime.shade (1 samples, 0.04%) + + + +github.com/hashicorp/consul/command/agent.(*HTTPServer).parseToken (27 samples, 1.14%) + + + +runtime.flushallmcaches (1 samples, 0.04%) + + + +runtime.(*gcControllerState).findRunnableGCWorker (2 samples, 0.08%) + + + +runtime/internal/atomic.Xchg (1 samples, 0.04%) + + + +runtime.netpollunblock (2 samples, 0.08%) + + + +runtime.(*mcentral).uncacheSpan (1 samples, 0.04%) + + + +runtime.mapassign1 (3 samples, 0.13%) + + + +runtime.heapBitsBulkBarrier (1 samples, 0.04%) + + + +runtime.deferproc (3 samples, 0.13%) + + + +runtime.gcDrain (10 samples, 0.42%) + + + +runtime.makemap (11 samples, 0.46%) + + + +runtime.mProf_GC (1 samples, 0.04%) + + + +runtime.deferreturn (2 samples, 0.08%) + + + +runtime.getcallersp (1 samples, 0.04%) + + + +runtime.goexit (2,170 samples, 91.48%) +runtime.goexit + + +runtime.indexbytebody (1 samples, 0.04%) + + + +runtime.mapiternext (2 samples, 0.08%) + + + +net.(*pollDesc).prepare (2 samples, 0.08%) + + + +runtime.heapBitsForObject (1 samples, 0.04%) + + + +net/url.parseQuery (18 samples, 0.76%) + + + +runtime.greyobject (1 samples, 0.04%) + + + +runtime.(*gcWork).put (1 samples, 0.04%) + + + +runtime.(*mSpanList).insertBack (1 samples, 0.04%) + + + +runtime.gentraceback (1 samples, 0.04%) + + + +runtime.greyobject (1 samples, 0.04%) + + + +net/url.parseQuery (13 samples, 0.55%) + + + +net/http.(*Request).wantsClose (2 samples, 0.08%) + + + +runtime.(*mcache).nextFree.func1 (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree (1 samples, 0.04%) + + + +runtime.gcDrain (1 samples, 0.04%) + + + +all (2,372 samples, 100%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +runtime.copystack (2 samples, 0.08%) + + + +runtime.markroot.func1 (2 samples, 0.08%) + + + +net/http.(*conn).readRequest (429 samples, 18.09%) +net/http.(*conn).readRequest + + +runtime.(*guintptr).cas (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).triggerFunc (4 samples, 0.17%) + + + +runtime.stringtoslicebyte (4 samples, 0.17%) + + + +runtime.rawstring (2 samples, 0.08%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +runtime.futex (1 samples, 0.04%) + + + +runtime.readvarint (1 samples, 0.04%) + + + +runtime/internal/atomic.Xchg (1 samples, 0.04%) + + + +runtime.(*mheap).alloc_m (1 samples, 0.04%) + + + +runtime.gcMarkTermination.func2 (1 samples, 0.04%) + + + +runtime.heapBits.initSpan (2 samples, 0.08%) + + + +github.com/hashicorp/consul/consul.(*Server).IsLeader (1 samples, 0.04%) + + + +runtime.scang (1 samples, 0.04%) + + + +runtime.netpollblockcommit (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).udpListen (1 samples, 0.04%) + + + +net.(*pollDesc).waitRead (7 samples, 0.30%) + + + +runtime.markroot.func1 (1 samples, 0.04%) + + + +github.com/hashicorp/consul/command/agent.setKnownLeader (8 samples, 0.34%) + + + +runtime.(*gcWork).get (1 samples, 0.04%) + + + +runtime.(*mspan).refillAllocCache (1 samples, 0.04%) + + + +runtime.newobject (3 samples, 0.13%) + + + +runtime.deferproc (1 samples, 0.04%) + + + +runtime.stopm (1 samples, 0.04%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime.deferproc.func1 (3 samples, 0.13%) + + + +runtime.heapBitsSetType (3 samples, 0.13%) + + + +net/http.(*headerSorter).Swap (1 samples, 0.04%) + + + +github.com/hashicorp/consul/consul.(*Server).forward (3 samples, 0.13%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.MeasureSince (2 samples, 0.08%) + + + +time.Now (2 samples, 0.08%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).getExistingInterval (8 samples, 0.34%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Node).getEdge (3 samples, 0.13%) + + + +runtime.memmove (1 samples, 0.04%) + + + +runtime.deferproc.func1 (1 samples, 0.04%) + + + +runtime.duffcopy (2 samples, 0.08%) + + + +sort.Search (2 samples, 0.08%) + + + +runtime.readvarint (1 samples, 0.04%) + + + +runtime.aeshash (1 samples, 0.04%) + + + +runtime.(*mspan).sweep (1 samples, 0.04%) + + + +runtime.mapiterinit (2 samples, 0.08%) + + + +net/url.QueryUnescape (1 samples, 0.04%) + + + +net/http.fixLength (7 samples, 0.30%) + + + +bytes.(*Buffer).WriteByte (2 samples, 0.08%) + + + +runtime.stringiter2 (1 samples, 0.04%) + + + +runtime.unlock (1 samples, 0.04%) + + + +net/http.(*conn).hijacked (3 samples, 0.13%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +runtime.heapBitsSetType (1 samples, 0.04%) + + + +strings.Index (1 samples, 0.04%) + + + +runtime.callwritebarrier (2 samples, 0.08%) + + + +runtime.gcDrainN (1 samples, 0.04%) + + + +runtime.mapaccess1_faststr (1 samples, 0.04%) + + + +runtime/internal/atomic.Xchg (1 samples, 0.04%) + + + +runtime.(*mcentral).cacheSpan (3 samples, 0.13%) + + + +runtime.makeslice (3 samples, 0.13%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +runtime.typedmemmove (1 samples, 0.04%) + + + +runtime.deferreturn.func1 (1 samples, 0.04%) + + + +runtime.(*mcentral).cacheSpan (4 samples, 0.17%) + + + +runtime/internal/atomic.Cas (1 samples, 0.04%) + + + +runtime.memclr (1 samples, 0.04%) + + + +sync/atomic.CompareAndSwapUint64 (2 samples, 0.08%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +strings.Join (15 samples, 0.63%) + + + +net/http.(*ServeMux).Handler (117 samples, 4.93%) +net/ht.. + + +runtime.typedmemmove (2 samples, 0.08%) + + + +runtime.rawstringtmp (2 samples, 0.08%) + + + +runtime.deferreturn (2 samples, 0.08%) + + + +runtime.concatstrings (3 samples, 0.13%) + + + +runtime.acquireSudog (2 samples, 0.08%) + + + +runtime.pcvalue (1 samples, 0.04%) + + + +runtime.freedefer (1 samples, 0.04%) + + + +runtime.systemstack (3 samples, 0.13%) + + + +runtime.mallocgc (3 samples, 0.13%) + + + +runtime.markroot (81 samples, 3.41%) +run.. + + +time.Time.abs (1 samples, 0.04%) + + + +net.(*netFD).writeUnlock (2 samples, 0.08%) + + + +runtime.greyobject (1 samples, 0.04%) + + + +runtime.(*mheap).alloc_m (2 samples, 0.08%) + + + +net/url.unescape (3 samples, 0.13%) + + + +runtime.mallocgc (3 samples, 0.13%) + + + +net/textproto.CanonicalMIMEHeaderKey (7 samples, 0.30%) + + + +net/http.newBufioWriterSize (8 samples, 0.34%) + + + +runtime.gchelper (1 samples, 0.04%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +runtime.growslice (4 samples, 0.17%) + + + +runtime.exitsyscallfast (5 samples, 0.21%) + + + +runtime.mapassign1 (9 samples, 0.38%) + + + +sort.Sort (8 samples, 0.34%) + + + +runtime.gcAssistAlloc.func1 (2 samples, 0.08%) + + + +runtime.assertE2T2 (4 samples, 0.17%) + + + +runtime.scang (8 samples, 0.34%) + + + +bytes.(*Buffer).grow (3 samples, 0.13%) + + + +strings.ToLower (10 samples, 0.42%) + + + +runtime.newMarkBits (1 samples, 0.04%) + + + +runtime/internal/atomic.Xadd64 (1 samples, 0.04%) + + + +runtime.notewakeup (1 samples, 0.04%) + + + +runtime.(*mSpanList).insert (1 samples, 0.04%) + + + +runtime.(*mcache).refill (1 samples, 0.04%) + + + +net/url.unescape (1 samples, 0.04%) + + + +runtime.mapdelete (2 samples, 0.08%) + + + +net/url.ParseQuery (16 samples, 0.67%) + + + +encoding/json.stringEncoder (5 samples, 0.21%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*msgpackDecDriver).initReadNext (2 samples, 0.08%) + + + +encoding/json.typeEncoder (12 samples, 0.51%) + + + +runtime.heapBitsSetType (2 samples, 0.08%) + + + +strconv.formatBits (2 samples, 0.08%) + + + +strings.IndexAny (4 samples, 0.17%) + + + +bufio.(*Writer).Flush (2 samples, 0.08%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.shade (1 samples, 0.04%) + + + +runtime.newarray (5 samples, 0.21%) + + + +time.absDate (1 samples, 0.04%) + + + +runtime.(*mheap).alloc.func1 (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Node).getEdge.func1 (3 samples, 0.13%) + + + +runtime.newobject (1 samples, 0.04%) + + + +runtime.freedefer (1 samples, 0.04%) + + + +runtime.deferreturn (1 samples, 0.04%) + + + +net/url.unescape (2 samples, 0.08%) + + + +runtime.makeslice (6 samples, 0.25%) + + + +net/url.QueryUnescape (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime.assertE2T2 (1 samples, 0.04%) + + + +runtime.memmove (1 samples, 0.04%) + + + +runtime.newobject (1 samples, 0.04%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +runtime.futexsleep (2 samples, 0.08%) + + + +net/http.(*response).Header (1 samples, 0.04%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime.sweepone (1 samples, 0.04%) + + + +runtime.gcMark (1 samples, 0.04%) + + + +runtime.(*mcache).refill (4 samples, 0.17%) + + + +runtime.mapiterinit (3 samples, 0.13%) + + + +sync.(*Mutex).Lock (1 samples, 0.04%) + + + +net.(*netFD).readMsg (1 samples, 0.04%) + + + +runtime.memmove (1 samples, 0.04%) + + + +runtime.gentraceback (8 samples, 0.34%) + + + +runtime.markroot (1 samples, 0.04%) + + + +runtime.scang (1 samples, 0.04%) + + + +runtime.newarray (13 samples, 0.55%) + + + +runtime.scanobject (43 samples, 1.81%) +r.. + + +runtime.mapiternext (1 samples, 0.04%) + + + +runtime.mapassign1 (7 samples, 0.30%) + + + +runtime.newobject (1 samples, 0.04%) + + + +runtime.putfull (1 samples, 0.04%) + + + +runtime.gcAssistAlloc.func1 (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +net/http.(*chunkWriter).writeHeader.func1 (7 samples, 0.30%) + + + +runtime.unlock (1 samples, 0.04%) + + + +runtime.scanstack (1 samples, 0.04%) + + + +runtime.(*mcache).refill (4 samples, 0.17%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree.func1 (2 samples, 0.08%) + + + +sync.(*Mutex).Unlock (2 samples, 0.08%) + + + +net/http.Header.Set (18 samples, 0.76%) + + + +runtime.sweepone (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree.func1 (4 samples, 0.17%) + + + +github.com/hashicorp/consul/consul.(*inmemCodec).ReadRequestBody (14 samples, 0.59%) + + + +runtime.newMarkBits (1 samples, 0.04%) + + + +runtime.mapassign1 (8 samples, 0.34%) + + + +runtime.memmove (1 samples, 0.04%) + + + +strings.Map (2 samples, 0.08%) + + + +strings.ToLower (5 samples, 0.21%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +runtime.gcDrainN (1 samples, 0.04%) + + + +runtime.mapdelete (6 samples, 0.25%) + + + +runtime.mallocgc (5 samples, 0.21%) + + + +runtime.deferproc (2 samples, 0.08%) + + + +runtime.pcdatavalue (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.gosweepone.func1 (1 samples, 0.04%) + + + +runtime.newobject (7 samples, 0.30%) + + + +runtime.gcAssistAlloc.func1 (2 samples, 0.08%) + + + +runtime.pcdatavalue (18 samples, 0.76%) + + + +runtime.gcAssistAlloc.func1 (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree (1 samples, 0.04%) + + + +runtime.memclr (2 samples, 0.08%) + + + +runtime.systemstack (21 samples, 0.89%) + + + +runtime.growslice (7 samples, 0.30%) + + + +runtime.(*mcache).nextFree (1 samples, 0.04%) + + + +runtime.gchelper (10 samples, 0.42%) + + + +runtime.(*mcache).nextFree (1 samples, 0.04%) + + + +runtime.getitab (4 samples, 0.17%) + + + +syscall.Syscall (2 samples, 0.08%) + + + +runtime.gcmarkwb_m (6 samples, 0.25%) + + + +runtime.scanobject (3 samples, 0.13%) + + + +runtime.gcAssistAlloc.func1 (1 samples, 0.04%) + + + +runtime.findfunc (1 samples, 0.04%) + + + +runtime.mapaccess1_faststr (6 samples, 0.25%) + + + +bufio.(*Reader).ReadSlice (93 samples, 3.92%) +bufi.. + + +runtime.duffzero (1 samples, 0.04%) + + + +runtime.growslice (4 samples, 0.17%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).getInterval (10 samples, 0.42%) + + + +runtime.newdefer (1 samples, 0.04%) + + + +runtime.handoff (1 samples, 0.04%) + + + +net/url.shouldEscape (2 samples, 0.08%) + + + +runtime.rawstringtmp (2 samples, 0.08%) + + + +runtime.heapBitsSetType (3 samples, 0.13%) + + + +runtime.gcDrainN (1 samples, 0.04%) + + + +runtime.gchelper (2 samples, 0.08%) + + + +runtime.sweepone (1 samples, 0.04%) + + + +runtime.memclr (2 samples, 0.08%) + + + +runtime.slicebytetostring (57 samples, 2.40%) +ru.. + + +runtime.gcMarkTermination (1 samples, 0.04%) + + + +runtime.convT2E (4 samples, 0.17%) + + + +runtime.typedslicecopy (3 samples, 0.13%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*AggregateSample).Ingest (1 samples, 0.04%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +runtime/internal/atomic.Xadd64 (1 samples, 0.04%) + + + +net/url.unescape (1 samples, 0.04%) + + + +runtime.mallocgc (5 samples, 0.21%) + + + +runtime.getfull (1 samples, 0.04%) + + + +runtime.concatstrings (2 samples, 0.08%) + + + +runtime.mapaccess1_faststr (1 samples, 0.04%) + + + +reflect.flag.mustBeExported (2 samples, 0.08%) + + + +runtime.gcAssistAlloc.func1 (1 samples, 0.04%) + + + +reflect.Value.call (242 samples, 10.20%) +reflect.Value.c.. + + +runtime.gentraceback (2 samples, 0.08%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +time.Time.Truncate (1 samples, 0.04%) + + + +net/http.appendTime (6 samples, 0.25%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime.mallocgc (2 samples, 0.08%) + + + +runtime.unlock (1 samples, 0.04%) + + + +runtime.scanframeworker (1 samples, 0.04%) + + + +sync/atomic.AddUint32 (1 samples, 0.04%) + + + +runtime.scanobject (2 samples, 0.08%) + + + +reflect.Value.Interface (3 samples, 0.13%) + + + +runtime.(*mheap).alloc.func1 (1 samples, 0.04%) + + + +runtime.(*gcWork).balance (1 samples, 0.04%) + + + +github.com/hashicorp/consul/command/agent.(*HTTPServer).marshalJSON (137 samples, 5.78%) +github... + + +runtime.mapaccess2_faststr (5 samples, 0.21%) + + + +runtime.mapaccess2_faststr (8 samples, 0.34%) + + + +encoding/json.(*structEncoder).(encoding/json.encode)-fm (56 samples, 2.36%) +e.. + + +runtime.scanobject (1 samples, 0.04%) + + + +runtime.gcAssistAlloc (5 samples, 0.21%) + + + +reflect.(*rtype).Kind (1 samples, 0.04%) + + + +fmt.(*pp).handleMethods (15 samples, 0.63%) + + + +runtime.gcstopm (3 samples, 0.13%) + + + +runtime.mallocgc (4 samples, 0.17%) + + + +net/http.(*headerSorter).Less (3 samples, 0.13%) + + + +runtime.gcAssistAlloc.func1 (1 samples, 0.04%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +runtime.scanstack (8 samples, 0.34%) + + + +runtime.(*mcache).refill (4 samples, 0.17%) + + + +runtime.newobject (1 samples, 0.04%) + + + +runtime/internal/atomic.Cas (1 samples, 0.04%) + + + +net/rpc.(*Server).getResponse (4 samples, 0.17%) + + + +runtime.findfunc (2 samples, 0.08%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +runtime.usleep (1 samples, 0.04%) + + + +sync/atomic.CompareAndSwapUint32 (1 samples, 0.04%) + + + +runtime/internal/atomic.Cas (1 samples, 0.04%) + + + +runtime.duffzero (2 samples, 0.08%) + + + +runtime.(*mcache).nextFree.func1 (1 samples, 0.04%) + + + +bytes.makeSlice (3 samples, 0.13%) + + + +reflect.(*rtype).NumIn (2 samples, 0.08%) + + + +runtime.heapBitsSetType (1 samples, 0.04%) + + + +github.com/hashicorp/consul/command/agent.(*HTTPServer).parseDC (28 samples, 1.18%) + + + +runtime.scanstack (1 samples, 0.04%) + + + +runtime.schedule (69 samples, 2.91%) +ru.. + + +runtime.gcMark (1 samples, 0.04%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +runtime.mapassign1 (13 samples, 0.55%) + + + +encoding/json.Marshal (96 samples, 4.05%) +enco.. + + +runtime.(*mcache).nextFree (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).IncrCounter (30 samples, 1.26%) + + + +runtime.freedefer (1 samples, 0.04%) + + + +runtime.newdefer (1 samples, 0.04%) + + + +net/textproto.canonicalMIMEHeaderKey (5 samples, 0.21%) + + + +runtime.(*mSpanList).insert (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).AddSample (36 samples, 1.52%) + + + +runtime.mprof_GC (1 samples, 0.04%) + + + +runtime.newMarkBits (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +bytes.(*Buffer).WriteString (4 samples, 0.17%) + + + +vendor/golang_org/x/net/lex/httplex.ValidHeaderFieldValue (4 samples, 0.17%) + + + +strings.IndexAny (5 samples, 0.21%) + + + +runtime.markroot.func1 (1 samples, 0.04%) + + + +runtime.gcDrainN (1 samples, 0.04%) + + + +runtime.runqget (1 samples, 0.04%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime.heapBitsForObject (1 samples, 0.04%) + + + +runtime.typedmemmove (2 samples, 0.08%) + + + +sync/atomic.AddUint32 (2 samples, 0.08%) + + + +runtime.exitsyscall (1 samples, 0.04%) + + + +runtime.mstart1 (10 samples, 0.42%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime.lock (1 samples, 0.04%) + + + +runtime.(*workbuf).checkempty (1 samples, 0.04%) + + + +runtime.rawstringtmp (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +runtime.deferreturn (3 samples, 0.13%) + + + +runtime.deferproc.func1 (1 samples, 0.04%) + + + +runtime.futex (1 samples, 0.04%) + + + +runtime.(*mheap).alloc (2 samples, 0.08%) + + + +net/textproto.(*Reader).ReadLine (152 samples, 6.41%) +net/text.. + + +runtime.aeshashbody (2 samples, 0.08%) + + + +strings.(*byteReplacer).Replace (4 samples, 0.17%) + + + +runtime.scanobject (1 samples, 0.04%) + + + +runtime/internal/atomic.Cas (2 samples, 0.08%) + + + +runtime.procyield (1 samples, 0.04%) + + + +fmt.newPrinter (9 samples, 0.38%) + + + +runtime.newobject (1 samples, 0.04%) + + + +runtime.newobject (8 samples, 0.34%) + + + +runtime.gcMarkDone (1 samples, 0.04%) + + + +runtime.notewakeup (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.(*Raft).pipelineSend (2 samples, 0.08%) + + + +sync.(*RWMutex).RLock (1 samples, 0.04%) + + + +time.(*Location).get (1 samples, 0.04%) + + + +runtime.mallocgc (2 samples, 0.08%) + + + +runtime.mallocgc (4 samples, 0.17%) + + + +reflect.memclr (1 samples, 0.04%) + + + +runtime/internal/atomic.Cas (1 samples, 0.04%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +runtime.gentraceback (1 samples, 0.04%) + + + +runtime.(*mheap).alloc.func1 (1 samples, 0.04%) + + + +runtime/internal/atomic.Store (2 samples, 0.08%) + + + +runtime.(*mcache).nextFree.func1 (1 samples, 0.04%) + + + +runtime.(*mspan).countFree (1 samples, 0.04%) + + + +runtime.readgstatus (1 samples, 0.04%) + + + +bytes.(*Buffer).WriteByte (1 samples, 0.04%) + + + +runtime.mallocgc (6 samples, 0.25%) + + + +sync.runtime_procUnpin (1 samples, 0.04%) + + + +runtime.mallocgc (2 samples, 0.08%) + + + +runtime.deferreturn.func1 (1 samples, 0.04%) + + + +github.com/hashicorp/consul/command/agent.setIndex (32 samples, 1.35%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime.(*mspan).sweep (1 samples, 0.04%) + + + +runtime.heapBitsBulkBarrier (1 samples, 0.04%) + + + +runtime.memhash (1 samples, 0.04%) + + + +runtime.shade (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*decFnInfo).kStruct (1 samples, 0.04%) + + + +sync.(*Pool).getSlow (2 samples, 0.08%) + + + +runtime.mapassign1 (13 samples, 0.55%) + + + +reflect.valueInterface (1 samples, 0.04%) + + + +runtime.notesleep (1 samples, 0.04%) + + + +runtime.semacquire (3 samples, 0.13%) + + + +log.(*Logger).Output (55 samples, 2.32%) +l.. + + +runtime/internal/atomic.Xchg (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1 (10 samples, 0.42%) + + + +sync.(*Mutex).Lock (2 samples, 0.08%) + + + +runtime.heapBitsBulkBarrier (1 samples, 0.04%) + + + +runtime.mapiternext (1 samples, 0.04%) + + + +time.sendTime (1 samples, 0.04%) + + + +runtime.makeslice (3 samples, 0.13%) + + + +runtime.systemstack (8 samples, 0.34%) + + + +runtime.call64 (201 samples, 8.47%) +runtime.call64 + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*Txn).getIndexValue (8 samples, 0.34%) + + + +bytes.makeSlice.func1 (2 samples, 0.08%) + + + +runtime.gopark (2 samples, 0.08%) + + + +reflect.funcLayout (13 samples, 0.55%) + + + +reflect.Value.assignTo (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.(*Raft).pipelineReplicate (2 samples, 0.08%) + + + +sync.(*Pool).Put (1 samples, 0.04%) + + + +runtime.newobject (8 samples, 0.34%) + + + +runtime.gcDrain (1 samples, 0.04%) + + + +runtime.systemstack (2 samples, 0.08%) + + + +runtime.(*mspan).nextFreeIndex (1 samples, 0.04%) + + + +runtime.findfunc (1 samples, 0.04%) + + + +runtime.casfrom_Gscanstatus (1 samples, 0.04%) + + + +net/http.(*conn).serve (1,979 samples, 83.43%) +net/http.(*conn).serve + + +runtime.cansemacquire (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime/internal/atomic.Xchg (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +context.(*cancelCtx).cancel (10 samples, 0.42%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.mapaccess2_faststr (2 samples, 0.08%) + + + +runtime.(*mcache).nextFree.func1 (2 samples, 0.08%) + + + +reflect.ValueOf (1 samples, 0.04%) + + + +net/url.ParseQuery (36 samples, 1.52%) + + + +runtime.typedmemmove (1 samples, 0.04%) + + + +runtime.(*mheap).freeSpan.func1 (1 samples, 0.04%) + + + +runtime.mapassign1 (1 samples, 0.04%) + + + +runtime.memclr (1 samples, 0.04%) + + + +runtime.readvarint (3 samples, 0.13%) + + + +runtime.systemstack (4 samples, 0.17%) + + + +runtime.scanobject (1 samples, 0.04%) + + + +runtime.sweepone (1 samples, 0.04%) + + + +runtime.memclr (1 samples, 0.04%) + + + +strconv.FormatUint (5 samples, 0.21%) + + + +reflect.Value.Elem (2 samples, 0.08%) + + + +bufio.(*Reader).fill (92 samples, 3.88%) +bufi.. + + +runtime.mallocgc (3 samples, 0.13%) + + + +github.com/hashicorp/consul/logger.(*LogWriter).Write (13 samples, 0.55%) + + + +net/http.(*ServeMux).match (103 samples, 4.34%) +net/h.. + + +runtime.scang (1 samples, 0.04%) + + + +runtime.mapaccess1 (6 samples, 0.25%) + + + +runtime.futex (1 samples, 0.04%) + + + +runtime.typedmemmove (1 samples, 0.04%) + + + +runtime.usleep (5 samples, 0.21%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +net/textproto.canonicalMIMEHeaderKey (13 samples, 0.55%) + + + +net/textproto.MIMEHeader.Set (22 samples, 0.93%) + + + +runtime.restartg (1 samples, 0.04%) + + + +runtime.rawstringtmp (2 samples, 0.08%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.(*netPipeline).decodeResponses (3 samples, 0.13%) + + + +runtime.jmpdefer (1 samples, 0.04%) + + + +runtime.memmove (1 samples, 0.04%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +runtime.scanstack (1 samples, 0.04%) + + + +runtime.findfunc (1 samples, 0.04%) + + + +net/textproto.(*Reader).ReadMIMEHeader (95 samples, 4.01%) +net/.. + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +runtime.gcAssistAlloc.func1 (1 samples, 0.04%) + + + +runtime.heapBitsSetType (1 samples, 0.04%) + + + +runtime.makemap (3 samples, 0.13%) + + + +runtime.getcallersp (1 samples, 0.04%) + + + +runtime.(*mheap).alloc_m (2 samples, 0.08%) + + + +runtime.lfstackpop (1 samples, 0.04%) + + + +runtime.newobject (1 samples, 0.04%) + + + +runtime.gcDrain (149 samples, 6.28%) +runtime... + + +net/url.unescape (1 samples, 0.04%) + + + +reflect.ValueOf (1 samples, 0.04%) + + + +runtime.indexbytebody (3 samples, 0.13%) + + + +runtime.mprof_GC (2 samples, 0.08%) + + + +runtime.eqstring (1 samples, 0.04%) + + + +runtime.mallocgc (7 samples, 0.30%) + + + +runtime.memclr (1 samples, 0.04%) + + + +runtime.mapaccess1_faststr (2 samples, 0.08%) + + + +net/http.(*headerSorter).Len (1 samples, 0.04%) + + + +runtime.gcMarkTermination (1 samples, 0.04%) + + + +runtime.mallocgc (7 samples, 0.30%) + + + +net/url.ParseRequestURI (31 samples, 1.31%) + + + +runtime.typedmemmove (1 samples, 0.04%) + + + +runtime.scanobject (1 samples, 0.04%) + + + +runtime.sweepone (1 samples, 0.04%) + + + +reflect.Indirect (2 samples, 0.08%) + + + +runtime.mallocgc (6 samples, 0.25%) + + + +runtime.gcMarkDone (7 samples, 0.30%) + + + +runtime.lock (2 samples, 0.08%) + + + +net/url.(*URL).Query (22 samples, 0.93%) + + + +runtime.stopm (16 samples, 0.67%) + + + +runtime.step (9 samples, 0.38%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +reflect.valueInterface (3 samples, 0.13%) + + + +net.runtime_pollReset (2 samples, 0.08%) + + + +net/url.escape (5 samples, 0.21%) + + + +runtime.deferproc (4 samples, 0.17%) + + + +net/textproto.MIMEHeader.Del (4 samples, 0.17%) + + + +runtime.writebarrierptr_nostore1 (1 samples, 0.04%) + + + +runtime.systemstack (1 samples, 0.04%) + + + +runtime.(*mcache).nextFree.func1 (4 samples, 0.17%) + + + +runtime.systemstack (7 samples, 0.30%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime.(*mheap).alloc (2 samples, 0.08%) + + + +runtime.scang (2 samples, 0.08%) + + + +reflect.Value.assignTo (6 samples, 0.25%) + + + +net.(*UDPConn).WriteTo (1 samples, 0.04%) + + + +sync.(*Mutex).Unlock (1 samples, 0.04%) + + + +sync.(*Mutex).Lock (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Txn).Get (8 samples, 0.34%) + + + +runtime.gosweepone.func1 (1 samples, 0.04%) + + + +runtime.trygetfull (1 samples, 0.04%) + + + +runtime.getempty (1 samples, 0.04%) + + + +runtime.runqsteal (4 samples, 0.17%) + + + +runtime.(*gcWork).get (1 samples, 0.04%) + + + +sync.(*Mutex).Unlock (1 samples, 0.04%) + + + +sync/atomic.AddUint32 (1 samples, 0.04%) + + + +runtime.heapBitsSetType (2 samples, 0.08%) + + + +runtime.mallocgc (6 samples, 0.25%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +runtime.ifaceeq (1 samples, 0.04%) + + + +bytes.(*Buffer).WriteByte (6 samples, 0.25%) + + + +net/url.(*URL).String (35 samples, 1.48%) + + + +sync.(*RWMutex).Lock (3 samples, 0.13%) + + + +runtime.gcAssistAlloc (1 samples, 0.04%) + + + +runtime.profilealloc (1 samples, 0.04%) + + + +github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).flattenKey (18 samples, 0.76%) + + + +log.(*Logger).Printf (105 samples, 4.43%) +log.(.. + + +runtime.memmove (1 samples, 0.04%) + + + +net/url.parseQuery (14 samples, 0.59%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + +runtime.(*bucket).mp (1 samples, 0.04%) + + + +runtime.entersyscall (9 samples, 0.38%) + + + +runtime.typedmemmove (1 samples, 0.04%) + + + +time.Now (3 samples, 0.13%) + + + +runtime.writebarrierptr (1 samples, 0.04%) + + + +runtime.newobject (4 samples, 0.17%) + + + +runtime.mallocgc (1 samples, 0.04%) + + + +runtime.mapaccess1_faststr (1 samples, 0.04%) + + + +runtime.mallocgc (2 samples, 0.08%) + + + +runtime.makeslice (4 samples, 0.17%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*Decoder).Decode (2 samples, 0.08%) + + + +runtime.mProf_Free (1 samples, 0.04%) + + + +runtime.newobject (3 samples, 0.13%) + + + +net/http.(*Server).doKeepAlives (2 samples, 0.08%) + + + +runtime.wakep (1 samples, 0.04%) + + + +runtime.futex (2 samples, 0.08%) + + + +runtime.schedule (6 samples, 0.25%) + + + +runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%) + + + +sync.(*Pool).getSlow (3 samples, 0.13%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*Decoder).decodeValue (1 samples, 0.04%) + + + +runtime.newarray (13 samples, 0.55%) + + + +runtime.(*mcache).refill (2 samples, 0.08%) + + + +runtime.rawstringtmp (1 samples, 0.04%) + + + +runtime.gentraceback (2 samples, 0.08%) + + + +runtime.makemap (3 samples, 0.13%) + + + +bytes.(*Buffer).grow (4 samples, 0.17%) + + + +runtime.markrootSpans (3 samples, 0.13%) + + + +github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Node).getEdge (4 samples, 0.17%) + + + +runtime.freedefer (1 samples, 0.04%) + + + +runtime.step (2 samples, 0.08%) + + + +runtime.deferproc.func1 (1 samples, 0.04%) + + + +net/url.QueryUnescape (2 samples, 0.08%) + + + +runtime.rawstring (1 samples, 0.04%) + + + +runtime.concatstring3 (2 samples, 0.08%) + + + +runtime.gcmarkwb_m (1 samples, 0.04%) + + + diff --git a/command/agent/acl.go b/command/agent/acl.go new file mode 100644 index 0000000000..ee1aeb620e --- /dev/null +++ b/command/agent/acl.go @@ -0,0 +1,452 @@ +package agent + +import ( + "errors" + "fmt" + "strings" + "sync" + "time" + + "github.com/armon/go-metrics" + "github.com/hashicorp/consul/acl" + "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/consul/types" + "github.com/hashicorp/golang-lru" + "github.com/hashicorp/serf/serf" +) + +// There's enough behavior difference with client-side ACLs that we've +// intentionally kept this code separate from the server-side ACL code in +// consul/acl.go. We may refactor some of the caching logic in the future, +// but for now we are developing this separately to see how things shake out. + +// These must be kept in sync with the constants in consul/acl.go. +const ( + // aclNotFound indicates there is no matching ACL. + aclNotFound = "ACL not found" + + // rootDenied is returned when attempting to resolve a root ACL. + rootDenied = "Cannot resolve root ACL" + + // permissionDenied is returned when an ACL based rejection happens. + permissionDenied = "Permission denied" + + // aclDisabled is returned when ACL changes are not permitted since they + // are disabled. + aclDisabled = "ACL support disabled" + + // anonymousToken is the token ID we re-write to if there is no token ID + // provided. + anonymousToken = "anonymous" + + // Maximum number of cached ACL entries. + aclCacheSize = 10 * 1024 +) + +var ( + permissionDeniedErr = errors.New(permissionDenied) +) + +// aclCacheEntry is used to cache ACL tokens. +type aclCacheEntry struct { + // ACL is the cached ACL. + ACL acl.ACL + + // Expires is set based on the TTL for the ACL. + Expires time.Time + + // ETag is used as an optimization when fetching ACLs from servers to + // avoid transmitting data back when the agent has a good copy, which is + // usually the case when refreshing a TTL. + ETag string +} + +// aclManager is used by the agent to keep track of state related to ACLs, +// including caching tokens from the servers. This has some internal state that +// we don't want to dump into the agent itself. +type aclManager struct { + // acls is a cache mapping ACL tokens to compiled policies. + acls *lru.TwoQueueCache + + // master is the ACL to use when the agent master token is supplied. + // This may be nil if that option isn't set in the agent config. + master acl.ACL + + // down is the ACL to use when the servers are down. This may be nil + // which means to try and use the cached policy if there is one (or + // deny if there isn't a policy in the cache). + down acl.ACL + + // disabled is used to keep track of feedback from the servers that ACLs + // are disabled. If the manager discovers that ACLs are disabled, this + // will be set to the next time we should check to see if they have been + // enabled. This helps cut useless traffic, but allows us to turn on ACL + // support at the servers without having to restart the whole cluster. + disabled time.Time + disabledLock sync.RWMutex +} + +// newACLManager returns an ACL manager based on the given config. +func newACLManager(config *Config) (*aclManager, error) { + // Set up the cache from ID to ACL (we don't cache policies like the + // servers; only one level). + acls, err := lru.New2Q(aclCacheSize) + if err != nil { + return nil, err + } + + // If an agent master token is configured, build a policy and ACL for + // it, otherwise leave it nil. + var master acl.ACL + if len(config.ACLAgentMasterToken) > 0 { + policy := &acl.Policy{ + Agents: []*acl.AgentPolicy{ + &acl.AgentPolicy{ + Node: config.NodeName, + Policy: acl.PolicyWrite, + }, + }, + } + acl, err := acl.New(acl.DenyAll(), policy) + if err != nil { + return nil, err + } + master = acl + } + + var down acl.ACL + switch config.ACLDownPolicy { + case "allow": + down = acl.AllowAll() + case "deny": + down = acl.DenyAll() + case "extend-cache": + // Leave the down policy as nil to signal this. + default: + return nil, fmt.Errorf("invalid ACL down policy %q", config.ACLDownPolicy) + } + + // Give back a manager. + return &aclManager{ + acls: acls, + master: master, + down: down, + }, nil +} + +// isDisabled returns true if the manager has discovered that ACLs are disabled +// on the servers. +func (m *aclManager) isDisabled() bool { + m.disabledLock.RLock() + defer m.disabledLock.RUnlock() + return time.Now().Before(m.disabled) +} + +// lookupACL attempts to locate the compiled policy associated with the given +// token. The agent may be used to perform RPC calls to the servers to fetch +// policies that aren't in the cache. +func (m *aclManager) lookupACL(agent *Agent, id string) (acl.ACL, error) { + // Handle some special cases for the ID. + if len(id) == 0 { + id = anonymousToken + } else if acl.RootACL(id) != nil { + return nil, errors.New(rootDenied) + } else if m.master != nil && id == agent.config.ACLAgentMasterToken { + return m.master, nil + } + + // Try the cache first. + var cached *aclCacheEntry + if raw, ok := m.acls.Get(id); ok { + cached = raw.(*aclCacheEntry) + } + if cached != nil && time.Now().Before(cached.Expires) { + metrics.IncrCounter([]string{"consul", "acl", "cache_hit"}, 1) + return cached.ACL, nil + } else { + metrics.IncrCounter([]string{"consul", "acl", "cache_miss"}, 1) + } + + // At this point we might have a stale cached ACL, or none at all, so + // try to contact the servers. + args := structs.ACLPolicyRequest{ + Datacenter: agent.config.Datacenter, + ACL: id, + } + if cached != nil { + args.ETag = cached.ETag + } + var reply structs.ACLPolicy + err := agent.RPC(agent.getEndpoint("ACL")+".GetPolicy", &args, &reply) + if err != nil { + if strings.Contains(err.Error(), aclDisabled) { + agent.logger.Printf("[DEBUG] agent: ACLs disabled on servers, will check again after %s", agent.config.ACLDisabledTTL) + m.disabledLock.Lock() + m.disabled = time.Now().Add(agent.config.ACLDisabledTTL) + m.disabledLock.Unlock() + return nil, nil + } else if strings.Contains(err.Error(), aclNotFound) { + return nil, errors.New(aclNotFound) + } else { + agent.logger.Printf("[DEBUG] agent: Failed to get policy for ACL from servers: %v", err) + if m.down != nil { + return m.down, nil + } else if cached != nil { + return cached.ACL, nil + } else { + return acl.DenyAll(), nil + } + } + } + + // Use the old cached compiled ACL if we can, otherwise compile it and + // resolve any parents. + var compiled acl.ACL + if cached != nil && cached.ETag == reply.ETag { + compiled = cached.ACL + } else { + parent := acl.RootACL(reply.Parent) + if parent == nil { + parent, err = m.lookupACL(agent, reply.Parent) + if err != nil { + return nil, err + } + } + + acl, err := acl.New(parent, reply.Policy) + if err != nil { + return nil, err + } + compiled = acl + } + + // Update the cache. + cached = &aclCacheEntry{ + ACL: compiled, + ETag: reply.ETag, + } + if reply.TTL > 0 { + cached.Expires = time.Now().Add(reply.TTL) + } + m.acls.Add(id, cached) + return compiled, nil +} + +// resolveToken is the primary interface used by ACL-checkers in the agent +// endpoints, which is the one place where we do some ACL enforcement on +// clients. Some of the enforcement is normative (e.g. self and monitor) +// and some is informative (e.g. catalog and health). +func (a *Agent) resolveToken(id string) (acl.ACL, error) { + // Disable ACLs if version 8 enforcement isn't enabled. + if !(*a.config.ACLEnforceVersion8) { + return nil, nil + } + + // Bail if the ACL manager is disabled. This happens if it gets feedback + // from the servers that ACLs are disabled. + if a.acls.isDisabled() { + return nil, nil + } + + // This will look in the cache and fetch from the servers if necessary. + return a.acls.lookupACL(a, id) +} + +// vetServiceRegister makes sure the service registration action is allowed by +// the given token. +func (a *Agent) vetServiceRegister(token string, service *structs.NodeService) error { + // Resolve the token and bail if ACLs aren't enabled. + acl, err := a.resolveToken(token) + if err != nil { + return err + } + if acl == nil { + return nil + } + + // Vet the service itself. + if !acl.ServiceWrite(service.Service) { + return permissionDeniedErr + } + + // Vet any service that might be getting overwritten. + services := a.state.Services() + if existing, ok := services[service.ID]; ok { + if !acl.ServiceWrite(existing.Service) { + return permissionDeniedErr + } + } + + return nil +} + +// vetServiceUpdate makes sure the service update action is allowed by the given +// token. +func (a *Agent) vetServiceUpdate(token string, serviceID string) error { + // Resolve the token and bail if ACLs aren't enabled. + acl, err := a.resolveToken(token) + if err != nil { + return err + } + if acl == nil { + return nil + } + + // Vet any changes based on the existing services's info. + services := a.state.Services() + if existing, ok := services[serviceID]; ok { + if !acl.ServiceWrite(existing.Service) { + return permissionDeniedErr + } + } else { + return fmt.Errorf("Unknown service %q", serviceID) + } + + return nil +} + +// vetCheckRegister makes sure the check registration action is allowed by the +// given token. +func (a *Agent) vetCheckRegister(token string, check *structs.HealthCheck) error { + // Resolve the token and bail if ACLs aren't enabled. + acl, err := a.resolveToken(token) + if err != nil { + return err + } + if acl == nil { + return nil + } + + // Vet the check itself. + if len(check.ServiceName) > 0 { + if !acl.ServiceWrite(check.ServiceName) { + return permissionDeniedErr + } + } else { + if !acl.NodeWrite(a.config.NodeName) { + return permissionDeniedErr + } + } + + // Vet any check that might be getting overwritten. + checks := a.state.Checks() + if existing, ok := checks[check.CheckID]; ok { + if len(existing.ServiceName) > 0 { + if !acl.ServiceWrite(existing.ServiceName) { + return permissionDeniedErr + } + } else { + if !acl.NodeWrite(a.config.NodeName) { + return permissionDeniedErr + } + } + } + + return nil +} + +// vetCheckUpdate makes sure that a check update is allowed by the given token. +func (a *Agent) vetCheckUpdate(token string, checkID types.CheckID) error { + // Resolve the token and bail if ACLs aren't enabled. + acl, err := a.resolveToken(token) + if err != nil { + return err + } + if acl == nil { + return nil + } + + // Vet any changes based on the existing check's info. + checks := a.state.Checks() + if existing, ok := checks[checkID]; ok { + if len(existing.ServiceName) > 0 { + if !acl.ServiceWrite(existing.ServiceName) { + return permissionDeniedErr + } + } else { + if !acl.NodeWrite(a.config.NodeName) { + return permissionDeniedErr + } + } + } else { + return fmt.Errorf("Unknown check %q", checkID) + } + + return nil +} + +// filterMembers redacts members that the token doesn't have access to. +func (a *Agent) filterMembers(token string, members *[]serf.Member) error { + // Resolve the token and bail if ACLs aren't enabled. + acl, err := a.resolveToken(token) + if err != nil { + return err + } + if acl == nil { + return nil + } + + // Filter out members based on the node policy. + m := *members + for i := 0; i < len(m); i++ { + node := m[i].Name + if acl.NodeRead(node) { + continue + } + a.logger.Printf("[DEBUG] agent: dropping node %q from result due to ACLs", node) + m = append(m[:i], m[i+1:]...) + i-- + } + *members = m + return nil +} + +// filterServices redacts services that the token doesn't have access to. +func (a *Agent) filterServices(token string, services *map[string]*structs.NodeService) error { + // Resolve the token and bail if ACLs aren't enabled. + acl, err := a.resolveToken(token) + if err != nil { + return err + } + if acl == nil { + return nil + } + + // Filter out services based on the service policy. + for id, service := range *services { + if acl.ServiceRead(service.Service) { + continue + } + a.logger.Printf("[DEBUG] agent: dropping service %q from result due to ACLs", id) + delete(*services, id) + } + return nil +} + +// filterChecks redacts checks that the token doesn't have access to. +func (a *Agent) filterChecks(token string, checks *map[types.CheckID]*structs.HealthCheck) error { + // Resolve the token and bail if ACLs aren't enabled. + acl, err := a.resolveToken(token) + if err != nil { + return err + } + if acl == nil { + return nil + } + + // Filter out checks based on the node or service policy. + for id, check := range *checks { + if len(check.ServiceName) > 0 { + if acl.ServiceRead(check.ServiceName) { + continue + } + } else { + if acl.NodeRead(a.config.NodeName) { + continue + } + } + a.logger.Printf("[DEBUG] agent: dropping check %q from result due to ACLs", id) + delete(*checks, id) + } + return nil +} diff --git a/command/agent/acl_endpoint.go b/command/agent/acl_endpoint.go index b60502ce99..e97189e2c7 100644 --- a/command/agent/acl_endpoint.go +++ b/command/agent/acl_endpoint.go @@ -13,8 +13,8 @@ type aclCreateResponse struct { ID string } -// aclDisabled handles if ACL datacenter is not configured -func aclDisabled(resp http.ResponseWriter, req *http.Request) (interface{}, error) { +// ACLDisabled handles if ACL datacenter is not configured +func ACLDisabled(resp http.ResponseWriter, req *http.Request) (interface{}, error) { resp.WriteHeader(401) resp.Write([]byte("ACL support disabled")) return nil, nil diff --git a/command/agent/acl_test.go b/command/agent/acl_test.go new file mode 100644 index 0000000000..2723cda002 --- /dev/null +++ b/command/agent/acl_test.go @@ -0,0 +1,863 @@ +package agent + +import ( + "errors" + "fmt" + "io/ioutil" + "os" + "strings" + "testing" + "time" + + rawacl "github.com/hashicorp/consul/acl" + "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/consul/testutil" + "github.com/hashicorp/consul/types" + "github.com/hashicorp/serf/serf" +) + +func TestACL_Bad_Config(t *testing.T) { + config := nextConfig() + config.ACLDownPolicy = "nope" + + var err error + config.DataDir, err = ioutil.TempDir("", "agent") + if err != nil { + t.Fatalf("err: %v", err) + } + defer os.RemoveAll(config.DataDir) + + _, err = Create(config, nil, nil, nil) + if err == nil || !strings.Contains(err.Error(), "invalid ACL down policy") { + t.Fatalf("err: %v", err) + } +} + +type MockServer struct { + getPolicyFn func(*structs.ACLPolicyRequest, *structs.ACLPolicy) error +} + +func (m *MockServer) GetPolicy(args *structs.ACLPolicyRequest, reply *structs.ACLPolicy) error { + if m.getPolicyFn != nil { + return m.getPolicyFn(args, reply) + } else { + return fmt.Errorf("should not have called GetPolicy") + } +} + +func TestACL_Version8(t *testing.T) { + config := nextConfig() + config.ACLEnforceVersion8 = Bool(false) + + dir, agent := makeAgent(t, config) + defer os.RemoveAll(dir) + defer agent.Shutdown() + + testutil.WaitForLeader(t, agent.RPC, "dc1") + + m := MockServer{} + if err := agent.InjectEndpoint("ACL", &m); err != nil { + t.Fatalf("err: %v", err) + } + + // With version 8 enforcement off, this should not get called. + m.getPolicyFn = func(*structs.ACLPolicyRequest, *structs.ACLPolicy) error { + t.Fatalf("should not have called to server") + return nil + } + if token, err := agent.resolveToken("nope"); token != nil || err != nil { + t.Fatalf("bad: %v err: %v", token, err) + } +} + +func TestACL_Disabled(t *testing.T) { + config := nextConfig() + config.ACLDisabledTTL = 10 * time.Millisecond + config.ACLEnforceVersion8 = Bool(true) + + dir, agent := makeAgent(t, config) + defer os.RemoveAll(dir) + defer agent.Shutdown() + + testutil.WaitForLeader(t, agent.RPC, "dc1") + + m := MockServer{} + if err := agent.InjectEndpoint("ACL", &m); err != nil { + t.Fatalf("err: %v", err) + } + + // Fetch a token without ACLs enabled and make sure the manager sees it. + m.getPolicyFn = func(*structs.ACLPolicyRequest, *structs.ACLPolicy) error { + return errors.New(aclDisabled) + } + if agent.acls.isDisabled() { + t.Fatalf("should not be disabled yet") + } + if token, err := agent.resolveToken("nope"); token != nil || err != nil { + t.Fatalf("bad: %v err: %v", token, err) + } + if !agent.acls.isDisabled() { + t.Fatalf("should be disabled") + } + + // Now turn on ACLs and check right away, it should still think ACLs are + // disabled since we don't check again right away. + m.getPolicyFn = func(*structs.ACLPolicyRequest, *structs.ACLPolicy) error { + return errors.New(aclNotFound) + } + if token, err := agent.resolveToken("nope"); token != nil || err != nil { + t.Fatalf("bad: %v err: %v", token, err) + } + if !agent.acls.isDisabled() { + t.Fatalf("should be disabled") + } + + // Wait the waiting period and make sure it checks again. Do a few tries + // to make sure we don't think it's disabled. + time.Sleep(2 * config.ACLDisabledTTL) + for i := 0; i < 10; i++ { + _, err := agent.resolveToken("nope") + if err == nil || !strings.Contains(err.Error(), aclNotFound) { + t.Fatalf("err: %v", err) + } + if agent.acls.isDisabled() { + t.Fatalf("should not be disabled") + } + } +} + +func TestACL_Special_IDs(t *testing.T) { + config := nextConfig() + config.ACLEnforceVersion8 = Bool(true) + config.ACLAgentMasterToken = "towel" + + dir, agent := makeAgent(t, config) + defer os.RemoveAll(dir) + defer agent.Shutdown() + + testutil.WaitForLeader(t, agent.RPC, "dc1") + + m := MockServer{} + if err := agent.InjectEndpoint("ACL", &m); err != nil { + t.Fatalf("err: %v", err) + } + + // An empty ID should get mapped to the anonymous token. + m.getPolicyFn = func(req *structs.ACLPolicyRequest, reply *structs.ACLPolicy) error { + if req.ACL != "anonymous" { + t.Fatalf("bad: %#v", *req) + } + return errors.New(aclNotFound) + } + _, err := agent.resolveToken("") + if err == nil || !strings.Contains(err.Error(), aclNotFound) { + t.Fatalf("err: %v", err) + } + + // A root ACL request should get rejected and not call the server. + m.getPolicyFn = func(*structs.ACLPolicyRequest, *structs.ACLPolicy) error { + t.Fatalf("should not have called to server") + return nil + } + _, err = agent.resolveToken("deny") + if err == nil || !strings.Contains(err.Error(), rootDenied) { + t.Fatalf("err: %v", err) + } + + // The ACL master token should also not call the server, but should give + // us a working agent token. + acl, err := agent.resolveToken("towel") + if err != nil { + t.Fatalf("err: %v", err) + } + if acl == nil { + t.Fatalf("should not be nil") + } + if !acl.AgentRead(config.NodeName) { + t.Fatalf("should be able to read agent") + } + if !acl.AgentWrite(config.NodeName) { + t.Fatalf("should be able to write agent") + } +} + +func TestACL_Down_Deny(t *testing.T) { + config := nextConfig() + config.ACLDownPolicy = "deny" + config.ACLEnforceVersion8 = Bool(true) + + dir, agent := makeAgent(t, config) + defer os.RemoveAll(dir) + defer agent.Shutdown() + + testutil.WaitForLeader(t, agent.RPC, "dc1") + + m := MockServer{} + if err := agent.InjectEndpoint("ACL", &m); err != nil { + t.Fatalf("err: %v", err) + } + + // Resolve with ACLs down. + m.getPolicyFn = func(*structs.ACLPolicyRequest, *structs.ACLPolicy) error { + return fmt.Errorf("ACLs are broken") + } + acl, err := agent.resolveToken("nope") + if err != nil { + t.Fatalf("err: %v", err) + } + if acl == nil { + t.Fatalf("should not be nil") + } + if acl.AgentRead(config.NodeName) { + t.Fatalf("should deny") + } +} + +func TestACL_Down_Allow(t *testing.T) { + config := nextConfig() + config.ACLDownPolicy = "allow" + config.ACLEnforceVersion8 = Bool(true) + + dir, agent := makeAgent(t, config) + defer os.RemoveAll(dir) + defer agent.Shutdown() + + testutil.WaitForLeader(t, agent.RPC, "dc1") + + m := MockServer{} + if err := agent.InjectEndpoint("ACL", &m); err != nil { + t.Fatalf("err: %v", err) + } + + // Resolve with ACLs down. + m.getPolicyFn = func(*structs.ACLPolicyRequest, *structs.ACLPolicy) error { + return fmt.Errorf("ACLs are broken") + } + acl, err := agent.resolveToken("nope") + if err != nil { + t.Fatalf("err: %v", err) + } + if acl == nil { + t.Fatalf("should not be nil") + } + if !acl.AgentRead(config.NodeName) { + t.Fatalf("should allow") + } +} + +func TestACL_Down_Extend(t *testing.T) { + config := nextConfig() + config.ACLDownPolicy = "extend-cache" + config.ACLEnforceVersion8 = Bool(true) + + dir, agent := makeAgent(t, config) + defer os.RemoveAll(dir) + defer agent.Shutdown() + + testutil.WaitForLeader(t, agent.RPC, "dc1") + + m := MockServer{} + if err := agent.InjectEndpoint("ACL", &m); err != nil { + t.Fatalf("err: %v", err) + } + + // Populate the cache for one of the tokens. + m.getPolicyFn = func(req *structs.ACLPolicyRequest, reply *structs.ACLPolicy) error { + *reply = structs.ACLPolicy{ + Parent: "allow", + Policy: &rawacl.Policy{ + Agents: []*rawacl.AgentPolicy{ + &rawacl.AgentPolicy{ + Node: config.NodeName, + Policy: "read", + }, + }, + }, + } + return nil + } + acl, err := agent.resolveToken("yep") + if err != nil { + t.Fatalf("err: %v", err) + } + if acl == nil { + t.Fatalf("should not be nil") + } + if !acl.AgentRead(config.NodeName) { + t.Fatalf("should allow") + } + if acl.AgentWrite(config.NodeName) { + t.Fatalf("should deny") + } + + // Now take down ACLs and make sure a new token fails to resolve. + m.getPolicyFn = func(*structs.ACLPolicyRequest, *structs.ACLPolicy) error { + return fmt.Errorf("ACLs are broken") + } + acl, err = agent.resolveToken("nope") + if err != nil { + t.Fatalf("err: %v", err) + } + if acl == nil { + t.Fatalf("should not be nil") + } + if acl.AgentRead(config.NodeName) { + t.Fatalf("should deny") + } + if acl.AgentWrite(config.NodeName) { + t.Fatalf("should deny") + } + + // Read the token from the cache while ACLs are broken, which should + // extend. + acl, err = agent.resolveToken("yep") + if err != nil { + t.Fatalf("err: %v", err) + } + if acl == nil { + t.Fatalf("should not be nil") + } + if !acl.AgentRead(config.NodeName) { + t.Fatalf("should allow") + } + if acl.AgentWrite(config.NodeName) { + t.Fatalf("should deny") + } +} + +func TestACL_Cache(t *testing.T) { + config := nextConfig() + config.ACLEnforceVersion8 = Bool(true) + + dir, agent := makeAgent(t, config) + defer os.RemoveAll(dir) + defer agent.Shutdown() + + testutil.WaitForLeader(t, agent.RPC, "dc1") + + m := MockServer{} + if err := agent.InjectEndpoint("ACL", &m); err != nil { + t.Fatalf("err: %v", err) + } + + // Populate the cache for one of the tokens. + m.getPolicyFn = func(req *structs.ACLPolicyRequest, reply *structs.ACLPolicy) error { + *reply = structs.ACLPolicy{ + ETag: "hash1", + Parent: "deny", + Policy: &rawacl.Policy{ + Agents: []*rawacl.AgentPolicy{ + &rawacl.AgentPolicy{ + Node: config.NodeName, + Policy: "read", + }, + }, + }, + TTL: 10 * time.Millisecond, + } + return nil + } + acl, err := agent.resolveToken("yep") + if err != nil { + t.Fatalf("err: %v", err) + } + if acl == nil { + t.Fatalf("should not be nil") + } + if !acl.AgentRead(config.NodeName) { + t.Fatalf("should allow") + } + if acl.AgentWrite(config.NodeName) { + t.Fatalf("should deny") + } + if acl.NodeRead("nope") { + t.Fatalf("should deny") + } + + // Fetch right away and make sure it uses the cache. + m.getPolicyFn = func(*structs.ACLPolicyRequest, *structs.ACLPolicy) error { + t.Fatalf("should not have called to server") + return nil + } + acl, err = agent.resolveToken("yep") + if err != nil { + t.Fatalf("err: %v", err) + } + if acl == nil { + t.Fatalf("should not be nil") + } + if !acl.AgentRead(config.NodeName) { + t.Fatalf("should allow") + } + if acl.AgentWrite(config.NodeName) { + t.Fatalf("should deny") + } + if acl.NodeRead("nope") { + t.Fatalf("should deny") + } + + // Wait for the TTL to expire and try again. This time the token will be + // gone. + time.Sleep(20 * time.Millisecond) + m.getPolicyFn = func(req *structs.ACLPolicyRequest, reply *structs.ACLPolicy) error { + return errors.New(aclNotFound) + } + _, err = agent.resolveToken("yep") + if err == nil || !strings.Contains(err.Error(), aclNotFound) { + t.Fatalf("err: %v", err) + } + + // Page it back in with a new tag and different policy + m.getPolicyFn = func(req *structs.ACLPolicyRequest, reply *structs.ACLPolicy) error { + *reply = structs.ACLPolicy{ + ETag: "hash2", + Parent: "deny", + Policy: &rawacl.Policy{ + Agents: []*rawacl.AgentPolicy{ + &rawacl.AgentPolicy{ + Node: config.NodeName, + Policy: "write", + }, + }, + }, + TTL: 10 * time.Millisecond, + } + return nil + } + acl, err = agent.resolveToken("yep") + if err != nil { + t.Fatalf("err: %v", err) + } + if acl == nil { + t.Fatalf("should not be nil") + } + if !acl.AgentRead(config.NodeName) { + t.Fatalf("should allow") + } + if !acl.AgentWrite(config.NodeName) { + t.Fatalf("should allow") + } + if acl.NodeRead("nope") { + t.Fatalf("should deny") + } + + // Wait for the TTL to expire and try again. This will match the tag + // and not send the policy back, but we should have the old token + // behavior. + time.Sleep(20 * time.Millisecond) + var didRefresh bool + m.getPolicyFn = func(req *structs.ACLPolicyRequest, reply *structs.ACLPolicy) error { + *reply = structs.ACLPolicy{ + ETag: "hash2", + TTL: 10 * time.Millisecond, + } + didRefresh = true + return nil + } + acl, err = agent.resolveToken("yep") + if err != nil { + t.Fatalf("err: %v", err) + } + if acl == nil { + t.Fatalf("should not be nil") + } + if !acl.AgentRead(config.NodeName) { + t.Fatalf("should allow") + } + if !acl.AgentWrite(config.NodeName) { + t.Fatalf("should allow") + } + if acl.NodeRead("nope") { + t.Fatalf("should deny") + } + if !didRefresh { + t.Fatalf("should refresh") + } +} + +// catalogPolicy supplies some standard policies to help with testing the +// catalog-related vet and filter functions. +func catalogPolicy(req *structs.ACLPolicyRequest, reply *structs.ACLPolicy) error { + reply.Policy = &rawacl.Policy{} + + switch req.ACL { + + case "node-ro": + reply.Policy.Nodes = append(reply.Policy.Nodes, + &rawacl.NodePolicy{Name: "Node", Policy: "read"}) + + case "node-rw": + reply.Policy.Nodes = append(reply.Policy.Nodes, + &rawacl.NodePolicy{Name: "Node", Policy: "write"}) + + case "service-ro": + reply.Policy.Services = append(reply.Policy.Services, + &rawacl.ServicePolicy{Name: "service", Policy: "read"}) + + case "service-rw": + reply.Policy.Services = append(reply.Policy.Services, + &rawacl.ServicePolicy{Name: "service", Policy: "write"}) + + case "other-rw": + reply.Policy.Services = append(reply.Policy.Services, + &rawacl.ServicePolicy{Name: "other", Policy: "write"}) + + default: + return fmt.Errorf("unknown token %q", req.ACL) + } + + return nil +} + +func TestACL_vetServiceRegister(t *testing.T) { + config := nextConfig() + config.ACLEnforceVersion8 = Bool(true) + + dir, agent := makeAgent(t, config) + defer os.RemoveAll(dir) + defer agent.Shutdown() + + testutil.WaitForLeader(t, agent.RPC, "dc1") + + m := MockServer{catalogPolicy} + if err := agent.InjectEndpoint("ACL", &m); err != nil { + t.Fatalf("err: %v", err) + } + + // Register a new service, with permission. + err := agent.vetServiceRegister("service-rw", &structs.NodeService{ + ID: "my-service", + Service: "service", + }) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Register a new service without write privs. + err = agent.vetServiceRegister("service-ro", &structs.NodeService{ + ID: "my-service", + Service: "service", + }) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Try to register over a service without write privs to the existing + // service. + agent.state.AddService(&structs.NodeService{ + ID: "my-service", + Service: "other", + }, "") + err = agent.vetServiceRegister("service-rw", &structs.NodeService{ + ID: "my-service", + Service: "service", + }) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } +} + +func TestACL_vetServiceUpdate(t *testing.T) { + config := nextConfig() + config.ACLEnforceVersion8 = Bool(true) + + dir, agent := makeAgent(t, config) + defer os.RemoveAll(dir) + defer agent.Shutdown() + + testutil.WaitForLeader(t, agent.RPC, "dc1") + + m := MockServer{catalogPolicy} + if err := agent.InjectEndpoint("ACL", &m); err != nil { + t.Fatalf("err: %v", err) + } + + // Update a service that doesn't exist. + err := agent.vetServiceUpdate("service-rw", "my-service") + if err == nil || !strings.Contains(err.Error(), "Unknown service") { + t.Fatalf("err: %v", err) + } + + // Update with write privs. + agent.state.AddService(&structs.NodeService{ + ID: "my-service", + Service: "service", + }, "") + err = agent.vetServiceUpdate("service-rw", "my-service") + if err != nil { + t.Fatalf("err: %v", err) + } + + // Update without write privs. + err = agent.vetServiceUpdate("service-ro", "my-service") + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } +} + +func TestACL_vetCheckRegister(t *testing.T) { + config := nextConfig() + config.ACLEnforceVersion8 = Bool(true) + + dir, agent := makeAgent(t, config) + defer os.RemoveAll(dir) + defer agent.Shutdown() + + testutil.WaitForLeader(t, agent.RPC, "dc1") + + m := MockServer{catalogPolicy} + if err := agent.InjectEndpoint("ACL", &m); err != nil { + t.Fatalf("err: %v", err) + } + + // Register a new service check with write privs. + err := agent.vetCheckRegister("service-rw", &structs.HealthCheck{ + CheckID: types.CheckID("my-check"), + ServiceID: "my-service", + ServiceName: "service", + }) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Register a new service check without write privs. + err = agent.vetCheckRegister("service-ro", &structs.HealthCheck{ + CheckID: types.CheckID("my-check"), + ServiceID: "my-service", + ServiceName: "service", + }) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Register a new node check with write privs. + err = agent.vetCheckRegister("node-rw", &structs.HealthCheck{ + CheckID: types.CheckID("my-check"), + }) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Register a new node check without write privs. + err = agent.vetCheckRegister("node-ro", &structs.HealthCheck{ + CheckID: types.CheckID("my-check"), + }) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Try to register over a service check without write privs to the + // existing service. + agent.state.AddService(&structs.NodeService{ + ID: "my-service", + Service: "service", + }, "") + agent.state.AddCheck(&structs.HealthCheck{ + CheckID: types.CheckID("my-check"), + ServiceID: "my-service", + ServiceName: "other", + }, "") + err = agent.vetCheckRegister("service-rw", &structs.HealthCheck{ + CheckID: types.CheckID("my-check"), + ServiceID: "my-service", + ServiceName: "service", + }) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Try to register over a node check without write privs to the node. + agent.state.AddCheck(&structs.HealthCheck{ + CheckID: types.CheckID("my-node-check"), + }, "") + err = agent.vetCheckRegister("service-rw", &structs.HealthCheck{ + CheckID: types.CheckID("my-node-check"), + ServiceID: "my-service", + ServiceName: "service", + }) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } +} + +func TestACL_vetCheckUpdate(t *testing.T) { + config := nextConfig() + config.ACLEnforceVersion8 = Bool(true) + + dir, agent := makeAgent(t, config) + defer os.RemoveAll(dir) + defer agent.Shutdown() + + testutil.WaitForLeader(t, agent.RPC, "dc1") + + m := MockServer{catalogPolicy} + if err := agent.InjectEndpoint("ACL", &m); err != nil { + t.Fatalf("err: %v", err) + } + + // Update a check that doesn't exist. + err := agent.vetCheckUpdate("node-rw", "my-check") + if err == nil || !strings.Contains(err.Error(), "Unknown check") { + t.Fatalf("err: %v", err) + } + + // Update service check with write privs. + agent.state.AddService(&structs.NodeService{ + ID: "my-service", + Service: "service", + }, "") + agent.state.AddCheck(&structs.HealthCheck{ + CheckID: types.CheckID("my-service-check"), + ServiceID: "my-service", + ServiceName: "service", + }, "") + err = agent.vetCheckUpdate("service-rw", "my-service-check") + if err != nil { + t.Fatalf("err: %v", err) + } + + // Update service check without write privs. + err = agent.vetCheckUpdate("service-ro", "my-service-check") + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Update node check with write privs. + agent.state.AddCheck(&structs.HealthCheck{ + CheckID: types.CheckID("my-node-check"), + }, "") + err = agent.vetCheckUpdate("node-rw", "my-node-check") + if err != nil { + t.Fatalf("err: %v", err) + } + + // Update without write privs. + err = agent.vetCheckUpdate("node-ro", "my-node-check") + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } +} + +func TestACL_filterMembers(t *testing.T) { + config := nextConfig() + config.ACLEnforceVersion8 = Bool(true) + + dir, agent := makeAgent(t, config) + defer os.RemoveAll(dir) + defer agent.Shutdown() + + testutil.WaitForLeader(t, agent.RPC, "dc1") + + m := MockServer{catalogPolicy} + if err := agent.InjectEndpoint("ACL", &m); err != nil { + t.Fatalf("err: %v", err) + } + + var members []serf.Member + if err := agent.filterMembers("node-ro", &members); err != nil { + t.Fatalf("err: %v", err) + } + if len(members) != 0 { + t.Fatalf("bad: %#v", members) + } + + members = []serf.Member{ + serf.Member{Name: "Node 1"}, + serf.Member{Name: "Nope"}, + serf.Member{Name: "Node 2"}, + } + if err := agent.filterMembers("node-ro", &members); err != nil { + t.Fatalf("err: %v", err) + } + if len(members) != 2 || + members[0].Name != "Node 1" || + members[1].Name != "Node 2" { + t.Fatalf("bad: %#v", members) + } +} + +func TestACL_filterServices(t *testing.T) { + config := nextConfig() + config.ACLEnforceVersion8 = Bool(true) + + dir, agent := makeAgent(t, config) + defer os.RemoveAll(dir) + defer agent.Shutdown() + + testutil.WaitForLeader(t, agent.RPC, "dc1") + + m := MockServer{catalogPolicy} + if err := agent.InjectEndpoint("ACL", &m); err != nil { + t.Fatalf("err: %v", err) + } + + services := make(map[string]*structs.NodeService) + if err := agent.filterServices("node-ro", &services); err != nil { + t.Fatalf("err: %v", err) + } + + services["my-service"] = &structs.NodeService{ID: "my-service", Service: "service"} + services["my-other"] = &structs.NodeService{ID: "my-other", Service: "other"} + if err := agent.filterServices("service-ro", &services); err != nil { + t.Fatalf("err: %v", err) + } + if _, ok := services["my-service"]; !ok { + t.Fatalf("bad: %#v", services) + } + if _, ok := services["my-other"]; ok { + t.Fatalf("bad: %#v", services) + } +} + +func TestACL_filterChecks(t *testing.T) { + config := nextConfig() + config.ACLEnforceVersion8 = Bool(true) + + dir, agent := makeAgent(t, config) + defer os.RemoveAll(dir) + defer agent.Shutdown() + + testutil.WaitForLeader(t, agent.RPC, "dc1") + + m := MockServer{catalogPolicy} + if err := agent.InjectEndpoint("ACL", &m); err != nil { + t.Fatalf("err: %v", err) + } + + checks := make(map[types.CheckID]*structs.HealthCheck) + if err := agent.filterChecks("node-ro", &checks); err != nil { + t.Fatalf("err: %v", err) + } + + checks["my-node"] = &structs.HealthCheck{} + checks["my-service"] = &structs.HealthCheck{ServiceName: "service"} + checks["my-other"] = &structs.HealthCheck{ServiceName: "other"} + if err := agent.filterChecks("service-ro", &checks); err != nil { + t.Fatalf("err: %v", err) + } + if _, ok := checks["my-node"]; ok { + t.Fatalf("bad: %#v", checks) + } + if _, ok := checks["my-service"]; !ok { + t.Fatalf("bad: %#v", checks) + } + if _, ok := checks["my-other"]; ok { + t.Fatalf("bad: %#v", checks) + } + + checks["my-node"] = &structs.HealthCheck{} + checks["my-service"] = &structs.HealthCheck{ServiceName: "service"} + checks["my-other"] = &structs.HealthCheck{ServiceName: "other"} + if err := agent.filterChecks("node-ro", &checks); err != nil { + t.Fatalf("err: %v", err) + } + if _, ok := checks["my-node"]; !ok { + t.Fatalf("bad: %#v", checks) + } + if _, ok := checks["my-service"]; ok { + t.Fatalf("bad: %#v", checks) + } + if _, ok := checks["my-other"]; ok { + t.Fatalf("bad: %#v", checks) + } +} diff --git a/command/agent/agent.go b/command/agent/agent.go index e04c52d339..4782f43b3a 100644 --- a/command/agent/agent.go +++ b/command/agent/agent.go @@ -2,6 +2,7 @@ package agent import ( "encoding/json" + "errors" "fmt" "io" "io/ioutil" @@ -12,6 +13,7 @@ import ( "reflect" "regexp" "strconv" + "strings" "sync" "time" @@ -19,9 +21,13 @@ import ( "github.com/hashicorp/consul/consul/state" "github.com/hashicorp/consul/consul/structs" "github.com/hashicorp/consul/lib" + "github.com/hashicorp/consul/logger" "github.com/hashicorp/consul/types" + "github.com/hashicorp/go-sockaddr/template" + "github.com/hashicorp/go-uuid" "github.com/hashicorp/serf/coordinate" "github.com/hashicorp/serf/serf" + "github.com/shirou/gopsutil/host" ) const ( @@ -32,10 +38,6 @@ const ( checksDir = "checks" checkStateDir = "checks/state" - // The ID of the faux health checks for maintenance mode - serviceMaintCheckPrefix = "_service_maintenance" - nodeMaintCheckID = "_node_maintenance" - // Default reasons for node/service maintenance mode defaultNodeMaintReason = "Maintenance mode is enabled for this node, " + "but no reason was provided. This is a default message." @@ -65,11 +67,17 @@ type Agent struct { // Output sink for logs logOutput io.Writer + // Used for streaming logs to + logWriter *logger.LogWriter + // We have one of a client or a server, depending // on our configuration server *consul.Server client *consul.Client + // acls is an object that helps manage local ACL enforcement. + acls *aclManager + // state stores a local representation of the node, // services and checks. Used for anti-entropy. state localState @@ -108,6 +116,8 @@ type Agent struct { eventLock sync.RWMutex eventNotify state.NotifyGroup + reloadCh chan chan error + shutdown bool shutdownCh chan struct{} shutdownLock sync.Mutex @@ -120,7 +130,8 @@ type Agent struct { // Create is used to create a new Agent. Returns // the agent or potentially an error. -func Create(config *Config, logOutput io.Writer) (*Agent, error) { +func Create(config *Config, logOutput io.Writer, logWriter *logger.LogWriter, + reloadCh chan chan error) (*Agent, error) { // Ensure we have a log sink if logOutput == nil { logOutput = os.Stderr @@ -136,6 +147,12 @@ func Create(config *Config, logOutput io.Writer) (*Agent, error) { // Try to get an advertise address if config.AdvertiseAddr != "" { + ipStr, err := parseSingleIPTemplate(config.AdvertiseAddr) + if err != nil { + return nil, fmt.Errorf("Advertise address resolution failed: %v", err) + } + config.AdvertiseAddr = ipStr + if ip := net.ParseIP(config.AdvertiseAddr); ip == nil { return nil, fmt.Errorf("Failed to parse advertise address: %v", config.AdvertiseAddr) } @@ -157,6 +174,12 @@ func Create(config *Config, logOutput io.Writer) (*Agent, error) { // Try to get an advertise address for the wan if config.AdvertiseAddrWan != "" { + ipStr, err := parseSingleIPTemplate(config.AdvertiseAddrWan) + if err != nil { + return nil, fmt.Errorf("Advertise WAN address resolution failed: %v", err) + } + config.AdvertiseAddrWan = ipStr + if ip := net.ParseIP(config.AdvertiseAddrWan); ip == nil { return nil, fmt.Errorf("Failed to parse advertise address for wan: %v", config.AdvertiseAddrWan) } @@ -174,6 +197,7 @@ func Create(config *Config, logOutput io.Writer) (*Agent, error) { config: config, logger: log.New(logOutput, "", log.LstdFlags), logOutput: logOutput, + logWriter: logWriter, checkReapAfter: make(map[types.CheckID]time.Duration), checkMonitors: make(map[types.CheckID]*CheckMonitor), checkTTLs: make(map[types.CheckID]*CheckTTL), @@ -182,15 +206,31 @@ func Create(config *Config, logOutput io.Writer) (*Agent, error) { checkDockers: make(map[types.CheckID]*CheckDocker), eventCh: make(chan serf.UserEvent, 1024), eventBuf: make([]*UserEvent, 256), + reloadCh: reloadCh, shutdownCh: make(chan struct{}), endpoints: make(map[string]string), } + if err := agent.resolveTmplAddrs(); err != nil { + return nil, err + } + + // Initialize the ACL manager. + acls, err := newACLManager(config) + if err != nil { + return nil, err + } + agent.acls = acls + + // Retrieve or generate the node ID before setting up the rest of the + // agent, which depends on it. + if err := agent.setupNodeID(config); err != nil { + return nil, fmt.Errorf("Failed to setup node ID: %v", err) + } // Initialize the local state. agent.state.Init(config, agent.logger) // Setup either the client or the server. - var err error if config.Server { err = agent.setupServer() agent.state.SetIface(agent.server) @@ -202,7 +242,8 @@ func Create(config *Config, logOutput io.Writer) (*Agent, error) { Port: agent.config.Ports.Server, Tags: []string{}, } - agent.state.AddService(&consulService, "") + + agent.state.AddService(&consulService, agent.config.GetTokenForAgent()) } else { err = agent.setupClient() agent.state.SetIface(agent.client) @@ -211,13 +252,16 @@ func Create(config *Config, logOutput io.Writer) (*Agent, error) { return nil, err } - // Load checks/services. + // Load checks/services/metadata. if err := agent.loadServices(config); err != nil { return nil, err } if err := agent.loadChecks(config); err != nil { return nil, err } + if err := agent.loadMetadata(config); err != nil { + return nil, err + } // Start watching for critical services to deregister, based on their // checks. @@ -250,6 +294,9 @@ func (a *Agent) consulConfig() *consul.Config { base = consul.DefaultConfig() } + // This is set when the agent starts up + base.NodeID = a.config.NodeID + // Apply dev mode base.DevMode = a.config.DevMode @@ -268,10 +315,6 @@ func (a *Agent) consulConfig() *consul.Config { if a.config.NodeName != "" { base.NodeName = a.config.NodeName } - if a.config.BindAddr != "" { - base.SerfLANConfig.MemberlistConfig.BindAddr = a.config.BindAddr - base.SerfWANConfig.MemberlistConfig.BindAddr = a.config.BindAddr - } if a.config.Ports.SerfLan != 0 { base.SerfLANConfig.MemberlistConfig.BindPort = a.config.Ports.SerfLan base.SerfLANConfig.MemberlistConfig.AdvertisePort = a.config.Ports.SerfLan @@ -286,6 +329,17 @@ func (a *Agent) consulConfig() *consul.Config { Port: a.config.Ports.Server, } base.RPCAddr = bindAddr + + // Set the Serf configs using the old default behavior, we may + // override these in the code right below. + base.SerfLANConfig.MemberlistConfig.BindAddr = a.config.BindAddr + base.SerfWANConfig.MemberlistConfig.BindAddr = a.config.BindAddr + } + if a.config.SerfLanBindAddr != "" { + base.SerfLANConfig.MemberlistConfig.BindAddr = a.config.SerfLanBindAddr + } + if a.config.SerfWanBindAddr != "" { + base.SerfWANConfig.MemberlistConfig.BindAddr = a.config.SerfWanBindAddr } if a.config.AdvertiseAddr != "" { base.SerfLANConfig.MemberlistConfig.AdvertiseAddr = a.config.AdvertiseAddr @@ -331,6 +385,9 @@ func (a *Agent) consulConfig() *consul.Config { if a.config.ACLToken != "" { base.ACLToken = a.config.ACLToken } + if a.config.ACLAgentToken != "" { + base.ACLAgentToken = a.config.ACLAgentToken + } if a.config.ACLMasterToken != "" { base.ACLMasterToken = a.config.ACLMasterToken } @@ -349,6 +406,9 @@ func (a *Agent) consulConfig() *consul.Config { if a.config.ACLReplicationToken != "" { base.ACLReplicationToken = a.config.ACLReplicationToken } + if a.config.ACLEnforceVersion8 != nil { + base.ACLEnforceVersion8 = *a.config.ACLEnforceVersion8 + } if a.config.SessionTTLMinRaw != "" { base.SessionTTLMin = a.config.SessionTTLMin } @@ -370,6 +430,7 @@ func (a *Agent) consulConfig() *consul.Config { base.KeyFile = a.config.KeyFile base.ServerName = a.config.ServerName base.Domain = a.config.Domain + base.TLSMinVersion = a.config.TLSMinVersion // Setup the ServerUp callback base.ServerUp = a.state.ConsulServerUp @@ -387,6 +448,121 @@ func (a *Agent) consulConfig() *consul.Config { return base } +// parseSingleIPTemplate is used as a helper function to parse out a single IP +// address from a config parameter. +func parseSingleIPTemplate(ipTmpl string) (string, error) { + out, err := template.Parse(ipTmpl) + if err != nil { + return "", fmt.Errorf("Unable to parse address template %q: %v", ipTmpl, err) + } + + ips := strings.Split(out, " ") + switch len(ips) { + case 0: + return "", errors.New("No addresses found, please configure one.") + case 1: + return ips[0], nil + default: + return "", fmt.Errorf("Multiple addresses found (%q), please configure one.", out) + } +} + +// resolveTmplAddrs iterates over the myriad of addresses in the agent's config +// and performs go-sockaddr/template Parse on each known address in case the +// user specified a template config for any of their values. +func (a *Agent) resolveTmplAddrs() error { + if a.config.AdvertiseAddr != "" { + ipStr, err := parseSingleIPTemplate(a.config.AdvertiseAddr) + if err != nil { + return fmt.Errorf("Advertise address resolution failed: %v", err) + } + a.config.AdvertiseAddr = ipStr + } + + if a.config.Addresses.DNS != "" { + ipStr, err := parseSingleIPTemplate(a.config.Addresses.DNS) + if err != nil { + return fmt.Errorf("DNS address resolution failed: %v", err) + } + a.config.Addresses.DNS = ipStr + } + + if a.config.Addresses.HTTP != "" { + ipStr, err := parseSingleIPTemplate(a.config.Addresses.HTTP) + if err != nil { + return fmt.Errorf("HTTP address resolution failed: %v", err) + } + a.config.Addresses.HTTP = ipStr + } + + if a.config.Addresses.HTTPS != "" { + ipStr, err := parseSingleIPTemplate(a.config.Addresses.HTTPS) + if err != nil { + return fmt.Errorf("HTTPS address resolution failed: %v", err) + } + a.config.Addresses.HTTPS = ipStr + } + + if a.config.Addresses.RPC != "" { + ipStr, err := parseSingleIPTemplate(a.config.Addresses.RPC) + if err != nil { + return fmt.Errorf("RPC address resolution failed: %v", err) + } + a.config.Addresses.RPC = ipStr + } + + if a.config.AdvertiseAddrWan != "" { + ipStr, err := parseSingleIPTemplate(a.config.AdvertiseAddrWan) + if err != nil { + return fmt.Errorf("Advertise WAN address resolution failed: %v", err) + } + a.config.AdvertiseAddrWan = ipStr + } + + if a.config.BindAddr != "" { + ipStr, err := parseSingleIPTemplate(a.config.BindAddr) + if err != nil { + return fmt.Errorf("Bind address resolution failed: %v", err) + } + a.config.BindAddr = ipStr + } + + if a.config.ClientAddr != "" { + ipStr, err := parseSingleIPTemplate(a.config.ClientAddr) + if err != nil { + return fmt.Errorf("Client address resolution failed: %v", err) + } + a.config.ClientAddr = ipStr + } + + if a.config.SerfLanBindAddr != "" { + ipStr, err := parseSingleIPTemplate(a.config.SerfLanBindAddr) + if err != nil { + return fmt.Errorf("Serf LAN Address resolution failed: %v", err) + } + a.config.SerfLanBindAddr = ipStr + } + + if a.config.SerfWanBindAddr != "" { + ipStr, err := parseSingleIPTemplate(a.config.SerfWanBindAddr) + if err != nil { + return fmt.Errorf("Serf WAN Address resolution failed: %v", err) + } + a.config.SerfWanBindAddr = ipStr + } + + // Parse all tagged addresses + for k, v := range a.config.TaggedAddresses { + ipStr, err := parseSingleIPTemplate(v) + if err != nil { + return fmt.Errorf("%s address resolution failed: %v", k, err) + } + a.config.TaggedAddresses[k] = ipStr + } + + return nil +} + // setupServer is used to initialize the Consul server func (a *Agent) setupServer() error { config := a.consulConfig() @@ -419,6 +595,102 @@ func (a *Agent) setupClient() error { return nil } +// makeRandomID will generate a random UUID for a node. +func (a *Agent) makeRandomID() (string, error) { + id, err := uuid.GenerateUUID() + if err != nil { + return "", err + } + + a.logger.Printf("[DEBUG] Using random ID %q as node ID", id) + return id, nil +} + +// makeNodeID will try to find a host-specific ID, or else will generate a +// random ID. The returned ID will always be formatted as a GUID. We don't tell +// the caller whether this ID is random or stable since the consequences are +// high for us if this changes, so we will persist it either way. This will let +// gopsutil change implementations without affecting in-place upgrades of nodes. +func (a *Agent) makeNodeID() (string, error) { + // Try to get a stable ID associated with the host itself. + info, err := host.Info() + if err != nil { + a.logger.Printf("[DEBUG] Couldn't get a unique ID from the host: %v", err) + return a.makeRandomID() + } + + // Make sure the host ID parses as a UUID, since we don't have complete + // control over this process. + id := strings.ToLower(info.HostID) + if _, err := uuid.ParseUUID(id); err != nil { + a.logger.Printf("[DEBUG] Unique ID %q from host isn't formatted as a UUID: %v", + id, err) + return a.makeRandomID() + } + + a.logger.Printf("[DEBUG] Using unique ID %q from host as node ID", id) + return id, nil +} + +// setupNodeID will pull the persisted node ID, if any, or create a random one +// and persist it. +func (a *Agent) setupNodeID(config *Config) error { + // If they've configured a node ID manually then just use that, as + // long as it's valid. + if config.NodeID != "" { + if _, err := uuid.ParseUUID(string(config.NodeID)); err != nil { + return err + } + + return nil + } + + // For dev mode we have no filesystem access so just make one. + if a.config.DevMode { + id, err := a.makeNodeID() + if err != nil { + return err + } + + config.NodeID = types.NodeID(id) + return nil + } + + // Load saved state, if any. Since a user could edit this, we also + // validate it. + fileID := filepath.Join(config.DataDir, "node-id") + if _, err := os.Stat(fileID); err == nil { + rawID, err := ioutil.ReadFile(fileID) + if err != nil { + return err + } + + nodeID := strings.TrimSpace(string(rawID)) + if _, err := uuid.ParseUUID(nodeID); err != nil { + return err + } + + config.NodeID = types.NodeID(nodeID) + } + + // If we still don't have a valid node ID, make one. + if config.NodeID == "" { + id, err := a.makeNodeID() + if err != nil { + return err + } + if err := lib.EnsurePath(fileID, false); err != nil { + return err + } + if err := ioutil.WriteFile(fileID, []byte(id), 0600); err != nil { + return err + } + + config.NodeID = types.NodeID(id) + } + return nil +} + // setupKeyrings is used to initialize and load keyrings during agent startup func (a *Agent) setupKeyrings(config *consul.Config) error { fileLAN := filepath.Join(a.config.DataDir, serfLANKeyring) @@ -469,6 +741,19 @@ func (a *Agent) RPC(method string, args interface{}, reply interface{}) error { return a.client.RPC(method, args, reply) } +// SnapshotRPC performs the requested snapshot RPC against the Consul server in +// a streaming manner. The contents of in will be read and passed along as the +// payload, and the response message will determine the error status, and any +// return payload will be written to out. +func (a *Agent) SnapshotRPC(args *structs.SnapshotRequest, in io.Reader, out io.Writer, + replyFn consul.SnapshotReplyFn) error { + + if a.server != nil { + return a.server.SnapshotRPC(args, in, out, replyFn) + } + return a.client.SnapshotRPC(args, in, out, replyFn) +} + // Leave is used to prepare the agent for a graceful shutdown func (a *Agent) Leave() error { if a.server != nil { @@ -651,14 +936,11 @@ func (a *Agent) sendCoordinate() { continue } - // TODO - Consider adding a distance check so we don't send - // an update if the position hasn't changed by more than a - // threshold. req := structs.CoordinateUpdateRequest{ Datacenter: a.config.Datacenter, Node: a.config.NodeName, Coord: c, - WriteRequest: structs.WriteRequest{Token: a.config.ACLToken}, + WriteRequest: structs.WriteRequest{Token: a.config.GetTokenForAgent()}, } var reply struct{} if err := a.RPC("Coordinate.Update", &req, &reply); err != nil { @@ -721,6 +1003,7 @@ func (a *Agent) reapServices() { // persistService saves a service definition to a JSON file in the data dir func (a *Agent) persistService(service *structs.NodeService) error { svcPath := filepath.Join(a.config.DataDir, servicesDir, stringHash(service.ID)) + wrapped := persistedService{ Token: a.state.ServiceToken(service.ID), Service: service, @@ -729,18 +1012,8 @@ func (a *Agent) persistService(service *structs.NodeService) error { if err != nil { return err } - if err := os.MkdirAll(filepath.Dir(svcPath), 0700); err != nil { - return err - } - fh, err := os.OpenFile(svcPath, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0600) - if err != nil { - return err - } - defer fh.Close() - if _, err := fh.Write(encoded); err != nil { - return err - } - return nil + + return writeFileAtomic(svcPath, encoded) } // purgeService removes a persisted service definition file from the data dir @@ -767,18 +1040,8 @@ func (a *Agent) persistCheck(check *structs.HealthCheck, chkType *CheckType) err if err != nil { return err } - if err := os.MkdirAll(filepath.Dir(checkPath), 0700); err != nil { - return err - } - fh, err := os.OpenFile(checkPath, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0600) - if err != nil { - return err - } - defer fh.Close() - if _, err := fh.Write(encoded); err != nil { - return err - } - return nil + + return writeFileAtomic(checkPath, encoded) } // purgeCheck removes a persisted check definition file from the data dir @@ -790,6 +1053,34 @@ func (a *Agent) purgeCheck(checkID types.CheckID) error { return nil } +// writeFileAtomic writes the given contents to a temporary file in the same +// directory, does an fsync and then renames the file to its real path +func writeFileAtomic(path string, contents []byte) error { + uuid, err := uuid.GenerateUUID() + if err != nil { + return err + } + tempPath := fmt.Sprintf("%s-%s.tmp", path, uuid) + + if err := os.MkdirAll(filepath.Dir(path), 0700); err != nil { + return err + } + fh, err := os.OpenFile(tempPath, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0600) + if err != nil { + return err + } + if _, err := fh.Write(contents); err != nil { + return err + } + if err := fh.Sync(); err != nil { + return err + } + if err := fh.Close(); err != nil { + return err + } + return os.Rename(tempPath, path) +} + // AddService is used to add a service entry. // This entry is persistent and the agent will make a best effort to // ensure it is registered @@ -816,7 +1107,7 @@ func (a *Agent) AddService(service *structs.NodeService, chkTypes CheckTypes, pe // Warn if any tags are incompatible with DNS for _, tag := range service.Tags { if !dnsNameRe.MatchString(tag) { - a.logger.Printf("[WARN] Service tag %q will not be discoverable "+ + a.logger.Printf("[DEBUG] Service tag %q will not be discoverable "+ "via DNS due to invalid characters. Valid characters include "+ "all alpha-numerics and dashes.", tag) } @@ -882,7 +1173,14 @@ func (a *Agent) RemoveService(serviceID string, persist bool) error { } // Remove service immediately - a.state.RemoveService(serviceID) + err := a.state.RemoveService(serviceID) + + // TODO: Return the error instead of just logging here in Consul 0.8 + // For now, keep the current idempotent behavior on deleting a nonexistent service + if err != nil { + a.logger.Printf("[WARN] agent: Failed to deregister service %q: %s", serviceID, err) + return nil + } // Remove the service from the data dir if persist { @@ -962,12 +1260,13 @@ func (a *Agent) AddCheck(check *structs.HealthCheck, chkType *CheckType, persist } http := &CheckHTTP{ - Notify: &a.state, - CheckID: check.CheckID, - HTTP: chkType.HTTP, - Interval: chkType.Interval, - Timeout: chkType.Timeout, - Logger: a.logger, + Notify: &a.state, + CheckID: check.CheckID, + HTTP: chkType.HTTP, + Interval: chkType.Interval, + Timeout: chkType.Timeout, + Logger: a.logger, + TLSSkipVerify: chkType.TLSSkipVerify, } http.Start() a.checkHTTPs[check.CheckID] = http @@ -1163,8 +1462,16 @@ func (a *Agent) persistCheckState(check *CheckTTL, status, output string) error // Write the state to the file file := filepath.Join(dir, checkIDHash(check.CheckID)) - if err := ioutil.WriteFile(file, buf, 0600); err != nil { - return fmt.Errorf("failed writing file %q: %s", file, err) + + // Create temp file in same dir, to make more likely atomic + tempFile := file + ".tmp" + + // persistCheckState is called frequently, so don't use writeFileAtomic to avoid calling fsync here + if err := ioutil.WriteFile(tempFile, buf, 0600); err != nil { + return fmt.Errorf("failed writing temp file %q: %s", tempFile, err) + } + if err := os.Rename(tempFile, file); err != nil { + return fmt.Errorf("failed to rename temp file from %q to %q: %s", tempFile, file, err) } return nil @@ -1185,7 +1492,8 @@ func (a *Agent) loadCheckState(check *structs.HealthCheck) error { // Decode the state data var p persistedCheckState if err := json.Unmarshal(buf, &p); err != nil { - return fmt.Errorf("failed decoding check state: %s", err) + a.logger.Printf("[ERROR] agent: failed decoding check state: %s", err) + return a.purgeCheckState(check.CheckID) } // Check if the state has expired @@ -1478,9 +1786,42 @@ func (a *Agent) restoreCheckState(snap map[types.CheckID]*structs.HealthCheck) { } } +// loadMetadata loads node metadata fields from the agent config and +// updates them on the local agent. +func (a *Agent) loadMetadata(conf *Config) error { + a.state.Lock() + defer a.state.Unlock() + + for key, value := range conf.Meta { + a.state.metadata[key] = value + } + + a.state.changeMade() + + return nil +} + +// parseMetaPair parses a key/value pair of the form key:value +func parseMetaPair(raw string) (string, string) { + pair := strings.SplitN(raw, ":", 2) + if len(pair) == 2 { + return pair[0], pair[1] + } else { + return pair[0], "" + } +} + +// unloadMetadata resets the local metadata state +func (a *Agent) unloadMetadata() { + a.state.Lock() + defer a.state.Unlock() + + a.state.metadata = make(map[string]string) +} + // serviceMaintCheckID returns the ID of a given service's maintenance check func serviceMaintCheckID(serviceID string) types.CheckID { - return types.CheckID(fmt.Sprintf("%s:%s", serviceMaintCheckPrefix, serviceID)) + return types.CheckID(structs.ServiceMaintPrefix + serviceID) } // EnableServiceMaintenance will register a false health check against the given @@ -1541,7 +1882,7 @@ func (a *Agent) DisableServiceMaintenance(serviceID string) error { // EnableNodeMaintenance places a node into maintenance mode. func (a *Agent) EnableNodeMaintenance(reason, token string) { // Ensure node maintenance is not already enabled - if _, ok := a.state.Checks()[nodeMaintCheckID]; ok { + if _, ok := a.state.Checks()[structs.NodeMaint]; ok { return } @@ -1553,7 +1894,7 @@ func (a *Agent) EnableNodeMaintenance(reason, token string) { // Create and register the node maintenance check check := &structs.HealthCheck{ Node: a.config.NodeName, - CheckID: nodeMaintCheckID, + CheckID: structs.NodeMaint, Name: "Node Maintenance Mode", Notes: reason, Status: structs.HealthCritical, @@ -1564,10 +1905,10 @@ func (a *Agent) EnableNodeMaintenance(reason, token string) { // DisableNodeMaintenance removes a node from maintenance mode func (a *Agent) DisableNodeMaintenance() { - if _, ok := a.state.Checks()[nodeMaintCheckID]; !ok { + if _, ok := a.state.Checks()[structs.NodeMaint]; !ok { return } - a.RemoveCheck(nodeMaintCheckID, true) + a.RemoveCheck(structs.NodeMaint, true) a.logger.Printf("[INFO] agent: Node left maintenance mode") } diff --git a/command/agent/agent_endpoint.go b/command/agent/agent_endpoint.go index db33256af2..48c0b27f4d 100644 --- a/command/agent/agent_endpoint.go +++ b/command/agent/agent_endpoint.go @@ -2,12 +2,15 @@ package agent import ( "fmt" + "log" "net/http" "strconv" "strings" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/consul/logger" "github.com/hashicorp/consul/types" + "github.com/hashicorp/logutils" "github.com/hashicorp/serf/coordinate" "github.com/hashicorp/serf/serf" ) @@ -17,6 +20,7 @@ type AgentSelf struct { Coord *coordinate.Coordinate Member serf.Member Stats map[string]map[string]string + Meta map[string]string } func (s *HTTPServer) AgentSelf(resp http.ResponseWriter, req *http.Request) (interface{}, error) { @@ -28,38 +32,119 @@ func (s *HTTPServer) AgentSelf(resp http.ResponseWriter, req *http.Request) (int } } + // Fetch the ACL token, if any, and enforce agent policy. + var token string + s.parseToken(req, &token) + acl, err := s.agent.resolveToken(token) + if err != nil { + return nil, err + } + if acl != nil && !acl.AgentRead(s.agent.config.NodeName) { + return nil, permissionDeniedErr + } + return AgentSelf{ Config: s.agent.config, Coord: c, Member: s.agent.LocalMember(), Stats: s.agent.Stats(), + Meta: s.agent.state.Metadata(), }, nil } +func (s *HTTPServer) AgentReload(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if req.Method != "PUT" { + resp.WriteHeader(http.StatusMethodNotAllowed) + return nil, nil + } + + // Fetch the ACL token, if any, and enforce agent policy. + var token string + s.parseToken(req, &token) + acl, err := s.agent.resolveToken(token) + if err != nil { + return nil, err + } + if acl != nil && !acl.AgentWrite(s.agent.config.NodeName) { + return nil, permissionDeniedErr + } + + // Trigger the reload + errCh := make(chan error, 0) + select { + case <-s.agent.ShutdownCh(): + return nil, fmt.Errorf("Agent was shutdown before reload could be completed") + case s.agent.reloadCh <- errCh: + } + + // Wait for the result of the reload, or for the agent to shutdown + select { + case <-s.agent.ShutdownCh(): + return nil, fmt.Errorf("Agent was shutdown before reload could be completed") + case err := <-errCh: + return nil, err + } +} + func (s *HTTPServer) AgentServices(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + // Fetch the ACL token, if any. + var token string + s.parseToken(req, &token) + services := s.agent.state.Services() + if err := s.agent.filterServices(token, &services); err != nil { + return nil, err + } return services, nil } func (s *HTTPServer) AgentChecks(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + // Fetch the ACL token, if any. + var token string + s.parseToken(req, &token) + checks := s.agent.state.Checks() + if err := s.agent.filterChecks(token, &checks); err != nil { + return nil, err + } return checks, nil } func (s *HTTPServer) AgentMembers(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + // Fetch the ACL token, if any. + var token string + s.parseToken(req, &token) + // Check if the WAN is being queried wan := false if other := req.URL.Query().Get("wan"); other != "" { wan = true } + + var members []serf.Member if wan { - return s.agent.WANMembers(), nil + members = s.agent.WANMembers() } else { - return s.agent.LANMembers(), nil + members = s.agent.LANMembers() } + if err := s.agent.filterMembers(token, &members); err != nil { + return nil, err + } + return members, nil } func (s *HTTPServer) AgentJoin(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + // Fetch the ACL token, if any, and enforce agent policy. + var token string + s.parseToken(req, &token) + acl, err := s.agent.resolveToken(token) + if err != nil { + return nil, err + } + if acl != nil && !acl.AgentWrite(s.agent.config.NodeName) { + return nil, permissionDeniedErr + } + // Check if the WAN is being queried wan := false if other := req.URL.Query().Get("wan"); other != "" { @@ -77,16 +162,59 @@ func (s *HTTPServer) AgentJoin(resp http.ResponseWriter, req *http.Request) (int } } +func (s *HTTPServer) AgentLeave(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if req.Method != "PUT" { + resp.WriteHeader(http.StatusMethodNotAllowed) + return nil, nil + } + + // Fetch the ACL token, if any, and enforce agent policy. + var token string + s.parseToken(req, &token) + acl, err := s.agent.resolveToken(token) + if err != nil { + return nil, err + } + if acl != nil && !acl.AgentWrite(s.agent.config.NodeName) { + return nil, permissionDeniedErr + } + + if err := s.agent.Leave(); err != nil { + return nil, err + } + return nil, s.agent.Shutdown() +} + func (s *HTTPServer) AgentForceLeave(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + // Fetch the ACL token, if any, and enforce agent policy. + var token string + s.parseToken(req, &token) + acl, err := s.agent.resolveToken(token) + if err != nil { + return nil, err + } + if acl != nil && !acl.AgentWrite(s.agent.config.NodeName) { + return nil, permissionDeniedErr + } + addr := strings.TrimPrefix(req.URL.Path, "/v1/agent/force-leave/") return nil, s.agent.ForceLeave(addr) } +// syncChanges is a helper function which wraps a blocking call to sync +// services and checks to the server. If the operation fails, we only +// only warn because the write did succeed and anti-entropy will sync later. +func (s *HTTPServer) syncChanges() { + if err := s.agent.state.syncChanges(); err != nil { + s.logger.Printf("[ERR] agent: failed to sync changes: %v", err) + } +} + const invalidCheckMessage = "Must provide TTL or Script/DockerContainerID/HTTP/TCP and Interval" func (s *HTTPServer) AgentRegisterCheck(resp http.ResponseWriter, req *http.Request) (interface{}, error) { var args CheckDefinition - // Fixup the type decode of TTL or Interval + // Fixup the type decode of TTL or Interval. decodeCB := func(raw interface{}) error { return FixupCheckType(raw) } @@ -96,7 +224,7 @@ func (s *HTTPServer) AgentRegisterCheck(resp http.ResponseWriter, req *http.Requ return nil, nil } - // Verify the check has a name + // Verify the check has a name. if args.Name == "" { resp.WriteHeader(400) resp.Write([]byte("Missing check name")) @@ -109,10 +237,10 @@ func (s *HTTPServer) AgentRegisterCheck(resp http.ResponseWriter, req *http.Requ return nil, nil } - // Construct the health check + // Construct the health check. health := args.HealthCheck(s.agent.config.NodeName) - // Verify the check type + // Verify the check type. chkType := &args.CheckType if !chkType.Valid() { resp.WriteHeader(400) @@ -120,11 +248,14 @@ func (s *HTTPServer) AgentRegisterCheck(resp http.ResponseWriter, req *http.Requ return nil, nil } - // Get the provided token, if any + // Get the provided token, if any, and vet against any ACL policies. var token string s.parseToken(req, &token) + if err := s.agent.vetCheckRegister(token, health); err != nil { + return nil, err + } - // Add the check + // Add the check. if err := s.agent.AddCheck(health, chkType, true, token); err != nil { return nil, err } @@ -134,6 +265,14 @@ func (s *HTTPServer) AgentRegisterCheck(resp http.ResponseWriter, req *http.Requ func (s *HTTPServer) AgentDeregisterCheck(resp http.ResponseWriter, req *http.Request) (interface{}, error) { checkID := types.CheckID(strings.TrimPrefix(req.URL.Path, "/v1/agent/check/deregister/")) + + // Get the provided token, if any, and vet against any ACL policies. + var token string + s.parseToken(req, &token) + if err := s.agent.vetCheckUpdate(token, checkID); err != nil { + return nil, err + } + if err := s.agent.RemoveCheck(checkID, true); err != nil { return nil, err } @@ -144,6 +283,14 @@ func (s *HTTPServer) AgentDeregisterCheck(resp http.ResponseWriter, req *http.Re func (s *HTTPServer) AgentCheckPass(resp http.ResponseWriter, req *http.Request) (interface{}, error) { checkID := types.CheckID(strings.TrimPrefix(req.URL.Path, "/v1/agent/check/pass/")) note := req.URL.Query().Get("note") + + // Get the provided token, if any, and vet against any ACL policies. + var token string + s.parseToken(req, &token) + if err := s.agent.vetCheckUpdate(token, checkID); err != nil { + return nil, err + } + if err := s.agent.updateTTLCheck(checkID, structs.HealthPassing, note); err != nil { return nil, err } @@ -154,6 +301,14 @@ func (s *HTTPServer) AgentCheckPass(resp http.ResponseWriter, req *http.Request) func (s *HTTPServer) AgentCheckWarn(resp http.ResponseWriter, req *http.Request) (interface{}, error) { checkID := types.CheckID(strings.TrimPrefix(req.URL.Path, "/v1/agent/check/warn/")) note := req.URL.Query().Get("note") + + // Get the provided token, if any, and vet against any ACL policies. + var token string + s.parseToken(req, &token) + if err := s.agent.vetCheckUpdate(token, checkID); err != nil { + return nil, err + } + if err := s.agent.updateTTLCheck(checkID, structs.HealthWarning, note); err != nil { return nil, err } @@ -164,6 +319,14 @@ func (s *HTTPServer) AgentCheckWarn(resp http.ResponseWriter, req *http.Request) func (s *HTTPServer) AgentCheckFail(resp http.ResponseWriter, req *http.Request) (interface{}, error) { checkID := types.CheckID(strings.TrimPrefix(req.URL.Path, "/v1/agent/check/fail/")) note := req.URL.Query().Get("note") + + // Get the provided token, if any, and vet against any ACL policies. + var token string + s.parseToken(req, &token) + if err := s.agent.vetCheckUpdate(token, checkID); err != nil { + return nil, err + } + if err := s.agent.updateTTLCheck(checkID, structs.HealthCritical, note); err != nil { return nil, err } @@ -216,6 +379,14 @@ func (s *HTTPServer) AgentCheckUpdate(resp http.ResponseWriter, req *http.Reques } checkID := types.CheckID(strings.TrimPrefix(req.URL.Path, "/v1/agent/check/update/")) + + // Get the provided token, if any, and vet against any ACL policies. + var token string + s.parseToken(req, &token) + if err := s.agent.vetCheckUpdate(token, checkID); err != nil { + return nil, err + } + if err := s.agent.updateTTLCheck(checkID, update.Status, update.Output); err != nil { return nil, err } @@ -225,7 +396,7 @@ func (s *HTTPServer) AgentCheckUpdate(resp http.ResponseWriter, req *http.Reques func (s *HTTPServer) AgentRegisterService(resp http.ResponseWriter, req *http.Request) (interface{}, error) { var args ServiceDefinition - // Fixup the type decode of TTL or Interval if a check if provided + // Fixup the type decode of TTL or Interval if a check if provided. decodeCB := func(raw interface{}) error { rawMap, ok := raw.(map[string]interface{}) if !ok { @@ -258,17 +429,17 @@ func (s *HTTPServer) AgentRegisterService(resp http.ResponseWriter, req *http.Re return nil, nil } - // Verify the service has a name + // Verify the service has a name. if args.Name == "" { resp.WriteHeader(400) resp.Write([]byte("Missing service name")) return nil, nil } - // Get the node service + // Get the node service. ns := args.NodeService() - // Verify the check type + // Verify the check type. chkTypes := args.CheckTypes() for _, check := range chkTypes { if check.Status != "" && !structs.ValidStatus(check.Status) { @@ -283,11 +454,14 @@ func (s *HTTPServer) AgentRegisterService(resp http.ResponseWriter, req *http.Re } } - // Get the provided token, if any + // Get the provided token, if any, and vet against any ACL policies. var token string s.parseToken(req, &token) + if err := s.agent.vetServiceRegister(token, ns); err != nil { + return nil, err + } - // Add the check + // Add the service. if err := s.agent.AddService(ns, chkTypes, true, token); err != nil { return nil, err } @@ -297,6 +471,14 @@ func (s *HTTPServer) AgentRegisterService(resp http.ResponseWriter, req *http.Re func (s *HTTPServer) AgentDeregisterService(resp http.ResponseWriter, req *http.Request) (interface{}, error) { serviceID := strings.TrimPrefix(req.URL.Path, "/v1/agent/service/deregister/") + + // Get the provided token, if any, and vet against any ACL policies. + var token string + s.parseToken(req, &token) + if err := s.agent.vetServiceUpdate(token, serviceID); err != nil { + return nil, err + } + if err := s.agent.RemoveService(serviceID, true); err != nil { return nil, err } @@ -335,9 +517,12 @@ func (s *HTTPServer) AgentServiceMaintenance(resp http.ResponseWriter, req *http return nil, nil } - // Get the provided token, if any + // Get the provided token, if any, and vet against any ACL policies. var token string s.parseToken(req, &token) + if err := s.agent.vetServiceUpdate(token, serviceID); err != nil { + return nil, err + } if enable { reason := params.Get("reason") @@ -380,9 +565,16 @@ func (s *HTTPServer) AgentNodeMaintenance(resp http.ResponseWriter, req *http.Re return nil, nil } - // Get the provided token, if any + // Get the provided token, if any, and vet against any ACL policies. var token string s.parseToken(req, &token) + acl, err := s.agent.resolveToken(token) + if err != nil { + return nil, err + } + if acl != nil && !acl.NodeWrite(s.agent.config.NodeName) { + return nil, permissionDeniedErr + } if enable { s.agent.EnableNodeMaintenance(params.Get("reason"), token) @@ -393,11 +585,93 @@ func (s *HTTPServer) AgentNodeMaintenance(resp http.ResponseWriter, req *http.Re return nil, nil } -// syncChanges is a helper function which wraps a blocking call to sync -// services and checks to the server. If the operation fails, we only -// only warn because the write did succeed and anti-entropy will sync later. -func (s *HTTPServer) syncChanges() { - if err := s.agent.state.syncChanges(); err != nil { - s.logger.Printf("[ERR] agent: failed to sync changes: %v", err) +func (s *HTTPServer) AgentMonitor(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + // Only GET supported. + if req.Method != "GET" { + resp.WriteHeader(405) + return nil, nil + } + + // Fetch the ACL token, if any, and enforce agent policy. + var token string + s.parseToken(req, &token) + acl, err := s.agent.resolveToken(token) + if err != nil { + return nil, err + } + if acl != nil && !acl.AgentRead(s.agent.config.NodeName) { + return nil, permissionDeniedErr + } + + // Get the provided loglevel. + logLevel := req.URL.Query().Get("loglevel") + if logLevel == "" { + logLevel = "INFO" + } + + // Upper case the level since that's required by the filter. + logLevel = strings.ToUpper(logLevel) + + // Create a level filter and flusher. + filter := logger.LevelFilter() + filter.MinLevel = logutils.LogLevel(logLevel) + if !logger.ValidateLevelFilter(filter.MinLevel, filter) { + resp.WriteHeader(400) + resp.Write([]byte(fmt.Sprintf("Unknown log level: %s", filter.MinLevel))) + return nil, nil + } + flusher, ok := resp.(http.Flusher) + if !ok { + return nil, fmt.Errorf("Streaming not supported") + } + + // Set up a log handler. + handler := &httpLogHandler{ + filter: filter, + logCh: make(chan string, 512), + logger: s.logger, + } + s.agent.logWriter.RegisterHandler(handler) + defer s.agent.logWriter.DeregisterHandler(handler) + notify := resp.(http.CloseNotifier).CloseNotify() + + // Stream logs until the connection is closed. + for { + select { + case <-notify: + s.agent.logWriter.DeregisterHandler(handler) + if handler.droppedCount > 0 { + s.agent.logger.Printf("[WARN] agent: Dropped %d logs during monitor request", handler.droppedCount) + } + return nil, nil + case log := <-handler.logCh: + resp.Write([]byte(log + "\n")) + flusher.Flush() + } + } + + return nil, nil +} + +type httpLogHandler struct { + filter *logutils.LevelFilter + logCh chan string + logger *log.Logger + droppedCount int +} + +func (h *httpLogHandler) HandleLog(log string) { + // Check the log level + if !h.filter.Check([]byte(log)) { + return + } + + // Do a non-blocking send + select { + case h.logCh <- log: + default: + // Just increment a counter for dropped logs to this handler; we can't log now + // because the lock is already held by the LogWriter invoking this + h.droppedCount += 1 } } diff --git a/command/agent/agent_endpoint_test.go b/command/agent/agent_endpoint_test.go index 9b8cdd4783..4c14608c6e 100644 --- a/command/agent/agent_endpoint_test.go +++ b/command/agent/agent_endpoint_test.go @@ -1,8 +1,12 @@ package agent import ( + "bytes" + "encoding/json" "errors" "fmt" + "io" + "io/ioutil" "net/http" "net/http/httptest" "os" @@ -12,12 +16,37 @@ import ( "time" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/consul/logger" "github.com/hashicorp/consul/testutil" "github.com/hashicorp/consul/types" "github.com/hashicorp/serf/serf" + "github.com/mitchellh/cli" ) -func TestHTTPAgentServices(t *testing.T) { +func makeReadOnlyAgentACL(t *testing.T, srv *HTTPServer) string { + body := bytes.NewBuffer(nil) + enc := json.NewEncoder(body) + raw := map[string]interface{}{ + "Name": "User Token", + "Type": "client", + "Rules": fmt.Sprintf(`agent "" { policy = "read" }`), + } + enc.Encode(raw) + + req, err := http.NewRequest("PUT", "/v1/acl/create?token=root", body) + if err != nil { + t.Fatalf("err: %v", err) + } + resp := httptest.NewRecorder() + obj, err := srv.ACLCreate(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + aclResp := obj.(aclCreateResponse) + return aclResp.ID +} + +func TestAgent_Services(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -31,7 +60,12 @@ func TestHTTPAgentServices(t *testing.T) { } srv.agent.state.AddService(srv1, "") - obj, err := srv.AgentServices(nil, nil) + req, err := http.NewRequest("GET", "/v1/agent/services", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + obj, err := srv.AgentServices(nil, req) if err != nil { t.Fatalf("Err: %v", err) } @@ -44,7 +78,48 @@ func TestHTTPAgentServices(t *testing.T) { } } -func TestHTTPAgentChecks(t *testing.T) { +func TestAgent_Services_ACLFilter(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + // Try no token. + { + req, err := http.NewRequest("GET", "/v1/agent/services", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + obj, err := srv.AgentServices(nil, req) + if err != nil { + t.Fatalf("Err: %v", err) + } + val := obj.(map[string]*structs.NodeService) + if len(val) != 0 { + t.Fatalf("bad: %v", obj) + } + } + + // Try the root token (we will get the implicit "consul" service). + { + req, err := http.NewRequest("GET", "/v1/agent/services?token=root", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + obj, err := srv.AgentServices(nil, req) + if err != nil { + t.Fatalf("Err: %v", err) + } + val := obj.(map[string]*structs.NodeService) + if len(val) != 1 { + t.Fatalf("bad: %v", obj) + } + } +} + +func TestAgent_Checks(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -58,7 +133,12 @@ func TestHTTPAgentChecks(t *testing.T) { } srv.agent.state.AddCheck(chk1, "") - obj, err := srv.AgentChecks(nil, nil) + req, err := http.NewRequest("GET", "/v1/agent/checks", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + obj, err := srv.AgentChecks(nil, req) if err != nil { t.Fatalf("Err: %v", err) } @@ -71,8 +151,62 @@ func TestHTTPAgentChecks(t *testing.T) { } } -func TestHTTPAgentSelf(t *testing.T) { - dir, srv := makeHTTPServer(t) +func TestAgent_Checks_ACLFilter(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + chk1 := &structs.HealthCheck{ + Node: srv.agent.config.NodeName, + CheckID: "mysql", + Name: "mysql", + Status: structs.HealthPassing, + } + srv.agent.state.AddCheck(chk1, "") + + // Try no token. + { + req, err := http.NewRequest("GET", "/v1/agent/checks", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + obj, err := srv.AgentChecks(nil, req) + if err != nil { + t.Fatalf("Err: %v", err) + } + val := obj.(map[types.CheckID]*structs.HealthCheck) + if len(val) != 0 { + t.Fatalf("bad checks: %v", obj) + } + } + + // Try the root token. + { + req, err := http.NewRequest("GET", "/v1/agent/checks?token=root", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + obj, err := srv.AgentChecks(nil, req) + if err != nil { + t.Fatalf("Err: %v", err) + } + val := obj.(map[types.CheckID]*structs.HealthCheck) + if len(val) != 1 { + t.Fatalf("bad checks: %v", obj) + } + } +} + +func TestAgent_Self(t *testing.T) { + meta := map[string]string{ + "somekey": "somevalue", + } + dir, srv := makeHTTPServerWithConfig(t, func(conf *Config) { + conf.Meta = meta + }) defer os.RemoveAll(dir) defer srv.Shutdown() defer srv.agent.Shutdown() @@ -103,6 +237,9 @@ func TestHTTPAgentSelf(t *testing.T) { if !reflect.DeepEqual(c, val.Coord) { t.Fatalf("coordinates are not equal: %v != %v", c, val.Coord) } + if !reflect.DeepEqual(meta, val.Meta) { + t.Fatalf("meta fields are not equal: %v != %v", meta, val.Meta) + } srv.agent.config.DisableCoordinates = true obj, err = srv.AgentSelf(nil, req) @@ -113,9 +250,179 @@ func TestHTTPAgentSelf(t *testing.T) { if val.Coord != nil { t.Fatalf("should have been nil: %v", val.Coord) } + + // Make sure there's nothing called "token" that's leaked. + raw, err := srv.marshalJSON(req, obj) + if err != nil { + t.Fatalf("err: %v", err) + } + if bytes.Contains(bytes.ToLower(raw), []byte("token")) { + t.Fatalf("bad: %s", raw) + } } -func TestHTTPAgentMembers(t *testing.T) { +func TestAgent_Self_ACLDeny(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + // Try without a token. + { + req, err := http.NewRequest("GET", "/v1/agent/self", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + _, err = srv.AgentSelf(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + } + + // Try the agent master token (resolved on the agent). + { + req, err := http.NewRequest("GET", "/v1/agent/self?token=towel", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + _, err = srv.AgentSelf(nil, req) + if err != nil { + t.Fatalf("err: %v", err) + } + } + + // Try a read only token (resolved on the servers). + ro := makeReadOnlyAgentACL(t, srv) + { + req, err := http.NewRequest("GET", fmt.Sprintf("/v1/agent/self?token=%s", ro), nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + _, err = srv.AgentSelf(nil, req) + if err != nil { + t.Fatalf("err: %v", err) + } + } +} + +func TestAgent_Reload(t *testing.T) { + conf := nextConfig() + tmpDir, err := ioutil.TempDir("", "consul") + if err != nil { + t.Fatalf("err: %s", err) + } + defer os.RemoveAll(tmpDir) + + // Write initial config, to be reloaded later + tmpFile, err := ioutil.TempFile(tmpDir, "config") + if err != nil { + t.Fatalf("err: %s", err) + } + _, err = tmpFile.WriteString(`{"service":{"name":"redis"}}`) + if err != nil { + t.Fatalf("err: %s", err) + } + tmpFile.Close() + + doneCh := make(chan struct{}) + shutdownCh := make(chan struct{}) + + defer func() { + close(shutdownCh) + <-doneCh + }() + + cmd := &Command{ + ShutdownCh: shutdownCh, + Ui: new(cli.MockUi), + } + + args := []string{ + "-server", + "-data-dir", tmpDir, + "-http-port", fmt.Sprintf("%d", conf.Ports.HTTP), + "-config-file", tmpFile.Name(), + } + + go func() { + cmd.Run(args) + close(doneCh) + }() + + testutil.WaitForResult(func() (bool, error) { + return len(cmd.httpServers) == 1, nil + }, func(err error) { + t.Fatalf("should have an http server") + }) + + if _, ok := cmd.agent.state.services["redis"]; !ok { + t.Fatalf("missing redis service") + } + + err = ioutil.WriteFile(tmpFile.Name(), []byte(`{"service":{"name":"redis-reloaded"}}`), 0644) + if err != nil { + t.Fatalf("err: %v", err) + } + + srv := cmd.httpServers[0] + req, err := http.NewRequest("PUT", "/v1/agent/reload", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + _, err = srv.AgentReload(nil, req) + if err != nil { + t.Fatalf("Err: %v", err) + } + + if _, ok := cmd.agent.state.services["redis-reloaded"]; !ok { + t.Fatalf("missing redis-reloaded service") + } +} + +func TestAgent_Reload_ACLDeny(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + // Try without a token. + { + req, err := http.NewRequest("PUT", "/v1/agent/reload", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + _, err = srv.AgentReload(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + } + + // Try with a read only token (resolved on the servers). + ro := makeReadOnlyAgentACL(t, srv) + { + req, err := http.NewRequest("PUT", fmt.Sprintf("/v1/agent/reload?token=%s", ro), nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + _, err = srv.AgentReload(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + } + + // This proves we call the ACL function, and we've got the other reload + // test to prove we do the reload, which should be sufficient. + // The reload logic is a little complex to set up so isn't worth + // repeating again here. +} + +func TestAgent_Members(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -140,7 +447,7 @@ func TestHTTPAgentMembers(t *testing.T) { } } -func TestHTTPAgentMembers_WAN(t *testing.T) { +func TestAgent_Members_WAN(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -165,7 +472,48 @@ func TestHTTPAgentMembers_WAN(t *testing.T) { } } -func TestHTTPAgentJoin(t *testing.T) { +func TestAgent_Members_ACLFilter(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + // Try no token. + { + req, err := http.NewRequest("GET", "/v1/agent/members", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + obj, err := srv.AgentMembers(nil, req) + if err != nil { + t.Fatalf("Err: %v", err) + } + val := obj.([]serf.Member) + if len(val) != 0 { + t.Fatalf("bad members: %v", obj) + } + } + + // Try the root token. + { + req, err := http.NewRequest("GET", "/v1/agent/members?token=root", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + obj, err := srv.AgentMembers(nil, req) + if err != nil { + t.Fatalf("Err: %v", err) + } + val := obj.([]serf.Member) + if len(val) != 1 { + t.Fatalf("bad members: %v", obj) + } + } +} + +func TestAgent_Join(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -189,12 +537,18 @@ func TestHTTPAgentJoin(t *testing.T) { t.Fatalf("Err: %v", obj) } - if len(a2.LANMembers()) != 2 { + if len(srv.agent.LANMembers()) != 2 { t.Fatalf("should have 2 members") } + + testutil.WaitForResult(func() (bool, error) { + return len(a2.LANMembers()) == 2, nil + }, func(err error) { + t.Fatalf("should have 2 members") + }) } -func TestHTTPAgentJoin_WAN(t *testing.T) { +func TestAgent_Join_WAN(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -218,6 +572,10 @@ func TestHTTPAgentJoin_WAN(t *testing.T) { t.Fatalf("Err: %v", obj) } + if len(srv.agent.WANMembers()) != 2 { + t.Fatalf("should have 2 members") + } + testutil.WaitForResult(func() (bool, error) { return len(a2.WANMembers()) == 2, nil }, func(err error) { @@ -225,7 +583,159 @@ func TestHTTPAgentJoin_WAN(t *testing.T) { }) } -func TestHTTPAgentForceLeave(t *testing.T) { +func TestAgent_Join_ACLDeny(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + dir2, a2 := makeAgent(t, nextConfig()) + defer os.RemoveAll(dir2) + defer a2.Shutdown() + addr := fmt.Sprintf("127.0.0.1:%d", a2.config.Ports.SerfLan) + + // Try without a token. + { + req, err := http.NewRequest("GET", fmt.Sprintf("/v1/agent/join/%s", addr), nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + _, err = srv.AgentJoin(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + } + + // Try the agent master token (resolved on the agent). + { + req, err := http.NewRequest("GET", fmt.Sprintf("/v1/agent/join/%s?token=towel", addr), nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + _, err = srv.AgentJoin(nil, req) + if err != nil { + t.Fatalf("err: %v", err) + } + } + + // Try with a read only token (resolved on the servers). + ro := makeReadOnlyAgentACL(t, srv) + { + req, err := http.NewRequest("GET", fmt.Sprintf("/v1/agent/join/%s?token=%s", addr, ro), nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + _, err = srv.AgentJoin(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + } +} + +func TestAgent_Leave(t *testing.T) { + dir, srv := makeHTTPServer(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + dir2, srv2 := makeHTTPServerWithConfig(t, func(c *Config) { + c.Server = false + c.Bootstrap = false + }) + defer os.RemoveAll(dir2) + defer srv2.Shutdown() + + // Join first + addr := fmt.Sprintf("127.0.0.1:%d", srv2.agent.config.Ports.SerfLan) + _, err := srv.agent.JoinLAN([]string{addr}) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Graceful leave now + req, err := http.NewRequest("PUT", "/v1/agent/leave", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + obj, err := srv2.AgentLeave(nil, req) + if err != nil { + t.Fatalf("Err: %v", err) + } + if obj != nil { + t.Fatalf("Err: %v", obj) + } + + testutil.WaitForResult(func() (bool, error) { + m := srv.agent.LANMembers() + success := m[1].Status == serf.StatusLeft + return success, errors.New(m[1].Status.String()) + }, func(err error) { + t.Fatalf("member status is %v, should be left", err) + }) +} + +func TestAgent_Leave_ACLDeny(t *testing.T) { + // Try without a token. + func() { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + req, err := http.NewRequest("PUT", "/v1/agent/leave", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + _, err = srv.AgentLeave(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + }() + + // Try the agent master token (resolved on the agent). + func() { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + req, err := http.NewRequest("PUT", "/v1/agent/leave?token=towel", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + _, err = srv.AgentLeave(nil, req) + if err != nil { + t.Fatalf("err: %v", err) + } + }() + + // Try with a read only token (resolved on the servers). + func() { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + ro := makeReadOnlyAgentACL(t, srv) + req, err := http.NewRequest("PUT", fmt.Sprintf("/v1/agent/leave?token=%s", ro), nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + _, err = srv.AgentLeave(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + }() +} + +func TestAgent_ForceLeave(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -267,7 +777,54 @@ func TestHTTPAgentForceLeave(t *testing.T) { }) } -func TestHTTPAgentRegisterCheck(t *testing.T) { +func TestAgent_ForceLeave_ACLDeny(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + // Try without a token. + { + req, err := http.NewRequest("GET", "/v1/agent/force-leave/nope", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + _, err = srv.AgentForceLeave(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + } + + // Try the agent master token (resolved on the agent). + { + req, err := http.NewRequest("GET", "/v1/agent/force-leave/nope?token=towel", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + _, err = srv.AgentForceLeave(nil, req) + if err != nil { + t.Fatalf("err: %v", err) + } + } + + // Try a read only token (resolved on the servers). + ro := makeReadOnlyAgentACL(t, srv) + { + req, err := http.NewRequest("GET", fmt.Sprintf("/v1/agent/force-leave/nope?token=%s", ro), nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + _, err = srv.AgentForceLeave(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + } +} + +func TestAgent_RegisterCheck(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -316,7 +873,7 @@ func TestHTTPAgentRegisterCheck(t *testing.T) { } } -func TestHTTPAgentRegisterCheckPassing(t *testing.T) { +func TestAgent_RegisterCheck_Passing(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -360,7 +917,7 @@ func TestHTTPAgentRegisterCheckPassing(t *testing.T) { } } -func TestHTTPAgentRegisterCheckBadStatus(t *testing.T) { +func TestAgent_RegisterCheck_BadStatus(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -389,7 +946,42 @@ func TestHTTPAgentRegisterCheckBadStatus(t *testing.T) { } } -func TestHTTPAgentDeregisterCheck(t *testing.T) { +func TestAgent_RegisterCheck_ACLDeny(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + // Try with no token. + req, err := http.NewRequest("GET", "/v1/agent/check/register", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + args := &CheckDefinition{ + Name: "test", + CheckType: CheckType{ + TTL: 15 * time.Second, + }, + } + req.Body = encodeReq(args) + _, err = srv.AgentRegisterCheck(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Try the root token. + req, err = http.NewRequest("GET", "/v1/agent/check/register?token=root", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + req.Body = encodeReq(args) + _, err = srv.AgentRegisterCheck(nil, req) + if err != nil { + t.Fatalf("err: %v", err) + } +} + +func TestAgent_DeregisterCheck(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -420,7 +1012,39 @@ func TestHTTPAgentDeregisterCheck(t *testing.T) { } } -func TestHTTPAgentPassCheck(t *testing.T) { +func TestAgent_DeregisterCheckACLDeny(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + chk := &structs.HealthCheck{Name: "test", CheckID: "test"} + if err := srv.agent.AddCheck(chk, nil, false, ""); err != nil { + t.Fatalf("err: %v", err) + } + + // Try with no token. + req, err := http.NewRequest("GET", "/v1/agent/check/deregister/test", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + _, err = srv.AgentDeregisterCheck(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Try with the root token. + req, err = http.NewRequest("GET", "/v1/agent/check/deregister/test?token=root", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + _, err = srv.AgentDeregisterCheck(nil, req) + if err != nil { + t.Fatalf("err: %v", err) + } +} + +func TestAgent_PassCheck(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -452,7 +1076,40 @@ func TestHTTPAgentPassCheck(t *testing.T) { } } -func TestHTTPAgentWarnCheck(t *testing.T) { +func TestAgent_PassCheck_ACLDeny(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + chk := &structs.HealthCheck{Name: "test", CheckID: "test"} + chkType := &CheckType{TTL: 15 * time.Second} + if err := srv.agent.AddCheck(chk, chkType, false, ""); err != nil { + t.Fatalf("err: %v", err) + } + + // Try with no token. + req, err := http.NewRequest("GET", "/v1/agent/check/pass/test", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + _, err = srv.AgentCheckPass(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Try with the root token. + req, err = http.NewRequest("GET", "/v1/agent/check/pass/test?token=root", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + _, err = srv.AgentCheckPass(nil, req) + if err != nil { + t.Fatalf("err: %v", err) + } +} + +func TestAgent_WarnCheck(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -484,7 +1141,40 @@ func TestHTTPAgentWarnCheck(t *testing.T) { } } -func TestHTTPAgentFailCheck(t *testing.T) { +func TestAgent_WarnCheck_ACLDeny(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + chk := &structs.HealthCheck{Name: "test", CheckID: "test"} + chkType := &CheckType{TTL: 15 * time.Second} + if err := srv.agent.AddCheck(chk, chkType, false, ""); err != nil { + t.Fatalf("err: %v", err) + } + + // Try with no token. + req, err := http.NewRequest("GET", "/v1/agent/check/warn/test", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + _, err = srv.AgentCheckWarn(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Try with the root token. + req, err = http.NewRequest("GET", "/v1/agent/check/warn/test?token=root", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + _, err = srv.AgentCheckWarn(nil, req) + if err != nil { + t.Fatalf("err: %v", err) + } +} + +func TestAgent_FailCheck(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -516,7 +1206,40 @@ func TestHTTPAgentFailCheck(t *testing.T) { } } -func TestHTTPAgentUpdateCheck(t *testing.T) { +func TestAgent_FailCheck_ACLDeny(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + chk := &structs.HealthCheck{Name: "test", CheckID: "test"} + chkType := &CheckType{TTL: 15 * time.Second} + if err := srv.agent.AddCheck(chk, chkType, false, ""); err != nil { + t.Fatalf("err: %v", err) + } + + // Try with no token. + req, err := http.NewRequest("GET", "/v1/agent/check/fail/test", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + _, err = srv.AgentCheckFail(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Try with the root token. + req, err = http.NewRequest("GET", "/v1/agent/check/fail/test?token=root", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + _, err = srv.AgentCheckFail(nil, req) + if err != nil { + t.Fatalf("err: %v", err) + } +} + +func TestAgent_UpdateCheck(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -644,13 +1367,47 @@ func TestHTTPAgentUpdateCheck(t *testing.T) { } } -func TestHTTPAgentRegisterService(t *testing.T) { +func TestAgent_UpdateCheck_ACLDeny(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + chk := &structs.HealthCheck{Name: "test", CheckID: "test"} + chkType := &CheckType{TTL: 15 * time.Second} + if err := srv.agent.AddCheck(chk, chkType, false, ""); err != nil { + t.Fatalf("err: %v", err) + } + + // Try with no token. + req, err := http.NewRequest("PUT", "/v1/agent/check/update/test", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + req.Body = encodeReq(checkUpdate{structs.HealthPassing, "hello-passing"}) + _, err = srv.AgentCheckUpdate(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Try with the root token. + req, err = http.NewRequest("PUT", "/v1/agent/check/update/test?token=root", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + req.Body = encodeReq(checkUpdate{structs.HealthPassing, "hello-passing"}) + _, err = srv.AgentCheckUpdate(nil, req) + if err != nil { + t.Fatalf("err: %v", err) + } +} + +func TestAgent_RegisterService(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() defer srv.agent.Shutdown() - // Register node req, err := http.NewRequest("GET", "/v1/agent/service/register?token=abc123", nil) if err != nil { t.Fatalf("err: %v", err) @@ -702,7 +1459,53 @@ func TestHTTPAgentRegisterService(t *testing.T) { } } -func TestHTTPAgentDeregisterService(t *testing.T) { +func TestAgent_RegisterService_ACLDeny(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + args := &ServiceDefinition{ + Name: "test", + Tags: []string{"master"}, + Port: 8000, + Check: CheckType{ + TTL: 15 * time.Second, + }, + Checks: CheckTypes{ + &CheckType{ + TTL: 20 * time.Second, + }, + &CheckType{ + TTL: 30 * time.Second, + }, + }, + } + + // Try with no token. + req, err := http.NewRequest("GET", "/v1/agent/service/register", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + req.Body = encodeReq(args) + _, err = srv.AgentRegisterService(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Try with the root token. + req, err = http.NewRequest("GET", "/v1/agent/service/register?token=root", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + req.Body = encodeReq(args) + _, err = srv.AgentRegisterService(nil, req) + if err != nil { + t.Fatalf("err: %v", err) + } +} + +func TestAgent_DeregisterService(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -716,7 +1519,6 @@ func TestHTTPAgentDeregisterService(t *testing.T) { t.Fatalf("err: %v", err) } - // Register node req, err := http.NewRequest("GET", "/v1/agent/service/deregister/test", nil) if err != nil { t.Fatalf("err: %v", err) @@ -740,7 +1542,42 @@ func TestHTTPAgentDeregisterService(t *testing.T) { } } -func TestHTTPAgent_ServiceMaintenanceEndpoint_BadRequest(t *testing.T) { +func TestAgent_DeregisterService_ACLDeny(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + service := &structs.NodeService{ + ID: "test", + Service: "test", + } + if err := srv.agent.AddService(service, nil, false, ""); err != nil { + t.Fatalf("err: %v", err) + } + + // Try without a token. + req, err := http.NewRequest("GET", "/v1/agent/service/deregister/test", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + _, err = srv.AgentDeregisterService(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Try with the root. + req, err = http.NewRequest("GET", "/v1/agent/service/deregister/test?token=root", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + _, err = srv.AgentDeregisterService(nil, req) + if err != nil { + t.Fatalf("err: %v", err) + } +} + +func TestAgent_ServiceMaintenance_BadRequest(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -787,7 +1624,7 @@ func TestHTTPAgent_ServiceMaintenanceEndpoint_BadRequest(t *testing.T) { } } -func TestHTTPAgent_EnableServiceMaintenance(t *testing.T) { +func TestAgent_ServiceMaintenance_Enable(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -830,7 +1667,7 @@ func TestHTTPAgent_EnableServiceMaintenance(t *testing.T) { } } -func TestHTTPAgent_DisableServiceMaintenance(t *testing.T) { +func TestAgent_ServiceMaintenance_Disable(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -867,7 +1704,43 @@ func TestHTTPAgent_DisableServiceMaintenance(t *testing.T) { } } -func TestHTTPAgent_NodeMaintenanceEndpoint_BadRequest(t *testing.T) { +func TestAgent_ServiceMaintenance_ACLDeny(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + // Register the service. + service := &structs.NodeService{ + ID: "test", + Service: "test", + } + if err := srv.agent.AddService(service, nil, false, ""); err != nil { + t.Fatalf("err: %v", err) + } + + // Try with no token. + req, err := http.NewRequest("PUT", "/v1/agent/service/maintenance/test?enable=true&reason=broken", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + _, err = srv.AgentServiceMaintenance(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Try with the root token. + req, err = http.NewRequest("PUT", "/v1/agent/service/maintenance/test?enable=true&reason=broken&token=root", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + _, err = srv.AgentServiceMaintenance(nil, req) + if err != nil { + t.Fatalf("err: %v", err) + } +} + +func TestAgent_NodeMaintenance_BadRequest(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -894,7 +1767,7 @@ func TestHTTPAgent_NodeMaintenanceEndpoint_BadRequest(t *testing.T) { } } -func TestHTTPAgent_EnableNodeMaintenance(t *testing.T) { +func TestAgent_NodeMaintenance_Enable(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -912,13 +1785,13 @@ func TestHTTPAgent_EnableNodeMaintenance(t *testing.T) { } // Ensure the maintenance check was registered - check, ok := srv.agent.state.Checks()[nodeMaintCheckID] + check, ok := srv.agent.state.Checks()[structs.NodeMaint] if !ok { t.Fatalf("should have registered maintenance check") } // Check that the token was used - if token := srv.agent.state.CheckToken(nodeMaintCheckID); token != "mytoken" { + if token := srv.agent.state.CheckToken(structs.NodeMaint); token != "mytoken" { t.Fatalf("expected 'mytoken', got '%s'", token) } @@ -928,7 +1801,7 @@ func TestHTTPAgent_EnableNodeMaintenance(t *testing.T) { } } -func TestHTTPAgent_DisableNodeMaintenance(t *testing.T) { +func TestAgent_NodeMaintenance_Disable(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -948,12 +1821,41 @@ func TestHTTPAgent_DisableNodeMaintenance(t *testing.T) { } // Ensure the maintenance check was removed - if _, ok := srv.agent.state.Checks()[nodeMaintCheckID]; ok { + if _, ok := srv.agent.state.Checks()[structs.NodeMaint]; ok { t.Fatalf("should have removed maintenance check") } } -func TestHTTPAgentRegisterServiceCheck(t *testing.T) { +func TestAgent_NodeMaintenance_ACLDeny(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + // Try with no token. + req, err := http.NewRequest( + "PUT", "/v1/agent/self/maintenance?enable=true&reason=broken", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + _, err = srv.AgentNodeMaintenance(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Try with the root token. + req, err = http.NewRequest( + "PUT", "/v1/agent/self/maintenance?enable=true&reason=broken&token=root", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + _, err = srv.AgentNodeMaintenance(nil, req) + if err != nil { + t.Fatalf("err: %v", err) + } +} + +func TestAgent_RegisterCheck_Service(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) defer srv.Shutdown() @@ -1009,3 +1911,94 @@ func TestHTTPAgentRegisterServiceCheck(t *testing.T) { t.Fatalf("bad: %#v", result["memcached_check2"]) } } + +func TestAgent_Monitor(t *testing.T) { + logWriter := logger.NewLogWriter(512) + logger := io.MultiWriter(os.Stdout, logWriter) + + dir, srv := makeHTTPServerWithConfigLog(t, nil, logger, logWriter) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + // Try passing an invalid log level + req, _ := http.NewRequest("GET", "/v1/agent/monitor?loglevel=invalid", nil) + resp := newClosableRecorder() + if _, err := srv.AgentMonitor(resp, req); err != nil { + t.Fatalf("err: %v", err) + } + if resp.Code != 400 { + t.Fatalf("bad: %v", resp.Code) + } + body, _ := ioutil.ReadAll(resp.Body) + if !strings.Contains(string(body), "Unknown log level") { + t.Fatalf("bad: %s", body) + } + + // Try to stream logs until we see the expected log line + expected := []byte("raft: Initial configuration (index=1)") + testutil.WaitForResult(func() (bool, error) { + req, _ = http.NewRequest("GET", "/v1/agent/monitor?loglevel=debug", nil) + resp = newClosableRecorder() + done := make(chan struct{}) + go func() { + if _, err := srv.AgentMonitor(resp, req); err != nil { + t.Fatalf("err: %s", err) + } + close(done) + }() + + resp.Close() + <-done + + if bytes.Contains(resp.Body.Bytes(), expected) { + return true, nil + } else { + return false, fmt.Errorf("didn't see expected") + } + }, func(err error) { + t.Fatalf("err: %v", err) + }) +} + +type closableRecorder struct { + *httptest.ResponseRecorder + closer chan bool +} + +func newClosableRecorder() *closableRecorder { + r := httptest.NewRecorder() + closer := make(chan bool) + return &closableRecorder{r, closer} +} + +func (r *closableRecorder) Close() { + close(r.closer) +} + +func (r *closableRecorder) CloseNotify() <-chan bool { + return r.closer +} + +func TestAgent_Monitor_ACLDeny(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + // Try without a token. + req, err := http.NewRequest("GET", "/v1/agent/monitor", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + _, err = srv.AgentMonitor(nil, req) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // This proves we call the ACL function, and we've got the other monitor + // test to prove monitor works, which should be sufficient. The monitor + // logic is a little complex to set up so isn't worth repeating again + // here. +} diff --git a/command/agent/agent_test.go b/command/agent/agent_test.go index c676a80929..806c41ebc3 100644 --- a/command/agent/agent_test.go +++ b/command/agent/agent_test.go @@ -10,13 +10,17 @@ import ( "os" "path/filepath" "reflect" + "strings" "sync/atomic" "testing" "time" "github.com/hashicorp/consul/consul" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/consul/logger" "github.com/hashicorp/consul/testutil" + "github.com/hashicorp/consul/types" + "github.com/hashicorp/go-uuid" "github.com/hashicorp/raft" ) @@ -54,6 +58,7 @@ func nextConfig() *Config { conf.Ports.SerfWan = basePortNumber + idx + portOffsetSerfWan conf.Ports.Server = basePortNumber + idx + portOffsetServer conf.Server = true + conf.ACLEnforceVersion8 = Bool(false) conf.ACLDatacenter = "dc1" conf.ACLMasterToken = "root" @@ -79,14 +84,14 @@ func nextConfig() *Config { return conf } -func makeAgentLog(t *testing.T, conf *Config, l io.Writer) (string, *Agent) { +func makeAgentLog(t *testing.T, conf *Config, l io.Writer, writer *logger.LogWriter) (string, *Agent) { dir, err := ioutil.TempDir("", "agent") if err != nil { t.Fatalf(fmt.Sprintf("err: %v", err)) } conf.DataDir = dir - agent, err := Create(conf, l) + agent, err := Create(conf, l, writer, nil) if err != nil { os.RemoveAll(dir) t.Fatalf(fmt.Sprintf("err: %v", err)) @@ -112,7 +117,7 @@ func makeAgentKeyring(t *testing.T, conf *Config, key string) (string, *Agent) { t.Fatalf("err: %s", err) } - agent, err := Create(conf, nil) + agent, err := Create(conf, nil, nil, nil) if err != nil { t.Fatalf("err: %s", err) } @@ -121,7 +126,22 @@ func makeAgentKeyring(t *testing.T, conf *Config, key string) (string, *Agent) { } func makeAgent(t *testing.T, conf *Config) (string, *Agent) { - return makeAgentLog(t, conf, nil) + return makeAgentLog(t, conf, nil, nil) +} + +func externalIP() (string, error) { + addrs, err := net.InterfaceAddrs() + if err != nil { + return "", fmt.Errorf("Unable to lookup network interfaces: %v", err) + } + for _, a := range addrs { + if ipnet, ok := a.(*net.IPNet); ok && !ipnet.IP.IsLoopback() { + if ipnet.IP.To4() != nil { + return ipnet.IP.String(), nil + } + } + } + return "", fmt.Errorf("Unable to find a non-loopback interface") } func TestAgentStartStop(t *testing.T) { @@ -154,6 +174,28 @@ func TestAgent_RPCPing(t *testing.T) { } } +func TestAgent_CheckSerfBindAddrsSettings(t *testing.T) { + c := nextConfig() + ip, err := externalIP() + if err != nil { + t.Fatalf("Unable to get a non-loopback IP: %v", err) + } + c.SerfLanBindAddr = ip + c.SerfWanBindAddr = ip + dir, agent := makeAgent(t, c) + defer os.RemoveAll(dir) + defer agent.Shutdown() + + serfWanBind := agent.consulConfig().SerfWANConfig.MemberlistConfig.BindAddr + if serfWanBind != ip { + t.Fatalf("SerfWanBindAddr is should be a non-loopback IP not %s", serfWanBind) + } + + serfLanBind := agent.consulConfig().SerfLANConfig.MemberlistConfig.BindAddr + if serfLanBind != ip { + t.Fatalf("SerfLanBindAddr is should be a non-loopback IP not %s", serfWanBind) + } +} func TestAgent_CheckAdvertiseAddrsSettings(t *testing.T) { c := nextConfig() c.AdvertiseAddrs.SerfLan, _ = net.ResolveTCPAddr("tcp", "127.0.0.42:1233") @@ -248,6 +290,7 @@ func TestAgent_ReconnectConfigSettings(t *testing.T) { } }() + c = nextConfig() c.ReconnectTimeoutLan = 24 * time.Hour c.ReconnectTimeoutWan = 36 * time.Hour func() { @@ -267,6 +310,71 @@ func TestAgent_ReconnectConfigSettings(t *testing.T) { }() } +func TestAgent_NodeID(t *testing.T) { + c := nextConfig() + dir, agent := makeAgent(t, c) + defer os.RemoveAll(dir) + defer agent.Shutdown() + + // The auto-assigned ID should be valid. + id := agent.consulConfig().NodeID + if _, err := uuid.ParseUUID(string(id)); err != nil { + t.Fatalf("err: %v", err) + } + + // Running again should get the same ID (persisted in the file). + c.NodeID = "" + if err := agent.setupNodeID(c); err != nil { + t.Fatalf("err: %v", err) + } + if newID := agent.consulConfig().NodeID; id != newID { + t.Fatalf("bad: %q vs %q", id, newID) + } + + // Set an invalid ID via config. + c.NodeID = types.NodeID("nope") + err := agent.setupNodeID(c) + if err == nil || !strings.Contains(err.Error(), "uuid string is wrong length") { + t.Fatalf("err: %v", err) + } + + // Set a valid ID via config. + newID, err := uuid.GenerateUUID() + if err != nil { + t.Fatalf("err: %v", err) + } + c.NodeID = types.NodeID(newID) + if err := agent.setupNodeID(c); err != nil { + t.Fatalf("err: %v", err) + } + if id := agent.consulConfig().NodeID; string(id) != newID { + t.Fatalf("bad: %q vs. %q", id, newID) + } + + // Set an invalid ID via the file. + fileID := filepath.Join(c.DataDir, "node-id") + if err := ioutil.WriteFile(fileID, []byte("adf4238a!882b!9ddc!4a9d!5b6758e4159e"), 0600); err != nil { + t.Fatalf("err: %v", err) + } + c.NodeID = "" + err = agent.setupNodeID(c) + if err == nil || !strings.Contains(err.Error(), "uuid is improperly formatted") { + t.Fatalf("err: %v", err) + } + + // Set a valid ID via the file. + if err := ioutil.WriteFile(fileID, []byte("adf4238a-882b-9ddc-4a9d-5b6758e4159e"), 0600); err != nil { + t.Fatalf("err: %v", err) + } + c.NodeID = "" + if err := agent.setupNodeID(c); err != nil { + t.Fatalf("err: %v", err) + } + if id := agent.consulConfig().NodeID; string(id) != "adf4238a-882b-9ddc-4a9d-5b6758e4159e" { + t.Fatalf("bad: %q vs. %q", id, newID) + } +} + func TestAgent_AddService(t *testing.T) { dir, agent := makeAgent(t, nextConfig()) defer os.RemoveAll(dir) @@ -807,7 +915,7 @@ func TestAgent_PersistService(t *testing.T) { agent.Shutdown() // Should load it back during later start - agent2, err := Create(config, nil) + agent2, err := Create(config, nil, nil, nil) if err != nil { t.Fatalf("err: %s", err) } @@ -897,6 +1005,11 @@ func TestAgent_PurgeService(t *testing.T) { t.Fatalf("err: %s", err) } + // Re-add the service + if err := agent.AddService(svc, nil, true, ""); err != nil { + t.Fatalf("err: %v", err) + } + // Removed if err := agent.RemoveService(svc.ID, true); err != nil { t.Fatalf("err: %s", err) @@ -936,7 +1049,7 @@ func TestAgent_PurgeServiceOnDuplicate(t *testing.T) { } config.Services = []*ServiceDefinition{svc2} - agent2, err := Create(config, nil) + agent2, err := Create(config, nil, nil, nil) if err != nil { t.Fatalf("err: %s", err) } @@ -1029,7 +1142,7 @@ func TestAgent_PersistCheck(t *testing.T) { agent.Shutdown() // Should load it back during later start - agent2, err := Create(config, nil) + agent2, err := Create(config, nil, nil, nil) if err != nil { t.Fatalf("err: %s", err) } @@ -1122,7 +1235,7 @@ func TestAgent_PurgeCheckOnDuplicate(t *testing.T) { } config.Checks = []*CheckDefinition{check2} - agent2, err := Create(config, nil) + agent2, err := Create(config, nil, nil, nil) if err != nil { t.Fatalf("err: %s", err) } @@ -1533,13 +1646,13 @@ func TestAgent_NodeMaintenanceMode(t *testing.T) { agent.EnableNodeMaintenance("broken", "mytoken") // Make sure the critical health check was added - check, ok := agent.state.Checks()[nodeMaintCheckID] + check, ok := agent.state.Checks()[structs.NodeMaint] if !ok { t.Fatalf("should have registered critical node check") } // Check that the token was used to register the check - if token := agent.state.CheckToken(nodeMaintCheckID); token != "mytoken" { + if token := agent.state.CheckToken(structs.NodeMaint); token != "mytoken" { t.Fatalf("expected 'mytoken', got: '%s'", token) } @@ -1552,7 +1665,7 @@ func TestAgent_NodeMaintenanceMode(t *testing.T) { agent.DisableNodeMaintenance() // Ensure the check was deregistered - if _, ok := agent.state.Checks()[nodeMaintCheckID]; ok { + if _, ok := agent.state.Checks()[structs.NodeMaint]; ok { t.Fatalf("should have deregistered critical node check") } @@ -1560,7 +1673,7 @@ func TestAgent_NodeMaintenanceMode(t *testing.T) { agent.EnableNodeMaintenance("", "") // Make sure the check was registered with the default note - check, ok = agent.state.Checks()[nodeMaintCheckID] + check, ok = agent.state.Checks()[structs.NodeMaint] if !ok { t.Fatalf("should have registered critical node check") } diff --git a/command/agent/bindata_assetfs.go b/command/agent/bindata_assetfs.go index 3daf338411..f1e2763d6e 100644 --- a/command/agent/bindata_assetfs.go +++ b/command/agent/bindata_assetfs.go @@ -76,7 +76,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _web_uiIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\x5d\x5f\x77\xa3\x38\xb2\x7f\xdf\x4f\xa1\xcb\x3e\xe4\xe1\x36\xd8\x49\x9c\x8e\xdb\xeb\xf8\x9e\x74\x3a\xb3\xd3\x67\x7a\x7a\xe6\x74\xa7\x67\xef\x3c\x62\x90\x0d\x1b\x0c\x5c\x04\x4e\x3c\x3e\xf9\xee\xb7\x4a\x12\x20\x40\xfc\x71\xfe\xed\xcc\xec\x9e\x33\x93\x36\x20\xa9\x54\xa5\x52\xd5\xaf\x4a\x12\xcc\xff\xeb\xc3\x4f\x57\x37\xbf\xfe\x7c\x4d\xbc\x74\x13\x2c\xfe\x32\xcf\xff\xa1\xb6\xbb\xf8\x0b\x21\xf3\x0d\x4d\x6d\xe2\x78\x76\xc2\x68\x7a\x61\x64\xe9\xca\x9c\x1a\xe5\x03\x2f\x4d\x63\x93\xfe\x5f\xe6\x6f\x2f\x8c\xff\x35\xbf\x5d\x9a\x57\xd1\x26\xb6\x53\x7f\x19\x50\x83\x38\x51\x98\xd2\x10\x6a\x7d\xbc\xbe\xa0\xee\x9a\x2a\xf5\x42\x7b\x43\x2f\x8c\xad\x4f\xef\xe2\x28\x49\x95\xa2\x77\xbe\x9b\x7a\x17\x2e\xdd\xfa\x0e\x35\xf9\xc5\x1b\xe2\x87\x7e\xea\xdb\x81\xc9\x1c\x3b\xa0\x17\x63\xeb\xfc\x0d\xc9\x18\x4d\xf8\xb5\x0d\x94\x2e\xc2\x48\x34\x9d\xfa\x69\x40\x17\x57\x51\xc8\xb2\x80\x2c\x77\xe4\x7b\x9b\x79\xfe\x55\x94\xc4\xf3\x91\x78\x84\x85\x02\x3f\xbc\x25\x09\x0d\x2e\x0c\x96\xee\x02\xca\x3c\x4a\xa1\x03\x5e\x42\x57\x78\x07\xfa\xee\x8c\x96\x51\x94\xb2\x34\xb1\x63\x6b\xe3\x87\x96\xc3\x98\x31\xb8\xa6\xcd\xa8\xb6\x82\x07\x6c\x3a\x59\x4a\x7c\xe0\xb4\x56\x67\x65\x6f\xf1\xae\x15\x87\x6b\xa8\x86\xf5\x98\x93\xf8\x71\x4a\xd2\x5d\x0c\x42\x4a\xe9\x7d\x3a\xfa\xa7\xbd\xb5\xc5\x5d\xde\x32\x21\xa3\x11\xb9\xf2\xec\x70\x4d\x49\xea\xf9\x8c\x6c\xed\x20\x83\x9f\x11\xd9\x45\x59\x82\xd2\x44\x09\x78\x11\x03\x82\x2b\xbc\x47\xec\x84\x92\x30\x4a\x49\x92\x85\xa1\x1f\xae\xf3\x36\x52\x8f\x92\x6f\x1f\x49\x14\xf2\x5f\x0c\x46\x45\xd4\xb2\x19\xb1\xf3\x66\xfc\x10\x3a\x1a\x3a\xd4\xca\x2b\x51\x6b\x6d\x11\x03\x87\x7e\x36\x1a\x6d\x76\x30\x14\x5b\x9a\x58\x4e\xb4\x99\x4d\xcf\xc6\x63\x83\x17\xdb\xda\x79\x37\xbe\xc7\xf6\x2e\xc8\xd1\x11\x72\x36\x12\x4c\x00\x9b\xf3\x91\x50\xb1\xf9\x32\x72\x77\x82\x6d\xd7\xdf\x12\x27\xb0\x19\x03\x35\x00\xe1\xc7\x34\x91\xcc\xaa\x4f\x50\x53\x6c\x3f\x2c\x9e\xd5\x9f\x06\xe6\xc6\x35\x8f\x4f\x8a\xa7\xf2\xb9\xef\x5e\x18\xd0\xa4\x7a\x7b\x04\xf7\x8b\x36\xca\x0b\xf9\xb3\x41\x38\xce\x98\x67\x2c\x8a\x82\x6d\xc5\x56\xa0\x3b\x4a\xe7\xfa\x3a\x3f\x84\x81\x5a\x5f\x5b\x7a\xab\xd1\x9a\x7b\x13\x54\xc4\x0d\xe8\x12\x66\xaf\x6c\x6f\xbf\x8f\x32\x98\x09\xe9\xc3\x43\x75\x38\xfa\xeb\x13\xd7\x4e\x6d\x33\xa5\x9b\x38\xb0\x53\x6a\x8a\x19\x4c\x93\x24\xd2\x8d\x52\x12\xdd\x75\x8d\xcf\x94\xc8\x1f\xd1\x6a\x05\x76\xc5\x3c\xe1\xd7\x6c\x03\x7c\xf3\x5f\xf7\x4c\x33\x84\xb2\x09\xec\x99\xe9\x80\xb1\xa0\x09\x01\xbd\x83\x19\x04\xa6\x41\x5c\x57\x64\xb6\xdf\xff\x15\x74\x1f\x25\x9e\x44\x41\x00\x0a\xba\x89\x5c\x1a\x58\x38\xe9\x32\x76\x03\x8d\x10\x2e\x03\x45\xc8\x71\x4e\x62\x19\x05\xae\xb1\xf8\xfe\xe6\xe6\x67\xc2\x19\x84\x56\x5c\x4a\x56\x49\xb4\x21\xc2\xb8\xcc\xc8\x1c\x6f\x2d\xf6\xfb\x96\xf6\x1f\x1e\x48\xeb\x33\xa4\xfd\xf0\x30\x1f\xf1\x16\xe6\xa3\xb8\xda\xe9\x91\xbf\xaa\xf4\x6b\x1e\x2f\x6e\x70\x86\xc3\x7f\x76\x28\xbb\x13\xdb\x30\xef\x57\xf0\x03\x27\xad\x34\x77\x77\x74\x09\x33\xd9\x22\xbf\xc2\x64\xdf\xd8\x3b\xe2\xd9\x5b\x4a\xb6\x3e\xf3\x53\xea\xc2\x5c\xfe\xf6\xe5\x13\x94\xb6\x53\x6c\x27\x88\x6c\x17\x6c\x00\xb4\xa7\xd0\xc9\xc2\xdb\x30\xba\x0b\xc1\x5c\x31\x30\x21\x0e\x7d\x43\x18\xb7\x26\xc4\x01\xb2\x69\xb2\x23\xeb\x08\xeb\x2c\x6d\xe7\x16\xed\x0c\x52\x9e\xdb\xd2\x90\xfd\xd5\x58\x24\xa0\xf6\xf3\x91\xbd\xb0\x6a\x0c\x41\xf7\x7f\x82\xb2\xc9\x9d\xcf\xa0\xc9\x38\xa0\x60\x20\x81\x06\x5a\x7d\xa0\xbf\x03\xb2\xf4\x3e\xa6\x0e\x74\x52\xa9\xe4\x33\x96\x51\x96\x5b\xa5\x82\x0c\x5a\x1c\x06\x26\x67\xed\xa7\x5e\xb6\x44\x83\x33\xf2\xd0\xc2\x3b\x60\xe1\x47\xc2\xd8\x18\x8b\xbf\xfb\xe9\xf7\xd9\x92\x8b\xa8\xd9\x9f\x9e\x39\xff\x1c\x33\xc2\x75\x46\x59\x68\x67\x29\x18\x7c\xff\x37\xea\xfe\x3e\xe7\x46\x5d\xd5\x2f\x1d\x87\x32\x46\x3e\xd0\xd0\xa7\x6e\x43\x25\x71\x1e\xd9\x4e\x70\x13\xdd\xd2\xb0\xae\x9b\xbf\xa2\xbf\xb9\xbc\x02\xe5\xc2\xa7\x6f\x8a\x79\x51\x96\x97\x8a\xfe\x86\xb8\x11\x8c\x29\xf8\x20\xa5\x01\xae\xa4\x38\xc6\x60\x9a\x93\x28\x4e\x7c\x90\x23\x01\xbb\xbf\x01\x0d\xf0\x61\x40\x51\xd3\xe0\x12\x54\x7d\xc3\x8b\xe5\xba\x02\xdd\x49\xe1\x79\x5d\xd9\xf6\x7b\x1a\x30\xda\x9c\x3e\x94\xb8\x74\x65\x67\x01\xa8\xdc\x1a\x84\x21\xfa\xfa\x2a\xfd\xd1\xcc\xe6\x4f\xd4\x4e\x42\xb2\x89\xc0\x21\xfb\x2d\x0a\x7e\x77\x77\x67\x09\x7d\xb6\xfc\x68\xe4\x46\x0e\x1b\xf9\x38\x86\xa1\x1d\xb0\x11\x48\xd6\x42\x90\x06\xa3\x06\x62\x87\x87\xd9\x06\x78\xb2\x91\xfe\xbf\x4a\xe1\xa1\x4b\xcc\xf5\x19\x62\xb1\x3f\x8a\xc2\x5f\x7d\x02\x75\x97\x5d\x6e\x9a\x2c\xfe\x18\x21\x53\xce\x95\x18\x2a\xb0\x9d\xd2\xda\x3a\x41\xc6\x80\x86\x45\x72\xdb\x9c\x2a\x4a\xb6\xa4\xa0\x47\x7e\x94\xbc\x41\x18\x85\x26\x54\xa8\x55\x84\xea\x12\xf8\x0e\x20\xd1\x1d\xa1\x21\xb6\x8b\xd5\x36\x0d\x93\x39\xfa\xf3\x29\x89\x74\x39\xbf\x53\xe5\xf0\x37\x6b\xc2\x12\xa7\x40\xe4\xb2\xb7\xa6\xb3\x0b\xa2\xd0\x8c\xb3\x04\xfc\x96\xc5\xb6\x6b\x83\x88\xf0\xc4\x38\x9d\x4e\x00\xc4\x53\x7f\xed\x41\xc8\x32\x99\xd6\x54\x6d\x31\x67\x1b\x3b\x08\x16\x9f\x44\x33\x96\x05\xe2\x16\x77\x5e\x52\xec\x1c\xe1\x72\x33\x04\xd7\x07\x08\x5a\xd4\x31\xcb\x4a\x45\x81\xfd\x9e\x2c\xfd\xd0\x35\xed\x34\x4d\xf2\xd2\x0c\x14\xd3\xf1\xde\xdb\xc9\x2c\x47\xaa\xe3\xfc\xd7\x99\x01\x88\x8a\xb4\x01\x5b\xb4\x99\xe6\x3a\x89\xb2\xb8\x22\x2d\x34\x92\xa0\xe2\x71\xa6\x72\x66\x88\x78\xe6\x62\xe5\x07\x38\x76\x6a\x0b\x12\x53\x11\xf5\xc2\x84\x28\xcd\x37\x00\x5c\xd8\x0e\xf5\x60\x7a\xd3\x44\xd6\x14\x48\x6b\x10\x8e\x16\x3d\x41\x4f\x17\xd2\xbb\x4b\x27\x78\x9f\xa5\x29\xe0\x8f\x6a\xed\xa6\x7a\x9e\xd4\x98\x19\xc4\x31\xa7\x84\xb1\xa1\x09\x36\xe1\x08\x8d\xe7\x91\xac\x73\xb4\x4c\x43\x02\xff\x73\x8e\xf8\x8f\xc2\xa6\xc0\xef\x30\xc2\xb1\x02\x53\x12\x67\x41\x60\x26\xa8\x7d\x47\x0f\x0f\x9f\xe9\x1d\x3a\x60\xf0\x35\xb2\xc9\x3a\xac\xad\x32\xa9\xe1\xba\xea\xa4\x84\x14\x04\x54\xa5\x4c\x79\xa0\x61\xff\xac\x35\x8e\xe9\x18\x6e\x8c\xfa\xc9\xf5\x66\x09\xe6\xf3\x2b\x0d\xc0\x7f\x16\xd1\x7f\x4e\x54\x0e\xbf\xb8\x1c\x38\xfc\x07\x8d\xb3\x8e\x63\x80\x92\xd7\xf7\x31\x4c\x28\xb0\xf6\xdd\x5c\x9f\x10\xcf\x77\x5d\x1a\x82\xf1\xc9\x7f\xb1\xcd\xe1\x92\x98\x2f\x85\x8e\xe9\xa6\xd9\x0c\x15\x61\x56\x68\xc2\xac\x1c\x71\x14\x16\x50\x64\xd4\x9d\x29\xfa\xc1\x7f\x03\x5e\xd9\xd8\xc9\x8e\x4f\x43\x44\x60\x38\xaf\xc1\xed\xac\xd7\x01\xbd\xca\x2b\xc1\xb3\x85\x60\x73\x3e\x12\xf4\x87\xc5\x99\x4d\xb9\xbd\x14\x9a\x18\x62\xba\xb4\x22\x2b\x42\x67\x32\x2b\x7d\xc4\xac\x70\x12\x64\x96\x46\x31\x5a\x39\x14\xc1\x5f\xba\xc6\xf7\x38\xf7\x31\x85\x8b\x99\xe6\x77\xa4\x17\x1a\xe7\x0f\xe4\xf5\x71\x75\xf4\x95\xb8\xa8\xe2\x8f\xa2\xd8\x5c\x26\x20\x80\x3c\x8d\x80\xae\xb8\x4d\xd8\x5a\xbd\x93\xbd\x38\x7d\x5c\xbf\x54\xab\x83\x49\x1b\x1f\x40\x7f\xc3\xf2\xe4\x06\xa7\x90\x1b\x98\x98\xaf\xb2\xb0\xd6\xc6\xa8\x89\x90\x57\xe8\x78\x08\xc1\xc4\xb0\x5e\x7f\xc6\x92\xbf\x87\x2e\xdf\x6e\x07\xf5\xf7\x07\xba\x1b\xfd\x82\x86\xef\xc9\x7d\xae\xe9\x6d\x89\x9e\xc6\x35\x1e\x4e\x06\xf3\xa0\xf5\x52\x3a\x2e\xda\x5c\xd1\xa3\xfa\xff\xb6\xa7\xff\x93\xbe\x79\xb8\xdf\xeb\xed\x84\xb4\x08\xc8\x08\xd8\xfd\xef\x6c\x1f\x3a\xbc\xbe\xf2\xa8\x73\xcb\xb8\x29\xbd\x03\xf8\x0d\x77\xf8\x6f\x96\xf1\xe8\xd8\x50\xad\xaa\x21\xcc\x2a\xdc\x5b\x80\x9d\x03\x73\x9a\xb7\x4e\x03\x3f\x36\x23\x40\x9b\xab\x00\x8d\xd6\x7e\xcf\x33\x3f\x50\xb5\x52\xca\x81\xd8\x22\x45\x2b\x80\x37\xf3\x7f\x08\x37\x07\x8d\xc8\xdb\x67\x1f\x20\x14\x75\xa3\xbb\xf0\x17\x9f\x61\x62\xbd\xee\xdf\x79\x38\xc2\x9b\x75\x65\x41\x13\xc0\x7e\x56\xe8\x80\x41\x78\xba\x1a\x1e\xfb\x0c\x4c\xed\x6e\xb6\x0c\x22\xe7\xf6\x6f\x3a\x50\x42\x6d\xc7\x23\xae\x83\x31\x87\xeb\xb0\x1a\x21\x4e\x2c\xf0\x15\x21\x80\xf3\xa3\xd8\x39\x14\x83\xde\xb8\xb8\xce\xc3\xc3\x7e\x2f\xfe\x96\x4a\x31\x87\x9f\x4d\xea\x23\xa4\xde\x00\x2f\x59\xa0\x8b\xa8\x0f\x51\xab\xa6\x39\x3f\xe9\x51\xab\xfa\xd4\x1e\x77\x98\xd1\x34\x05\x3d\xe9\x9d\x1a\x6f\x79\xe2\xff\xa8\x0a\x52\x20\xa2\x20\xf7\x9b\x20\x64\x17\x79\x32\x1d\x63\xba\xbb\x53\x2b\x4a\xd6\xa3\x93\xf1\x78\x3c\xe2\x31\x07\x77\x93\x58\x1d\x39\x82\x6b\xc4\x4f\xef\xa3\xfb\x0b\x63\x4c\xc6\xe4\xf4\x84\x4c\xc6\x75\x60\x11\xdb\x29\x0c\xe3\x85\xf1\xe3\xf1\x84\x8c\x03\xf3\xd8\x3a\x3d\x3e\x25\x13\x07\x24\x61\x9d\xc2\xd5\xbb\xf3\x33\xeb\xed\x74\x6a\x9e\x58\xd3\xf3\x33\x72\x6c\x1d\x4f\xa7\x81\x79\x6a\x9d\x9f\xc0\x33\xb8\x03\xf7\xcf\xa7\x84\xff\xe1\xd7\x04\x1f\x39\xa6\x75\x66\xbd\x33\xad\xe9\x54\xde\x35\x79\x3d\xc2\xdb\xf8\x34\x26\xc7\x93\xed\x24\x98\x10\x24\x35\x71\xac\x53\x02\xa4\xde\x4e\xcf\x09\x27\xc6\x49\x9c\x8b\xa2\xd8\x1b\x68\x18\x9a\x3c\x96\x34\x4e\xe4\xb5\xa0\x0e\x95\xdf\x59\x58\xe3\xdd\xf8\x0c\x88\x61\x2d\xf8\x25\x3b\x79\x6c\x9d\x4c\xc9\xc4\x9b\x04\x9c\x8c\x39\x71\x8e\x4d\x20\x75\x62\x8d\xc7\x6f\x4d\xe4\x88\x17\x7e\x2b\x7a\xf6\xe9\xe4\x2d\x39\x99\x5a\x67\xef\x26\x01\x10\x3e\x3e\xe5\x5c\x21\xf3\x50\x80\x33\x64\x9d\x99\x40\x0a\x48\xf0\x9b\x92\x84\xc9\xc9\x7d\x02\xa9\x1e\x4f\xb7\xe6\x24\x30\x27\x5c\x7a\xc8\x3e\x48\x0e\x89\x9c\x0b\x01\x72\x22\xe7\x42\x84\x01\xb2\x24\x04\xc8\x89\x9c\xe4\x97\x42\x52\x50\x17\x04\x77\x26\xc8\x70\x09\x0a\x2a\xb2\x9f\x20\x87\xb1\x67\x4e\x7e\xdb\x9c\x90\x77\xce\xa9\xf5\x0e\x06\xf5\x1c\xe4\x71\x0c\x7f\xcf\x99\xc9\x7f\x98\xe7\xf8\x3f\xfe\x36\xf1\x37\xff\x17\xef\xfc\x66\x8c\xaa\xe8\x0d\xf4\xa5\x36\x5b\x5a\x0d\x71\xe3\x42\x9d\x49\xcf\xbc\x4a\x70\xbb\x1d\x31\xaf\xc0\x70\x07\x44\xff\xc2\xfe\x07\x6b\xf3\x8c\xc4\x36\x00\x6d\x57\x60\x60\x00\xc5\x2e\x10\x54\xe3\x55\x6f\x52\x24\x78\x12\x6a\xbb\x4e\x92\x6d\x96\x0c\x2c\x6c\x0e\xc5\x8c\xd2\x6c\x1d\xa1\x4c\x6e\x22\x70\xb7\x47\x64\x8d\x70\xec\x67\xb0\xc6\x61\x0a\xd7\x84\xdb\xb1\x38\xbf\x44\x43\x65\x2f\x48\x5f\x1b\xb1\x5a\xfd\xbf\xb1\xca\x7c\xe4\x4d\x7a\x56\x6b\x9e\x57\x0c\x55\xeb\xc4\xad\xb8\x0f\x63\x80\x76\x9c\xfb\x9f\xfa\x52\x87\x62\xc2\xb0\x9c\x25\xb8\xf9\x02\x83\x4e\xc5\x0d\xe4\x26\xb5\xd7\x9f\x05\x26\xf7\xb7\x72\xc9\x72\x65\x07\x8c\xe6\x9d\x0b\x7c\x96\x8a\xc0\xc6\xe4\xc4\xf8\x75\x11\x9d\x98\xd8\xa6\x51\x27\x5c\xe0\xf7\x86\x5b\xe6\x64\x7d\xf6\x1d\x8f\xdf\x67\xcb\x35\xb4\x8c\xae\x6a\x0d\xed\x20\xab\x78\x45\x66\x9c\x04\xe8\x99\xc9\xb3\xeb\xb8\x98\x16\xa0\xef\x69\x84\xb8\x75\x39\xa2\x1a\x36\xfc\x1d\x8a\x81\x53\xbd\xa5\xbb\x7f\xf8\xa9\x07\xdc\x0b\x4d\x68\xf6\xb9\xd9\x7e\x65\x6a\x55\xa7\x5c\xc5\x8d\x55\xfd\x93\xda\xa7\x65\x94\x00\xa7\x66\x40\x57\x69\x67\x3c\xd9\xde\xc2\x56\xe0\x01\xac\x96\xff\xac\xc4\xa1\x73\x2f\xe9\x6f\xa4\xae\x62\xe7\x44\xe9\x58\x4b\x62\x4d\x2a\xa1\x28\xd8\x1a\xf8\x02\xa6\xa1\x81\x2e\x3f\xa2\x8d\xde\x78\x69\x1c\x5b\x00\x3c\x32\x71\x86\xa3\x1f\x25\xb8\xc8\x5d\xd5\x03\x1e\xc1\xf5\x8e\xb9\x68\x10\x17\x99\xcb\xc4\x63\xa5\x6c\x69\x32\x44\x51\xbe\x45\x40\x53\x90\x90\x2b\x30\x29\x30\x33\x60\x52\x34\x5b\xa9\x4c\x75\x9d\xb0\xdb\xfb\x86\x2b\xdf\x44\xfc\xc4\x24\x81\xae\x8f\x7c\xa5\x41\x49\x24\x18\x8d\x66\xeb\x4d\x77\x64\x9d\x64\xe1\x18\x6c\x1c\x5f\x47\xfc\x11\x50\xad\xbd\xa6\x68\xe6\x62\x5d\x59\x3d\x1f\x05\x41\xed\x30\x96\xe4\x31\x91\x06\x12\xc3\xd9\x05\x51\x8d\xef\xce\xb6\xf8\x57\x44\xdf\xda\x7e\x29\x4c\xf0\x84\x60\x27\x17\xa4\x0a\xa8\x95\x0a\x26\x28\x67\x14\x1a\x75\x43\xce\x21\x76\x4b\x53\x45\x0a\x52\xe4\x9d\x64\xc7\xd1\x06\x6a\x72\x4f\x06\x49\x70\xc3\x4b\x42\xdd\x8b\x34\xc9\x68\xd3\xc2\x55\x84\xd7\xdb\x73\x8f\x06\xb1\xc9\x11\xb9\xb1\xb8\x89\x88\x23\x54\xcd\x26\x2b\x6e\x08\xdf\x10\x1a\xba\x3c\xff\x0f\x62\x24\x77\x60\xa5\xe4\x0a\xdb\xa8\x58\x3f\x6e\x63\xac\x7d\xf4\x8a\x3c\x27\x72\x99\x9b\x5c\x3d\x1f\xa0\x2c\x9f\x23\xb9\xbb\x24\xa4\x14\x73\x63\xb8\xee\x1c\x52\x86\xab\x5e\xd0\x27\x56\x5f\xbd\x28\x89\x34\xd6\xe2\x8a\x46\x0f\x51\x57\x18\x1b\x44\x19\x30\x94\x76\x75\x78\x78\xa8\xac\x1d\xa0\xb6\x11\x69\x13\xbb\x6c\x09\x1e\x2e\x29\x5f\x94\xc6\xd6\x6c\x5c\x9f\x76\x49\x40\xc3\x75\xea\xf5\x4a\x59\xd7\xef\x5a\xa4\xa2\xd4\x29\x13\x7f\x79\x24\x25\x86\x1d\xd8\x12\x51\x66\x39\xaf\xf2\x05\xa8\x8b\x62\xb8\x3e\x86\x7c\x22\x89\x24\x5f\x4b\xe6\xb0\x28\x2c\x66\x9e\x12\xc5\xaa\x49\x43\x3e\x17\x85\x6d\xd3\x25\x03\x3b\xba\x0b\x90\x82\xa6\x54\x28\x8e\xd1\xd5\x11\x35\x71\xa9\xd8\xf5\x5a\x84\xed\xa2\x8d\x47\xc3\xff\x25\x8a\xd2\x99\x70\x81\xbc\x73\x1f\x38\x1d\x39\x17\xda\xfb\x38\x1f\xe1\x88\xb5\x98\xe1\x8e\x5b\xaf\xb0\xf0\x05\xd0\x97\xba\x7e\xfa\x6f\x09\x7d\x5f\x01\xf8\xaa\xf3\xad\x8a\x7b\x11\x0f\x61\x64\xfe\x1f\xe8\xfb\xa2\xd0\xb7\x72\xfb\xdf\x0f\xf9\xbe\x0e\xf4\x5d\x27\x94\x86\xfc\xa1\x73\x8b\xeb\x3e\x43\xc0\xf0\x70\x28\x8c\x06\x44\x97\x27\x55\x50\x71\x49\x3b\xe0\xff\x18\x3a\x10\x27\x73\x9d\x16\x37\x1f\x9a\xa7\x08\x3a\x44\x89\xbc\x35\x5d\x82\x91\x2f\x94\x97\x7b\x2e\x73\xef\xa1\x51\xe1\x1f\xae\x7f\x25\x9f\x7e\xba\xfa\xe1\xfa\x83\xc6\x21\x88\xf5\x76\x4d\x2f\xea\x3b\x72\x44\xf1\x3a\x88\xd7\x81\xa7\xc3\x01\xfc\x60\xa0\x53\x07\xe4\xfd\x93\x50\x1f\x1b\x34\xe4\x30\x1c\x69\x35\x71\x96\x18\x2b\xfe\xfb\x03\x45\xb0\xe9\xea\xe1\x70\x01\x51\xfa\x07\x57\x0f\x96\x4a\x80\x91\xe3\x8b\x2c\x76\x7b\xe0\x50\x31\x53\x6a\x05\x54\xf0\xd1\x0e\x38\x2a\x29\xfd\x96\xd6\x05\x0f\x8b\x6f\xbc\x2b\x1d\xd8\xa3\xd1\x79\x07\x37\x4b\x07\xd7\xe8\xf5\x5f\xa6\xf7\x39\x7c\x43\xf4\xc6\x69\x1d\xd2\x3b\x01\xdd\x9e\x2a\xda\x43\x70\xdd\x10\x29\x4b\xa0\x07\xee\xa8\x8d\x17\x1d\xc6\x6b\xdb\xda\x50\x85\x05\x7d\x66\x67\xee\x9d\x2d\xf0\x01\xf9\x4a\xf9\x2e\x3f\xb0\x06\x67\xb5\xa9\xdf\x58\x80\xb4\x30\x9f\x79\x24\xdb\x65\xa2\x9e\x85\x0b\x8e\x2f\x09\x1d\x72\xf7\x59\x01\x06\x3a\x5c\xf0\x04\x54\x40\x24\x33\xc8\x43\xfe\x5b\x17\x1a\x1e\x60\xa7\xb1\x59\x55\x44\x5a\xc3\xa0\xb5\xd7\x07\x81\x0f\xed\xba\x50\xe5\xe2\xb9\xb1\x3d\x8e\xdf\xe8\x3f\x3b\xdb\x5e\x65\x67\x5b\xbe\xa4\xf8\xd4\xdd\x21\x6f\xc5\x8e\x10\x1e\x52\xcc\x34\x31\x05\x58\xb3\xaf\x30\xb5\x81\xb9\x8f\x30\xba\xb3\x12\x9e\x6a\xef\x03\xe8\xac\xe4\xb3\xe4\xe6\xa6\xcb\x38\xb6\x2e\xb9\xbd\x7d\x6f\x27\xbf\xe0\x1d\x55\x35\x85\x49\x12\x3b\xd4\xa8\x7b\x25\xf6\x3e\x35\x33\x05\xc5\xf9\x85\x62\xe3\x4e\x33\x97\x00\x65\x1c\x3c\x60\x20\x6c\xbb\xd8\x53\xf5\x09\x0c\x02\xa7\x29\x77\x55\xbd\x07\x51\x40\xb7\xc1\x6b\x57\x29\x16\xc3\x3c\x1d\x8f\x09\xc8\xf0\x7b\x71\x35\x99\xe8\x33\x41\xba\xf5\x5d\x69\x05\xb9\xad\x78\x19\xbb\x57\x19\xd5\xc6\xa0\x36\x97\xee\x9b\xa8\xf9\xa0\xc0\xa9\x39\xd3\x5a\x0c\x65\x2e\x13\x64\xb9\xa5\xd3\x07\xda\xc8\xbc\x45\xe2\x20\x2b\x12\x09\xb6\x09\xa4\x03\xe1\x8a\x87\xed\x49\x29\xfd\x26\x41\xf9\xb0\x54\x26\x9d\x3e\xca\x84\xde\x6b\x68\xe1\xf1\xc9\xf8\x15\xd5\xf0\xe5\x95\xaf\x4f\xe3\xca\x1c\x4e\xad\x83\x1d\x0b\x18\xc3\x04\x22\xf7\x25\xb0\x6c\x09\x71\xdc\x11\xee\xc3\x10\x3a\xdb\xa9\x0a\x0a\xe7\x45\xbe\x54\x38\x0e\xcc\x9b\xd6\x9c\x4c\xad\x92\x5d\x6c\x15\xe6\x24\x8d\x72\x2f\xdc\x7e\xaf\xea\xb6\x48\x31\xb5\xaa\x77\xbb\xac\x34\x2b\x2e\xf2\x49\xb9\x13\x86\x4b\xd1\x0f\x81\xc3\xae\xd9\x2b\x32\x46\x08\xe8\x30\x63\xc4\x81\x5d\xc7\x8c\x0b\xfc\xea\x19\x82\xfd\x3e\xe4\x68\x46\xb7\x9b\xa5\xa4\xa1\xdb\xd5\x52\xb2\x92\x69\x67\xf0\xd3\xa6\x69\x0d\x09\x35\x12\xf1\xe5\x59\x88\x40\x58\xa3\x1b\x0f\x26\xa4\x3c\x21\x4a\x72\x1d\xc2\xf3\x0a\xa8\x46\xd5\xfc\x7e\xad\xf5\x3f\x76\x8e\x87\x00\xf0\x00\x49\x62\x30\xd2\x82\xb3\xc0\x20\x91\xf6\xc5\xce\xca\x2e\x89\x4a\x4f\x1a\x17\x4f\x47\x3e\xad\x50\x52\x6c\x65\x2b\xb1\x63\x9f\xdc\x14\x83\x51\xa2\xaa\x62\xd8\x6a\xdb\x97\xf0\xb7\x58\x25\x81\x89\xf1\x5e\x9e\xfd\x43\xa7\xc6\x3a\xb7\x84\xb6\x0e\x8d\x77\x5a\x38\xd6\xc8\xdc\xd8\xc9\xda\xe7\x2b\x75\x32\x90\x1a\x5b\x72\xa7\x69\xfe\x2f\xc1\xd9\xe5\x9d\x16\x8d\x61\xbb\xc5\xef\xb3\xc5\x8d\xbd\x66\x22\x5a\x2b\x58\x03\xc8\x04\x2e\xa0\xb2\x6d\x1d\xd7\x3b\xc5\x3d\x45\x95\x35\xb3\x02\x57\xba\x52\xde\xa2\x52\xaa\xaa\xee\x40\x8a\xef\x2a\xad\x84\x88\x75\x3b\x52\xec\xb8\xd0\x89\xbc\x12\x3e\xe2\x6f\x1e\x12\x0d\x0b\x1d\x79\xa6\x49\xe6\x9b\xf8\xd1\xf2\xfc\x27\x4b\x0d\xcd\x49\x05\x8d\xcf\xe2\x04\x07\x39\xae\x22\x27\xa9\x87\x4d\x5d\x79\xcf\x16\x97\xa5\x8c\x7d\xd7\x7a\xbb\xb0\xaa\xa5\x54\x9a\xa1\xb0\x00\x3e\x6a\xb9\x4b\xd7\x4d\xc0\xa9\xf0\x65\x5e\x6d\x1c\xa9\xae\xfc\x09\xe2\x61\x94\xd2\xdc\x84\x5b\x75\xb7\xd4\x5c\xec\x53\xb5\x50\x5c\x37\xc4\x50\x73\x3e\x59\xc8\x77\x5d\xba\x8d\xe3\x0f\x42\x59\x38\xc9\xdc\xeb\x58\x62\x20\x34\x61\x7f\xe9\x73\x86\xe0\x67\x5d\x40\x8f\xe5\xde\xe3\x61\x7c\x24\x61\x7d\x95\xa7\x93\x3b\x33\x85\xad\x98\x57\x3a\x70\xab\x15\xf5\x16\x63\x23\xc9\x71\xbe\x3e\x7e\x20\xad\x23\x53\x56\x1a\x9c\x4a\xe8\x61\xa4\x03\x1a\xeb\xb3\x22\x0d\xef\xad\xf3\xd9\xc2\x53\xab\x6e\xb0\xb1\xfb\x47\xad\x76\xb8\x95\xe7\x66\xe1\x4f\x10\xdc\x0e\x0e\x6f\xb5\x01\x6e\x73\x30\x5f\x35\xc6\x95\xe4\xb4\xb6\xfa\x05\x93\x7b\x8a\x9a\xbd\x6e\xa0\x5b\x57\xb6\xce\x60\x57\x08\xa7\x25\x81\xa7\xb4\x77\x78\xd0\x2b\x5a\x26\x61\xb6\xc9\x0f\x9a\xe0\xe6\x86\x1c\x61\x74\xd1\xea\x0a\x82\x45\x81\x0e\xde\x7b\x23\xa0\x1e\xa4\xdd\x15\x12\xbf\x6e\x50\xfc\x12\x5a\xdb\xa3\xab\xaf\x11\x15\x3f\x29\x2e\x1e\xa0\xac\x85\xb7\xea\xc3\x0f\x35\xb6\x0f\x0d\x89\x9f\x2b\x28\xee\xd1\xe7\xf6\xc0\xf8\xe0\xd0\xb8\xc4\x29\x72\x16\xf2\x1d\x15\x72\x42\x76\x4f\xff\x66\x94\xcc\xaa\x98\xbe\x3b\x60\xee\x0b\x99\xdb\x83\xe6\xde\x09\x3d\x60\x3a\x37\xb6\x6c\x69\xdf\x28\xd1\x15\x3e\x8b\x24\x82\x36\x76\x6e\x39\x40\xf9\x22\xc1\xf3\x9f\x20\xee\x45\x49\xbe\x48\xd0\x2b\xa0\xd6\xc1\x11\x6f\xd8\x7e\x9c\xf0\xb0\x70\x57\xe9\x94\x8c\x7b\xb9\x95\xe6\x67\xc4\xb8\xf5\x29\x1f\x48\xc3\xa4\xc3\xcf\xda\x5d\x79\x09\x5d\xfb\xf8\x5e\x0a\x6c\xd0\xe8\xdc\x21\xa8\xee\xbb\x53\x17\x73\xcb\x33\xc7\xda\x65\x5d\xb9\x2b\x2f\xa7\x53\x5f\xac\xed\x0a\xd6\x73\xdf\xae\x8d\x9d\x15\x33\x23\x38\x57\x90\x80\x36\x8c\xae\xa5\x3a\x6b\x36\xe6\x39\x80\x1a\x71\xa3\x0c\xf5\x88\x1b\xca\xf6\x17\x01\x68\x50\x17\xa9\x6e\xd0\xe9\xdb\x9d\xa3\x45\x5d\x1a\xb3\xa9\x8d\x83\x07\x01\xad\xb2\xb1\xc2\xd3\xcd\xca\x7b\x3f\x47\x89\x6e\xdf\x97\xc6\x13\xea\x18\xd1\x3a\x16\x02\x6e\xae\xf5\x7c\x21\x8c\x8d\xe2\x4e\xac\x9b\x6a\xba\xa6\x68\x18\x7c\x04\xcf\xdb\x1c\x72\x5c\x50\x61\x15\x9a\xcd\x17\x51\x3a\x28\x55\x9d\x49\x77\x58\xa7\xe8\xb2\xc0\x36\x5a\x4d\x2e\x02\x7b\xa1\xc7\x65\x64\xaf\x35\xb4\xcd\x8d\x62\x30\x63\xf9\xcd\x7a\xcc\xde\xae\x81\xcf\x92\x74\xe9\x08\xec\x0b\x98\x54\x89\xe9\x1f\x93\x6c\xa9\x86\xee\x8f\xcc\xb3\x68\x77\x61\x35\xd8\xc6\x44\x5d\x4a\x2b\xd9\x41\xf9\x28\x2e\xd3\x13\xbc\x08\xd1\x9c\x7f\xc0\xfa\x3f\x65\x69\x9c\xa5\xba\x06\x12\x5a\xf0\x22\x0a\xf1\x16\x12\xaa\xe9\xb8\x9e\x0f\xad\x4e\xa9\x5b\x50\x1a\xaa\x85\x6f\xe4\x90\x8f\xaa\x16\xb1\xb6\x6f\x4c\xb5\x95\xd2\xb0\x8a\x2d\x1c\x7c\xc2\x35\x1b\xd0\xd8\xb2\x56\xab\x58\x31\x88\xed\xe6\xec\x71\xdb\x53\x06\x18\xc4\x61\x5b\x53\x34\x7e\xd1\x17\x3b\xe6\xed\x94\x4a\xf1\x1a\x79\x75\x8b\xe7\xa6\x1e\xe9\x25\x91\xb5\x0e\x2f\xf9\xb1\xa0\xaa\xdf\xd2\xd4\x72\x4a\x68\xb8\x3d\xd5\xd8\x9c\x9c\x2d\x61\x75\xf4\xd9\xb1\x26\x40\xe7\xd5\xdb\x60\x79\x9b\xa1\x6d\x9e\xcc\xce\xa9\xff\x88\x2f\x78\xd5\x8e\x4f\xf3\x7d\x22\xd5\x69\xd0\xb7\x54\x45\xb8\xc1\x31\x30\x51\xcf\x8a\x89\xd2\x99\xac\xa7\xe9\x5d\x94\xdc\x92\x9b\x68\x13\x81\x3a\xc6\xde\xae\x36\xb1\x00\xdc\xe5\x4f\xfe\x8e\x7f\x95\x6b\x72\x7a\xfa\x56\xb1\xdb\xad\x5d\x71\xe9\x4c\xda\x3c\x44\xad\x65\x7d\x13\x01\x23\x8c\xdf\x2a\x52\x0e\xfa\x17\x9d\x6d\x69\xee\x47\x40\x5e\x9b\x6c\x33\xab\x76\x0d\x5f\x43\x0b\x5d\xd9\xb0\x01\x0d\x50\xd7\xb7\xc3\x46\x7d\x7e\x77\x68\x13\xf6\xbd\xb6\x0f\xf6\xbd\xda\xc0\x63\x5e\x4e\x15\xfc\xb9\x33\x9c\xf5\x89\xf3\x4a\x79\xcb\xfa\x6b\x3a\x24\x24\x06\xd3\xf6\x72\xe9\xca\xe7\xd8\x8f\x58\x6f\xa7\x23\xfb\xc8\x8d\x79\xc0\x0d\x3f\xff\xc3\xcd\xb6\xae\x39\x3d\x9d\x8e\xc4\x40\x3d\x29\xa0\x3e\xd1\x1c\x60\xeb\x0e\xfe\xf9\x6b\x03\xff\x25\xb1\x7f\xfe\xaa\x10\x45\xc9\x4b\x5a\xbf\xc3\xbc\x80\xce\xd6\x3f\xe2\x68\xc6\x21\xbd\xeb\x03\xde\x45\x89\x97\x3b\x9e\x3c\x1c\xb7\xcb\xd2\xc3\x8f\x28\x13\x22\xdf\x03\xa7\x9d\x15\xba\xc4\x60\xdb\xf9\xd0\xc7\x9c\x53\x26\xad\x27\x0d\x3a\xce\x10\x0f\x38\xbf\xd0\xd5\xb2\xb6\xb0\xee\x2c\xef\xa5\x13\x58\xca\x56\xa8\xda\xe9\x85\x8e\xdd\x7b\x2d\xc7\x45\xbf\xd2\x94\x9f\xc8\x8d\x62\xb4\x19\x10\xee\xa3\xe1\x2a\x5e\xc7\x0c\x43\x60\x75\x9d\x36\x6e\x17\xc8\x23\x58\x6d\x7f\x95\x1e\x7a\x62\x56\x95\xc1\x0d\xdc\xd2\xc9\xa0\xef\x65\x7a\x83\x84\x82\x2f\xd9\x45\x9a\x24\x5a\x89\xd7\x01\x8b\xf7\xa2\xbe\x96\x28\xe6\x60\xb5\x68\xb0\xf8\x92\x05\x18\xf3\x89\x8b\x76\x05\x69\x1e\x28\x46\xf9\xf0\xca\xcf\xa5\x24\xdf\x81\x3a\xc8\xd7\xb7\x8a\xd3\xc4\x08\x02\xe0\xbf\x04\x89\xbc\x11\x2f\xe6\x7e\xde\xf7\xba\x5a\xe2\xf8\xe5\x23\xc5\xdd\x76\x24\x19\x04\xd3\x7d\xc0\x57\x3d\x4e\x33\xf0\x3c\xb1\xf6\xb4\x6e\xeb\xf2\xbc\xfe\x88\x87\xf6\x52\xf5\xb1\x4f\x7a\x8b\x6a\x70\xe0\x76\xfe\xa7\xa4\xa3\x39\x2c\x3e\x38\x1b\x8d\x50\x63\x60\x32\x5a\x37\xf6\xdd\xae\xf0\x45\xdd\xe0\x61\x07\x13\x07\xb9\x3f\x05\x1e\x1a\xe2\xbc\x16\xca\xc7\x90\x29\x38\x1d\x58\x7c\xed\x13\x7f\x2d\xc1\xfe\xb3\x1f\xe1\x53\x5d\x9f\x5c\x5b\x38\xcc\xf3\xbd\x80\xd7\x1b\x02\x34\x7a\x39\x1b\xe6\xe9\x04\xcb\x4f\x75\x74\xcf\xe6\xe4\x9e\x81\xf3\x81\x8e\xad\xed\xf4\xe6\xa1\x3e\xed\x8f\xe2\xcf\x5a\x25\xdb\xf4\x63\xe2\x2c\xe9\xc1\x7e\x6c\xf8\xb9\xcf\xd2\x63\x06\x51\x38\x68\xd9\x4d\x7d\xfd\x06\xd6\x39\x88\x0a\xa3\xe9\x81\x34\xbe\x41\xc4\xcf\x3f\xc6\xd0\x4e\x07\x1c\x12\x51\xce\x49\x7e\x8e\xd2\xcb\xb0\xe5\xe0\x5f\xdb\xdb\x40\x3a\xc5\xdb\xfb\xee\x0f\x25\xbb\xaa\xbc\xf9\xa3\xab\xc3\xda\xd7\xab\x1c\x72\x4a\x54\x5e\x08\x7f\x79\x38\x4a\x00\x3e\xe9\xbd\x06\x27\x74\x1e\xef\x53\xde\x29\xd9\xf6\xce\xc9\x2a\x90\x68\x39\xdc\x27\x16\x54\xb9\x1d\xb4\xf9\xd9\x44\xf1\xbc\xb6\x19\xba\xf9\x22\xb8\x9e\xd5\xd4\x23\x51\xba\x9e\xf4\xa8\xbb\xc1\xe6\x1e\x64\xfe\x7d\xab\x4e\x6f\x58\x22\x87\xfe\xd5\xd1\xc3\xe2\xe4\x81\x6b\x5c\x82\x67\x5f\xcd\x8c\x54\x5a\x69\x5b\xb6\x6a\x37\x41\xd5\xa5\xaa\x86\x66\x69\x6f\x69\x30\x5b\x35\xc3\xfe\xa4\x93\x02\xe2\x65\xa4\x2f\xac\x94\x8a\x12\x9e\x22\x2c\xe0\x34\x2b\x2b\xff\xfc\x9b\x2b\x0c\x17\x69\xc4\x43\x44\xac\xd1\x1d\xff\x14\x06\x68\x1b\x38\x83\x95\xbf\xce\xc0\x97\xf0\x8f\x95\x2d\x01\x58\x83\xfe\xd5\xbf\x67\xf4\x0f\xf9\x3d\xa3\x6b\x98\x02\x3b\x70\xb4\xe1\x1a\x3f\xb3\xc1\xec\x2d\x75\xb1\x11\xf0\x4a\xe0\x3f\x52\x00\x9e\x6b\xfa\x46\xd2\xc5\xf7\x35\x81\x22\x66\x81\x8b\x1f\x69\x61\xb8\x3c\x93\x7a\xe0\x59\xd7\x9e\xf0\x4f\x8c\x97\xc8\xe9\x65\xb8\x64\x66\x55\xd2\xe1\x05\x37\x3c\xa1\x67\x67\x69\x84\x8e\x0e\x08\x05\xbb\xbc\x45\xa0\x9e\xc5\x11\x9f\x4d\xfe\x0a\x1e\xa1\x05\xe4\x9f\x4a\x0a\x23\xb2\xb1\xc3\x0c\x80\x11\xf6\x11\xfb\x9a\xbf\x26\xac\x42\x03\xe6\xa7\xfc\xd8\x8e\xb4\xc8\xe5\x84\xed\x45\x05\x1d\x5f\x4a\x10\x86\x5b\x7c\xd7\xa6\x15\xf9\x6c\xa2\x30\xaa\x7e\x26\xc1\xe0\x35\x54\x14\xd4\x8d\x7d\x78\xfb\x38\x0c\xf8\x15\x1d\xfe\x36\x32\x64\x92\x32\x14\xad\xf8\x06\x8a\x78\x3b\xd9\xff\xa4\x82\x39\x7e\x81\x6f\x09\x02\xac\x58\xf9\x5c\x4a\xc6\xc4\x30\xe6\xfd\x93\x18\x32\x57\x82\xa2\x3b\xf2\xab\x56\xd5\x39\x58\xb5\xdf\x7d\x52\xd3\x38\xac\x84\x0e\x74\xa2\xe2\xfd\x05\xe8\x8f\xbe\x60\x15\xf2\x41\x78\x55\xd6\xdc\xf7\xd2\xb9\xe3\xa9\x9c\xc0\xf8\x60\x34\x22\xd7\xe2\xeb\x2f\x20\xba\x64\x27\xc4\x03\x18\x6a\x93\x31\xfc\x76\x0c\xff\x3c\x17\x48\x67\x49\x57\x88\xb7\x28\x62\x5e\x10\x19\x54\xe4\xf0\xf7\xfa\xf3\x2f\xe4\x82\xec\xbf\xbb\xbe\xbc\xf9\xf6\xe5\xfa\xeb\x8c\xec\x8f\x78\x33\xa6\x68\xc6\x0c\xe9\xdd\xd1\x8c\xe0\x9b\xe9\x1e\x1e\xfe\x56\xeb\x46\x6e\x45\xd4\x13\xe1\x76\x8c\xdf\xa4\x11\x88\x0b\xbf\x76\xf8\x4f\xc6\x4d\x9e\xa8\x03\x7c\xf2\xaf\xf3\x81\x9a\xf2\xcf\x42\xfe\x7f\x00\x00\x00\xff\xff\xd1\x3f\x20\x9c\x2e\x72\x00\x00") +var _web_uiIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\x7d\x4b\x77\xdb\x38\xf2\xef\x3e\x9f\xa2\x2e\x7b\xe1\xc5\x0d\x29\xf9\x15\x3b\x1a\x59\xf7\x24\x4e\x7a\x3a\x37\xe9\x74\x9f\xc4\xe9\xf9\xf7\x12\x22\x4b\x22\xc6\x14\xc0\x01\x40\x29\x1a\x1d\x7d\xf7\xff\x01\x40\x52\x7c\x80\x94\x94\xd8\x9e\x9e\x9e\x59\xd8\xe2\x03\x8f\x42\xa1\x50\xf5\xab\xc2\x83\xe3\xff\xf3\xe6\x97\xdb\xbb\xdf\x7f\x7d\x0b\xb1\x5a\x24\x93\x67\xe3\xe2\x07\x49\x34\x79\x06\x30\x5e\xa0\x22\x10\xc6\x44\x48\x54\x37\x5e\xa6\x66\xfe\xb5\xb7\x7b\x11\x2b\x95\xfa\xf8\x8f\x8c\x2e\x6f\xbc\xff\xf1\xbf\xbc\xf2\x6f\xf9\x22\x25\x8a\x4e\x13\xf4\x20\xe4\x4c\x21\x53\x37\xde\xbb\xb7\x37\x18\xcd\xb1\x92\x8f\x91\x05\xde\x78\x4b\x8a\xab\x94\x0b\x55\x49\xba\xa2\x91\x8a\x6f\x22\x5c\xd2\x10\x7d\x73\xf3\x1c\x28\xa3\x8a\x92\xc4\x97\x21\x49\xf0\x66\x18\x5c\x3d\x87\x4c\xa2\x30\xf7\x64\x9a\xe0\x0d\xe3\xb6\x68\x45\x55\x82\x93\x5b\xce\x64\x96\xc0\x74\x0d\x3f\x11\x19\xd3\x5b\x2e\xd2\xf1\xc0\xbe\xd2\x89\x12\xca\xee\x41\x60\x72\xe3\x49\xb5\x4e\x50\xc6\x88\xca\x83\x58\xe0\x4c\x3f\x21\x8a\x86\x83\x29\xe7\x4a\x2a\x41\xd2\x60\x41\x59\x10\x4a\xe9\x1d\x9c\x93\x48\x74\x66\x88\xb9\x50\x61\xa6\x80\x86\x9c\x35\xf2\xcc\xc8\x52\x3f\x0d\x52\x36\xf7\x26\xcf\x74\x3e\x19\x0a\x9a\x2a\x50\xeb\x14\x6f\x3c\x85\x5f\xd5\xe0\xef\x64\x49\xec\x53\x53\x32\xc0\x60\x00\xb7\x31\x61\x73\x04\x15\x53\x09\x4b\x92\x64\x08\x8a\xc3\x9a\x67\x42\x73\x53\x73\x20\xe6\x52\x01\x9d\xe9\x67\x40\x04\x02\xe3\x0a\x44\xc6\x18\x65\xf3\xa2\x0c\x15\x23\x7c\x79\x07\x9c\x99\x2b\x49\x16\x68\x73\x11\x09\xa4\x28\x86\x32\xa9\x08\x0b\x31\x28\x32\x61\x30\x0f\xc0\xd3\x5d\x3f\x1a\x0c\x16\x6b\x89\x62\x89\x22\x08\xf9\x62\x74\x7d\x39\x1c\x7a\x26\xd9\x92\x14\x64\xfc\xa4\xcb\xbb\x81\x93\x13\xdd\xb2\x81\x6d\xc4\xe4\xd9\xb3\xf1\xc0\x8a\xd8\x78\xca\xa3\xb5\x6d\x36\xe3\xc5\x5b\x5d\xc2\x38\x44\xa6\x50\xd8\x1b\x80\x71\x7c\x36\xf9\xff\x64\x49\x3e\x5b\xde\x7c\xd2\x42\x27\x30\x1a\x0f\xe2\xb3\x32\x49\x3a\xf9\x35\x41\x22\x11\x90\x69\xb9\x80\x4a\x7a\xca\x2c\x6b\x56\x38\x85\xa9\xe0\x2b\x89\x42\xb3\x2b\x93\x08\xb9\xbc\x7c\x79\x17\x8c\x07\x69\x5e\xf7\x60\x57\xf9\x78\xb0\xa3\x4b\xdf\x46\x74\x09\x61\x42\xa4\xbc\xf1\x56\x82\xa4\x29\x8a\xbc\x4b\xaa\x6f\xb4\x3c\x13\xca\xca\x77\xcd\xb7\x89\xbf\x88\xfc\xd3\xb3\xf2\x6d\xfe\x9e\x46\x37\x1e\x49\xd3\xea\xe3\x41\x44\x97\x65\x19\xbb\x9b\xfc\xb2\x55\x71\x9a\xc9\xd8\x9b\x94\x09\xbb\x92\xcd\x38\x57\x15\xe2\xf6\x11\x7f\x48\x03\x1a\xb4\x76\x50\xeb\x90\xed\xaf\x7e\x4c\x58\x94\xe0\x94\x08\x99\x97\xb7\xd9\xf0\x4c\x25\xa8\xb6\xdb\xba\xd0\xec\xcf\x0f\x11\x51\xc4\x57\xb8\x48\x13\xa2\xd0\xb7\x7a\x06\x85\xe0\xae\x5e\x12\x7c\xd5\xd7\x3f\xd7\x90\x5f\xf0\xd9\x4c\xa2\xf2\xcf\xcc\xbd\x5c\xf8\xa7\xf6\xea\xab\x74\x74\x61\x5e\x84\xa6\xcc\xb7\x42\x04\x4b\x14\x8a\x86\x24\xc9\xef\x6b\x3c\xdb\x6c\x7e\xa0\x33\xa3\xfe\x04\x4f\x12\x14\xc1\x82\x47\x98\x04\x5a\x35\x64\xf2\x0e\xbf\x2a\x30\x3c\xa8\x30\x39\x2d\xaa\x98\xf2\x24\xf2\x26\x3f\xdd\xdd\xfd\x0a\xa6\x81\x10\xf2\x08\x61\x26\xf8\x22\x17\xe9\x11\x8c\xf5\xa3\xc9\x66\xd3\x51\xfe\x76\x0b\x9d\xef\x74\xdd\xdb\xed\x78\x60\x4a\x28\x07\x46\x41\xf4\x80\xce\x6a\x74\x8d\xd3\xc9\x9d\xd6\x43\x54\x02\x61\x39\x39\x29\x99\x23\xcc\xb8\x30\xaa\x25\x1f\x64\x7a\xf8\x7d\x79\x17\xc0\xef\x3c\x83\x05\x59\x43\x4c\x96\x08\x4b\x2a\xa9\xc2\x08\x08\x7c\xf9\xf4\x01\x54\x4c\x94\x2e\x27\xe1\x24\xa2\x6c\x0e\x84\x55\xea\xc9\xd8\x3d\xe3\x2b\x06\x02\x25\xcf\x44\x88\xcf\x41\x1a\x9d\x07\x21\x61\xa0\xc4\x1a\xe6\x5c\xe7\x99\x92\xf0\x5e\x0f\x6f\x5d\xf3\x98\xe4\xea\xf6\x07\x6f\x22\x38\x57\xe3\x01\x99\x04\x8d\x06\x8d\xd3\xc9\x2f\x2a\x46\xb1\xa2\x12\x9f\x43\x6a\x95\x88\x40\x6d\x9b\x80\xb0\x35\x64\x0c\xbf\xa6\x18\x2a\x8c\x2a\x99\xa8\x94\x19\xca\x42\x77\x96\xd5\x68\xbd\x28\x47\x83\xc1\x9c\xaa\x38\x9b\x6a\xb5\x38\x88\xb5\x1d\x0a\xb9\x48\x07\x56\x25\x7a\x93\xbf\x52\xf5\x53\x36\x35\x2c\x6a\xd3\xb3\x67\xcc\x3f\xc4\x88\x88\xc2\x41\xc6\x48\xa6\x62\x2e\xe8\x3f\x31\xfa\x63\x8e\x8d\xa6\xa8\xbf\x0a\x43\x94\x12\xde\x20\xa3\x5a\xf1\xa7\xed\x71\x44\xc2\xe4\x8e\xdf\x23\x6b\xca\xe6\xef\x5a\xf5\xbf\xba\xfd\x00\x4a\xbf\x7d\x5e\x8e\x8b\x5d\xfa\x5c\xd0\x9f\x43\xc4\x51\x6a\x4b\x59\x29\xc0\x08\xa9\xee\x63\x92\xa6\x82\xa7\x82\x12\x85\x90\xa2\x58\x50\x29\x29\x67\x52\x4b\x5a\x8a\x62\xc6\xc5\xc2\x24\x2b\x64\x05\x48\xa8\x28\x67\x4d\x61\xdb\x6c\x30\x91\xd8\x1e\x3e\x08\x11\xce\x48\x96\x28\x20\x73\x64\xca\xd2\xfa\x24\xf4\x38\x46\xf3\x07\x24\x82\xc1\x82\x0b\xd4\xa6\xd3\x29\xe0\xab\xd5\x2a\xb0\xf2\x1c\x50\x3e\x88\x78\x28\x07\x54\xf7\x21\x23\x89\x1c\x90\x30\x09\x34\x94\xf4\x26\x9a\xed\x11\x0f\xb3\x05\x32\x8d\x77\x38\xfb\x57\x09\x3c\x09\x13\x19\x51\xa9\x91\xc1\xbf\x8b\xc0\xdf\x7e\x90\xf0\x26\x27\xb9\xad\xb2\xcc\x6b\x0d\xec\x8a\x56\xd9\xae\xa2\xb2\xd0\xb6\x61\x92\x49\x85\x22\x80\x42\x37\xab\x8a\x90\x4d\x31\x26\x4b\xca\xc5\x73\x0d\xf6\xb4\x0a\xb5\x62\xc5\xb5\xb8\x24\x34\xa4\x2a\x59\x17\x38\x4a\xc5\xb8\x68\xa9\xcc\xc1\x9f\x4f\x48\x72\x93\xf3\x07\x15\x0e\xba\x98\x83\x14\x61\xe9\x37\xe4\xd4\xfa\xe1\x3a\xe1\xcc\x4f\x33\x91\x26\x18\xc8\xe5\xdc\x03\xeb\x44\x79\xe7\xd7\x17\x1e\xc4\x48\xe7\xb1\xba\xf1\x2e\xae\x1b\xa2\x36\x19\xcb\x05\x49\x92\xc9\x07\x5b\x4c\x10\x04\xe3\x81\x7d\xf2\x98\x6c\x37\x08\xd7\xa8\xa1\x29\x39\x06\x92\xd9\x3c\xfe\x2e\x53\x99\x60\xb3\x81\x29\x65\x91\x4f\x94\x12\x45\x6a\x89\x44\x84\xf1\x6b\x22\x46\x05\x52\x1d\x16\x57\x97\x1e\x6c\xb7\xd0\x05\x6c\xb5\xce\xf4\xe7\x82\x67\x69\x8d\x5b\x5a\x49\x02\x65\x69\x56\x6d\x99\x67\xbd\xae\x9b\x19\x4d\x74\xdf\x55\x4b\xc8\x31\x15\x54\x6f\xfc\x05\x65\xd4\x83\x34\x21\x21\xc6\x3c\x89\x50\xe4\x39\x2d\xd2\x3a\x08\x47\x43\x69\xe9\x18\xae\x5e\x85\xc9\xeb\x4c\x29\xce\xea\x10\xd1\x21\x9e\x67\x8d\xc6\x1c\xd4\x62\x53\x93\xf6\x60\x7d\xc5\xe1\x44\x2b\xcf\x93\x3c\xcf\xc9\x54\x31\x98\x2a\x66\x5a\x64\x2e\x4a\x9d\xa2\x98\xcf\xb8\xee\xab\x25\x42\x9a\x25\x89\x2f\xb4\xf4\x9d\x6c\xb7\x1f\x71\xa5\x0d\xf0\x66\x33\xc8\x8b\x6c\xc2\xda\x7a\x23\x1d\xad\xae\x1b\x29\xcb\x05\x0b\x55\x51\x56\x5e\x38\x9a\x7f\xd9\xe9\xc7\xf4\x74\xf7\x92\xe2\x0a\xde\x2e\xa6\x28\x82\xcf\x98\x60\xa8\xca\x18\x45\x51\x69\xde\xfd\xf6\xf6\xc0\xee\x3f\xaa\x9f\x5d\x2d\x8e\x89\x7c\xfb\x35\x25\x2c\xc2\x08\xfa\x5b\x7d\x06\x31\x8d\x22\x64\xfe\x57\x59\x5c\xc9\xc5\xf1\x9c\x18\x4f\xad\x8c\xb9\x86\xd9\x48\x0b\xc2\xa8\x94\x84\xd1\xae\xc7\x35\xb3\x22\x64\x12\xa3\x51\x45\x3e\xcc\x75\x2a\xe8\x82\x88\xb5\x19\x86\x1a\x81\xe9\x71\x0d\x8a\xcf\xe7\x09\xde\x16\x99\x60\xbb\x9d\xd8\x66\x8e\x07\xb6\xfe\xc3\xfc\xcc\x36\xdf\x1e\x0b\x4d\x1c\xa2\xba\x9c\x2c\x2b\x5d\x67\x18\xed\x6c\xc4\xa8\x34\x12\x30\x52\x3c\xd5\x5a\x4e\xb3\xe0\x59\x5f\xff\x9e\x16\x36\xa6\x34\x31\xd7\xc5\x93\xdc\x0a\x0d\x8b\x17\xf9\xfd\x69\xbd\xf7\x2b\x7e\x51\xcd\x1e\xf1\xd4\x9f\x0a\xc2\xa2\x22\x8c\xa0\x4d\x71\x17\xb3\x9d\x72\x97\x53\x71\xfe\x6d\x74\x55\xb5\x8e\x44\xb1\xa4\x21\xb6\x35\x4f\xa1\x70\x4a\xbe\x9d\x6c\xb7\x9f\xf3\xc4\x4e\x1d\x53\x0d\x84\x3c\x01\xe1\x8c\x47\x07\x52\xfd\x51\xa7\xfc\x23\x90\x7c\xbf\x3c\x88\xde\xf7\xb8\x1e\xfc\xa6\x15\xdf\x77\xd3\xdc\x90\xdb\x1d\x7a\x1a\x36\xda\x70\x76\x70\x1b\x9c\x56\xca\xd5\x8a\x2e\x53\xf4\x4d\xf4\xbf\xd8\x43\xff\xc5\xbe\x71\xb8\xd9\xb8\xf5\x44\xae\x11\x74\x43\x62\x22\x7f\x24\x34\xa1\x6c\x7e\x1b\x63\x78\x2f\x8d\x2a\x5d\x11\xc1\x28\x9b\x9b\x6b\x99\x19\xef\xd8\xab\x6a\x55\xcf\xaa\x55\x6f\xbb\x9d\xc0\x58\xa6\x84\x15\xa5\x63\x42\x53\x9f\x2f\x51\xcc\x12\xad\xb4\x36\x1b\x13\xf9\xd9\x6e\xeb\xa9\x42\x22\x50\x69\x2d\xa0\x1f\x16\x3f\x60\xd4\x41\xcb\xf3\xa6\xf2\x8d\xe0\x69\xc4\x57\xec\x37\x2a\xe9\x34\xc1\xa6\x7d\x37\xee\x88\x29\x36\xca\x13\xfa\x0b\x64\x59\x29\x03\x1e\x98\xa0\xfa\x8d\x17\x51\x99\x26\x64\x3d\x9a\x26\x3c\xbc\xff\x8b\x0b\x94\x20\x09\x63\x88\x42\xed\x73\x44\xa1\x6c\x54\x64\x2a\x4b\x68\x85\x09\x31\x8d\x50\x13\xa7\xd9\xe0\x56\x2e\x51\xb8\xdd\x6e\x36\xf6\xff\x4e\x28\xc6\x83\x84\xb6\x6b\x1f\xe8\xda\x5b\xe0\x25\x4b\x5c\x1e\xf5\x31\x62\xd5\x56\xe7\x67\x7b\xc4\xaa\x39\xb4\x87\x3d\x6a\x54\x29\xca\xe6\x7b\x87\xc6\x0b\x33\x3d\x71\x52\x07\x29\x72\x39\x87\xaf\x8b\x84\xc9\x9b\x22\xe4\xaf\x7d\xba\xd5\x79\xc0\xc5\x7c\x70\x36\x1c\x0e\x07\xc6\xe7\x30\x66\x52\x67\xd7\x2d\x9a\x7b\xa0\xf1\xd3\x6b\xfe\xf5\xc6\x1b\xc2\x10\xce\xcf\xe0\x62\xd8\x04\x16\x29\x51\x31\x44\x37\xde\xcf\xa7\x17\x30\x4c\xfc\xd3\xe0\xfc\xf4\x1c\x2e\x42\xff\x14\x82\x73\xff\x34\x78\x79\x75\x19\xbc\xb8\xbe\xf6\xcf\x82\xeb\xab\x4b\x38\x0d\x4e\xaf\xaf\x13\xff\x3c\xb8\x3a\xf3\x4f\xf5\x13\xff\x2c\xb8\xba\x06\xf3\xcf\xdc\x83\x7e\x15\xfa\xc1\x65\xf0\xd2\x0f\xae\xaf\xf3\xa7\xbe\xc9\x07\xa6\x8c\x0f\x43\x38\xbd\x58\x5e\x24\x17\xa0\xab\xba\x08\x83\x73\x38\x85\xe0\xc5\xf5\x15\x98\xca\x4c\x15\x57\x36\xa9\xa6\xe6\xea\x5a\x17\x79\x9a\xd7\x71\x96\xdf\xdb\xda\x2f\xc2\xe0\x65\xa0\x73\xbc\x1c\x5e\x06\xd7\x26\xd7\xcb\x61\x41\xe4\x69\x70\x76\x0d\x17\xf1\x45\x62\xaa\xf1\x2f\xc2\x53\x3f\x38\x87\xb3\x60\x38\x7c\xe1\xeb\x16\x99\xc4\x2f\x2c\x65\x1f\xce\x5e\xc0\xd9\x75\x70\xf9\xf2\x22\x39\x0b\xae\x4f\xcf\x4d\xab\x74\xe3\x87\x2f\x4c\x5b\xc3\xe0\xd2\x0f\x5e\xea\x2a\xcc\xc3\xbc\x0a\xdf\x54\xf7\xe1\xfc\x0c\x4e\xaf\x97\xfe\x45\xe2\x5f\x18\xee\xe9\xe6\x9f\xfb\xa7\xba\x92\x2b\xcb\x40\x53\xc9\x95\x65\x61\xa2\x9b\x64\x19\x68\x2a\x39\x2b\x6e\x2d\xa7\x42\x5f\x33\xee\xd2\x56\x63\x38\x68\x6b\xc9\xe9\x3c\xbd\x86\x61\xec\x5f\xfc\x73\x71\x06\x2f\xc3\xf3\xe0\x25\x0c\xe1\x0a\xce\x83\x53\xb8\x82\x2b\xe9\x9b\x0b\xff\x4a\xff\xe9\x6b\x5f\x5f\x9b\x5f\xfd\xe4\x9f\xde\xa0\x8e\xde\xe4\x72\xde\x18\x2d\x9d\x8a\xb8\x75\x53\x1d\x49\x0f\x3c\x4b\x70\xbf\x1c\xc8\xb8\xc4\x70\x47\x78\xff\x56\xff\x27\x73\xff\x12\x52\x12\x45\x18\x59\x0c\xec\x2f\x68\x14\x25\x58\xf5\x57\xe3\x8b\x32\xc0\x23\x90\x44\xa1\xc8\x16\x53\xe9\x4d\x4a\x28\xe6\xed\xd4\xd6\x89\xe6\xc9\x1d\x7f\x8f\xeb\x13\x98\x6b\x38\xf6\x2b\x11\xc8\xd4\x7b\x5c\x83\xd1\x63\x69\x71\xab\x15\x15\x99\xc0\xbe\x32\xd2\x6a\xf6\xff\xab\xb3\x8c\x07\xf1\xc5\x9e\xd9\x9a\x87\x65\xc3\xb3\xb6\x16\xa7\x0a\x17\x5a\x8f\x1b\xfb\xd3\x9c\xea\xa8\xa8\x30\x9d\x2e\xb0\xad\xf9\xc4\x33\x85\xf6\x81\x6e\x8d\x22\xf3\x8f\x16\x93\xd3\x65\x3e\xb1\x3a\x23\x89\xc4\x82\xb8\x84\x4a\x65\x1d\x1b\xdf\x54\x66\xee\x4b\xef\xc4\xd7\x65\x7a\xcd\x8a\x4b\xfc\xde\x32\xcb\xa6\x5a\x2a\x7f\x34\xfe\xfb\x68\x3a\xf7\xe7\x42\x9b\xaa\xb9\x9f\x98\xa6\xea\x3b\x18\x99\x2a\xa6\x44\xf8\x26\xba\xce\x99\x22\x89\xb6\x3d\x2d\x17\xb7\xc9\x47\x2d\x86\x2d\x7b\xa7\xd9\x60\x6a\xbd\xc7\xf5\xdf\xa8\x8a\x79\xa6\xac\x24\xb4\x69\x6e\x97\x5f\x1b\x5a\xf5\x21\x57\x33\x63\x75\xfb\x54\xa5\x69\xca\x45\x84\xc2\x4f\x70\xa6\x7a\xfd\xc9\xee\x12\x96\x16\x0f\xe8\x6c\xc5\x65\xcd\x0f\x1d\xc7\x62\x7f\x21\x4d\x11\xbb\x82\x0a\x61\x1d\x81\xb5\x5c\x08\x6d\xc2\x4e\xc7\x37\x25\x0c\x13\x57\x7c\xc4\xe9\xbd\x99\xd4\xba\x6f\x81\xca\x3c\x70\xa6\x7b\x9f\x0b\xc2\xe6\x58\x97\x03\xe3\xc1\xed\xed\x73\x5b\x60\x8c\xd5\xc0\x63\x2d\xed\x4e\x65\xd8\xa4\x66\x21\x83\x23\x21\xc0\xad\x40\xa2\x10\xde\xe3\xba\x5d\x4a\x6d\xa8\xbb\x98\xdd\x4d\xdb\x94\x47\x6b\xb0\x97\x33\x2e\x16\x2e\x1a\xcd\x4c\x43\x25\x90\xe0\xb5\x8a\x6d\x16\xdd\x13\x75\xca\x13\xa7\x93\xcd\xc6\xcc\x23\xfe\x8c\x52\x92\x39\x6a\x35\x97\xba\xd2\xba\xdb\x01\xbd\xdd\xb8\xab\x1e\x18\xae\xde\xe3\x5a\x8f\xae\xdf\x48\x42\xa3\xd1\x52\xff\xb7\xde\xb7\x93\xae\x4a\x23\x4c\x40\xb0\xb7\x15\x50\x07\xd4\x95\x0c\x3e\x89\x22\xce\xbc\xa6\x22\x37\x10\xbb\xa3\xa8\x32\x04\x69\xe3\x4e\x39\xe1\x5a\x07\x3a\x62\x4f\x1e\x88\x7c\x85\xc4\x8d\x12\x19\xb6\x35\x5c\x8d\x79\x7b\x29\x8f\x31\x49\x7d\x83\xc8\xbd\xc9\x1d\x87\xd0\x8a\x1a\x81\x99\x51\x84\xcf\x01\x59\x64\xe2\xff\xf7\xb8\x86\x15\x55\x71\x3e\xc3\x36\x28\xe7\x8f\xbb\x1a\xd6\xdd\x7b\x65\x9c\x53\xb7\xb2\x50\xb9\xee\x76\x8c\xd3\xc9\x47\x9e\xaf\x81\x61\x88\x11\x46\x66\xde\x99\xa1\x54\x18\x69\x9a\x64\x73\xf6\x62\x57\x49\x6b\x2e\xae\x2c\xf4\x18\x71\xdd\x6c\x40\xa3\x0c\x22\x90\xd4\xbb\xc7\xb8\xca\xce\x0e\xea\xea\x91\x2e\xb6\xe7\x25\x11\x06\x53\x34\x93\xd2\xba\x34\xa2\x80\xb0\x08\x12\x64\x73\x15\xef\xe5\xb2\x8b\xee\x86\xa7\x52\xc9\xb3\x0b\xfc\x15\x9e\x94\xed\xf6\xf7\xb8\xb6\x5e\xe6\x6e\x5c\x15\x13\x50\x37\x65\x77\xbd\x63\x66\x20\xd9\x20\x5f\x47\xe4\xb0\x4c\x6c\x47\x5e\xc5\x8b\xad\x06\x0d\xcd\x58\xb4\xba\xcd\x15\x0c\xec\x21\x37\xc2\x04\x15\x5a\xc1\xf1\xfa\x08\xa9\x06\x2e\x2b\x7a\xbd\xe1\x61\x47\x5a\xc7\x6b\xc5\xff\x89\x73\x35\xb2\x26\xd0\x10\xf7\xc6\xd4\x93\x8f\x85\x6e\x1a\xc7\x03\xdd\x63\x1d\x6a\xb8\xe7\xd1\x13\x4c\x7c\xdd\x2f\x07\x18\x51\xf5\x1f\x09\x7d\x9f\x00\xf8\x56\xc7\x5b\x1d\xf7\x6a\x3c\xa4\x3d\xf3\xff\x42\xdf\x47\x85\xbe\xb5\xc7\xff\x79\xc8\xf7\x69\xa0\xef\x5c\x20\x32\xf3\x32\xbc\xc7\xe8\x30\x30\x7c\x38\x14\xd6\x0a\xc4\x15\x27\xad\xa0\xe2\x5d\xdd\x89\xf9\xf1\x5c\x20\x2e\x8f\x75\x06\x46\x7d\x38\xde\x6a\xd0\x61\x53\x14\xa5\xb9\x02\x8c\x66\xa2\x7c\xb7\xe6\xb2\xb0\x1e\x0e\x11\x7e\xff\xf6\x77\xf8\xf0\xcb\xed\xfb\xb7\x6f\x1c\x06\xc1\xce\xb7\x3b\xa8\x68\xae\xc8\x01\x27\x88\x77\x81\xa7\xe3\x01\xfc\xc1\x40\xa7\x09\xc8\xf7\x0f\x42\xb7\x6f\xd0\xe2\xc3\xe1\x48\xab\x8d\xb3\x6c\x5f\x99\xeb\x37\xa8\xc1\x66\xe4\x86\xc3\x25\x44\xd9\xdf\xb9\x6e\xb0\xb4\x03\x18\x05\xbe\xc8\xd2\x68\x0f\x1c\x2a\x47\x4a\x23\x41\x15\x7c\x74\x03\x8e\x5a\x48\xbf\xa3\x74\xdb\x86\xc9\x17\x43\x4a\x0f\xf6\x68\x11\x1f\x12\x16\x62\xf2\x56\x5b\xfd\xc7\xa1\xbe\x80\x6f\x1a\xbd\x99\xba\x8e\xa1\xce\x42\xb7\xef\x65\xed\x31\xb8\xee\x10\x2e\xe7\x40\xef\x1e\xd7\x5d\x6d\x71\x61\xbc\xae\xa5\x0d\xad\x39\x94\x5e\xc9\x1c\xc7\x97\x13\xfd\x02\x3e\xa3\x59\xe5\x37\x1e\xc4\x97\x8d\xa1\xdf\x9a\x80\x0c\x64\xcc\x57\x27\x79\xb9\xd2\xe6\x0b\x3e\xf2\x08\x1f\x13\x3a\x14\xe6\xb3\x06\x0c\x5c\xb8\xe0\x3b\x50\x01\xe4\x8d\xd1\x6d\x28\xae\x5d\xae\xe1\x11\x7a\x5a\x17\x5b\x65\x91\x53\x31\x38\xf5\xf5\x51\xe0\xc3\x39\x2f\x54\xbb\x79\x68\x6c\xaf\xfb\x6f\xf0\xdf\x95\x6d\x4f\xb2\xb2\xad\x98\x52\xfc\xde\xd5\x21\x2f\xec\x8a\x10\xe3\x52\x8c\x1c\x3e\x05\x50\xf9\x39\xe6\x2b\xca\xe6\xef\x14\x2e\x46\x3b\x78\xea\x7c\x2e\x17\xf5\x78\x56\xbe\xb8\xe9\x55\x9a\x06\xaf\x8c\xbe\x7d\x4d\xc4\x6f\xfa\x49\x55\x34\xad\x4a\xb2\x2b\xd4\x30\xba\xb5\x6b\x9f\xda\x91\x82\x72\xff\x42\xb9\x70\xa7\x1d\x4b\xd8\x6c\x7e\x08\x79\x92\xa0\xd5\xed\x76\x4d\xd5\x07\x2a\x95\xa9\x33\x5f\x55\xf5\x9a\x32\xdd\x57\x37\x5e\xa3\xc6\xb2\x9b\xaf\x87\x43\x10\x7c\xf5\x93\xbd\xbb\xb8\x70\x47\x82\x5c\xf3\xbb\xb9\x16\x34\xba\xe2\x71\xf4\x5e\xad\x57\x5b\x9d\xda\x9e\xba\x6f\xa3\xe6\xa3\x1c\xa7\xf6\x48\xeb\x50\x94\x05\x4f\x74\x93\x3b\x88\x3e\x52\x47\x16\x25\x42\xa8\x9b\x92\x23\xc1\x2e\x86\xf4\x20\x5c\xd8\x13\x94\x72\x2f\x12\xcc\x5f\xee\x84\xc9\x25\x8f\x79\x40\xef\x29\xa4\xf0\xf4\x6c\xf8\x84\x62\xf8\xf8\xc2\xb7\x4f\xe2\x76\x31\x9c\x06\x81\x3d\x13\x18\x87\x31\x24\x5f\x97\x20\xb3\xa9\x4a\xf0\x64\xbb\x2d\x64\xb6\x57\x14\x2a\x2d\x2f\xe3\xa5\xd6\x70\xc4\x98\xa4\x0d\x23\xd3\xc8\x44\xca\xa5\xc2\xa6\x4a\x6f\xb7\x16\x6e\xb3\xa9\xca\xb6\x0d\x31\x75\x8a\x77\x37\xaf\x1c\x33\x2e\xf9\x9b\xdd\x4a\x18\xc3\x45\xca\x12\xca\xfa\x46\xaf\x8d\x18\x69\x40\x07\x94\x99\xdf\x56\xb8\xa8\x52\x7a\x42\xeb\x7b\x08\x36\x1b\x66\xd0\x8c\x6b\x35\xcb\xae\x0e\xd7\xaa\x96\x5d\x53\x32\xe7\x08\xfe\xbe\x61\xda\x40\x42\xad\x40\xfc\x6e\x2f\x44\x62\xb5\xd1\x5d\x8c\x02\xf3\x7d\xac\x50\xc8\x10\x28\x0e\x5a\x8c\xea\xf1\xfd\x46\xe9\xff\xde\x31\x1e\x90\xa1\xe0\x89\xd9\xe8\xdc\x81\xb3\x04\x5f\x41\xf7\x64\x67\x6d\x95\x44\x8d\x92\xd6\xcd\xf7\x23\x9f\x4e\x28\x69\x97\xb2\xed\xb0\xe3\x3e\xbe\x55\x14\xc6\x0e\x55\x95\xdd\xd6\x58\xbe\xa4\xaf\xed\x2c\x09\x6c\xb7\xaf\xf3\xbd\x7f\xda\xa8\xc9\xde\x25\xa1\x9d\x5d\x13\x9f\x97\x86\x95\xfb\x0b\x22\xe6\xd4\xcc\xd4\xe5\x8e\xd4\x30\xc8\x57\x9a\x16\xbf\xa0\x47\x57\x7c\x5e\x16\xa6\xcb\x2d\xaf\x2f\x27\x77\x64\x2e\xad\xb7\x56\x36\x8d\xce\xb4\x09\xa8\x2d\x5b\x4f\x27\x9b\x8d\x7d\x56\x11\x65\xc7\xa8\x98\x7c\xe4\x26\x6f\x2d\x55\x5d\xdc\xe3\xcb\x89\x59\x55\x5a\x73\x11\x9b\x7a\xa4\x5c\x71\xe1\x62\x79\xcd\x7d\xd4\xd7\xc6\x25\x3a\xcc\x75\x34\x91\xa6\x3c\xde\x64\x36\xc0\x17\x97\x52\x79\x8e\x9d\x0a\x0e\x9b\x65\x2a\x3c\xc8\x70\x95\x31\x49\x37\x6c\xea\x8b\x7b\x76\x98\xac\x4a\xdf\xf7\xcd\xb7\x5b\xad\xba\xe3\x4a\xdb\x15\xb6\xc0\xa7\x9a\xee\x55\x14\x09\x94\xa6\x83\xdd\x7e\x64\x75\xe6\xcf\x56\xce\xb8\xc2\x42\x85\x07\x4d\xb3\xd4\x9e\xec\xab\x4a\x61\x5b\xac\xc1\x61\x7c\x32\x66\x56\x5d\x46\xad\xed\x0f\x56\x58\x4c\x95\x85\xd5\x09\x6c\x47\x38\xdc\xfe\x9d\xcd\x39\x04\x3f\xbb\x1c\x7a\x9d\xee\x35\x11\xb6\xc2\xe0\x73\xbe\x3b\xb9\x37\x52\xd8\x89\x79\x73\x03\x1e\x74\xa2\xde\xb2\x6f\xf2\xea\x4c\xbb\xde\xbd\x81\xce\x9e\x81\xe3\x43\x09\x7b\x1a\xd2\x03\x8d\xdd\x51\x91\x96\xf5\x76\xd9\x6c\x6b\xa9\xab\x66\xb0\xb5\xfa\xa7\x9a\xed\x78\x2d\x6f\xd4\xc2\x9f\xc0\xb9\x3d\xd8\xbd\x75\x3a\xb8\xed\xce\x7c\x52\x1f\x17\x7a\x74\xf5\x23\x06\xf7\x2a\x62\xf6\xb4\x8e\x6e\x53\xd8\x7a\x9d\x5d\xcb\x9c\x8e\x00\x5e\xa5\xbc\xe3\x9d\x5e\x5b\x32\xb0\x6c\x51\x6c\x34\x81\xed\xb6\x44\x18\x7d\x75\xf5\x39\xc1\xd0\xef\x46\xec\x41\xd9\xb0\x1f\x69\xf7\xb9\xc4\x4f\xeb\x14\x3f\x86\xd4\xee\x91\xd5\xa7\xf0\x8a\xbf\xcb\x2f\x3e\x40\x58\x4b\x6b\xb5\x0f\x3f\x34\x9a\x7d\xac\x4b\xfc\x50\x4e\xf1\x1e\x79\xee\x76\x8c\x8f\x76\x8d\x77\x38\x25\x1f\x85\x66\x45\x45\x3e\x20\xfb\x87\x7f\xdb\x4b\x96\x75\x4c\xdf\xef\x30\xef\x73\x99\xbb\x9d\xe6\xbd\x03\xfa\x80\xe1\xdc\x5a\xb2\xe5\x3c\x51\xa2\xcf\x7d\xb6\x41\x04\xa7\xef\xdc\xb1\x81\xf2\x51\x9c\xe7\x3f\x81\xdf\xab\x39\xf9\x28\x4e\xaf\x85\x5a\x47\x7b\xbc\xac\x7b\x3b\xe1\x71\xee\x6e\x85\xa8\xdc\xef\x35\x5a\xda\xec\x11\x33\xda\x67\xf7\x22\x57\x4c\x6d\xfc\xdc\xe7\x15\x17\x46\xd4\xe9\xa4\x56\xc6\xb3\xad\xa2\x62\x72\x9d\xfe\x6a\x23\xa6\xd8\x18\xcc\x0f\x81\x88\x20\xe2\x99\xee\x30\xa3\x91\xba\x77\xdc\x3b\xe0\x0d\xd4\x57\xc2\xec\x5b\x06\xe3\x84\x37\x0e\xfd\xe4\x74\x38\x0f\x42\x34\xbb\xc2\x4a\x93\x32\xda\x3d\xfb\x95\x0b\xd7\x02\x2b\x87\xc9\x71\x35\xc4\xa9\xc1\x41\x66\xd3\xce\x8d\x7c\x8a\xcc\x2b\x7a\x3b\xb8\xab\xc7\x45\xca\x82\x13\x6a\x03\x24\xc7\xec\xcb\xab\x34\xf5\x8e\xcc\x8b\xd9\x8a\x9e\x9a\xea\x5a\xbb\xdf\x7f\xaa\xc8\xb2\x05\x11\x4e\x49\x2e\x3d\x68\x2b\xc7\x3b\x17\xda\xa9\xd1\xda\x2b\xb2\x36\x1b\x1b\x3f\x69\x3a\xc7\xdd\x12\xf8\x20\xd1\x8d\x1e\x0f\xba\xc4\x23\x35\xe7\xf9\x5b\xa2\x1a\x75\x1f\xf9\x1b\x03\x1a\xce\xe5\x4e\xad\x66\x5f\x4e\x3e\x72\x85\xb5\x30\x5c\xfe\x2a\xdd\xc5\x01\x4c\x12\x70\x6c\x34\xd0\xf9\x7f\xc9\x54\x9a\x29\x57\x01\x02\xcb\xb6\xd8\x44\xa6\x04\x81\x0e\xc2\xdd\xed\x70\xca\x54\x75\xad\x47\x4b\xb4\xe8\xac\x58\xf5\xd0\xd0\x88\x8d\x05\x5a\x55\x5d\x99\x2b\x56\xbb\x56\xc2\x0c\xb8\x76\x01\x0e\x5d\xd6\xa9\x15\x6b\x0a\xb1\x5b\x9d\x7d\xdb\x3a\x90\x03\x14\xe2\x61\x6b\x40\x1c\xcb\xc2\xa9\x5d\x9a\x4e\x14\xe6\xec\xf5\x8a\xec\x81\x09\x02\xed\x39\xea\x22\x5f\x06\x5e\x5d\x5b\x64\x9e\xeb\xa6\xb9\x57\x19\x99\x00\xc5\xbb\xb2\x56\xf7\xda\xa1\x8e\xed\x38\x87\xeb\x53\x87\xce\x29\x9a\x65\xb5\x8e\x3b\x0c\xd5\x46\xc2\x26\x7b\x17\xfe\xed\x52\xb4\xed\x2d\xd0\x45\xed\x3f\xa3\x22\xee\xfe\x69\x1f\xdc\x51\x1f\x06\xfb\xe6\x84\xc0\x28\x1c\x6f\xf2\x91\x97\xc2\xbc\x27\x2a\x8e\x6a\xc5\xc5\x3d\xdc\xf1\x05\x9f\x0b\x92\xc6\xeb\xc6\xc0\x02\x55\xbe\xf9\xab\xfe\x5f\xb9\x87\xf3\xf3\x17\x15\xbd\xdd\x49\x4a\x84\xa3\x5c\xe7\x69\x78\xb8\xcb\xef\x6b\x64\xe6\x53\x36\xe3\x95\x1d\xf5\x25\xb1\x1d\xc5\xfd\x4c\x19\x5d\x64\x8b\x51\x9d\xb4\x60\x41\x35\x27\x17\xf2\x80\x02\x30\xa2\x84\xb5\xf2\x9b\xa7\x87\x16\x41\xbe\x3a\x69\x20\x5f\xab\x05\x7c\xcb\x29\x50\xc9\x9f\x3b\x94\xd8\x1a\x9c\x4f\x13\x20\x6c\x9e\x87\x91\x43\xe2\x77\x6f\x1e\x31\x2e\xf8\x10\x0b\xff\x9a\xe5\xf4\x84\xf9\x8c\x32\x4f\x8c\xe2\x37\xff\x8c\xda\x76\x15\xe7\xae\xa7\xc7\x03\x6f\x7a\xdf\xd5\x37\x8e\x9d\x62\xfd\x5e\xb6\x39\x9f\xef\x5f\xe2\x64\x17\x67\x72\x54\x84\x7c\x57\xd7\x1f\xd0\x01\x77\xe9\xfa\x6f\xd8\x03\x71\x0c\x75\xfb\xb7\x42\x3c\xfa\x3e\xe0\xe3\x76\x02\x1f\xb5\x17\x18\x20\x3f\x70\xcd\x39\x2a\x5c\x11\xb8\xae\x8d\x98\xdf\xb2\x21\xb8\x7b\x49\x7f\xcf\x66\xdd\x03\x36\x0a\xf4\x95\xdc\x11\x87\x6b\x6f\x9a\x7d\x15\x26\x41\x65\xcd\x51\x63\x9b\x40\xcf\x32\xb9\x8e\x7d\x99\x9f\x51\x99\xad\xaf\x3c\xd5\x3a\x83\x24\xe6\x6c\xfb\xf2\xdc\xe3\x57\xb7\x1f\x82\xbe\x6d\xbd\xdd\x0c\xf9\x86\xa6\x76\x9f\x59\xa7\x2d\xb1\xac\xf3\xe0\x6e\x9d\x3a\x79\xb0\xef\xd4\xba\x83\x98\x72\x17\xa3\xb1\xfe\xc0\x67\xf6\xdc\x5d\x7b\x00\xe9\x53\xb1\x62\x9c\x90\x29\x26\x93\x4f\x59\xa2\x7d\x3e\x7b\xd3\x2d\x20\xed\x9d\xbb\x9a\x3f\x26\xf3\x43\x09\xc9\x8f\x5c\x14\xe7\xa4\xda\x6d\xbb\x1a\x04\x70\x06\x42\x57\xf2\xdc\x9e\x80\xfd\xb0\x07\xa8\x06\x76\x9f\xe3\x37\xb2\xbb\x6b\xef\xef\xab\x30\xe9\xdf\x49\x5b\xdd\xb7\x72\xe0\xc6\x5d\xe7\xb6\xd8\xce\x79\xf0\xfe\x63\x22\x1b\x36\x65\x67\x63\xbf\xeb\xb8\xd2\xe4\xc8\x75\xf3\xdf\x13\xf7\x35\xb0\xf8\xe8\xb0\xaf\x86\x1a\x07\x46\x7d\x5d\x7d\xdf\x6f\x0a\x1f\xd5\x0c\x1e\xb7\x03\xf0\x20\xf3\x57\x81\x87\x9e\xdd\x18\xa5\xf9\xe3\xe5\x21\x38\x17\x58\x7c\xea\xad\x75\x1d\xce\xfe\x83\xef\x95\xab\x9a\xbe\x3c\x88\x7f\x9c\xe5\x7b\x04\xab\x77\x08\xd0\xd8\xdb\xb2\xc3\x2c\x9d\x6d\xf2\xf7\x1a\xba\x07\x33\x72\x0f\xd0\xf2\x03\x0d\x5b\xd7\x36\xc9\x63\x6d\xda\xbf\x8b\x3d\xeb\xe4\x6c\xdb\x8e\xd9\x4d\x9b\x47\xdb\xb1\xc3\x37\x58\xee\x2c\x66\xc2\xed\x54\xd1\xbe\x80\x62\xf5\x9c\x0b\x9d\xe7\xa8\x5a\x24\xaa\x23\xeb\xf8\x22\x11\xcc\x57\x0f\xba\xeb\xd9\x6c\x7e\x80\xca\x86\xc4\x8f\x5c\xbd\x62\x1d\x3b\xec\xba\x8e\xdd\xe8\x65\xef\xde\x43\x36\x2a\xd1\xd5\xca\x11\x1b\x7d\x04\x3b\xcf\x31\x39\x66\x3b\x66\x7e\x13\x8b\x6f\x43\x09\x94\x45\xf8\xd5\x81\x13\x7a\xf7\xd1\x55\x0e\x6f\xec\x3a\xdc\xb1\x0e\x24\x3a\x76\xd1\xd9\x09\x55\xa3\x07\x89\xd9\x04\x68\xdf\x37\x56\x1d\xb7\x4f\x5c\xdb\x33\x9b\x7a\x62\x53\x37\x83\x1e\x4d\x33\xd8\x5e\xec\x6b\x3e\x77\xd5\x6b\x0d\x77\xc8\x61\xff\xec\xe8\xb1\x27\x66\x1d\x34\xc7\x05\xe5\xf1\x12\xfb\x35\x5f\x75\xda\xaa\x5b\x05\xd5\xa7\xaa\x9c\xa2\xe6\x8a\x79\x37\x31\x5b\x3d\xc2\xfe\x5d\x4b\xf2\xed\xa9\x9f\x8f\x2c\x94\x15\x21\x3c\xd7\xb0\xc0\xd4\x59\x9b\xf9\x37\x1f\x37\x91\x08\x05\x41\x1a\xb1\xf2\x95\xf9\xe6\x84\xe2\xda\x70\xcf\xe8\x3c\x13\x68\x3f\xd0\x55\x7c\x9c\xab\xf1\xe1\xa0\xbf\xe5\x1f\x0e\x7a\xbb\x44\xb1\x56\x31\x65\x73\xa0\x12\x24\x59\x62\xa4\x0b\x49\x78\x48\x12\xa9\xb8\x20\x73\x7c\x9e\xd7\x4b\x58\x04\x32\xe6\x59\x12\x41\x8a\x42\x52\xa9\x2d\x92\xe0\xd9\x3c\xb6\xf6\x49\x9a\x14\x45\x7d\x99\x24\x73\x0c\x6a\xe1\xf0\xb2\x35\x26\xa0\x47\x32\xc5\xb5\xa1\x0b\x49\x92\xac\x8b\x12\x31\x82\x2c\xe5\x66\x34\xd1\x19\x0d\x8d\xa5\x32\xdf\x24\x62\x1c\x16\x84\x65\x24\x31\x34\x6a\x5a\x8b\xf3\xb8\x6a\x75\xc4\x97\xc5\x57\x6d\x72\x8d\xbc\x1b\xb0\x7b\x51\x41\xcf\x27\x09\xac\xe2\xb6\x1f\x90\xe9\x44\x3e\x0b\xce\x78\xfd\x7b\x04\x9e\xc9\x51\x45\x41\xfd\xd8\xc7\x94\xaf\xbb\x01\x99\xb2\xc7\x7e\xe9\x46\xa2\xd4\xac\xb5\x1f\x1b\xb1\xc7\x80\xfd\x3f\x65\x1b\x67\x6e\x20\x25\x82\x2c\xb0\xf6\x5d\x92\x4c\xda\x6e\x2c\xe8\xcb\x31\x64\x21\x04\x25\x39\xf9\xe7\xa3\xea\x63\xb0\xae\xbf\xf7\x71\xcd\x61\xb0\x04\x1e\x68\x44\xed\x41\x01\xda\x1e\x7d\xd2\x59\xe0\x8d\xb5\xaa\xb2\x69\x97\xf6\x2c\x2d\xda\x0d\x60\xfd\x62\x30\x80\xb7\xf6\x33\x2b\xff\xc8\x50\xac\x2d\x7b\xe4\x73\x58\x64\x52\xc1\x14\xcd\x77\xb0\x30\x82\x29\xce\x34\xde\x42\x8d\x79\x81\xca\x67\x60\xe1\xef\xdb\x8f\xbf\xc1\x0d\x6c\x7e\x7c\xfb\xea\xee\xcb\xa7\xb7\x9f\x47\xb0\x39\x31\xc5\xf8\xb6\x18\x9f\xe1\xea\x64\x04\x4a\x64\xb8\xdd\xfe\xa5\x41\x46\xa1\x45\xaa\x5b\xaf\x49\x9a\x26\xb9\x1c\x9b\x8f\x1f\xfe\x5d\x1a\x95\x67\xf3\x8c\x07\xf6\x63\x7d\xe3\x81\xfd\x4a\xe4\xff\x06\x00\x00\xff\xff\xc2\x61\x67\x79\x3d\x72\x00\x00") func web_uiIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -91,12 +91,12 @@ func web_uiIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web_ui/index.html", size: 29230, mode: os.FileMode(420), modTime: time.Unix(1471050089, 0)} + info := bindataFileInfo{name: "web_ui/index.html", size: 29245, mode: os.FileMode(420), modTime: time.Unix(1485366993, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticApplicationMinJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\xbd\x7b\x7b\xdb\x46\x92\x2f\xfc\xff\xf9\x14\x22\xc6\xab\x00\x66\x8b\x92\xec\x64\x76\x06\x34\xc4\xe3\xd8\xce\x65\x26\x8e\x3d\xb1\x33\x49\x86\x62\xf2\xc0\x24\x28\x21\xa6\x00\x06\x00\x65\x29\x22\xe7\xb3\xbf\xf5\xab\xea\x6e\x34\x2e\x94\xb3\xbb\xe7\x7d\x9e\xcd\x8c\x45\x5c\x1a\x7d\xad\xae\xae\x7b\x1d\x3f\x1c\xfc\x9f\x83\x87\x07\xbf\xfe\x63\x93\x14\xb7\x07\x7f\x8b\xaf\xe3\x37\xf3\x22\x5d\x57\x07\xdf\xa4\xef\x8a\x98\x1e\x5d\x9f\x8e\x4e\x4f\x46\x8f\x50\xe8\xb2\xaa\xd6\xe1\xf1\xf1\xaf\xbf\xa1\xec\x68\x9e\x5f\x1d\xd3\x53\xbc\xf8\x3a\x9b\xaf\x36\x8b\xa4\x3c\x78\x93\xfe\xfe\xfb\x2a\x19\xfd\x5a\x3a\xc5\x4b\x7e\xf6\x6b\xe9\x7e\xf0\x2c\x5f\xdf\x16\xe9\xc5\x65\x75\xf0\xe8\xe4\xe4\x33\x45\x7f\x4f\x1f\x9b\x3e\x7c\x91\x6f\xb2\x45\x5c\xa5\x79\xa6\x50\xf1\xe8\x20\xce\x16\x07\x79\x75\x99\x14\x07\xf3\x3c\xab\x8a\xf4\xdd\xa6\xca\x0b\x6e\xe1\xbb\x64\x95\xc4\x65\xb2\x38\xa0\x2f\xe8\x35\x95\x39\x78\xf9\xf5\xdb\x83\x55\x3a\x4f\xb2\x32\xe9\x76\x39\x2f\x2e\x8e\xeb\x97\x78\xff\x3c\xae\x92\x90\x9b\x3f\x3a\xf9\xcf\xa3\x93\xc7\x6f\x4f\x1f\x87\x9f\xfe\xe5\x5f\xf4\xea\xf8\xff\x0c\x96\x9b\x6c\x8e\x7e\xf8\x89\xaa\x82\x3b\x73\x77\x40\xf7\xc1\xdd\x75\x4c\xed\x45\xc9\x68\x95\x64\x17\xd5\xa5\xca\xa2\x79\x35\xaa\x6e\xd7\x09\xbd\x1b\x17\x49\xb5\x29\xb2\x03\x7a\x92\x96\x3f\xa4\xd9\x22\xff\x40\x4f\x27\x83\xd3\xf0\x34\x8a\xe8\x93\x2c\x5f\x24\x6f\xa9\xe8\xe1\x61\x35\x19\x9c\x84\x5e\x5c\x14\xf1\xad\x47\xaf\xb2\xed\xd6\x33\xad\x78\x03\xba\x3f\x3c\xf4\x4f\xe8\x79\x45\xcf\xb3\xcd\xd5\xbb\xa4\xa0\x52\x68\x24\x5f\x1e\x54\xf4\xf5\xd9\x09\xfd\x39\x3a\x3d\x48\xb3\x83\x24\xd8\xd9\xfe\x15\x75\xff\xde\x57\xd3\x64\x16\xdd\xed\x9c\x2e\x25\xf1\xfc\xd2\x4f\x46\x57\x71\x45\xbf\xeb\x2a\xd8\x6e\xa7\x33\xe5\x8c\x34\x0b\xee\xaa\x69\x36\x8b\x06\x27\xbb\x40\x55\x75\xad\x29\xde\xa9\x42\xa5\xc1\x5d\xba\xf4\xa9\xa2\x78\x3e\x4f\xd6\x15\x4d\x60\x4c\xed\x49\x83\xb9\x8a\x55\x89\x99\x48\x6e\xd6\xb4\x6a\xb9\xda\x38\xc3\x55\xab\x68\x33\xa1\x77\x73\xea\x40\x12\x26\x6a\x4e\xb7\xc9\xb4\x9c\x85\xf8\x73\x78\x58\x8e\x51\xed\xe1\xe1\x6a\x3a\xa7\x3b\x3f\xdd\x6e\x71\x35\x22\x48\x88\xa9\x8f\xc5\x40\xa6\xa1\xa4\xf5\xcf\x2e\x68\x72\xf4\x34\x64\x81\x19\xd9\x76\xeb\x9b\x1a\xa3\xaa\x1a\xad\xf3\xb5\x4f\xdf\x51\x7b\x17\x9b\x74\x31\x1c\x86\x65\xa0\x50\x21\x15\xc3\x0f\x95\xbc\xdb\x85\x77\x55\xfe\xb7\x37\xaf\xbe\x0d\xa9\x54\x96\xe7\x6b\x1a\xb0\xef\xe5\xef\x7e\x4d\xe6\x55\x3d\xd1\x8d\x45\xa9\x9f\x06\xe8\xe3\x84\xab\xe2\xf1\x56\x49\xb6\xe0\x9a\x69\x02\x43\xdb\xf3\xd6\x3b\x7e\x46\x05\x02\x15\x47\x5c\x96\x46\xe9\xc7\xfc\xd4\x5e\xd0\x6a\xe1\xb5\xdc\x04\x8a\x07\x4e\x6d\xc5\x53\x9e\xba\xab\x64\xf5\x8c\x20\xde\xcf\x82\x59\x54\x04\xca\xcc\x47\xdd\xaf\x89\x9f\x47\x31\xad\x9f\xca\x36\xab\x55\x14\xe5\xf4\x29\x1e\xb4\x3f\x0e\x82\x90\x1e\xab\x7c\x57\x2f\x70\x0e\x30\xc7\xf2\xef\x5d\x5e\x5a\x7c\x95\xbb\x2b\x1a\x47\xb9\xbb\xa2\x1b\xba\x4d\xa6\xf5\xf2\xcf\xc2\xfa\x1a\xab\x1b\x4f\x37\x33\xae\x1e\x03\x2a\xa2\x6c\x82\x07\x21\xfe\xc8\x60\x83\x3b\xde\x32\x4f\xb1\x1f\xfc\x2a\x98\x54\x11\xd5\x9d\x67\xf3\xb8\x42\x87\xae\xe2\xb5\x5f\x29\x77\x20\x34\x88\x0a\xc0\x5f\x50\xc9\x69\x35\x0b\xfd\x2a\x6a\x8c\xb3\x22\x00\x8e\x74\x09\xbc\xaf\x46\xe5\x7a\x95\x56\xbe\x77\xe0\xd1\x12\xa4\x54\xbb\xec\xde\xf1\x32\x2f\xfc\x71\x7a\x74\x34\x0e\x16\x84\x51\xaa\xe4\xa0\x98\x56\xd3\x74\x36\x43\xa7\xb3\xc9\xa0\xf4\x8b\x20\x1c\x70\xdf\x5e\x5c\xad\xab\xdb\x57\x0c\x22\xf4\x50\x03\xdf\xce\x27\x20\xf1\xf5\xa7\x76\x38\xaa\x94\x01\x07\x00\x15\x99\x27\xc2\x56\x19\xcf\x28\xed\x4a\x35\x38\x09\x30\x3f\xe5\x66\xbd\xce\x8b\x6a\x24\x9f\xbf\x90\xd9\xda\x6e\xe3\x01\x81\xc0\x07\x46\x1e\x13\xa7\x66\x9e\xad\x08\x6b\x1b\xec\x9c\xb5\x8b\x65\x73\xf2\xe4\x16\x11\x43\x4c\x13\xd7\xc8\x02\xa6\x91\x87\x9e\x1d\x79\xc3\x6c\x54\x24\xeb\x55\x3c\x4f\xfc\x37\x95\xf2\x8e\x1e\x9c\x7a\xc1\xa8\xca\xbf\xc9\x3f\x24\x05\x4f\x5d\x30\xe6\x9a\x92\xd1\x45\x52\x3d\xad\x04\xe9\x26\x7e\xda\x03\x71\xd4\x68\x55\xdc\xde\x15\x91\x57\x15\x9b\x04\x68\xac\x60\xac\xb6\x8c\x57\xa5\xb9\x3d\x0d\x3d\x74\x59\xee\x70\x15\x0e\x8b\xa1\x27\xb7\xc3\x22\x7c\x41\xa8\x33\x29\x31\xa1\x98\xa5\x75\x5c\x94\x09\xb6\x25\x66\xbd\xd8\xcd\x19\x51\xe5\xc1\xdd\x8e\xde\x2d\x18\x1c\x79\xa8\xbb\x84\xea\x3f\x28\xa2\x6a\xa7\x31\x40\x51\x4f\x47\x69\x31\x20\x2f\x6d\x25\x18\x92\x46\xe4\xf3\xf8\x3d\x41\x26\xdd\x15\x4d\x08\x4a\xb0\x5c\x9e\xe0\x05\x2e\xa7\xd7\x78\x70\xaa\x71\x28\xe1\x45\xdb\xce\xc6\x0f\xee\xba\x4f\x57\xf5\xd3\xd3\xfa\xe9\xdc\xd7\x13\x25\xbd\xfd\x92\x36\x58\x95\x5e\x27\x2f\x56\xc9\x55\x92\x55\x7a\x98\xd4\x6d\x67\x55\x97\x72\xf0\x2c\xf2\x83\x24\x42\xd7\xc6\x1f\x2e\xd3\x15\x9d\x30\xb4\xb8\x83\xc6\xe2\x1a\xf4\x9e\xd4\xdf\xae\x9b\xbb\x39\x2d\xbf\x30\x28\xbe\x0a\x82\xfa\x34\xb8\x20\x30\xa0\x92\x0e\xfe\x2f\x6c\xe7\x07\xd8\x4b\xab\x15\x9e\xa9\x24\xc0\x79\xb4\x63\xb0\xa8\xea\x86\xef\xa9\xc8\x54\x43\x7d\xa7\x59\xac\xbf\xee\x00\x50\xc5\x7d\x7c\xa0\x61\xa0\xd1\xbb\x65\xba\xaa\x12\x5a\x3f\x85\x63\x69\xcc\xbb\xbb\x7e\x14\xec\xfe\x48\xeb\x18\x7b\x26\x18\x05\x93\x79\x16\x9d\x48\x57\xea\x99\x5a\xd4\xc7\xe5\xf7\x16\x43\x6c\xbd\x80\xce\xf4\x64\x34\x2f\x12\xa2\x10\x9e\xe7\xf3\x0d\x56\xe9\x8b\x22\xbe\xc0\xaf\x6c\x8f\x4c\xbf\xd5\x4b\x18\x30\x16\xb1\x38\x25\x68\xbd\xf6\xf5\x99\x64\x17\x2b\xab\xbb\x70\x29\x0b\x5d\x77\x19\x13\xfc\x2d\xe1\x31\x7a\xee\x55\xf1\xbb\x55\xe2\x11\x54\xba\xcf\xb1\xbb\xeb\x75\x98\x54\x21\x66\xa6\x28\xab\x67\x04\x21\x0b\xfa\xa6\xf0\x82\x09\x6f\x5e\xdd\x7a\xf9\xf9\xed\xdb\xf8\x82\x3f\xf5\xaa\x77\xf9\xe2\xd6\x0b\xa6\x27\x74\x18\x26\xa3\x78\xbd\xa6\xe3\x89\xbf\x23\xb2\x20\xff\x90\x25\x85\x19\x6e\x6b\x00\xe6\xc3\x20\x74\xe0\xec\xc2\x5d\x69\xa6\x80\x22\x1f\x3b\x9c\x66\x99\x57\x2b\x5b\x8c\x62\xc2\x1f\x3c\x10\x7a\x49\x5f\x0f\xbd\x63\x6f\x28\x45\x95\x53\xd1\x55\xbd\x0c\x79\x46\xa7\x46\x32\xf7\xa5\x90\x9d\xb0\x6a\xa2\x1b\xa8\xa6\xa7\x44\x35\x10\x06\xbb\xca\xaf\x93\x1a\x3b\xe9\x06\xdc\x4a\x6f\x35\xe9\x46\x2b\x83\xaa\x09\x6f\x44\x27\x63\xe9\x9e\x4f\xcb\x3b\x2d\x66\x54\xfb\x70\x18\x50\x57\x7f\x61\xdc\x92\x29\xef\x62\x95\xbf\x8b\x57\x2f\xae\xe3\x95\xa7\x06\x15\x93\x10\xf2\xae\xa2\xe2\x8d\xd7\x81\x03\x45\xd7\xd2\x12\x81\x45\x73\x69\x78\xd9\x2e\xe3\xb2\x71\x90\x32\x1d\x45\x47\xa9\xad\x3a\xc1\x91\x5f\x37\xa4\xf2\x80\xe8\xa8\x7c\x94\x5c\x63\xe9\x00\x6b\x25\xa1\x01\x7d\x0a\x50\x6d\xd9\x62\x45\x87\xaf\x7e\x0d\xf2\x0e\x03\xcc\x80\xe5\x4a\x86\x42\x1a\x25\x1d\x6f\x25\x91\x01\x06\x1a\xd3\xb3\xc2\x0c\x94\xbf\x1a\xc5\x8b\x05\xb5\x93\x29\x14\xc2\x34\xec\x84\xe0\x00\xa5\xd1\xa6\x5c\xee\x76\x4a\x53\x23\x81\x83\x9c\xde\xc9\x80\xed\x70\xc6\x9d\xa1\xf3\x6c\x64\x51\x0d\xb5\xcd\x13\x46\x0d\x9c\xd3\x2f\xcb\x9f\xad\xf2\x2c\x79\x81\xbe\x11\x51\xeb\x12\x11\x54\x8d\x33\x35\x01\x8f\xb5\xc0\x58\x53\x3d\x01\x18\x94\xc0\x02\x7f\x4e\xc3\xa2\xee\xe8\x59\x22\xac\xd1\x81\x93\xba\xee\x60\xe7\x95\xcc\xed\x30\xf5\x4d\xed\x12\x0e\xba\xa9\x18\xb7\xe2\x62\xe2\x5f\x50\x83\x7c\xa9\x9f\xa8\x2b\x20\xa8\xb0\x26\x12\x89\x88\xf1\xf9\xc8\xa2\x86\xbf\xa5\x61\xd2\xfc\x55\xa3\x9c\x5a\x29\xbe\x7a\xfb\xf2\x1b\xfa\xca\x5e\x07\xca\x19\xee\x65\x75\xb5\xfa\x8c\x47\x7c\x78\x98\x10\x82\xca\xa4\xcc\xe1\x21\xe6\x84\xfa\x49\xcd\xd4\x4f\x03\xae\xd4\xde\x46\xce\x07\xe8\x4b\x9a\xad\x37\x76\x00\x99\x60\x51\xbd\x73\xd0\xb7\x45\xb2\x8c\x37\x2b\x42\x0c\xc9\xfc\x7d\xb2\x00\x45\xa5\xaf\x12\x73\xa5\xaa\x11\x41\xf3\x26\xe1\x71\xf3\x15\x37\xc8\x57\xe6\x09\x0f\x7a\xad\x69\x60\x1a\xb4\xad\xf7\x0d\x41\xe5\xbc\xe2\x8a\x4b\x73\x99\xb4\x5f\x86\xbe\xd3\x4b\xa2\xa7\x31\x95\x34\x65\x31\xdf\xcb\xf0\xf4\x17\xff\xd4\x8d\xba\xb7\x2e\xd4\xdd\x08\x87\x52\x53\xa3\x27\xb4\x71\xf4\x41\xd2\x8f\xef\x68\x54\x3f\xed\x43\x85\xe8\xcb\x43\x8f\xa8\x48\x53\x01\xb3\x89\xd2\xeb\xbc\x78\xca\x58\x0c\x1f\xb7\x1f\xd7\x1f\x02\xea\x07\x31\x6f\xba\x38\x22\x46\xaa\xe0\x69\x25\x5c\x0a\x60\x28\x09\xbf\x1a\x6c\x93\x46\xc5\x94\x60\x79\x9c\xd3\x26\x1c\x64\x8c\x55\x2c\x32\x4f\x69\x48\x93\x78\xb4\xde\x94\x97\x44\x62\x81\x28\xbc\x4a\x8a\x8b\xc4\x8f\xd5\x0d\xbf\xab\x8f\x0c\x61\x06\xb3\xe6\x59\x80\x19\x99\xd8\x8f\x40\x5a\xc6\x41\x18\xd7\x73\x06\xee\xf3\xae\x05\x19\x34\xe7\x49\x1b\x34\x2c\x40\x38\x68\xed\xad\x45\x6b\x9a\x88\x32\xb8\x78\x6c\x71\x2a\x83\x54\x5c\x3c\xad\xfc\x13\xd0\x90\xdf\xd3\x79\xa2\x77\xf8\x90\x60\x02\xec\xb6\x7f\x4a\x7c\x4c\x54\x11\x4a\x7a\x9f\x59\x84\x04\x6a\x1b\xd5\xd2\x33\x22\xb5\x87\x99\x6a\x37\xd0\x25\xeb\x9e\x35\x8e\xc9\x04\x53\x41\xc7\x4a\x46\xbb\x08\x80\x04\x02\xbb\x2c\x71\xd0\x2c\x52\x3a\xc5\x89\xa5\x0e\x84\xc6\x83\xd4\x20\x4e\xb3\xb2\x7d\xbc\x29\x97\x69\xfe\xb6\x73\x52\x30\x78\xd1\x92\xc6\x04\x63\xa5\xe5\xf4\xc7\xe5\x59\x3c\x8e\x69\x11\x69\xa5\xa7\x31\x2d\xf8\xa8\xac\x6e\x57\xd8\x31\x39\xdd\xd6\x88\xaa\x50\x5e\xbe\x5a\xd8\x9e\x10\x31\xa1\x4b\x8e\xf4\x33\x45\xe8\x05\x9f\x80\xb7\xc7\x08\x06\xbc\x35\xfc\x56\xa9\xc8\xa3\x6f\x85\x52\x6e\xbe\x38\x3c\x7c\x46\xf4\xf1\x47\x9a\x55\x4f\xa9\x3e\x03\x27\xc4\x88\x10\xd3\xc7\x2d\x12\x34\xe2\x6b\xe5\x13\x24\xb9\xad\x0f\x52\x21\x33\x7a\xeb\x4a\x27\x59\xa8\xe7\xb8\x70\xe6\x98\xfe\x1b\x0b\xf8\x9f\xec\x9f\x9b\xca\x69\xa7\x33\x10\xaf\xe7\x69\xcf\x4c\x54\x13\x3d\x5d\x5e\x28\x75\x05\x7d\x74\xef\x7b\x43\xf7\x32\x8a\x88\xae\x35\x29\x51\xd9\xb2\xc5\xe4\x65\x5c\x5d\x12\x37\x79\xe3\x9f\xa8\x82\x28\x89\x23\xec\xe6\x13\xa2\x4b\xfc\x62\xfa\x08\xf5\xaf\x6f\xb0\xb3\xeb\x2a\x5f\x48\x95\x22\xfb\x30\x00\x92\x47\xd8\x8c\x7e\x31\xf1\xde\xe5\xc5\x22\x29\xa8\x53\x80\x33\x02\x2b\xa2\xbc\x3e\x0d\xbd\x0f\xe9\xa2\xba\xc4\xba\x55\x93\xd3\x10\x48\xea\x64\xfc\xe9\x59\x4e\xdb\x3f\x7a\x14\x78\x57\x71\x71\x91\x66\x1a\x67\xfb\xf1\xb0\x86\xdd\x6c\xf8\x6d\x46\x78\x82\x98\x43\x6a\x8c\x76\xcd\xc4\xb7\xd5\x9a\xd2\x47\x0e\xa4\xaf\xe9\x18\x07\x31\xdd\xfc\xca\xd4\x3f\xe8\xf9\x42\xf7\x56\x3e\x18\x7a\x3f\x70\x37\xf5\x87\x41\xd8\xe8\x4b\x6f\xed\xf5\xd3\x41\xb7\xf7\xf7\xd7\x6e\x56\xc0\x41\x4d\x6f\x9a\xab\x85\x82\x91\x3b\x75\xb4\x63\x97\xcb\x32\xa9\xb8\xa2\xd0\xdc\x7d\x95\x40\x74\x48\xbb\x73\x99\x59\xca\xc9\x9c\xac\xef\xf2\x9b\x37\xe9\xef\xd4\x3f\x82\x2b\xe9\xcd\x11\x3d\x6a\xe2\x07\x5b\x86\xba\x76\x4a\xb4\x16\x90\xf8\xc9\x59\x94\x12\x66\x65\xa1\x89\x88\xb8\xd2\x68\xcd\x92\x3f\x10\x63\xf4\xda\x79\x0b\xd1\x0f\x21\x04\x06\x4f\x70\x8c\xea\x9d\x46\xae\xa9\x65\x5e\xd2\x71\x11\x81\x98\xea\xeb\xd9\x77\xc9\x2a\x05\x4d\xbf\xdd\xa6\xcc\xa3\xd7\xf5\x50\x93\x60\x7e\xbf\x58\xe5\x31\x2a\x23\xb0\x34\x3c\x4e\x3a\xd4\x50\x08\x39\x51\x1f\xcc\x11\x74\xe6\x44\x5a\x13\xec\xd6\xb3\xfb\xb4\x26\xa9\xbf\x24\x04\xf4\x21\xa3\xb3\xc1\x1e\x25\x54\x51\x16\xfd\xca\x58\x4f\xd5\x38\xe0\xf0\x10\x2f\xe6\x59\x44\xff\x70\x48\xf9\xde\x93\x74\x59\x10\xf6\x38\xe0\xbf\xd2\x6e\xf4\xc9\xc9\x27\x07\xbc\x4a\x7c\x75\xc9\xcb\x81\xcb\xe3\x33\x2f\xe0\x49\xf6\xe8\xcf\x5b\x3a\xe4\x3d\x8b\x28\xc2\x77\xab\x7c\xfe\xfe\x60\x90\x5e\x61\x32\x62\x74\x39\xd0\xbc\xc7\xdb\x1c\xe7\xbf\x46\xca\x86\x99\x52\x15\xba\x40\x3c\xca\x48\x0f\x51\x04\xa9\xd4\x27\xf7\xa1\x41\xe5\x81\xfd\x9e\x88\x99\x0f\x45\x0a\x6e\xe0\xc9\x80\x9e\xe1\xb0\x3b\x00\xb5\x75\xf6\x44\xfe\x82\x85\xa1\x5e\x2a\x48\x63\x72\x26\x43\xed\x2c\xcc\x33\x3a\x11\x2b\x88\x47\x69\x0f\xf1\x64\x11\x71\xa2\x1c\x36\xed\x57\x87\xe4\x25\x70\xf2\xdb\x0c\x52\xd2\x1c\x12\x9a\xc2\xc1\xa7\x01\x0f\xfd\x76\xf0\xa6\x5d\x08\x4d\x9f\x52\x4f\x9c\xa3\xee\xb9\xc1\x39\x5a\x70\x33\x36\x6c\xbc\x11\x8e\x05\x46\x94\x5b\xd5\x5c\x6f\x05\x04\x45\xcb\xf6\xc6\x9c\xf5\xc1\x04\x8c\x17\x91\x14\x54\xdd\xd0\x9b\x7a\xc3\xae\x78\x33\x25\xde\x91\xce\x98\xa1\x37\x23\x0c\x2f\x82\x95\x60\xcc\xa2\x15\x10\xef\x84\x0d\xf5\x07\xc2\xcf\xb1\x84\x1b\x2c\x3a\xcf\x84\x94\x03\x46\x4c\x71\x76\x57\x81\x69\x26\xe5\xea\x20\x42\x93\x1a\xed\xb0\xbe\x71\xb8\x45\xa7\xdb\x84\x00\x3a\x92\x5d\xc8\x08\x89\xb6\x20\x38\x00\xa5\x35\xd6\x14\x1f\x9d\xc5\x39\x11\x1c\x0d\x46\xa2\x29\xcb\x1e\x77\x04\x1e\x44\x40\x31\x6b\x5e\x44\xf9\x34\x1d\x0e\x67\xe3\xc0\x1b\xf2\x89\x4a\x0b\x32\x21\x5e\xa9\xb0\x54\x0a\x53\x75\xca\x07\x5f\xc8\xcc\x21\xea\x0b\x46\x9b\xac\xbc\x4c\x97\x15\xea\x09\xdb\xef\x98\x66\xcb\x5c\x0a\xf5\xab\x7a\xe5\x1c\xd9\x79\x29\xeb\xb8\x31\xab\x9e\x43\x4c\x4d\xe8\xce\x0a\xe4\xe9\xbe\x2d\x89\xd7\xdf\xac\xa2\xd2\x97\x0a\xf5\xc7\x9d\xa9\x5a\x6d\xb7\xf1\x76\x9b\x4f\x57\xb3\x49\x3c\x19\xf8\x9b\x68\x15\x84\xd7\x79\xba\x38\x38\x09\x7d\x91\x99\x81\x1d\x2b\xed\x40\x56\x84\x69\xf0\x67\x70\x4a\x8b\xad\x36\x3b\x39\xcf\xc0\xe6\x45\x10\xd6\xfc\x9e\x99\x5e\xa6\xee\xe7\x34\x5b\x20\xa8\xf2\x29\xcd\xd1\xec\xf0\x30\xf5\xb1\x2e\xf5\xb8\x7f\x6b\x53\xe6\x90\x21\xff\x1a\xdf\xbc\x49\xaa\x8a\x7a\x5b\x8e\x96\xab\xb8\x7a\xc5\x2c\x04\xd1\xc5\x9a\x67\x65\xb8\xc9\x02\x50\x80\x5a\xce\x4d\xf4\x4c\x3a\x9b\x24\x61\x01\x0a\x00\xb2\xf0\x80\xee\x23\x14\xa8\x4f\x70\xa6\x51\x34\x73\x4a\x73\x08\x99\x95\xcb\xf4\xff\x62\x84\xa1\xe6\xac\xa6\xde\x40\x31\xc1\xda\x08\x8d\x38\x4a\xb5\x02\x97\x61\xc6\x36\xa6\xb1\xd0\xc8\x57\x34\xc6\x71\xb0\x1a\xc9\x34\x05\x34\x08\xe9\x14\x84\xde\x57\xe9\x15\x73\xb5\x74\x0c\x80\x99\xf8\x2e\x29\xd7\x34\x92\xe4\xab\x24\x26\x8c\xe8\x7b\xcf\xa4\xde\xa3\xb7\x22\xe4\x00\x14\xe6\x0c\x76\x25\x86\xb8\x01\xa9\xbb\x61\x3d\x07\xfe\xca\xf6\xcc\x83\xe0\x6e\x65\x17\xa5\x0c\xc6\xef\x08\x9b\xbc\xdf\x51\x49\xf4\x03\x52\xeb\x20\x96\x2e\x61\x9f\xdd\xd9\xca\x44\xcc\x3b\x58\x69\x01\x0e\x8d\xe8\x3a\x29\x88\xcb\x2c\xa7\xe5\xd0\x3b\xf0\x86\x78\x41\x5c\x73\x1c\x95\xa6\x46\xa6\xf8\x4a\xe2\xf1\x23\x82\x93\xd4\x9c\x29\xf1\xc4\x8f\x07\x32\xe8\xc3\xc3\xba\x23\x50\x3a\x10\xa1\x65\x40\xa8\x9e\xd7\x97\x2d\x9c\x64\x66\x95\xa6\x92\x60\x67\xee\xce\xa7\xde\x51\x3c\x0d\x73\xa2\xb1\x84\x41\x62\x02\xdf\xe9\x6f\xb0\x9a\xc6\xcd\xad\x3c\x8b\x1a\xe3\x89\x67\x0c\x25\x04\x4b\x66\x49\xc6\x39\x73\x0d\x10\xfe\xc8\xfc\x7f\x91\x26\xab\x45\x49\xd4\x06\xd0\xc5\xb4\xe7\xf9\x2c\x22\xd4\x3e\xd8\x1c\x1e\x16\x60\xb5\xd1\xc3\x2f\x58\x84\x08\xaa\x34\x72\x1f\x40\xa6\x68\x47\x40\x27\xc0\x26\xca\x95\xd3\x32\x9a\x15\x28\xc9\x83\x3c\xda\x58\x1c\x49\xcf\x68\x12\xa9\xfe\xcd\x00\xaf\xb0\x34\x58\xb5\x0d\x2f\x45\x3e\x83\x1a\xcb\x7b\xc8\x97\x4a\x33\x8a\x0c\xf4\x2b\xd4\x57\x46\xa9\xa3\x92\x50\x25\xcd\x54\x24\x3a\x9b\xba\x0a\xec\xbb\xba\x16\xbe\x0b\xb0\xb8\x11\xa1\x8f\x09\x8a\xa5\xb3\x70\x25\xfb\x67\x70\xc2\xb0\x8a\x32\x6a\x5e\x03\x16\xe6\xdf\x01\xae\x98\x4b\xa2\x79\x22\x50\x92\xa9\x57\x5d\x16\xf9\x87\xd2\x9b\x05\x55\xc4\xf2\x15\x1e\x18\x24\xd5\x72\xaf\x25\xd3\x4b\x83\xb7\xef\xca\x0a\x3a\x53\x8f\x29\x95\x22\x29\x8a\xbc\xf0\x14\xff\x84\xf1\x64\x19\x7a\xdf\xe6\x07\xb2\x82\x25\x8b\xb0\x8b\xfc\x8a\xba\x8d\xa1\x54\x39\x66\x61\xb7\xdb\x35\xeb\x29\x37\xf3\x79\x52\x96\x9e\xc2\xd4\x13\xd9\x5d\xc3\xdb\xab\xa6\xc4\x3c\x4b\x3e\x10\xf4\xfc\xf8\xf2\x9b\xaf\xaa\x6a\xfd\x5d\x42\x3c\x79\x69\xc4\xe6\x55\x43\x6c\xfe\x45\xdf\x77\x4f\x59\xda\xfe\xa3\x16\xf4\x7b\x2f\xd3\x79\x91\x97\xf9\xb2\xe2\x0a\xdf\xbe\x7d\xed\x05\xbd\x75\x7d\x6e\x65\xf9\x07\x44\x78\xbe\x25\x1c\x90\x6f\x2a\xdf\x22\xe9\xe0\xee\x5f\x74\x46\x11\x12\xfd\x17\x2b\x80\xb3\xfc\x83\xef\xa0\xc4\xd7\x86\xba\x35\x88\x08\x07\x98\x9f\x17\x44\xeb\xc9\xe9\xa1\x95\x5b\xf4\x04\x38\x35\xd0\xe2\x8c\xd4\xb0\x9a\x31\x33\x0c\xc3\x80\x55\x31\x29\xc1\xb2\xc8\xe3\x89\x55\x26\xd6\x35\xe8\xf2\xc7\xdf\x35\xa8\x69\x2b\x1e\x49\x0b\xa3\xa5\x66\xdd\xec\xf3\x64\x49\xcb\x95\x2c\xe8\xe0\x8c\x57\x1f\xe2\xdb\xd2\x1d\x8e\x16\x32\x6e\x46\xf4\x7b\x85\xc3\x21\x72\x5e\x82\x28\xae\xd5\x21\x66\x50\x55\xf4\x2f\xa2\x13\x3e\x67\x4a\xca\x61\xad\x08\x8b\x56\x71\xc1\x53\x36\x5c\x8d\x16\x9b\x82\x55\xfa\x47\x15\x28\xa2\xec\xb8\x7e\x42\x44\x2e\xf5\xf3\xf4\xa8\x60\x46\x9b\xce\xae\x51\xf5\x21\x49\xb2\xd2\x4c\xc2\x46\xf3\x94\xe6\x39\x21\x85\x51\xb1\xc9\x08\x7b\x9a\xf3\xa0\xa4\x79\xaf\xd2\xe5\xed\x0f\x69\x05\x41\xfa\x74\x45\x88\x29\xa3\xd9\x3c\x3d\xa3\x9d\xb4\x21\xae\xd5\x2f\x81\x16\xf2\xd5\x75\x62\x8b\xcc\xe4\xf4\x23\xd4\x55\x8e\xd6\x04\xa3\x29\x61\x9f\x3b\x8c\x39\x4c\x14\xdd\xaf\xcb\xb0\x21\xff\xa4\x5e\xe7\xeb\xca\x7d\x48\xe7\xce\x5d\xb9\x4e\xe6\x69\xbc\x7a\x11\x97\x74\xc0\x85\x04\x36\x34\xf7\x2a\x2f\x52\xe2\xbd\xe2\xd5\x6b\xaa\x85\xd0\x58\x9a\x94\x61\x65\x1f\xea\xf3\x2f\xcc\x94\x9d\x9c\xd0\xcc\x9e\x99\x90\x30\xb3\x73\xa3\x64\xc8\x21\xd1\x05\x42\x69\xbe\xc5\x7d\xd8\xa4\x9c\x84\x75\xa2\x9e\xf1\x4b\x1a\xdd\x6a\x84\xbe\x32\xaa\x96\xcb\x51\xa3\xa3\x0c\x7d\xfa\x45\xc2\x4f\xec\x4c\xda\xb9\x67\xb2\xa6\x00\x45\x4a\x1d\xcd\xd7\x4e\x8b\x86\xfc\x3d\x81\x44\x67\xd2\x5a\xac\xf0\x64\xec\xc0\xc8\x41\x75\x99\x96\x72\xcc\x13\xc2\x19\x17\x67\xd9\x38\x73\x17\x32\x93\x85\x3c\x75\x04\xfc\xdd\x85\x52\xc4\x17\x85\x78\x8c\x7d\xdb\x78\xaa\x50\xfd\x8e\x60\x74\x4e\x30\xc3\x6b\xc6\x6d\xfd\xe0\xcf\x7b\x87\x1d\xb4\xb6\x53\x61\xf7\xd3\x8a\x28\x08\xf3\x4d\xbd\xad\x1c\x93\x09\x68\x9e\xe7\xea\xb5\x5a\xb1\x0c\xd7\xa1\x2c\x4d\x3b\x58\xcb\x00\x67\x68\x7d\x6b\x54\x67\xf2\xcd\xf2\x66\x54\xd1\x5a\x17\x7e\x0d\x40\x1b\x65\xe0\x2d\xce\xd2\xab\x70\xa5\x08\xa1\x6d\x92\x50\xd7\xc1\x37\x44\xfc\x28\x1e\xda\x05\xcd\x4a\x69\x5a\x33\xf7\xe0\x79\xb2\xc4\x3c\xc5\xb5\x19\xf7\x3c\xbf\x5a\x63\x1b\x07\xa3\x65\x9c\xae\x4c\x09\x5c\xdb\x2d\xaf\x9f\xc9\x9d\x83\xb2\x7e\x68\x49\xf5\x71\xc6\xd7\xda\x85\x44\xe6\xae\x65\x4c\x00\x4d\x3a\x54\x23\x44\x25\xc1\xf0\xc0\x61\x53\x72\x61\x95\x73\x3a\x81\xf4\x5b\xba\x26\x32\x52\x65\x90\xf8\x40\x06\x09\x6a\x3a\x57\x1a\xeb\xa0\x80\x66\xe7\x89\x61\xfa\x2a\xcf\xdf\x97\xa8\x97\x8e\x29\x4f\x04\xf6\x1e\xf5\x21\x0e\xee\xf2\x28\xd6\x12\x7c\x6a\xa1\xfe\xb8\x98\xd5\x3d\xcd\x03\xe9\x30\x51\x3e\xba\x59\xea\x19\xdb\xb5\xa4\x5a\x73\x8c\x2e\x47\x69\x3d\xf2\x07\x1d\xe4\x69\xa9\x1b\x00\x1a\x41\x19\xe1\x81\xa5\x61\xd7\xd5\xba\x61\xc8\xf3\x0c\x72\x88\x85\xa3\xcf\x51\xde\xf2\xa6\xbc\xcc\x3f\x10\xe7\x92\xc9\x62\x52\x4f\x18\xfd\xfe\xc2\x77\x3c\x38\x29\x06\xe1\x20\x0b\x16\x40\xa0\xf3\xcb\x05\xcd\x4c\x7d\xc3\x58\x91\xb6\x2a\xf4\xd4\x50\xf2\x11\x63\xe0\xdc\xb8\xf8\xb9\xfe\x66\xbb\xdd\xf8\xa0\xed\xeb\x27\xc3\x21\x41\x47\x17\xdf\xf7\x3d\xab\x3f\x3a\x3a\xc2\x6a\xf2\xb5\xe9\xab\xde\xe9\xdb\xad\xdb\x09\xb4\x05\x60\x6d\xdb\x37\xf9\x9e\xc8\x06\xb0\x6e\xb0\xde\x11\xc9\x0e\xb3\x8a\x20\xd7\x46\xc4\xf6\x16\xcb\x55\xfe\x21\x9a\x2e\xed\xb5\xaa\x2f\x7f\x74\xae\x7f\x22\xde\x39\xcd\x56\xe9\x5e\x59\xaf\x91\x30\x36\xde\x2e\x21\x49\xc1\x3b\x57\x10\x23\xd5\x7c\x0e\x79\xc4\xb7\x49\xb2\x28\xbf\x89\x6f\xe9\x50\xa7\xef\x75\xfd\x04\x9b\x4f\xfd\xa4\x96\x9b\x4e\x96\xa3\xdf\xf3\xfc\x2a\x3a\x0d\x97\xb5\x58\x56\xca\x1e\xb1\x54\x03\xd6\x24\xf5\x60\xa8\xb1\xba\xdb\x91\x77\x99\x2e\x16\x49\xe6\xb9\xda\x9f\xf2\x92\xf8\xb7\xf7\x3f\x14\xf1\x9a\x3b\x51\x02\x1d\x77\x97\xc1\xa9\xa4\xae\x1c\xa4\x9d\x33\x41\xee\x9b\x53\xf7\xcd\x4f\xee\x9b\x47\xb3\x5d\xe0\xe8\xcd\xaa\x80\xa5\x5b\xbc\x67\xab\x42\xe4\xa3\x69\xc0\xc7\xbb\xde\x4b\x7a\x3b\xe7\x50\xd5\xe4\x17\x17\x2b\x9e\xd5\x54\x41\x5c\xe5\xaf\x27\x18\x52\xe2\x11\xe5\xc6\xf0\x1d\x80\xa3\x4a\xb3\x4d\x32\x9e\x63\x47\x11\xec\x2e\x98\x3b\xc6\x78\xb1\x53\xd8\xa4\x00\x74\x67\xd7\xdc\x62\x4e\x8d\x2e\x26\x66\x86\xa8\x67\x00\xfc\x75\xb4\x18\xc9\x93\x20\xec\xdd\x51\x0a\x06\x52\xa0\x91\x4d\xb9\x68\xb0\x0e\xd4\x7a\x02\xfb\x8d\x60\x84\x22\x7e\x40\x68\x94\x91\xa3\x33\x9d\xf2\x1a\x5d\xe7\x9d\xd1\x2d\x20\xf6\x22\x68\x50\x04\x32\xcf\xdb\x1b\xd9\x9a\x92\xcc\x03\x67\x70\x95\x9a\x43\x76\xb7\x73\x26\x78\x4e\x7c\xdb\x6b\x9a\x28\x4c\x44\x48\x07\x25\x0e\x01\x7e\xb1\x80\x99\x10\x66\x29\x96\x43\x42\xad\x59\xdf\x4a\xc7\x81\x7d\xa2\x7f\x1d\x29\x28\x71\xc2\x66\x1b\xb1\xc1\xcc\x69\x78\xd2\x50\xc4\x7e\xed\x8a\xa7\x1d\x9a\xf7\x6b\x9c\x14\x55\x0e\x19\x01\x81\x3c\xf1\x18\x75\xb1\xfa\xe3\xdf\x1b\xf8\x3e\xba\x93\x86\xc2\x64\x07\x51\x8b\x8c\x58\x24\xd8\xe3\x4f\xcf\xd2\x71\x3a\x8c\x1e\x11\x05\x97\x45\xdf\x82\x21\x27\x36\xd1\x48\x9a\x87\x84\x58\xe9\xce\x0a\x8c\xe9\x36\xb1\xa7\x3a\x8c\xbd\xe8\xb8\x89\xe7\x69\x75\x1b\x15\x23\x11\x1c\x26\x0d\x71\xd7\x8f\x2d\x8b\x0d\xc7\x6c\x32\x09\xff\xda\xc0\x2a\x93\x5a\x39\x98\x26\x1f\xc0\x00\x8b\xf6\x55\xbe\x08\x07\xa7\x2c\xce\xf8\x5e\xfd\x53\xfd\x64\x45\x49\xea\x6f\xd0\xdf\xe4\x73\x21\xaa\xbe\x04\xdb\x67\xc4\x85\xff\x88\xbe\x6c\xcb\x1e\xd5\xdf\xa9\x80\x18\xa3\xaa\x7f\xd1\xe5\x03\x95\x54\x40\xfe\x55\x05\x75\x50\x46\x6b\x23\x26\xb1\x9e\xa2\x75\xaa\x8c\x89\x9a\x4a\xf9\x06\x94\x93\xca\xf9\x92\x79\x60\x15\xf3\x35\x75\x2e\xb9\x79\xb5\x24\x6a\x2a\x4a\x20\xbe\x7a\xc3\x22\x1c\xb5\xe1\xdb\xcb\xb8\x7c\xf5\x21\xd3\x04\xe3\xad\x5a\x55\x51\x26\x5a\x60\x42\x1a\x51\xd3\x08\xd5\x59\x5f\x90\x15\x59\xbd\xb2\xff\x24\x6a\x76\x59\x45\xc7\xd3\xe1\xd1\x6c\xe2\x4f\xc2\xf3\xc5\xc3\xf3\xd1\x36\x38\x5f\x0c\xe9\x66\x9a\xbc\x98\xf1\x0b\xba\xdd\x06\xc7\xa3\x32\xdf\x14\xd4\xb7\x35\x95\x3f\x7f\x33\x3c\xbe\x50\x0b\xba\xfa\x79\x7a\x5e\x9e\x6f\xbe\x78\xf1\xc5\x17\xe7\x37\x4f\x4f\x66\xc3\x6d\xeb\xfe\x01\x95\xbb\x44\x39\xd4\x5e\x3e\xf4\x9f\x4c\xcf\x3f\x9c\xff\x30\x1b\x9e\x05\xd3\x9f\xcf\x66\x0f\xb7\x7f\xf2\xe9\xc1\xd1\xec\x61\x10\x3c\x38\x56\x17\x28\xf8\xc4\x3f\xff\x30\x0c\xa8\xec\xf9\xf1\xe4\x8c\xbe\x7a\x72\x7e\x7c\x7e\x7a\xb6\xc5\xfb\x2b\x69\x70\xa6\x88\x6e\x3e\x2f\x67\x0f\xe9\xd1\x2d\x3d\xa2\x42\x3f\x6f\xc3\xad\x0a\xa4\x8d\xf3\x69\x80\xde\x5d\xa3\x9f\xe7\x18\x87\x77\x7e\x7e\x7e\xfc\x6e\x99\x15\x44\xc4\x6e\xa6\xe7\x8b\xf8\x68\xf9\xf4\xe8\x8b\xd9\xdd\xa7\xbb\x80\xca\xbd\xa3\x72\xde\xf4\x67\x14\x2a\xce\xb3\xd9\x43\x6f\x0b\x9b\xb4\x2d\x9b\xa2\xb1\xf4\x7e\x7b\x24\x53\x33\xdc\x3b\x35\x17\xea\x06\x3d\x3b\xba\x2a\x8f\x8e\xd5\x07\xba\x3c\xf2\xb9\x99\xdf\x67\xf4\x2e\x55\x6f\xf7\x2c\x48\xd5\xd4\x7c\xee\xd4\x33\xb7\x60\x70\xe7\x7f\x09\x8b\x0b\xb6\x4f\xf8\x26\x2d\x89\x00\x4c\xb0\xad\xe9\x74\x5a\x78\x0c\xdd\x15\x4b\x96\x3c\x43\xb9\xe1\xe1\x97\x44\xf4\xc6\x8b\xdb\x37\x60\x93\x71\x82\x7d\x0b\x89\x14\x9b\x3a\xd0\x53\x9f\x50\x80\xfa\xb6\x72\x4f\xff\x6e\x0b\x13\xff\x4b\xd7\x30\xc2\x3c\xf6\xbd\xe7\xaf\x5e\x6a\x79\xd5\x37\xd4\x83\x64\xe1\x51\x77\xc1\x0f\xa9\xa4\xbf\x3c\xf7\x53\x97\x09\x42\xaa\x55\xe4\xe4\x62\x6e\xe1\xe5\x19\x77\x89\xf9\xf9\xf9\x65\x9c\x5d\x24\x28\x8b\xca\x5a\xc5\x4c\x35\xd4\xf7\x31\x43\x2f\xd0\xbb\x45\x52\xd1\x9d\x58\x69\x87\xb4\x03\x69\x4b\x95\xb4\x74\x50\xb7\x13\xcf\xa5\x00\xe4\xa1\x6b\xa3\xec\xc8\xa0\x58\x03\x9f\x34\x58\x8e\x3e\x2b\xb3\x44\xeb\x74\xbc\x27\x32\xe1\x56\x65\x4d\xe7\xfe\x59\xe3\x91\xd1\xf4\x1e\x9d\x06\x90\x18\xc9\xcd\x59\xf4\x78\x32\x05\x04\xc1\x14\x8d\x7e\x66\xe1\x65\xa5\x8d\x94\x88\x93\x4c\xa1\x3a\xa5\x03\xf8\xf0\xd0\xd8\x23\x43\xc5\x9f\x8d\x64\x40\x13\xc8\xd1\x8b\x80\x8d\xa1\xa8\x78\x88\x3e\x8e\x9c\x11\x12\x09\x6d\xde\x31\xfb\x04\x79\x8d\x98\xce\x80\x86\xa5\x69\xcd\xe6\x18\xc1\xbc\x9a\x40\x85\x40\xbc\xa3\xd5\xf5\x0b\x61\xaa\x4d\x26\x61\x0f\xc2\x1f\x2b\x68\x71\x6a\x7c\x99\x35\xb5\xde\xd4\xaf\xf0\x4b\x18\x9f\x06\xb4\x47\xb5\xda\x0a\x2d\xb2\x50\x35\x2d\x5f\xaf\xe2\x34\xd3\xe7\xb3\x16\x9c\x6b\x21\x6d\xcb\x8a\x90\x9a\x86\x50\x76\xa2\x2f\x7c\x16\xd1\xca\xd8\xd8\xe0\x2b\x55\x0d\xa1\x2d\x33\x6b\x10\x8a\x12\x5c\xd7\xb6\x18\x9f\xdf\x7e\xbd\xa0\xe6\x1f\xcd\xf8\x44\xcf\x1d\x43\x1a\x9e\x81\x7c\x94\x2e\x88\x1a\xe3\x02\x86\x2f\xb3\x53\xc5\x4d\xc9\xea\x44\xa7\xcc\x0c\xd2\xec\x44\xf9\xce\x69\x50\xa4\xbd\x37\x50\x7f\xf1\x6d\xa9\x4d\x38\xa2\x44\x98\x47\x6b\xb7\x66\x27\xcb\x6f\x7c\x66\x2a\x95\xe2\xcd\xc6\xd8\x4e\xc3\x99\x10\x28\x5b\xf4\xde\x4c\xa0\x27\xb0\x8d\x69\xc1\x76\xab\x03\xf6\x52\x35\x5a\x4c\xcc\x15\x6f\xf5\xab\xf8\x7d\x62\x6d\x17\xd1\x26\x6d\x7a\xf3\x5d\xe8\x79\xca\x70\xdd\xaa\xca\xb9\x58\xe8\xa0\x03\xa3\x68\xd0\x9c\x28\x7f\xbe\x53\x34\xf5\x61\x8f\x95\xa4\x30\x20\x09\x2f\xe6\x48\x57\x46\x54\xd4\xc9\x99\x3c\x9a\x3a\xc3\x1f\x26\x33\x5e\xe5\x69\x32\xdb\x29\x9c\x76\x84\xa0\xe6\xef\x1b\x95\x8a\x54\xa8\x01\xa5\x0d\x78\x27\xd4\x50\xc3\x05\x21\x80\xe4\x5a\x00\x4e\x18\xad\xaa\x31\xfd\xe6\x46\x55\x3b\x05\x4d\x49\xd8\x8b\x7e\xad\x32\x0c\x15\xe0\xc5\x4e\xf1\x52\xf4\x8d\xd5\xa0\x50\x2b\xf7\xd1\x8c\x74\xa2\x25\x0a\x8a\xcf\xed\x9e\xa9\xe4\xee\xd8\x11\xfb\x34\xb3\xf1\x7a\xbd\xba\x95\x46\x89\x0e\xe2\xed\xc5\x6b\xc4\xa6\x98\xfb\x6a\x48\x7e\x23\xac\xb3\x53\xab\xf8\xde\x22\x47\x90\x4e\x25\xbf\xf5\xcc\xab\xb3\x16\x2a\x8b\x86\xc9\xd0\xe7\x65\x22\xaa\x70\xdc\xdf\xd1\xec\x2c\x82\xa3\xc8\x59\x36\xe1\x75\x24\x26\x78\x16\x4e\x89\x62\x55\x57\xf1\xba\x6f\x82\x5a\x9f\x1b\xd3\x7b\x8c\xb2\x29\x79\xb2\xdb\x47\x20\x8c\xd0\x72\x05\x36\x90\xfa\x9d\x2d\xf6\xce\x9f\x5d\xed\xed\xb6\x8b\x08\xd9\xae\x9d\xa1\x2a\x4c\x2b\x55\x12\xb3\x44\x3d\x1d\xe1\x57\x41\x4e\x4e\xcb\x82\x5b\xbe\xda\xa9\x9a\x00\x72\x0e\x11\x7e\xa8\xac\x98\x45\xee\xcd\x4d\x8b\xda\xd7\x0e\x2d\xc2\xe9\x47\x76\x05\x59\xaf\x42\xf4\xde\x86\x76\xfa\xaa\x7e\x6c\xe6\x7c\x1e\x69\xe1\xa7\xf7\x2e\xcf\x61\xd1\x5f\x1f\x32\x25\x18\xcd\xa8\x6c\x54\x76\x6a\x2a\x7b\x14\xa8\x8e\xf6\xb5\x64\x3e\xc9\xc1\x22\x65\xc0\x72\x02\xb0\x38\xb4\x21\xa1\x56\xa0\x3b\x9e\xfa\xa3\xa3\x4d\x30\x5e\x9d\x6d\xc6\x1b\x11\x61\x69\xbb\xb2\xdc\x69\x0a\xce\x06\x16\x61\xe7\x41\x12\x95\x4c\xa5\x43\xed\x39\x53\xa5\x16\xb9\xcc\x59\x13\xe2\x77\x90\x7d\x11\xb0\x45\x80\x23\xbd\x29\x82\x20\xa0\xb3\x8b\xfe\x4f\x23\x86\x6e\x50\x1f\x11\x1a\x23\x81\x34\x27\x30\x0a\xeb\x17\x6e\x75\xfc\x9a\xc6\x8d\x2e\x38\xb6\xa4\x73\x9a\x6a\xaa\x37\x34\x58\x91\x5f\x17\xb5\x6d\x48\xb9\x53\x8e\xe0\x55\x9b\x69\x86\x9e\x50\xe3\xde\xd0\xcf\xaa\x21\xcb\x98\x0b\x3c\xbf\x22\x2a\xc8\xfa\x31\x1c\x9f\x3f\x27\xe2\x0d\xe6\x52\x59\x4e\xc4\xcd\x92\x60\xa4\x6a\xc8\x2d\x2d\xb4\x3e\x60\x11\x01\x5b\xc0\x3d\x88\xfe\x45\xbb\x1e\xc7\xbc\xb4\x50\xbf\xd1\xf7\x7f\x07\x1e\x26\x66\xa8\xfc\x8e\xd1\x09\xcd\x03\xe3\x8e\x1f\x62\x22\x48\x4e\xd5\x65\xbe\x5a\x7c\xd7\xc1\x33\xc9\xc4\xa0\x18\x14\x1b\x0e\x43\x4b\xb4\x0d\x4e\x7a\x11\x13\x14\x5a\xa2\xcf\x19\x1c\x1d\xb9\xdf\x6a\xa7\x13\x6e\x42\x94\x7e\x5f\x8a\x55\x41\x57\x25\x61\x3e\x0b\xc6\xf5\x27\x50\x30\x27\x5a\x2f\xd4\xac\xf8\xec\x84\x16\xfb\xfb\x86\xb0\xf5\x4b\x35\x9d\x43\xaa\x2a\x1b\x86\xa8\xa7\x8b\x8b\x84\x35\xad\xfe\x97\x81\xb9\xf5\x3d\xae\xc1\x0b\x60\x88\x63\x6f\x88\x19\x55\x35\x08\xf7\x60\x14\xd7\x7f\xca\xf1\x93\xc3\x57\x72\x6c\xf1\x5f\x03\x59\xdb\x6d\x4f\x0d\xd6\x47\xae\xf9\xb9\x66\xfa\xf6\x9c\x68\x03\x40\x66\x02\xd2\x4e\x1c\x69\xf0\xc5\xb7\xb4\x57\x8a\x74\xde\xf3\xc9\x80\x5e\xc6\xdf\xfa\x8e\x05\x4e\x02\x5f\x10\x1a\x19\x50\x8c\xb4\x88\xa6\xef\x3b\x3f\x85\xad\x03\x01\xd0\xd9\xea\x49\xaf\x1f\x19\xb1\xb3\xd5\xb4\x34\xd2\xe2\x60\x56\x1b\x5c\x58\xa3\x54\xf4\xda\xd9\x59\x9d\x13\x21\x13\x0a\xb8\xd7\x54\x23\x09\xc0\x20\x1b\xea\x46\x23\x1b\xcb\x5b\xd7\xba\x1c\xa8\xcb\x58\xad\xea\x60\xe3\xc3\xc3\xc1\xc6\x8a\xb1\x3d\xe7\x05\xe4\x69\xf5\x2b\xf7\x93\x1a\x0f\x2b\x8f\x3a\x6d\x6e\x5e\x2d\xbd\xba\x2d\xad\x66\x2b\x1c\x1f\x19\xb1\xd8\x30\xd2\x31\xa2\x56\xbf\xa1\xb3\x31\x70\xa4\xce\x7a\x96\xeb\xee\x64\x81\x2b\x94\x6e\x99\xc7\xba\xc5\x30\x79\x8e\xc8\xa9\x7b\x9c\xba\x0e\x42\x5d\x4f\x1f\xad\xd8\x74\xbf\x62\x75\x29\x33\xe0\x2f\xf0\x8e\xc1\xc2\xd2\xdf\x0d\xea\x44\x7b\xdf\xf0\xd2\xb4\x4d\x36\xec\x98\x00\x39\xe3\xee\x49\x52\x5b\xbf\x80\x2d\xab\x30\xac\x2f\xc5\x06\x26\xba\xa8\x19\x8f\x34\x1a\x10\xad\x3f\x9d\xd5\xb6\x8d\xd3\xb6\x4d\x12\x2c\x1c\x83\x59\x28\x52\xfb\x77\x9b\x74\xb5\xb0\x4e\x2c\xb0\x14\x86\xc9\x90\x4a\x79\x9b\xa7\x41\x6d\x89\x54\x5b\x13\xc3\x8a\xb3\x36\x68\x0e\xcc\x60\xd9\x6d\xb2\x17\xbb\xe2\x0d\x10\x2a\x7e\x85\x31\x99\xb8\x37\x54\x36\x94\xdd\x12\x55\x30\x3d\xea\x78\x03\xb1\x5e\xde\x5a\xc1\x33\x76\xbe\x32\xbe\x41\x16\xd9\x5f\x57\xca\xfb\xbf\x5e\x8d\xfc\xdf\xd1\xfd\xcc\xb9\xbf\xad\x70\x12\xd0\xf1\x85\x75\xb2\x87\xab\xa7\x3b\xe9\x0d\xab\xc0\xd7\xf6\x0d\x38\x6d\x78\x1d\xbd\xaf\xb3\xeb\x78\x45\x4f\x78\x68\x5c\x46\x8f\xf5\x47\x77\x5d\x6b\x05\x01\x6f\xbb\xec\x3e\x9f\x54\x5e\x5b\x6c\xad\x64\x44\x1c\xf7\x6b\x56\x98\x4f\x88\x07\x45\xa7\xec\x03\x3a\x9f\x53\x99\x9a\x2f\x88\x1e\xd5\x08\x24\x53\x6c\x23\x7f\x7c\x73\x05\x2f\x13\xac\x1e\xbe\xb9\x4f\x87\x4d\xf5\xc1\x08\x70\x14\x97\xb7\xd9\x3c\xd2\xde\x77\x74\x0f\x9e\x9b\x5e\x83\x97\xab\x5d\xe9\x5c\xaf\x39\x22\x07\xda\x02\x30\xda\xde\xc5\x1e\xdf\x21\x57\xeb\x5f\xeb\x02\xba\x93\x88\x39\xa3\x39\xcc\x58\x85\x08\xdf\x5a\x97\x1e\x24\x36\xc4\x3a\xd1\x34\x80\xa8\x62\x42\x42\xaf\x3c\x1f\xc3\x80\x74\x71\x48\x77\x8e\x05\x2a\x49\x6f\xe8\x63\xb3\xcf\x41\x76\xc2\x54\x41\x59\xb5\x54\x1f\x92\x4e\x2c\x78\x10\x3b\xe1\x5d\x95\x47\x0e\xc0\x7c\xa8\xd4\x5b\x54\x60\x84\xfe\xfd\x6c\x46\xad\x14\x00\x84\xf7\xbb\xb5\xb0\x0b\x4c\xe3\x49\x0f\xe3\xe2\xc8\x2f\x58\x45\x9f\xd4\x1a\xfa\x4c\x8b\x01\xc4\xca\x47\xfc\x79\xa0\xba\x64\x4d\x9a\x61\x39\x12\xd8\xe3\x16\xb4\x73\x71\xba\x9f\x8a\x57\x41\x6d\x8d\x97\x5b\x5d\x5d\xcf\x17\x11\x7f\x21\xd6\x20\xc6\x86\xa5\xd3\x8a\xcc\x2b\x3e\xc9\x15\x7e\xfe\x58\x4b\x3d\x5f\x39\xad\xd5\xc6\xda\x0a\x2b\x1c\xae\x00\x67\x2b\xfd\x95\x77\xbe\x59\x26\xcb\xe5\xf9\x4d\x7c\xe2\x05\x93\x7b\x4e\x58\xcf\x0b\x57\xf6\xb8\xdc\xdd\x77\x16\x53\x49\x98\x23\x3a\x8b\xbc\x60\xac\x00\xbe\x47\xb3\xd5\xad\x55\x16\xfc\x5a\xb1\x15\x61\x9b\x8c\xf0\x33\xdf\x52\xb6\x8e\xb7\x45\xd1\x75\x88\x4d\x26\x84\x58\x43\x22\x01\x52\xdd\x4f\x78\x4f\xf2\x3e\xd0\x8e\x88\x9d\x43\x82\xdb\x65\xcf\x4a\x31\x1f\x32\x3e\xa7\x07\xb1\x61\xde\x95\x3d\xf2\x0a\xeb\xb5\x4c\xcc\x5f\x36\x39\x21\xae\xce\xb5\x67\xa7\x1d\x17\x66\x61\xad\x6c\x07\xa3\xc0\x3a\x1f\x38\x55\x65\xb0\x2e\xaa\x4f\x1e\x8d\x02\x8e\x4e\x69\x46\x30\x98\xb0\x19\x05\x40\x66\xc3\x38\x6c\xa8\xb4\x06\x52\x82\x59\x96\xb1\xb5\x63\x12\x14\xda\xce\x52\xeb\xd9\x13\xb6\xb6\x8c\x60\x0a\x5e\x43\xcc\x18\xb7\x20\xfe\xc7\xce\x7b\x18\x65\xda\x2d\xa6\xa5\x2c\xa9\x22\x40\x81\x5f\x67\xff\x74\x51\x7f\xa6\xb3\xd6\xee\x11\x9a\x20\x1a\x0c\x32\xab\xeb\x2f\xe8\xae\xd2\x30\x69\xd5\xce\xa9\xd8\x37\x30\x88\x5a\x53\xc7\x36\x3b\xfc\xd1\x4d\x4a\x2c\x9d\x58\x9b\xd6\xbb\x47\xcc\x0b\x22\xd3\x20\xf6\x9b\x00\x10\x9d\xb0\xfe\x66\xba\xd1\x15\x40\x09\xdd\xdd\x43\x7f\xec\x33\x83\xb6\xcd\xbe\xa6\x49\xd8\x40\xae\xb3\x49\x17\xc4\x90\x10\xfd\x75\x73\xdb\xb7\x8e\xe0\x72\x5b\xe6\xa3\x75\xcc\x00\xb1\x70\xe4\xa0\x01\x51\xa2\x92\x28\x6f\xdb\x39\xc0\x93\x8c\xd8\x48\x0d\x8d\x96\xe1\x54\x8f\xb0\xc3\xbb\x8c\x7e\xa2\xfb\x96\x09\x8b\x0f\x0a\x42\x1b\x3a\xb5\x6b\x08\x40\x50\xa4\x1c\xa2\x01\xbe\xe6\xf5\x8f\x13\xb9\x01\xf6\xcb\xc4\x82\xc5\x6c\x26\xd6\x92\x02\x1b\xe6\x5d\x5b\xd7\xd2\x32\xad\xea\x65\x9a\x47\x82\x0a\x78\x6b\x39\x2e\x7b\x86\x38\x26\xb6\xf3\x2e\x87\x65\x0a\x56\x61\x23\x96\x95\x73\x09\x7c\x20\xbe\x18\x6a\xa3\x0a\x62\xaa\xe1\xbf\x80\x36\x2c\xba\x4c\x07\xc6\x2c\x54\x2c\x78\x9d\x99\x4a\x85\x7f\x27\x46\x4f\xcd\xc1\xde\x4e\xe0\x25\x2c\x87\x54\x0a\x03\x29\x96\x70\x84\x3e\x75\x8d\x6e\xda\x80\x6d\x04\x54\xf2\x05\xa3\x1a\x90\xb0\xd0\x2e\x6b\x13\x66\xc3\xff\xd3\x27\xe8\x58\xa1\xca\x49\x1a\xa6\x06\xf1\xd2\x93\x8d\x32\xaf\x1c\x87\x8b\x9c\x58\xf1\xf9\xc4\x74\x24\x08\x57\x13\x14\x3a\x41\xa1\x30\xc6\x99\xf7\xa1\x2b\xad\xf1\x99\x48\x81\xea\x01\x94\x00\xb8\x4c\x1c\x64\xe5\x87\xf6\x1e\x69\x9a\x83\x1a\x5f\xd4\x5c\xf4\xcc\x31\xc1\xb3\x75\x70\x20\xd0\xae\x2f\xa3\x0a\x58\x81\x48\x21\x73\x3c\xa9\x82\x4d\xe2\xdc\xaf\x9d\xd2\xa8\xa8\xde\xa9\xbb\x5a\x0f\x62\x84\x78\x91\x4b\x1c\x80\x30\xfb\x1e\xa8\xef\xfb\xa6\xbd\x9b\xda\xaf\x5f\xe9\xe5\xa4\xcd\x7a\x77\x35\x2b\x41\xf7\xd1\xbd\x5a\x95\x6e\x61\x57\xa5\x22\xf6\xbd\x5f\x42\x6e\xfe\x47\xb4\x2a\xad\x62\x56\xab\x32\x16\xcb\x2c\xcd\xce\x65\x1a\xfa\x93\x11\x7b\x6e\x58\xd2\xae\xa3\xee\xac\x19\xb2\x1d\x2b\x0e\x16\x39\x11\x5c\xf9\x6a\x45\xa7\xb3\x63\xc0\x2e\xb3\xea\x8a\x23\xb8\x11\x5b\x9a\x46\x94\x2c\x2b\x6b\x45\x99\xf4\x99\x4d\xa6\xea\xb3\x93\x60\xd7\xd2\x63\xed\x76\xbe\xf5\xe4\xff\xde\xca\x64\x99\x98\xd3\x42\x5d\xef\x73\xe1\x8e\x0e\xbe\xe5\xf3\xe6\x40\x68\x64\x4b\xd6\x1f\xf0\xa1\xca\xb0\x7a\xf0\x5d\x72\xf1\xe2\x66\x7d\x20\x27\xb5\x30\x68\x9e\x6b\x61\xdb\x3c\xef\x89\xf5\xf6\xa6\x82\x17\x40\xef\xc3\x69\x61\xd6\x21\xde\x02\xf5\xcf\x88\x85\x20\x4a\x87\x4a\x92\x18\x47\x07\xcf\xde\xbc\x39\x30\x2e\xa1\x07\x2f\xb2\x8b\x34\x4b\x7a\x62\x25\x7d\x2c\xf8\xd1\xff\x92\xb0\x47\x1c\xef\xa8\x39\x39\x76\xed\xfb\xf6\xb9\x18\x46\xa9\xb9\x5a\xaa\x4b\x75\x01\xfc\xea\x13\x37\xd7\x56\x34\x55\xe1\x77\x08\x1b\xf1\xd5\xe1\xe1\x37\x3a\x16\xcb\x76\xfb\x15\x90\x20\x7b\x3a\x7c\x84\x2f\x66\x7f\x72\xfa\x1a\xf2\xcf\xda\xa5\xfc\xf0\xf0\xaf\xf4\xac\xd4\xa5\xe4\xfc\xfd\x05\xfc\x8a\x56\xef\xbd\xb3\xcc\x31\x1b\x38\x47\x56\x99\x06\x23\x82\x52\x94\x4a\x54\x5f\x4b\x03\x15\x07\x6a\x90\xc3\xb7\xc1\x55\x40\xb9\x1d\x81\x22\x8a\x2a\x88\xed\x43\xa1\x20\x40\x52\xd8\x53\xa1\x35\x7c\x3e\x1f\x5a\xcf\xba\xed\xd2\x80\x3e\x67\x7f\x7f\x68\xbf\xee\x6f\x83\x07\xe8\x68\xc2\x12\x43\x02\x64\xaa\xea\xe7\xd6\x40\x76\x72\xf7\x79\x22\x1e\x43\xc7\xf7\xac\x59\xf2\xd9\x2a\x2e\x4b\xe1\x67\xaa\x3d\x6f\x3e\xde\x9c\x2d\x8a\xf1\x50\x67\xa9\xc1\x67\xa3\xdf\x4a\xb8\xbf\x0d\x5e\xd2\xac\xbe\x34\xde\x48\x62\x63\xb4\x8c\xe6\xd1\x6b\x75\x19\x55\xea\x22\xe2\x55\x21\x5e\x8a\x2d\xc7\xe8\xc2\x11\x61\xed\x0b\x1b\x20\xd6\xd4\xab\x68\x8d\xd3\x91\x0e\xd2\xaa\x19\xa2\xc6\x4b\x17\xc4\x31\x4f\xa8\x11\x4b\xf6\xbf\x25\xb2\xff\xfc\xfc\xc1\x21\xbc\x3a\x47\x65\xbb\xb0\x5a\x12\x5a\x88\xbc\x29\x4d\xfe\x27\xde\x70\x39\xf4\x3e\x99\x1d\x78\x6c\x87\x6c\x0c\x90\xe1\xa9\xbc\x42\xd8\x9d\xe5\x10\x61\x9c\x36\x74\x4a\x5d\x46\x8b\xca\x8c\x0a\x53\x57\x83\x0d\x41\x3d\x8d\x6b\x35\xfa\x35\x4f\x33\xdf\x53\x1e\x9b\x3e\x5d\x04\x8e\x3d\xba\x33\x91\x97\x5d\xcf\xf2\x0b\x9e\x42\x41\xa2\x57\x84\x92\x97\x30\x1b\x5e\xdd\xde\xcd\xa9\xe2\x6e\xc4\x0b\x0c\xd6\x5a\xd4\xc3\xd1\xdb\x0e\x7a\x45\x83\x46\x54\x1f\xbd\x75\xdd\xe8\x60\xce\xde\x4e\xfc\xac\x0e\xf8\x72\x50\x69\x77\xa6\x61\x04\x64\x79\xf6\x5e\x02\x3b\x7d\xc3\xd3\x70\x78\x68\xed\x2c\x2b\xe3\x12\x41\x07\x3a\x78\x8a\x62\x27\x8a\xa9\x9a\x6b\x4a\x1a\x61\xc3\x6a\xba\x70\xfa\x9a\x9d\x9e\x92\x46\xd0\x29\xa3\xd7\xfa\xaa\x1d\x6e\x64\x91\x5e\x7b\xc1\xb8\x9e\xb9\xc1\x20\xa9\xfd\x11\x32\x37\xc6\x8e\x9e\xa3\x66\x20\x06\xf7\x4e\xcf\x9c\x44\x39\x61\x54\x84\xc3\xb1\x15\x40\xc9\x75\xff\x06\xd5\x52\x47\x82\x29\x6a\x16\xa3\x00\x34\xbc\x67\x15\xf7\x57\x1c\x61\x62\x9a\x4d\x0b\x38\x99\x34\xa2\x0f\xd5\x6e\x82\x50\x2e\xc0\xe2\xbd\x1d\x90\x49\xee\xdd\x38\x21\xfe\xbf\x2b\x6d\x97\xf3\x35\x8c\x85\xb6\xdb\xbf\x05\x47\xfe\xbf\x93\xf6\x33\x91\x0d\x58\x2b\x65\x30\x78\x42\x1b\x12\x5e\x1d\x65\xc9\x4d\xf5\x26\x7d\xb7\x22\x9c\xca\x7e\x32\x2c\x11\x0d\x0c\x9f\x67\x97\x67\x72\x1a\x1e\x9d\xba\x61\x8c\xfa\xbc\xf2\xec\x08\xf6\x6c\x44\xc3\x4e\x34\xe2\x4f\x48\x80\x16\x1a\xe8\xce\x8d\x87\xf4\x3f\xa8\xbe\x15\x39\x82\xc0\xbe\xd2\x31\x28\x82\x3d\xcd\xcd\x9d\xe6\x52\xbf\x47\x46\x59\x45\xc3\x4a\x39\x6f\xda\xbe\x62\x11\x8b\x3d\x2d\xe3\x5b\xc1\x24\x39\xb7\x3e\x19\x58\xff\x6c\x0a\xa3\xe6\x78\x26\x4e\x47\x29\x01\xb5\x5f\x58\x37\x35\xb6\x85\x75\x83\x38\x61\x17\x9b\xbb\xb5\x23\x69\x50\x8d\xa3\x34\xfa\x7d\x9a\xc0\xe1\x47\x1c\x18\xad\x3d\xcb\xe4\x24\x9c\x6b\x6f\xaa\x13\xa1\x8e\xcb\x28\x61\xd6\x93\x58\x9d\xf7\x50\xa7\x8a\xf7\xd2\xb8\x1c\x07\x77\xfe\xa0\x60\x57\xaf\xa5\x3e\x05\x4b\x09\x3e\x96\xb2\x16\xd1\x38\x65\xa5\xf0\x9f\x95\xd1\x10\xb3\x52\x12\x1f\xab\x0f\x1a\xaa\x13\x72\x0a\x28\xfb\xe0\xfc\x5c\xd7\xc1\xd1\xda\xd2\xda\x2b\x4e\xca\xdf\x71\x60\x90\xb0\x10\xa5\x08\xd7\xea\x22\x1f\xc2\x20\x30\x40\xb6\xcd\x1a\x27\x14\x13\x2e\x00\x34\xfe\x7b\x1d\xce\x29\x18\x50\x83\xb7\x15\x5c\x3b\x4c\x9b\xf0\x78\x8a\x69\x7e\xf1\x06\x57\xb0\x50\x65\x97\xc0\x8f\xf4\x23\x56\xec\x0d\x9a\x94\x61\xba\xaf\x79\x10\xb2\x85\x96\x80\x39\x9e\x07\xda\x98\xa2\x24\x46\x29\xd1\x92\xfd\x10\xe6\x91\x9b\xc0\xce\x7f\x2b\x68\x54\xed\x01\x73\xc2\xc1\xa2\x34\xc0\x14\x91\xe7\x8d\xb3\xb3\x6a\x5c\x41\x00\x31\xe4\xd0\x5d\x12\x45\xa5\x27\xa6\xc5\x65\xd3\x03\xbe\x1a\x2d\x52\xc8\x36\x10\x98\xa1\x46\x5f\x6c\xf8\x49\x80\xf9\x60\x38\xac\xed\x26\xd8\xc8\x60\xe2\x6a\xe4\x89\x8c\xb8\x93\x20\x54\x6c\xdc\xcb\x18\xa0\x89\x65\xb6\x5b\xeb\x9c\x91\xe8\x2f\x76\x0d\x77\x12\x15\x4b\x4f\x0c\x50\xfe\x20\x6e\x6c\x1c\xbd\xaf\x5b\x79\x4f\xed\x84\xee\x74\x3d\x81\xd5\xa2\xd4\xc2\x9f\x7b\x3b\x06\xc7\x47\x7a\xff\x1a\x01\x2a\xf0\xc3\x5a\x70\x78\xb3\x22\x3e\x11\x1c\x27\x4f\x20\xbf\x9a\x33\x11\x41\xf0\xbc\x01\x69\xc7\x6a\x53\x82\x62\xfa\xfd\xd6\x6a\x45\xf9\xa1\xa5\xcb\xa4\x82\x08\xe1\x16\xf1\x49\x64\xfa\xb7\xdd\x7e\x2b\x0f\xd8\x1d\xce\x76\x76\x5f\x68\x2b\x6d\x07\x76\xda\x9c\x71\x17\x73\xd4\x87\x84\x09\x6e\x32\x48\x60\x19\x25\xe5\x7a\xb4\x4b\x21\x98\xf0\x46\x04\xac\x9e\x38\x13\x8a\xe3\xca\x94\xec\x05\x60\x41\x6c\x15\x89\x80\xa8\x1a\x6f\xce\xca\x71\x49\x70\xc6\x12\x9c\x12\xf3\xc4\x4a\x89\xcc\xcf\xb9\x9e\x80\x0d\x8c\x0d\x21\xb9\xe2\x53\x11\x37\x65\x6f\x38\x86\x5b\xdb\x83\x1c\x80\x50\xab\x08\x06\x05\xad\x07\xa3\x01\x36\x0b\x80\xb1\xd6\x20\x97\x47\x39\x3d\x42\xe9\xc0\x45\xa9\xa9\xe0\x35\xed\xc0\xcc\x7c\xc2\x1a\xc3\x58\xe0\xcf\x65\x14\x9b\x71\x5c\x20\xe8\xc2\x8d\x5f\x89\xe3\x75\x59\xdb\x61\x21\x2e\x68\xa9\x08\x21\xa9\xdb\x08\x8c\xc2\x20\x45\xb4\xd4\x8b\xf0\xca\xbf\x50\x6b\x95\x70\xe5\xea\x3a\xca\x26\x39\x10\xde\x24\x09\x2f\x61\x62\x37\x99\xce\xc2\x38\xbc\xe5\x43\x91\x58\x59\xff\x56\x5d\x4b\x49\x91\x4c\xae\xa2\x2b\xff\x5a\x2d\xe8\xd6\x5f\x29\x4c\x2a\x5e\xcd\x6b\x4a\x6f\x8e\x65\x23\xfa\x14\xa1\x39\x31\x71\xd7\xd3\x05\x5d\x01\xbb\xdf\xea\xab\xa5\xa0\x0f\x09\x10\x41\x4d\x6b\x33\x35\x43\x93\xc2\x4f\x2b\xba\x6e\x57\x77\x2d\xd5\xad\x64\xe6\x6f\x11\x32\x74\x19\x8c\x73\xb6\xe0\xa0\x31\x00\x93\x43\x86\x87\x2a\xf6\x7f\x4d\xb5\xe7\x93\x4c\xcb\xcf\x52\x22\x5a\xc3\x35\x5e\x9c\x1d\x9d\x02\xc1\x4f\x57\xe8\x65\x8c\x9f\x25\xf4\xf1\x0c\xfb\xd7\x18\x2e\x38\x8a\xc9\xb5\xb6\x99\xf1\x2f\x95\xa9\x3f\x08\xaf\x69\x19\x27\xba\x17\x31\x4d\xd4\x26\x08\x2d\x69\x4a\xf7\x8d\x43\xec\xba\x81\xee\x04\x46\x5d\x79\xf0\x7b\x42\xfd\xab\x18\xda\xa9\x29\x60\x9a\x8f\x65\x44\xce\xa1\x29\x72\x5e\xe1\x74\x43\x5c\x33\x8e\x88\xb2\x89\x2e\xfd\x3e\x25\x0d\xd0\xc2\x8e\x3a\x04\x11\xda\xaa\xbf\x4c\x56\x8b\xc5\x31\x01\xa6\xf4\x3c\x9a\xb6\x6d\x44\xf5\x56\x83\x5a\x83\x4e\x46\x88\x7f\x7f\xc5\x29\xe2\x13\xfd\x17\xd4\xc0\xb6\xd1\xc5\xc3\x95\xbe\x08\x76\x74\x0a\xeb\x8d\xc5\x54\x54\x63\x7c\xa5\x1e\x5f\x40\x0d\x5e\xfa\x17\x74\x58\x13\xfe\xd6\x4e\xda\xba\xb4\x1c\x6b\x4e\x59\x43\xf2\xb3\x05\x29\x9e\xea\x53\x8a\x3e\xa5\x6d\x24\x73\x5b\x44\xc3\x61\x89\x48\x6d\xb4\xb9\x1a\x0d\x16\xba\x12\x8e\xe0\x66\xb6\xed\xad\x5f\x9e\xd1\xda\x73\xf3\x7c\x85\xf0\x7d\xfa\xa0\x52\xe5\xd1\xa9\xf5\x2e\xd5\xe7\x23\x4d\x3e\x08\xa5\x69\x79\xf4\x48\xaa\x9b\xd0\x96\x0b\x3d\x6f\xe7\xd8\xd0\x58\xa6\x81\x26\xe1\x8c\xd8\xb1\x6b\x5b\x65\x89\x59\x51\xdc\x37\x7a\x18\x99\xc7\xf6\x21\xce\x43\x22\xcd\x6d\x3c\x04\xdd\x49\xf4\xae\x37\x64\x5c\xa1\x03\x39\x68\xac\xea\x8a\xd7\xcf\x10\x6e\xc9\xc1\x24\xfa\x28\x92\xef\x08\x8f\xa8\x05\x61\x10\xda\x34\x17\x54\xc5\x6d\xe4\x9d\x78\xb4\x87\x52\x68\xc1\xd5\x3b\x8d\x15\xe7\xea\x26\xfa\x55\x7d\x00\x6e\x21\x26\xf4\xbd\x44\x21\x7c\xfb\xf4\x4b\xf8\x6a\x43\x2c\x5b\x36\xf8\x35\x5a\x83\xb7\x74\xce\x69\x71\xd9\x0d\x01\x67\xc3\xc2\x68\xbb\x1d\x89\xb9\xd7\x3b\x02\xa2\x5f\xa3\x52\x04\x1a\xa5\xfa\x36\x2a\x02\x13\xdc\x6b\x19\x7d\x98\xde\x12\x5b\x78\x4b\xeb\x73\x27\x8e\xd5\x4b\x59\xd3\x75\x74\x32\x5e\xd0\xac\xaf\x39\xee\x04\x3c\x6c\xfc\x25\xe3\x1d\xb8\x5e\xf1\x64\x2d\x8d\x6b\x36\xea\xff\x21\x7a\x4b\x15\x0f\x87\xc4\xb0\x01\x66\xa9\xe2\xc1\x02\x75\xd1\x3a\x1f\x1d\x41\x4f\x7f\x6d\x3e\x12\xbe\x72\x18\xdd\x02\x17\xdf\x52\xa7\x2e\xdc\x06\x2b\xdd\xe0\x82\xf0\xdd\x25\xb7\x57\xa3\xad\x8b\xb3\x13\x61\x18\x6e\x81\x61\xae\xa9\xe3\xdb\xed\x25\xff\xf5\xf1\x13\xfd\x5d\x7b\x45\x06\x60\x73\xaf\xfc\xcb\x60\x67\xd1\xc2\x4a\x5d\x06\x8a\xfa\x09\x6c\x7c\x69\x97\x8b\x3a\x37\xb4\x2b\x79\x0a\x11\xe2\x26\x4b\x89\xb1\x7d\x93\x17\x88\x35\x61\x60\xc1\x8c\xef\xd7\xe8\x86\x50\xf7\xae\x16\x4e\x23\x3a\x46\x58\x36\x63\xbc\x55\xcd\x93\xd5\x05\x96\x71\xce\x9e\x28\x2c\x04\x97\x18\x23\x45\xd0\x43\x58\x7d\xd8\x1f\xad\x60\xad\x55\xac\x83\x42\xb8\x30\x73\x00\x68\xf1\x10\x02\x22\xf0\x1f\x4b\xf7\x29\x43\xfe\x9f\x3d\x22\xba\xec\xeb\xe7\xd8\x49\x7e\x2c\xbe\x8c\xbc\x97\xb4\x60\x05\x42\x9d\xc3\xc3\xbf\xb6\x18\xbb\x5f\x00\x83\x76\x3b\xc3\x19\x52\xe3\x0f\x0e\xab\x16\xf9\x1a\x40\xbf\x7e\x4e\x27\xb5\x46\x0b\x2e\x31\xfd\xac\x52\xdf\x82\x65\xe5\xe8\x26\x88\xda\xa9\x06\x55\x2d\x9c\xaa\xf7\x62\x6e\x08\x63\xa1\x35\xcd\x98\x76\xe2\x80\x7b\x4b\x3d\x82\xb3\xdb\x33\x31\xa7\xb5\x01\x62\x4e\xc2\xdc\xa1\x5a\x38\xf2\x00\x9b\x0b\xba\x18\xa8\xa4\x03\x5b\x7a\x2c\x54\xdf\x26\x92\x2e\x6b\x7a\xa3\x88\x36\xf7\xf6\xdc\x88\x4a\x72\x73\x32\x74\x45\x26\x5a\x34\x94\x9b\x73\x2a\x55\x10\x9b\x47\x86\x68\x07\x7e\x21\xf2\x65\xd0\x27\x8c\x82\xb2\x4c\xef\x20\x03\x69\x4f\xd9\xef\xd6\x27\x8e\x40\x0d\x7e\x21\x10\xa8\x65\x35\x90\xad\x00\x1a\xde\xaa\x67\xea\x5b\xf5\x5e\xbd\x50\x6f\xd4\x53\xf5\xab\x7a\xae\xbe\x51\x5f\xa9\xdf\xd4\x2f\xea\xa5\x7a\xa5\xbe\x50\x9f\xab\xd7\x91\x27\xb2\x5b\x6f\x78\x64\x54\x21\xea\x3b\xd7\x73\xe8\x07\x82\xca\x07\xf4\xef\xeb\x08\x16\xcd\xbf\xf3\xdf\x1f\xf9\xef\xf7\x60\xa1\xfe\xd9\xef\x28\xc2\xe7\xdb\xc4\xff\x1e\x72\x90\x93\x20\x3c\xd9\x35\xdd\x94\x4e\x9f\x3c\x79\x7c\xaa\xbe\x24\xd2\xb7\xed\x15\xf4\x0f\xe0\xbc\xbf\x47\xff\x40\x14\x59\xf5\x2f\xfc\xc2\xd3\x28\xa9\xcc\x55\x85\x2b\x71\x39\xca\x70\xa9\x3d\x8e\x9a\xd6\x74\x4d\x8e\xc5\xb1\x24\xb6\xfc\x0a\x40\x92\x2d\xbe\x1b\xba\x62\x13\x8d\x0f\x87\x2d\x9c\xd3\x74\xa0\xc0\xad\x09\xf9\xb8\x65\xb3\x93\x6d\xbc\xa9\xf2\x25\xcd\x4f\xc9\x57\x1c\xc7\x8d\x65\xd7\xf9\xaa\xdc\x2e\xa0\x86\xd9\x2e\xd2\x12\xa1\xaf\x16\x5b\x71\xdd\xdb\xa6\xe5\x55\xbc\xde\xae\xf2\x7c\xbd\xbd\xda\xac\xaa\x74\xbd\x4a\xb6\x34\xe0\x6c\x0b\xed\x40\x9e\xad\x6e\xe9\xe2\xb7\x4d\x5a\xa0\xad\x39\xbd\x58\x78\xf0\xb3\xf2\xa6\xe7\xe7\x37\x8f\x4e\xce\xcf\x2b\x38\xfa\x9c\x67\xe7\xe7\xcb\x99\x07\xaf\x2b\x0f\xde\x3d\xf4\xdf\x68\x4b\x25\x3e\x1c\xcd\xb6\xd3\x9f\xa9\xe4\xc9\xc9\xd1\x39\x2c\x0b\x66\xc1\xd0\x83\x3f\x56\x5e\x1b\x12\x79\x1f\x3c\xe5\x7d\xf8\x13\x82\x6f\xd0\xd7\xe7\xe7\x08\x5e\x54\x0d\xbd\x87\x3e\x31\x3d\xf4\x1b\x98\xdb\x49\xe8\x4f\x1f\xfe\xfc\x60\x3b\xf8\xf7\x6c\x12\x35\x9e\x7e\x72\xee\xcd\x02\xbf\x6e\xf7\x67\xfc\xce\x82\x87\x93\xe0\xfc\xfc\xf1\x96\xea\x89\x51\xcf\x96\xfe\xa7\xbf\xa2\xb7\x1e\x1c\xbf\xbc\xd0\x34\xc2\x1f\xfb\xfe\x47\xeb\x6a\xbd\xf0\x03\x1a\xe4\x6c\xb6\xf5\x86\x65\x3d\xa0\xc7\xea\x2f\x34\xca\xe0\x61\xb0\x1d\x3d\xa4\xaf\xd0\x2c\x3b\x94\x11\x08\x8b\x72\xc4\xf7\x7e\x96\x8e\x0c\xb9\xc2\x9f\x6d\x2b\xa6\x76\xfa\x56\x17\x78\x40\x73\x73\x01\xad\x49\xef\xf7\x0f\x95\xfe\xa5\x12\xeb\xfe\x12\xfe\xf4\x6c\xf8\x6f\x74\x30\x75\xe6\xd2\x03\x46\x70\x8b\xf3\xd3\x29\x15\xa4\x37\x97\xcd\x8a\x22\x5b\x11\x75\x72\x86\xe9\x79\xd8\x98\x46\xee\xde\x45\xe3\x9b\x0d\x61\x9c\xab\x4e\x77\xb0\x08\x0f\xa8\xec\x6d\x15\xdd\x7d\xfd\x3c\x6c\xbc\xfd\x93\x5d\xec\x40\x3d\xfb\xe6\xe9\x9b\x37\xcd\xd7\x34\x25\x4e\x01\x22\x23\x9a\xaf\xf9\x5d\x0b\x9e\x1e\x22\xa0\x16\x4a\x3f\x7d\xfb\xf6\xbb\xb0\xd5\x95\x92\x3a\xf8\xfa\xcd\x8b\xef\x9f\xbf\x6a\xbf\x41\xd7\x9f\x7d\xf5\xf5\x37\xad\xfe\x85\x3e\x6f\x04\xe6\xf7\xb7\x70\x1b\xd8\x66\xd5\x25\xfe\x1d\xe1\x26\x38\xf2\xd9\x3e\x6f\x9b\x2f\x8f\x18\xb9\x0a\x34\x99\x89\x43\x88\xdc\x6d\xbe\x58\xd0\x62\xc3\xcb\x6d\x1b\xf8\xe7\xe7\x8b\x87\x41\xb6\x6d\x00\x31\xbf\x31\x0f\xa8\xc0\x90\xe0\xa6\x9e\x68\x06\x22\x2f\xa5\xf1\xc0\x4e\xb1\x35\xfc\x49\xe8\x0d\x0b\x4c\xce\x03\x5d\xc6\x3d\x66\xda\x23\x94\xa5\x66\xa0\x08\xeb\xae\x25\xbf\x6d\x2f\x68\x64\x32\xae\x7a\x98\xad\x91\xd0\x1d\x6d\xe3\x45\x30\xe1\x01\xb8\x9d\xf3\x27\xd1\xf4\x67\x1a\xc1\x03\xdd\xcd\x1d\x3b\x0c\xfe\x3c\xfd\xf9\x6e\x36\x3c\xbf\x63\x37\xc2\x8c\x4f\xb2\x83\xf3\x0f\xc7\xec\x24\x88\x6e\x6b\x77\x45\x1a\x2a\x7b\x29\x6e\x69\x99\xf5\x03\xf8\x27\xde\xe8\x52\x2c\x7d\xd4\x78\x6e\x6b\xe2\xd6\x6e\x45\x0c\x49\xe5\x52\xf6\x11\xfc\xf9\xf2\x7c\x81\xeb\xb7\x74\xfd\xc9\xf6\xfc\xfc\xf8\x02\xfe\x7f\xee\xd8\x79\xbf\xd2\x76\x85\xc3\xe2\xec\xee\x54\xfd\x79\x27\x03\x98\x6c\xf5\xf8\x68\xbf\x72\xef\x01\xd0\xdf\x56\x1d\xd3\x00\xa1\x99\xbd\x93\x1b\x6f\x58\x1d\xfd\xf9\xb3\xcf\x1e\xff\xd9\x92\x3c\x03\x76\x11\xce\xe0\x01\x72\x56\x68\x0b\xe4\x11\xe2\xee\x3c\xbb\x8c\x8b\x67\x74\xbe\xfa\xc5\x90\xbf\x08\xc2\xde\x97\x67\x67\xa7\x27\xdb\xcf\x3e\x7b\xf4\xd7\x3f\xab\xd3\x93\x47\x8f\x0f\x8b\xed\x67\x7f\x7e\xfc\xe8\x24\xd8\x89\xe9\xa2\x39\x69\xff\xc1\xae\xae\xa0\x0c\xbf\x73\x0d\x42\x55\xf3\xee\x1f\x53\xf7\xde\x18\xae\x58\x62\x48\x0b\xef\xdf\xb3\xf2\x35\xba\xe3\x9a\xc3\x7f\xe8\x62\x93\xe6\x81\xf9\x2f\x6b\x1a\x60\x1a\x86\xe3\x60\xcb\x64\xcb\x15\xd8\x5b\xf1\xdb\xc9\x38\x99\x66\x30\x2d\xaa\xa6\x05\x93\xc1\x63\x6b\x55\x84\x13\x6c\xb7\x7b\x13\x65\xa3\xb4\xfc\xf1\xe5\x37\x51\xd7\xbd\x26\x61\xbb\xc3\x96\x26\x33\x09\xda\x5a\xf3\x3a\x66\x89\x07\xc3\xdf\xa6\xc6\x0a\x5e\xc8\xea\x19\x35\xa2\x6d\x9a\xe1\x3d\xfc\x0d\x6e\x13\x1b\xb1\xb0\xaf\xe5\x49\xb7\xdd\xf0\x3b\x9c\xd3\xae\xc7\xb3\x6d\x58\x18\x91\x36\xb1\xd9\x89\xa4\x38\xf1\xbf\x8a\x2a\xf5\x5b\xd4\x79\xa1\x7e\x89\x06\x6f\xa0\x0c\x61\xad\xbf\x63\x54\x40\xb7\x08\x05\x39\xa2\x13\xbc\xf5\x06\xe6\x06\xef\x12\x9a\xf3\x64\xa3\xcd\x0e\x1c\xbb\x91\x6f\x58\x59\xfe\x8c\x55\x23\xac\x9e\x22\x4e\xbf\x97\xc3\x1f\xcd\x8d\xc2\x30\xa2\xdd\x4a\x54\x5d\x4b\x83\x67\x5f\x7b\x52\x61\x9f\x6e\x73\x5f\xd5\x6e\x34\x7b\x63\x0a\xfd\x2c\xbf\x12\x85\x12\xe2\x34\x0c\xf6\x45\xc5\x7f\x68\xed\x59\xbb\x8d\x5a\x0d\xe7\xbe\x66\xeb\xe0\xdc\xde\x93\x45\x7a\x7d\xc0\x43\x88\x3e\x89\x3f\x39\x7b\x72\x4c\xf7\x67\x8d\x87\x07\xa9\x79\xec\xa9\xc4\x09\xdb\xdf\x9a\x97\x47\xac\x2f\xda\xa3\x69\x05\x9a\x6b\x75\x17\xcc\x47\x7f\xff\x7e\x6b\x06\xf9\x0f\xa0\x68\x7e\x4d\x5c\x44\xb3\x72\xd4\xbb\xdd\xf6\x3d\xf5\x5f\xf7\xb5\x35\xa9\x19\x97\x16\xa9\x0b\x1a\x52\x93\xb4\x2d\x8d\x37\xe2\x69\x13\x43\x54\xeb\x7e\x5a\x0a\x71\xc7\x96\x1f\xa0\x57\xf3\x08\x93\x69\x06\xa7\xb5\xdd\x4e\x19\xe1\x4a\xb3\xd9\x3a\x21\x53\x93\xf9\x18\xb7\xf5\x4e\xee\xaa\x75\x15\xc7\x2c\x7c\xda\x05\xa1\x09\x84\x61\x47\xf8\xff\xa0\x59\x3d\x64\x27\x56\xb9\x6d\x1c\x23\x94\xa9\xe9\x3e\x97\x8e\x35\xa6\x45\x22\xb3\x4b\x57\x55\x2d\xde\x88\xfa\xb7\xca\xa4\xdf\x61\xbd\xbb\x40\xad\x98\xe9\x7b\x8d\x0a\x4c\x60\xc0\x1e\xeb\x59\xc4\x90\x20\x36\xc5\x30\xec\x7b\x2a\x18\xdb\x50\x7a\x9a\x25\x19\x67\x36\x34\x27\xf8\xf1\xcc\xc1\x67\x85\x11\x29\xd5\x2c\xbe\x11\x1c\xec\xcc\xd8\x99\x68\x6b\x8f\xde\x31\x6d\xf8\x2f\x4c\x80\xfd\x4a\x43\x6a\x7b\x16\xea\x1d\x58\xcf\x83\x7a\x85\x31\xbf\xc4\x1f\x31\x7c\x88\xae\xad\xc3\x42\x5b\xbf\x2f\xc9\x80\x1a\x9b\xb4\x89\x3d\x84\xd2\x38\x7b\x22\xc1\xf6\x0f\x6c\x4c\xfd\x4f\x80\x33\xe4\x21\x5d\xe8\x52\xc0\x1f\x1d\x0b\x02\x6f\x6a\x3e\x9a\x39\x26\xfa\x2f\x65\x1e\x5d\x16\x67\x12\x32\x20\x6d\x35\xfd\x86\xcc\x19\x3d\xb5\x85\x9a\xd7\xeb\xa9\xab\x7e\x85\x88\x2c\x7e\x0f\xb0\xb7\x55\xfa\xa2\xcb\x45\x4c\xa4\xa6\x1d\x06\x67\xee\x50\x26\x12\x0c\x1b\xb9\x39\x18\x2b\x0b\xda\xc5\x3d\x76\xf4\xeb\x1d\x7c\xf5\x33\xcd\x55\x3d\xf2\xc3\x43\xd3\x5b\xf0\x6f\xb3\xa8\x1e\xfc\x27\x44\xa9\x79\xe7\xfb\xc7\x9d\x64\xcc\xa9\xf6\x8d\xdb\xbc\x52\x5e\x68\x18\xda\x3d\xb5\x3c\x54\x21\x02\x3c\x99\x2f\xd5\xe8\x61\xe8\xb1\x45\x27\x41\x8a\x96\x98\x98\xf2\x16\x6a\xbe\x88\x7e\x1b\x7d\x48\xde\xbd\x4f\xab\x97\xcd\x12\xdb\xed\x6f\xa3\xab\xfc\xf7\x9e\xa7\x79\x5f\xc9\xb2\xf5\x10\xb0\xd7\x5c\xa5\x67\x88\x67\x44\x1c\x7a\xc6\xe0\xc2\xc5\xa3\x2f\xac\xcb\x17\xdb\x5f\xa8\xfa\x7e\x5a\x0e\x30\xb5\x3c\xa0\x57\x7a\x40\x83\x08\xbc\x2c\xd6\xff\x65\xf4\xd2\x4e\xb9\x43\xf9\xbe\xd4\x96\x30\x5b\x1c\xbe\xaf\xa2\x57\x7d\x65\x5e\xb9\x65\x3e\xb7\xf3\xf0\x9b\x8d\xdc\x1f\x60\x3c\xb0\xdd\xa4\xf3\xc0\x10\x47\xaf\xf3\x32\xc5\x38\x26\x3d\x58\x28\xea\x86\x8c\x69\xd2\x3e\x21\x6c\x32\xaa\xa6\x18\x6a\xec\x48\x68\x68\x02\x07\xac\x4c\x3f\xe5\xd0\xf4\xb5\x96\x72\x00\x7b\x5e\xdd\xab\x49\x7d\x89\x54\x55\xc9\xbe\x1e\x1e\x1e\x9e\xfe\xf9\x70\xef\x5b\x76\xb3\x6d\xe3\x52\xf6\x05\x30\x1a\x53\xb7\x8f\x92\x32\xa1\x96\xcc\x20\xae\x9e\x31\x83\x51\xff\x8c\xfe\xd0\x2c\x65\xd6\xe3\xd4\x7a\x2a\x89\x38\x6a\x6c\x4c\xfe\xf7\x0e\xe4\x9e\x31\xee\x1f\xa0\x83\xbb\x27\xa7\x87\x98\xda\x67\xec\xd2\xfd\x9c\xa3\x83\x20\xda\xd9\xde\x16\x09\x48\x39\xe6\x51\x22\x9e\x7d\x9f\xfb\xdf\xa9\x24\x98\x1c\x9d\x86\x59\xfd\x20\x0b\x26\xa7\xe1\x73\xab\x1b\x7b\x4e\x25\x8e\xea\x9b\x2c\x08\x4f\xc2\x4f\x0f\x0b\x7c\x74\xba\x7f\x8d\xf8\xf5\xae\xdf\x72\x9e\x0f\xb3\xc4\x59\x05\x15\x47\x2e\x6d\x02\x6b\x8c\x04\xe6\x18\x44\xa3\x8c\xf7\xcc\x2c\xa4\xcd\xb0\x30\xb4\xd6\x7d\x22\x07\x34\x23\xa1\x11\xe4\xb8\x89\x3f\x36\x14\x36\x46\x74\xad\x04\x4b\xdf\x71\x0d\x21\x18\x26\x68\x75\xc1\x65\x63\xc3\xc0\x16\xa6\x50\xd6\x29\xb4\x6a\x17\x1a\x6f\x60\xcd\x12\x71\x70\x59\x02\xb9\xda\xea\x20\x9d\x94\x3e\xde\xa9\x15\x47\xfb\xd0\xc5\xbe\x43\xd7\x57\xe6\xfa\x14\x42\xcd\x2a\x08\xbf\xda\xa9\xcc\xe0\xb8\x3d\x51\x8c\x7c\x09\xa6\x22\x7f\xd8\xfd\xaa\x83\x14\x3b\xfb\xa2\x8f\x39\x33\x46\xa6\x09\x1b\x99\x5a\x5a\xec\xb2\x52\x5e\xf4\xc9\x83\x53\x1c\x07\x8a\xf6\x73\x07\xe5\xd2\x82\xfc\xb2\xdd\xbe\x3a\x3c\x7c\x65\x92\x8f\x11\x92\xc7\x89\x61\x52\x91\xb1\xdd\x9e\xec\x8a\x2f\x6a\x67\x33\x36\xc1\xda\x6e\x7b\xb0\x27\xbc\x6d\x17\xd6\x00\xf4\x54\xd2\xb4\x99\x07\x9d\xb4\x69\x26\xb9\x5d\x1a\xdc\xed\xec\x94\x54\xea\x2b\x99\x0f\x82\xa9\xc0\xea\x58\x30\x35\x06\xd9\xf4\x4e\xe6\x47\xa6\xe5\x73\xf1\x92\x53\xcc\xce\x35\x66\x95\xe0\xfc\xfe\x6f\x35\x56\x68\xda\xbc\xb5\xc2\x36\xd3\x26\x29\x60\x5a\xce\x53\xe4\x96\x54\xad\x92\x12\x91\x3e\x53\x83\x5f\x90\x3c\xc7\x40\x15\x6f\x01\x97\x73\xc4\xc2\x4c\x5a\x04\x3a\x81\x3f\xa7\x5d\xe8\x10\xc8\x19\xbb\x69\x4b\xb4\xcf\x65\x9a\x2c\x26\xa9\x50\xc8\xec\x67\x1a\xa6\x18\x34\x1b\xf4\x44\xf7\xb9\xf1\x7a\x6f\x6e\x69\x76\x6f\x0e\xb8\xa4\x3a\xd8\x64\x45\x32\xcf\x2f\xb2\xf4\xf7\x64\x71\x90\xdc\xac\x11\x70\x13\xce\xed\x07\xde\x30\xe1\x69\xac\x55\x5c\x5d\x76\x80\x58\x76\x4e\x05\x74\xc2\x41\xd4\xd8\x0f\x81\x60\x6f\x41\x0c\xc5\xbc\x7a\xbe\x81\x86\x83\x68\xa2\x52\x3d\x8f\x34\x22\x7c\xc3\x29\xde\x80\x42\xad\xc2\x29\xe1\x17\xfe\x3f\x03\xf5\xbd\x35\xbb\x49\x34\x89\xcc\xf8\x9f\x76\x9b\x24\xd1\x34\x69\x83\xf4\xce\x65\xfb\xc4\xc4\xe8\x51\x60\x9b\xa8\x4e\xad\x0a\x2e\xd9\xa9\x17\x11\x87\x2f\x47\x72\x86\xde\x8e\x7b\x9e\xee\x78\x7d\x7c\xd6\xaa\x43\x10\xe7\xe9\x76\xfb\x57\xf9\x39\xe5\x5b\x7e\xd1\x75\x82\xe3\x74\x59\xda\x1d\xc2\xe2\x3c\xf7\x21\x77\x17\xda\xab\x9a\x01\x1e\x27\xac\xce\x72\x8c\x18\x83\x6c\x18\xbd\x80\xa3\x9f\x31\xe6\x79\x2c\x4d\x7f\xca\x2d\x37\xbc\x32\x39\x55\x54\xc3\xd4\x88\x23\x82\x42\x65\xce\x95\x54\x4e\xe2\x3d\xf5\x9e\x85\x31\x82\x04\xca\xe8\xce\xb1\x73\x0d\x3f\x3b\xd1\xb1\x76\x5f\x97\xc9\x66\x91\x87\xa9\x18\x94\x85\xb7\x95\xaa\xc1\x1a\x91\x2d\xc0\x7a\xe0\xd7\xa8\xc9\xc2\x3b\xef\xcc\x0b\xef\x16\x69\x11\xba\xa6\x5b\x3a\x18\x0c\x9c\xc9\xbd\x83\x9e\xf7\xf4\x78\x68\x1f\x17\xc9\x75\x9a\x6f\x4a\x3d\xfa\xc6\xb7\xff\xde\x57\x88\x78\x62\x6b\x05\x18\xde\xb1\xc4\xb9\x8f\xdb\x65\xd3\x27\xe8\x1e\x5b\xda\xb9\x64\xfa\x78\x16\xf9\xc9\xf4\x53\x04\x93\x9f\x7e\xc6\x09\x76\x82\x76\x21\xef\xdf\x91\x58\x0f\x3c\x9a\x71\xd4\x56\xfa\x04\x76\x61\xb8\x18\xb2\x63\x45\x6d\x7a\xf0\x29\x82\x9f\xb1\x10\xfb\xde\x5e\x34\x53\xc1\x79\x99\xc4\x3a\xe4\x57\xa6\xa6\xc7\xc1\x84\x9b\x42\x24\x2d\x6d\x91\xc7\xc1\x63\xd1\xd7\x68\xc8\x5d\x9e\xa0\xc7\xb8\xfc\x33\x95\x3a\x0d\xc2\x47\x0f\x7d\x0f\x62\x65\xa9\xeb\x31\x87\x53\x58\x2c\xcc\x5d\x80\x6f\x3f\x93\x6f\xff\x73\x46\xbd\xff\x4b\xa7\x40\x88\x1f\x10\x24\x8d\x06\x77\x46\x60\xdf\x61\x71\x60\x2e\x89\x3a\x11\x49\xfd\x91\xb5\x7f\xbe\xad\x46\x3c\x05\x5a\xed\x88\x4a\x24\xed\xa9\x2f\xd5\xa3\xeb\x03\xce\x6f\x43\x1f\x45\xb8\x0b\x09\x7d\x5e\xd8\x34\xa8\xec\xfc\xbf\xf6\x0b\x0e\xd3\xc5\x37\x85\xd1\xe7\xf9\xc4\xb0\x28\xa3\x17\x3d\xca\x82\x23\x6b\xd8\xc8\x0b\x83\x60\x55\x8e\xe6\x1a\x01\xa9\xb9\x8d\xc2\x79\xe2\xae\xd6\x63\x8e\xde\xb1\xd4\xc0\x03\xe5\xc6\xc7\x85\x1b\xfd\x66\xc0\xc2\xcf\x4f\x3a\x8e\x64\x83\x93\x5e\x2f\xdd\x3f\xea\x4a\x4d\xbd\x13\x9d\x4c\xb7\x5f\x5f\x1b\x83\x59\xc3\xd1\xc3\x6e\xb0\x21\x75\xf7\x7f\xae\x75\x4f\x54\x56\x8b\xda\xa1\x27\xc0\xb4\x7e\xdd\x9f\x31\x54\xaf\x42\x0f\x4a\x9b\xd7\x22\x05\xe7\x66\xbb\xed\x95\xe9\xf4\xc9\x73\xb4\x6c\x13\x89\xc9\xe0\x88\x4c\x3b\xa5\xb5\x5d\xc5\xee\xa1\x2d\x3c\x4a\x75\x76\xed\x28\x33\xa1\xd5\x1c\x39\x99\xa4\x79\x9e\x80\x13\xc3\x7c\x85\x48\x2b\x36\x04\x1a\xf7\xe4\xc1\x04\xe4\x22\xa1\x8d\x81\xb9\x1d\xf0\xed\xcf\xfa\x96\xe0\x0e\x29\xc6\x73\x0b\x5f\xc4\xc9\x78\x0f\xeb\x97\xee\x8b\x33\x22\xf3\xbc\x07\xee\x3b\x01\xa3\x1a\x06\xa5\xa9\x7f\xeb\x22\x3e\xdb\x8e\x32\x82\x68\xd7\xb2\x75\x3b\xb7\xdd\xe6\x16\x20\x4d\x55\xc3\x53\xae\x6c\xe8\x1d\x79\xe1\x80\x76\x36\x2c\x33\x3b\x78\xa5\x36\x97\x94\xf9\x61\x34\xc2\x34\x57\x0d\xdf\x44\xac\x7b\xd0\x26\xb9\xcf\x8f\x3e\x85\x69\xb0\xa7\x35\x66\xdc\x13\x33\x9f\x38\xd3\xf4\x9c\xa4\x3d\x7e\xe8\x83\x81\xcb\x08\xb4\x6c\x67\x9b\xf6\x8e\xb0\x53\x52\x17\x11\xe6\x3b\x9e\x78\xce\xa1\xe6\xf5\x20\xfa\xab\x06\x9b\xa7\x6e\xe1\x0c\xb3\x37\x71\xe6\x75\x84\x7c\x16\x03\x0e\x74\x78\xe5\x5a\x20\x8e\x2f\xc6\x72\xb1\xa4\x01\x2d\xa3\xe5\xf4\x42\x8c\x8e\xca\xc9\x72\xff\x16\xbb\xe5\xb4\xf4\xcb\x36\x75\x3a\x38\x1d\x5f\x46\x17\x11\x1c\x0c\x39\xf0\x0e\x01\xfd\xe0\x12\x41\x96\x9d\x81\xec\xec\x16\xa7\x46\x2e\xa3\x69\x3c\xb9\x72\x8e\xf3\xf0\x6a\x84\x89\xe7\x6b\x8e\xe2\x7d\x2d\x9d\x9b\x47\x57\x62\xe4\x7b\x65\x8c\x7c\x57\xd1\x9c\xa8\x5d\xf6\x0a\x5b\x88\xf9\x4d\x14\xfd\x80\x54\xf0\xa7\x33\xb5\x6e\x3c\x78\x34\x53\x4b\xc4\x18\xbe\x72\xb4\x4c\xd3\xc5\x8c\x06\x3b\x1c\xc2\x52\x8a\xfe\x4f\x83\xa6\xba\xd7\xd1\x22\x3a\xa1\x7d\x76\x29\x59\x77\xad\xc9\xf1\xd2\x91\x2d\x0e\x87\x6b\x2a\xcf\x2e\x12\x77\xe8\x40\x34\xfd\x81\x16\x6d\x3d\x33\xe6\x24\x86\xe8\xb8\x66\xf3\x4b\xbf\x65\x9a\x1c\x80\x40\x47\x9f\xa4\x77\x01\x3a\x7a\xea\x7a\xba\xfb\x1f\xeb\x14\x50\xf6\x3d\x6b\x33\xe0\xb5\x19\x34\xd6\x86\x08\x63\xea\x35\x55\x75\xcd\xe6\x61\xd2\xa3\xa5\xd3\x23\x8c\x61\x4d\x67\xd6\x92\x73\x57\xd3\xb8\x0d\x60\xaf\x8f\xa2\x94\x26\x93\xb7\xdb\xfa\x3f\x90\x24\xfc\xe4\xf0\x70\x7d\x5c\x9c\x45\xb4\xb3\x7a\x0e\xb8\xda\x4d\x01\xe6\x9d\x6b\x26\x86\x4a\x5e\xa5\xf7\x90\xc6\x09\xbd\x41\x0f\x5a\x9c\x40\x7d\x58\x7b\xc4\x54\x8a\xfa\x8b\x48\x68\xf9\x5e\xc8\xe7\x3a\x07\xd2\xeb\xd9\x24\x47\x40\x98\xbc\xb6\xae\x26\x92\x76\x9a\xa8\x44\x11\x02\xab\x66\xca\x6d\xaa\x65\x10\xe3\xb7\xfd\xc2\x26\x8e\xfd\x71\xd2\xce\xba\x91\x4b\x8a\x2f\x37\xb9\x06\x08\xe5\x22\xca\x6c\xb0\xa0\x14\x49\x6f\x14\x47\xa4\x1f\x30\xe1\x1c\xf1\x93\x5d\xd0\x77\x7c\xa1\xbe\x13\x4e\x96\x15\xe6\x20\xc0\x64\x7a\xc2\xbb\x2c\xaf\xc2\xb4\x23\x09\x95\xc0\xc1\xc2\x14\x3c\xed\x71\xd2\xaa\x05\x24\x98\x92\xc6\x38\x80\x57\x5a\xe6\xe0\x85\x61\x9b\x53\x36\x90\x76\x73\x53\xb2\xcd\x30\xf2\xfd\x8b\x65\x56\xc2\x59\xa6\x08\x62\xe9\x27\x0f\x9a\x43\x81\xf7\x49\x7d\xe6\x49\x94\x4b\xe4\xc0\xe1\x9a\x73\x10\x0e\x83\x4c\xc0\x14\x5a\x06\x9a\xfb\xd6\xb8\x7a\x1c\x7a\x1c\xb6\xbe\x72\x58\x57\xb8\x6b\x6b\xd6\xf5\x8f\xd6\xe1\x57\x2e\xab\x00\xd7\x37\x96\x91\x83\x6b\xd9\x6e\x41\xcb\xd7\x07\x8a\x98\x00\x03\x89\xc4\xd9\x45\x7f\xfd\x26\x7e\x50\xc2\xc7\xee\x1e\x08\xe5\xcf\x19\x3e\x55\xf2\x11\x92\x47\x75\xbc\x98\xc6\x8b\x9c\xf3\xa5\x45\x50\x18\x70\x4d\x6d\xb7\xc4\x9b\xab\x55\x88\x17\x68\xbf\xfd\x4e\x9e\x5b\x9b\xbe\xa8\xc5\x33\x2b\x88\x88\xa8\xef\x27\xac\x1a\xb1\xe3\xc6\xd1\x18\xe8\x94\xf0\x7e\x53\x4c\x18\xb4\xbd\xcb\x82\x5a\x4a\x48\x33\x55\xc5\x45\x23\x0e\xa8\x15\x9b\xd6\x41\xb2\x39\xf2\xad\xbe\xc6\xc6\xbb\x6c\x28\xa0\x4c\xbe\x34\x6e\x23\x5d\x10\x0f\x94\xe7\xbd\x71\x45\x21\xe5\xfa\x8d\xe8\x4b\xd8\x84\xed\x7b\xff\x55\x33\x13\x3e\x1c\x18\xbe\x42\x93\x5f\xb0\x21\xd9\xb6\xbe\x66\x84\x39\x18\xf8\x26\x5a\x72\x32\xba\x2c\x92\xe5\x76\xfb\x6f\x7a\x10\xbf\x63\x07\x39\x8e\x3d\xc9\xf2\xf8\x7e\x9a\xd3\x48\xeb\x39\x2c\xcd\x4e\x99\xdb\x8f\x17\x26\x0e\x4c\x2b\x3b\x7a\x09\xe4\x3f\xe8\x21\x87\x88\x37\x03\x9b\x66\x17\xbc\x87\x4d\xa9\xac\x5f\x19\xd5\x8d\x89\xf3\xba\xaf\x6f\xae\xa3\xa3\x7b\x67\x2b\xe0\xe9\x50\xf5\xbd\x1e\x04\xe7\x6c\x08\xdb\x26\x81\x1f\x65\xc3\x39\x36\x9c\x19\xe4\x99\xf7\x7f\xbd\xed\xf6\x71\x43\xc4\x2e\x2c\x79\xd2\x43\x44\x58\x12\x41\x49\x2f\xfb\x22\xef\xd9\xf3\x45\x72\x4a\x70\x4c\xb5\x4b\x4e\xac\xd6\x37\xfa\x0f\x66\x3b\xd7\x29\x1a\x10\x5b\x87\xe6\xb8\xaf\xf4\x4d\x5f\x69\xb1\xdf\xf9\x1f\x2e\xa5\xe3\x8c\x68\x03\x78\xd7\x8f\xaa\x9d\x62\x0b\xa8\x4e\x1b\x9d\xaa\xf6\xb5\x49\x2d\xa0\x86\xba\x7e\x70\x82\x4c\xee\x73\xe6\xb2\x8b\xae\x06\x2d\x60\xe4\xd2\x26\xf0\x74\xca\x67\x13\x96\x76\xee\x77\x78\x34\xb8\x21\x05\x12\x91\x76\xee\xf7\x49\x17\xa7\xd5\xd1\x29\x8a\x24\xbf\xb5\x0a\xd4\x61\x4b\xa6\x08\x45\x94\x0d\xab\x30\xe3\x82\xc4\x84\x77\xea\xaa\x8d\x75\x4e\xc6\x15\x07\x28\x8a\x1e\x05\x49\x5b\xc1\x9b\x40\x99\xb8\x58\xdc\xf3\xf5\xe9\x47\xbe\x5e\xb5\x87\xd1\xa0\x06\x22\xdb\xd1\xf1\xd1\x11\xc8\x9f\xb1\xa9\xa5\x68\xd4\x72\xf1\x47\x6b\x19\x0e\x8b\x27\x55\x7f\x25\x6c\xaf\x60\x60\x9b\x98\x93\xc8\x81\xf4\xdf\x58\x02\xf6\xf6\x20\xcd\xee\x8a\x78\x91\xe6\x21\x82\xc9\x00\x33\xbc\xcb\x6f\x70\x4d\x4c\x79\x82\xdf\x35\x71\x8c\x1f\xf2\x62\x81\xeb\xf4\x2a\xbe\xc0\xc3\x5d\x50\x93\x64\x6f\x67\xd1\xc6\x7f\x1b\xd4\xb5\x95\x9b\x77\x57\x88\x1d\x4a\xf4\x49\x42\xe4\x53\xb7\xf8\x8a\x8b\x3b\x41\x73\x8d\x71\x43\x59\xf7\xaf\x41\x7a\x31\x53\xbd\x54\x4f\xb5\x6a\x88\x3a\x16\xdd\xa3\xfb\xe7\xb8\x4c\x3f\x3a\xde\xac\x03\xcd\x9e\x08\x83\xbe\x16\x3b\xec\xda\x9e\x3f\x03\xd5\x92\x47\xd7\x7e\xc5\xf9\x7f\x98\x2c\x2c\x8c\xcf\x5a\x98\x9a\xab\x31\x55\x4a\xad\xbd\x23\xf6\x17\x1e\x3a\xb5\x15\x80\x2b\x44\x8d\x5e\x1b\xbf\x6d\xe2\x39\xb5\x08\x55\x6b\x17\xd9\xba\xe3\xb5\xea\x0a\x62\xa3\xef\xd5\x37\x7e\xa0\x9a\x4a\xa9\x7e\x4b\x9a\xd3\x7b\xd4\x5c\xfd\xfe\xeb\x5d\xd5\x78\xaf\xd1\x50\x7c\x80\xb3\x2c\xfa\xe4\x4f\x50\xf3\xc7\x67\xc4\xbd\xff\x49\xf6\xbd\x63\x1e\xd4\xdc\xf0\x28\x0f\x19\xc2\x76\x1b\xcb\xee\xdf\xf2\x69\x28\x09\x3c\xb6\x92\x3d\x44\xed\x89\x30\x94\x4d\x74\x7a\xd0\x16\x16\x21\x72\xd4\x32\xc4\x4d\x34\x32\x39\x0d\x1f\xb5\xcd\xbb\xda\xda\xe4\xde\x81\x31\x96\x3b\x6e\x5b\x3a\x35\xd5\xf9\x2c\xad\x17\x95\xbe\xf7\x91\x51\x4b\x51\x33\x6c\xfd\xe1\xbe\x51\x12\x3e\x16\x24\x3b\xd8\x8f\x64\xeb\x99\x30\x36\x76\x2c\x47\xde\xb3\x68\x26\xa4\x4e\xb3\x53\xb5\x0d\x80\xf4\xab\xa8\x3a\x5d\x92\x10\x6f\xed\xe9\x87\xca\xae\xab\xcf\xa8\x40\xe7\x14\x8e\x3e\xa3\xd0\xfa\x8c\x44\xac\xf2\x07\x27\x93\xd6\xea\xb0\xa6\x43\xa2\x22\x41\x2a\x1d\xe9\x00\xd8\xeb\xc2\x15\x73\x9b\x67\x53\x2f\xf4\x74\x48\xe6\x75\x61\xb7\x3b\xdd\x8b\x4a\x23\x72\x75\x1b\x78\xcc\xa1\xd8\xad\xd2\x40\xe2\x5d\x21\xe0\x64\x3e\x37\x56\x94\xca\x49\xb2\x1f\xd5\x7a\xaa\x9d\x51\x1e\xbd\x87\x01\x24\xe2\x12\x3f\x23\x4e\xeb\x5d\x3c\x7f\x5f\x36\x54\x0f\x49\xd4\x13\x43\xef\x7d\xc5\xbc\x26\x7b\x61\x37\x52\xf1\xe9\x3a\xb3\x46\x86\x2e\x76\xbc\x24\xf2\x29\xcf\xe6\x09\xbb\x82\x2d\x1b\x01\xa1\xc4\x05\x26\x19\x5d\x25\x57\x79\x71\x7b\x78\x88\xdc\xe1\x03\xb8\x99\x6d\x90\x7d\x70\xc3\xd1\xdd\x56\x75\x58\xbd\xc1\xc9\x78\x75\x78\x18\xd7\x0e\x80\x2b\x78\xec\xe9\x60\xef\x70\xc0\xa9\x8c\xeb\xf1\x29\x2b\x6d\xaa\x7c\xfd\x2a\xfb\x02\x11\x37\x83\xbb\x14\xf1\x97\x44\x7e\xc0\x61\xb3\x57\x88\xb5\x3d\x99\x5b\xb3\x87\xa5\x5f\x67\x14\x0d\xd3\x09\xba\x1e\xae\x0d\xa9\xc9\x59\x3d\xd6\xd1\x5d\xbc\x68\xc4\x4f\x47\x0f\x0c\x81\x62\x9d\x55\x07\x4e\x44\x0f\xc8\x2f\xfa\xd2\x41\x6b\xc0\x4b\x6d\xc8\x33\x3a\x27\x1b\xc1\x98\xd3\x49\xa2\x57\xfb\xf0\x70\x0d\x42\x9b\x4a\x20\x1b\x95\x3e\x54\x43\xa6\xf6\x4d\xd7\xeb\x60\x3d\xf0\xb7\x43\xda\x0a\x3a\xe0\x9c\x58\x6e\x2a\x9b\xd4\xd3\x18\x72\xec\xba\x88\xba\x03\xdd\x94\x9b\x94\x01\x1a\x13\x04\xe3\xe8\x89\x10\xbf\x92\xcc\xbe\x18\x47\x1d\x64\xae\x9f\x0a\x28\xc6\x12\xd2\x56\xc7\x54\xa4\xc1\xae\x70\x2c\x10\x2f\xc8\x09\x7c\x45\xfd\x55\xc0\x8d\x88\x93\xd4\x9f\x41\xa8\x47\x2c\xbf\x2a\xf9\x8a\x18\x65\x60\x33\xe9\x0e\x78\xdb\x3e\x3c\x36\x71\xaa\x87\x43\x11\x04\x97\x03\x7f\xb0\xda\x6e\x07\xd6\x63\xac\x43\x51\xd7\x63\x01\x50\x22\xa5\xa5\x34\xa2\x57\xb8\xb7\xe0\x3c\x4a\x11\xea\xd7\x2d\xd7\x13\x3f\x7f\xb0\xda\x29\xa4\x0b\xeb\xa9\x62\x4e\x9f\xa7\xdb\xad\x03\x47\xba\x36\x94\xef\xad\x6b\xce\xd4\x20\x47\xfe\xee\x0d\x75\x8a\x51\xc2\xc9\x7b\xce\x47\x36\x87\xc4\x54\x15\x24\x33\x3a\xad\xd1\xa4\x32\x29\x7e\xc3\x6a\x46\x0b\xaf\x3d\x3f\xab\x20\x84\xe5\x8a\x69\x1e\x4d\xf4\x74\x77\x3d\x32\x6d\xb7\x73\x27\x38\xdf\xf5\xf5\x7a\x90\xef\xac\xdf\xe0\xba\x11\x29\xde\x04\x79\xeb\x21\xe9\xa7\x53\x4f\xc7\x39\x47\x36\x7a\xa4\x88\x53\x2e\x2a\x82\x4d\xf3\x3c\x39\x10\xd4\x80\x13\x48\x17\x5e\x78\x33\x85\x2f\x39\x1e\x91\xf2\x90\x3d\xf1\xa3\x1f\xfe\xca\xac\x16\x7f\x28\x29\x49\xe9\x43\x93\xae\xb1\xfd\xb1\xf9\x6e\x06\xc9\x90\x07\x63\x37\x16\x04\x17\x91\x4e\x8c\xdb\x9d\xb6\x6c\xa7\x24\x4b\x5c\xcf\xbb\x54\x72\x58\xd4\x33\x29\xa9\x1f\x3b\x33\x5b\x5d\xba\xf9\x43\x75\x1a\x84\x3a\x85\x80\x99\x5c\x37\x6c\x9e\x2d\x9d\xed\xc1\x32\xb9\x54\x23\xfe\x90\x92\x63\xd6\x8d\x1d\x89\xec\x68\x50\x79\x55\x44\x0b\xb2\xf7\xe3\xac\x9d\x75\x2d\x81\xb4\xbb\xec\xcf\xa6\x31\x36\xc9\x05\xea\x0a\x4d\x90\xb8\x60\x92\xb4\x73\x78\x64\x26\xa4\xbd\x1e\x7f\xa6\x13\x87\x06\x75\x16\xcd\x4c\x67\x8b\x25\xe4\x36\x8d\x87\x1e\xa0\xd0\x9b\x71\xab\x6c\x69\x94\xd5\x55\x72\x9a\x13\x55\x72\x38\xd7\xba\x43\x88\xee\xa2\x12\x89\x1f\x14\xd4\x85\xa1\x84\xe5\xcb\x7b\x82\xd1\x4f\x6a\x80\x45\x52\xbc\xb0\x40\xe0\x7c\x1c\x8d\x46\xfa\x37\x5a\xa7\x6b\x78\x3d\x62\x95\x54\xcf\x5c\x27\xee\x5c\x3f\x62\x5f\xfa\xe9\xe3\xd9\xb8\x90\x69\x8d\x62\xc4\x19\x54\x34\x97\x7c\xe1\xce\x72\x16\x61\xed\xa7\xa7\x3f\x27\x33\xfa\xce\xa0\x09\x7a\xf2\x88\xef\x81\x26\x02\x85\xd5\x39\x41\x90\x83\x2e\x74\xf1\x9b\xf6\x64\xa5\x93\x22\xec\xdf\xbf\xcd\xf2\xd4\x2f\xb3\xdf\x77\x08\x51\x6d\xe6\x2c\xa5\x79\x64\x4d\x9a\x84\x34\x40\x20\xf2\x9d\xfa\xd0\x00\xd0\xda\x30\x41\x19\x43\xac\x6e\x0c\x51\x27\x3c\x0f\xcd\x08\x04\xe6\xf1\x76\x7b\x1f\xd8\xc4\x1c\x7e\x80\x43\x8e\x21\x32\x66\x23\x44\xe4\x2a\xea\x8f\x21\xd0\xd0\xc6\x65\x10\xb4\x4b\x68\x53\x5c\xb5\x53\x84\x9c\x9d\x4e\xba\xbd\x0c\x89\x6d\x61\x95\xd7\xc6\x4d\x57\xcc\x61\x07\x8e\x8e\xca\xed\x76\xd3\xc8\xc6\xc0\x31\xbb\x76\x1c\x76\xe5\xec\x34\x90\x3c\x7c\x1c\x02\x9c\x4f\xa3\x98\x43\x89\xba\xb7\x45\xe3\x76\x1c\x6b\x17\xe9\x9c\xcd\x44\x9a\x13\x81\x67\xf5\x5c\xb8\x77\x66\x17\x61\x35\x0a\x02\x35\xbd\x89\x36\xdd\x4d\x84\x12\xc8\xf6\xc2\x7d\x37\xe0\xdb\x19\x04\xea\x40\x74\x21\xbb\x47\x84\x44\x35\x4e\x31\x1d\xf9\xa3\x6a\x85\x44\x22\x2a\xee\xcb\xfe\xa0\x60\x08\x23\xd7\x62\x22\x6a\xaf\x11\x62\x62\xe0\xb4\xe8\xb2\x21\x07\x07\x4f\x56\x69\xf6\xfe\xf8\xec\x09\x73\x89\xc4\x63\xe9\x5f\xc3\x77\x1d\xc7\x9f\x9c\xc5\xe0\xbc\x84\x61\x61\xeb\xf0\xe8\x13\xc3\x8e\x7f\x02\x06\x26\x8b\x96\xfb\x5d\x47\xf8\x80\x2c\xf6\x96\x88\x3d\x71\xdc\x86\xc5\x59\x21\x61\x4d\xe9\xca\x90\x56\xb5\x97\x6d\xde\x1d\xb0\xd0\xef\x70\x50\x25\x28\x77\xad\xa2\x3b\x25\xb5\x30\x31\xe0\xa0\xbc\x7b\x3a\xa2\x0d\xb0\x39\xf8\xab\xf4\x03\xa9\x52\xd9\x1a\xc8\x43\xa2\xe7\xd3\xf5\xcd\x98\x93\xa6\x86\x08\xe7\x39\xd6\x59\x1b\xc3\xd1\x67\x9e\x44\xfd\x7b\xe3\xcc\x39\x7d\xe1\xb1\x76\xca\x4e\xbd\x02\x4f\x1f\xe3\x20\xfb\xe1\x32\x25\x0e\x91\xbe\x4e\xa2\xc7\xac\x75\x73\x38\x3a\x23\x23\xa4\xd2\x15\xb2\x99\x44\x83\x7d\xbd\xe5\xd7\xd6\x00\x9b\xca\x5f\x56\x57\xab\x37\x49\x91\xc6\xab\xf4\xf7\x24\x1a\xec\xfd\x10\x8b\xed\x7e\xc7\x23\x8d\x8e\x69\x84\xc7\xda\xc6\xa2\xc5\xc2\x71\x01\x4c\x5d\xc5\x42\xe5\x6f\xf3\xe2\x8a\xdb\x58\x44\xde\x71\xcc\xe1\x97\x7a\xd9\x6f\x2a\x6e\x12\x5b\x1e\xff\x7c\x32\xfa\xcc\xd6\x2e\x53\xab\xdf\xa1\x18\xcd\x32\x27\x15\xa1\x4e\x3b\x13\xcf\x8f\xf0\x16\x80\xf6\x0a\xa1\xab\xb5\xed\x1a\x57\x5c\xbd\x31\xc2\xdb\xd2\xca\x71\xe9\x45\x42\xdb\x06\xe0\x39\x18\x74\x40\x80\x10\xc5\x15\x8d\x5b\x97\xd0\x13\xf6\xd9\xb3\x15\xed\x6a\xe2\xc5\xc3\x2c\xbe\x26\xd0\xe7\x1f\xac\x5c\xe7\x73\x7a\x41\x5f\xcf\x51\x9c\x39\xd1\xc1\x49\x30\xca\x69\xb8\xbc\x8b\xd4\xbe\xcc\xb9\x60\x73\xba\x49\x6d\xe5\xe9\x3a\xbd\x49\x56\x46\x44\x22\x8f\xc4\xb5\xe6\x85\xa4\xf6\x01\x1b\x06\x35\x05\x77\x91\x7d\xcc\xe4\x49\x91\xac\x52\xec\xd0\x97\x9c\x5f\xf4\x3b\xc8\x34\xe4\x05\xed\xc6\x37\xe9\xef\x04\x61\xdf\xe9\x12\x78\x9c\x1a\x91\x7a\xa3\xba\x67\xfa\x59\xda\x1a\x91\x2e\xab\xf2\x5a\xc2\xcf\x9f\xd1\x84\x3f\xb7\x0f\x4a\xfb\x92\xdd\x20\xb5\x3f\xd0\x92\xd7\x57\x9b\x6d\xae\x83\xbb\xce\x68\x4e\x77\x69\x77\x5a\xf5\xa6\xa3\x6e\xee\x95\x7b\x60\x6e\xd7\x70\x0a\x67\xae\xac\x5f\xe8\xa1\x34\x6c\x60\xdf\x75\xea\xd2\x1e\x14\x2c\x49\xe4\xfa\xf8\xea\x9f\xa6\x3c\xd7\x2a\x90\xd5\xfe\xd2\x38\x71\x08\xda\x6c\xbf\xcd\x6a\x8c\x1a\xdb\x91\x19\xd9\x97\x4d\x25\x42\x2f\x1b\xb8\x29\x45\x0f\xcc\x03\xbb\x0a\x7a\xde\x35\xb8\x0b\x54\xc6\xed\xc5\x69\xdc\x59\xfb\x01\xfb\xf1\xb2\xe9\xa9\xe8\x2f\xdb\xfe\x89\x73\x62\x4b\xde\x37\x1c\x13\xdb\xf0\x75\xba\xc3\xe9\xd0\x6e\x96\xbe\xf2\xb5\x11\xe5\xbc\x29\x45\x95\xe8\xcb\x2c\x92\x85\x1a\x2a\xcd\x58\xa2\xda\x3a\x7f\x36\xb0\x94\xf0\x86\x73\x99\xaa\x6a\x3a\x1f\x7a\x9f\x6f\xde\x11\xfc\x94\x44\x00\x6d\x74\x2e\xf2\xa5\x23\x3d\x9b\x6e\x66\x3a\x89\x79\xce\x92\x84\xf1\x52\xa3\x05\xf0\x07\x17\x05\xa2\x01\x3f\x5b\xa5\xeb\xc8\x9b\x8b\x12\xf4\x88\x20\xdf\xeb\xf4\xbb\xff\x13\x20\xeb\x39\x61\xe2\x82\x87\xfd\x86\x91\x5f\xa3\x1e\x46\xc9\x7d\xdf\xda\xf1\x13\x0b\x00\x46\xae\x91\xb9\xc1\xe6\xe6\x41\xd4\x1d\x64\x19\xa2\xd3\xbc\x4d\xcb\xeb\x43\x3c\x32\xb9\x80\xc3\x93\xb1\xe4\x08\xa6\x8b\x77\x79\x01\x95\xce\xc9\x58\x67\xd1\x0e\x39\x7b\x36\x3d\xbe\x39\x2a\x79\x4f\x87\x4e\x1f\xc7\x47\x57\xf9\xef\x47\xfb\xde\x89\x7f\xcc\xbe\xd7\x1e\xc3\x6a\xff\xd1\x20\x47\x0a\x1d\x80\xe3\x98\x2d\xeb\xfa\x29\x0c\x95\xb5\x4f\x47\xdb\x79\x16\xad\xd2\xaf\x4e\x95\x7c\x32\x5e\x6b\xf4\x16\xc6\xef\x88\xf6\xa1\xb5\x1d\xe3\x24\x3d\x19\xe3\x04\x0d\x8f\xfe\x4a\xff\xd1\xa1\x2a\x93\x70\xa4\xcf\x58\xaf\xb5\x5f\xb2\xa0\x71\xbb\x6c\x91\x2f\x86\x6a\xa9\x0a\xfa\xb7\x00\xf5\xb2\xe0\x8b\x4a\xae\x8e\xf1\x5c\x53\x34\xde\x3d\x87\x7f\x05\x2f\x25\x0e\xd4\xd8\x1a\xdb\x1f\x59\x2b\x4e\xae\x4e\xe4\x31\x5b\x46\xa1\x8e\x7c\xb9\xa4\x1d\xf0\x15\xcf\x82\x5b\xab\x4d\x91\x4e\x5d\x61\x73\xce\xe6\x53\xa9\xa7\xc6\xf0\x5f\xb1\xcf\xd7\x2b\xae\xac\x8c\x56\xda\xf4\xaa\xd3\x40\x63\x3e\xb0\x0f\x3a\xcb\x63\x21\x41\xba\xde\x0b\x43\xee\xab\x2e\x08\x39\x6f\xcd\x8c\x80\x1e\xd2\x53\x81\xcb\x26\xe0\x0a\x24\x7c\xda\x5a\xdd\xff\xd8\x03\x10\xf4\x42\xb2\xc0\x7f\x88\xd7\x7e\xac\x33\x3c\xc4\x7a\x1c\x48\x30\x3f\xb9\xc3\x5f\xb8\xa1\xc0\xba\xd8\xc5\x5f\xf6\xd0\x8b\x3e\xe5\x9d\x2b\x33\xf3\x03\x9a\x07\x33\x8a\xe5\x7e\x96\x5f\xd1\xf9\x91\x2c\x78\xb3\x23\x87\x52\xeb\xe8\xf5\x4e\xff\x03\x5b\xd6\xef\x16\xf6\x97\xdc\x97\x00\x69\x0a\x61\xe8\xb0\xee\x3d\x65\x3d\x1a\x26\x87\x3d\xba\xb7\x02\x99\x11\x2e\x4b\x75\xf1\x1d\x53\xc5\xf7\xd2\xad\xa2\x27\xe9\xd0\xa3\xed\x25\xce\x6d\x89\x2b\x87\x28\x30\xcf\x24\xab\x38\xa2\x81\x2d\x9b\x4f\x78\xb7\xed\x21\x28\x9c\x5c\x6f\x7d\xe3\x2a\xdc\x89\x71\x1a\x05\x99\x28\x72\xea\xa5\xb3\x7c\x62\xf0\xe9\x7f\x04\x50\xf3\xa1\x64\x76\x67\x70\x72\xa1\xcc\x80\x96\xd0\x58\x63\x01\x05\x6f\x3f\xd1\xf5\xb8\x0d\x09\xb6\x29\xbb\xd5\x18\x4a\xbd\x16\x2a\x61\x77\x74\xed\x7d\xde\x20\xcb\x1b\xb3\xf6\x99\xcc\x5a\x87\xa8\x7b\x3c\x68\xb7\xba\xaf\x83\x1c\x78\xb2\x9e\x9d\xe8\x34\x00\x91\xe0\xc6\x61\xce\xc0\xc5\x2e\xa3\x34\x2a\x24\x2d\xc6\x0e\xf7\x79\x14\x47\x25\x3d\x49\x23\x71\x0a\xda\xf9\x34\xf9\x2c\xf1\x7f\x21\xe9\xc1\xcf\xef\x90\x96\xfc\xcd\xec\xe1\xf9\x6e\x7b\x3e\x35\xd7\x33\xc4\xec\x78\x83\x12\xd3\xa7\x47\xff\x42\xae\xee\xb1\x23\x1d\x64\xfb\x7e\xec\xaa\x2c\x47\x56\xff\x90\x03\x4f\xb0\x66\x54\x25\x57\xef\x12\x56\xad\x4a\xe4\xf1\x90\xf8\xc8\x32\x5d\x84\xcf\x1f\xfd\xe7\xb3\xe7\x9f\xff\xf9\xc5\xd1\xd3\x17\x7f\x7e\x7e\x74\x7a\x3a\x5f\x1e\xfd\xf5\xcf\x9f\xff\xe5\xe8\xd3\x4f\x3f\xfd\xec\xb3\xc7\x9f\x7d\x7a\x42\xff\x79\x2c\x3a\xe6\x0a\x7b\x4d\x5b\x1c\x07\x44\x28\x48\xd0\x87\x69\x32\x15\xc5\x0b\x8e\xfd\xd9\x2c\x6c\xdc\xaa\xc1\x00\x46\x96\x25\x9b\x3f\x2c\x9a\xd5\x36\x14\x5b\xa9\xbe\x37\x92\xf4\xe7\xed\xb2\x0d\x33\x35\xb8\xfd\xfc\xf2\x07\xaa\x53\x9c\x9d\xf2\x97\x3f\x54\xa5\x94\x45\xa6\x14\xa2\x99\xdb\x13\x60\x8d\x45\x74\x9c\xeb\x41\x33\xee\xf5\x5f\x07\xfd\x86\x22\x6d\x03\x0c\x96\x5b\xc8\x82\x4d\xf7\x69\xef\x8c\xed\xf7\x00\x36\x62\x3a\xd3\x65\xaf\xc9\xb5\xe3\xdc\xaf\xdc\x94\xb0\xfe\x5d\x7b\x66\xdc\x8c\x39\x02\x83\x12\x7b\x55\xe7\x82\x36\x0e\x7e\xda\x49\xb3\x8e\xa0\xc5\xa1\x50\xa9\x6a\xd4\xe7\x6f\x02\x8e\x68\xbf\x71\x86\x8d\xdc\x19\xbf\xc8\x4b\x25\x69\xd4\x16\xe8\x64\x89\x34\x75\x3a\xfc\xe3\xc6\x21\x0f\xc7\xe5\x93\xc2\x9a\xf5\x71\x56\xa1\x02\x4a\x28\x90\xe3\x8a\x4f\xc8\xda\x21\x00\x95\x1e\x79\x1c\xe8\x39\x62\x40\xd3\x39\xd0\xfc\x54\xcb\xe8\x3f\xc3\xd6\xa3\x66\x69\x44\x1c\xa0\x7a\xbc\xaf\x2b\xbc\xac\x56\xb1\xae\xed\x54\x3a\x89\x2c\x25\x4b\x34\xcb\x26\x9d\x53\xca\x0c\x5d\x52\x30\xc3\xd6\xb0\x47\x2c\xf6\x07\xbe\xe4\x8c\x37\xe1\x66\x82\xce\x25\xca\x4e\x28\x72\x68\x89\x9a\xb3\x1f\xe8\x5b\x09\x94\xbb\x4d\xd4\x5f\xd5\x5d\xd4\xd0\x60\x40\xe1\xb7\x4d\xb2\x49\xf6\x64\xe7\xb2\x4a\x21\x44\xec\x43\xbc\xda\xe5\x0d\x82\x3c\xf1\x27\x90\xda\xdb\x29\x65\x3b\x53\xe8\x9c\x20\xec\x71\xf2\xe5\x66\xc1\xa4\x59\xaa\x99\xe0\x3b\x43\x52\x5c\xa3\x77\x0b\x74\x36\x1c\x1b\x61\x60\x91\x74\xfb\x46\x84\x41\xa4\x3b\xa2\x33\xbf\xcc\x39\xde\xc0\x26\x91\x3e\x34\x72\x77\x65\x75\xd4\x6c\xee\x04\x97\xfb\x2a\xcf\xdf\x97\xc6\x30\xb6\xb5\x20\x49\x5d\xd3\x6e\x0c\x0e\xd6\xa8\x31\x22\xd6\xfe\xf9\x6e\x95\xc5\xd1\x11\x27\x91\xf4\xd1\x17\xb1\x8d\xca\xac\x4b\xa9\xfb\x6d\xa0\x34\x1f\x9d\xb3\xd2\x54\x99\xcc\x45\x2a\x86\xb4\x51\x21\x1e\x23\xa7\x81\x67\x9d\x1a\x0b\x8d\x21\x58\x77\x3a\xdb\x17\x72\x22\xaa\xf4\x32\x70\x09\xcf\x51\x61\x98\xa9\x86\x4e\xd3\xbd\x55\x77\xa2\xb4\xbb\x47\x9b\xd3\x16\xa0\xe3\x73\x07\x82\xa8\x75\xb3\xf6\x0c\x41\xcd\x77\x99\x84\x80\xef\xa0\x9a\xce\x1a\xda\xc0\x4e\x8f\x8c\x51\x58\x27\x1f\x0a\xf3\x28\x48\xca\x85\xb9\x95\x99\x6e\xef\xab\x27\xc5\xc4\xae\xbc\xc6\x52\x04\xdd\xda\xb1\x18\x0f\xc2\xde\x3d\x61\xb3\xb4\xd7\x5f\x4a\x9a\xb9\x16\x7c\xe8\xdd\xa2\xf4\xe2\x52\x8f\xdc\x25\x85\x99\x39\x35\xc8\xc8\xda\x00\x4d\xbd\xbf\x7a\x00\xf7\xa3\x1b\xb5\xb7\x96\x55\x27\x59\x9f\x3d\x66\x31\xc7\x37\x13\xfe\x0b\x9b\x09\x22\x40\xd8\x72\x20\x09\x13\x65\x37\x88\x24\xd9\xd7\xf5\xf6\x68\xc8\x8b\xc8\x49\x53\x84\xb0\xc2\x88\x50\x41\x10\xda\xd8\x15\x60\xa8\x4d\x19\x48\xe7\x91\xa2\x08\xcf\xfe\x71\xef\x08\xf5\x3e\xd2\xfd\xe0\xbc\xeb\x5d\x4d\x91\xeb\x6d\x7e\x2a\x5b\xd4\xd1\x49\xc4\xa2\x6b\x28\x1b\xa9\xdf\x37\x6e\xdf\x8e\x8e\x52\x38\xd1\xb8\xc2\xf7\x58\xb1\xf5\xba\x64\x2a\xdf\x0f\x56\x15\x9b\x3b\x6b\x34\x52\x8a\x4d\xbc\xdd\x2b\xb0\x23\x57\x49\x63\x7b\xd1\x6e\x87\x71\x0a\x6f\x20\xa0\x81\xe1\x50\xe9\x3b\xde\x32\x9b\xda\x96\x7d\x23\x21\xfa\xb5\xf0\x3f\xc3\x84\x31\x9e\x7a\x5a\xa9\x5f\x2b\xf5\x9c\x68\xb5\xe9\x79\x75\x5e\x9c\x67\xe7\xcb\xd9\xf1\x85\xfa\x86\x1e\x9c\x17\x74\xf1\xd5\x1f\x88\xbc\xb6\x95\x43\x89\x03\xb0\xfd\xa6\xcb\xc7\x5b\x14\xe0\x47\xbf\xe8\x47\xed\x30\x95\xfc\xf2\x25\x03\xbd\xc9\x36\xdc\x92\x69\xab\x57\x8d\xb7\xdc\x87\x71\x73\x17\xe3\x8c\xee\x87\xc5\x3a\x79\x1c\xaf\x17\x6e\xa9\xac\x02\xae\xef\x9e\x85\x96\x7a\x7b\xda\xac\xef\x0f\x1e\x64\xf8\xca\xdd\x22\x34\xcf\xeb\x3f\xda\x2b\x94\xfd\x58\xaf\x5e\x37\xeb\x6b\xee\x37\x54\xf0\x45\x7a\x23\xfb\x4c\xf5\x76\x14\x42\x53\x46\x46\xd0\x94\x19\xb4\xaf\x1f\xd4\x29\x5c\x78\x13\x11\xdc\x70\x58\x9d\x7d\x6a\x3f\x4e\x2c\x77\xd2\x01\xff\xae\xd1\x10\xd1\x7e\x63\xc9\x25\xdd\xc8\x5d\x18\xec\x9f\x50\x36\x9c\xe1\x79\x61\x8c\xcf\xdd\xf0\xb5\x46\x92\x67\x4b\xcc\x32\x6a\x0d\x07\xec\xf9\xd0\xc6\x46\xeb\xe4\xb4\x4f\x81\x04\x16\xf0\xd7\x12\xa4\x77\x5c\x9e\xc5\xe3\xd8\xc4\x0e\xe7\x41\xc7\xd0\x0e\xb5\x63\x1b\x21\x96\x88\xa9\x58\x9c\xe5\x9c\x07\xe2\x36\x67\xdc\x10\x9e\x4b\x46\x0d\x44\xf1\xd6\xe4\x22\x27\xe1\x44\x1a\x3d\xf6\x09\x77\xfc\x43\xa9\x9a\x94\x3f\x7e\x72\x02\x0f\xf1\x61\x24\x77\x63\xa7\x6e\x9b\x5f\xb9\xe8\xb5\xcc\xf9\xef\xac\x06\x68\xd2\x36\x38\xd5\xf9\xbd\xfe\x5f\xad\x91\xd3\xbf\xff\xdd\xcb\xd4\xbf\x4a\xe2\xa1\xdf\xb3\x54\x6c\x85\x8c\xb0\x1c\x36\x8e\xa8\x79\xa5\x3a\x6b\xc7\xdc\xa4\x5e\x3d\xc4\x6f\x6f\x2c\x60\x95\x5f\x5c\xac\x3a\x0b\xe8\xd0\x4a\x7a\x19\x0c\xbd\xd1\x97\x78\xbc\x5e\xb4\x28\x9b\x08\x05\xe1\x6c\x0e\x31\x8b\x68\xae\x44\xe0\x50\x18\x9d\xcc\xa1\x4d\xfb\x11\xbd\x90\x4e\x3f\x1b\x0b\x99\xb5\x16\x52\x71\xe4\xeb\x5d\xcb\x1a\xce\xed\x61\x50\xa7\x25\x90\xc0\x05\xa6\x0d\x0e\xda\xd2\x5c\xf0\x2a\xca\x75\x44\xc8\x14\xc6\x6e\xd2\x7c\x15\x4c\xd2\xc6\x70\x2a\x18\x1d\xdb\x01\x57\x92\x9e\x91\x53\x29\xfd\x04\x0b\x7f\x3b\x63\x9c\x82\xc8\x6f\xf6\x97\xe9\xa0\x5f\x6a\x76\xc6\xfb\xe5\x17\xfb\xee\x97\x5f\xbc\x36\x98\xb6\xee\xa3\xe6\x2d\x21\x57\x56\x0d\x20\x95\xf1\xbd\xd5\xd6\xfe\xc4\x66\x54\x1d\x17\x0f\xa1\xf6\xd8\x69\x9f\xc1\x2a\xa3\xb9\x2a\x1a\x11\xa0\x9d\x94\xc1\xec\x3c\x84\xfd\x90\xcd\xdc\x7d\x80\xaf\xcd\xe3\xfb\x37\x80\x05\xf1\x0a\xa0\xdd\x17\xab\xa8\x91\xfa\x3b\x69\xea\x0e\x0c\xab\xcd\xa1\xf4\x5b\x38\x25\xb0\x31\x43\xda\x80\xd6\x77\x0e\x69\xb2\x2a\x1f\x9b\x11\xb9\xc3\xc9\xd9\xfc\xd1\x85\x3d\x0b\x9e\xd4\x3b\xd8\x67\x8a\x9f\x1d\xdc\xab\xf3\x88\xd6\xa0\x93\xf0\x98\x9e\xc3\xd5\x3a\x74\xd8\xbc\x3c\x30\x82\x80\xab\x78\xed\xe7\x7d\x0e\xe6\x4e\x82\x6a\xe4\xa7\xde\x71\xd2\x25\xfa\x80\x1a\x65\x1a\x6b\xca\x1d\xe5\x80\xeb\xcc\xb7\x34\x9f\xef\x11\x84\x80\x2c\xf3\x88\x88\xf5\x52\x9d\xd3\x9d\xae\x65\x58\xb9\x32\x0a\xc4\x01\xc7\x4c\x12\x88\x15\x4d\x62\x6e\x10\x65\x6e\x63\xd2\x34\x7a\x92\xf7\x75\x23\xbf\xb7\x0f\x17\xb6\x0f\x1c\xb6\x80\x6e\xfd\xba\x07\xdc\x85\x49\x16\xd2\xab\x5c\xab\x23\xbb\xe9\x88\x27\x99\x05\xa7\x6f\x38\x63\x77\x28\x33\x96\x61\xc6\x40\x47\x36\xb9\x76\xd3\xaf\xf0\x4e\x0c\x20\xc2\xbb\x86\x73\x5b\xe2\x70\x3a\x1c\x2d\x90\x5d\xe8\x13\xdb\xa5\x71\xc3\x46\x8b\xd0\x5d\x28\x61\x4a\x76\xc6\x05\xab\x5b\x5f\x23\x11\x4a\x04\x35\x3f\xde\x94\x1c\x34\xa5\xe9\x7f\x45\x60\x23\x0f\x8e\xa0\xf5\x70\x1c\x85\x4e\xce\x52\x98\x2d\x49\x54\x88\xa9\x64\x45\x49\x87\xa7\x61\xe1\x9c\xa8\x67\xe9\xa4\x0c\xe9\x71\x78\x42\x27\x95\xe4\xfd\xe5\x93\x4a\x72\x12\xfb\x83\xcc\x36\x76\x78\xb8\x19\x70\x5c\x14\xdf\xa1\x5d\x1d\x75\x36\xcd\xa8\xb5\x2b\x95\x71\x8a\x41\x77\xaf\x0d\x3b\x3b\x48\x3a\x1e\x65\xe6\x8d\x96\xc7\xc9\xca\xfb\x8d\x00\x58\x30\x3d\x81\x0e\x71\xed\xe9\x40\xfe\x98\x6d\x28\xb5\x78\x1f\xa9\xbc\x36\x70\x89\x8d\x9d\xa8\x39\xb6\x62\x4c\x73\xb5\x2f\xaa\xaf\xce\x33\x63\x26\x58\xef\x2b\x23\x33\xe9\x75\xe8\x85\xd3\xae\x82\x05\x86\xb1\x9d\x70\xac\x78\xe7\x60\xdc\x6c\xa7\x80\x99\x18\x4a\x07\x27\x35\x14\xd0\x1c\xb6\x16\x31\x3a\x3a\xa5\xd2\xf0\x91\x6e\x53\xfe\xad\xdc\xc7\xcd\x88\x39\x84\x61\x20\x2c\x8f\x0f\x0f\xff\x22\x3f\x8f\x06\x4e\xd8\xae\xde\x90\x11\x38\x61\x26\x9a\xbc\x36\x29\x69\x18\x17\xc7\xda\x86\x4b\xcc\xee\x7d\xb8\x81\xfb\x5d\x37\x51\x46\x89\x1c\xa3\x86\xb7\x69\x36\x13\x78\x60\x33\x7f\x3e\x07\x47\x38\xbb\xc4\x42\x25\x0b\x26\xbf\x56\xe1\xd3\x8a\x71\x0f\xf6\x64\x5a\x6f\x5d\xba\xd4\x40\x02\x14\xc9\x3b\x18\x0c\x6a\x30\xc9\x43\xc1\x6c\xee\x36\xca\x02\x8b\x23\xab\x30\x0f\x0c\x78\x15\x5c\x61\x69\x2b\xe4\x9a\x4a\xae\xa9\x40\x5d\x8c\x07\xa8\xbe\xa4\xa9\x45\xa7\x21\x23\x63\x3f\x06\xce\xa2\xaf\x26\xbb\xc3\xbd\xd8\xc3\x36\x29\xd7\x88\x4c\xc2\x8f\x22\x82\x82\x3d\xff\x19\xc9\xb5\x93\x30\x06\xad\xe0\xa3\x85\xcb\xdc\x60\xfe\xac\x23\x45\xdf\x04\xbe\xa2\x16\x5e\x56\x08\x55\x55\xd9\x67\xe2\x3e\x7e\x2a\x82\xfd\x5a\x12\xeb\x69\xe7\x92\x23\xa2\x1d\x83\x59\x64\x4a\xe9\xf5\xe2\xb5\x96\x80\x96\xed\x0c\x9f\x2f\x81\x2d\x8b\x40\x60\x4f\xa3\x39\xce\x73\x77\xd7\xdd\x35\x3a\x41\xb3\xd9\xff\xb5\x01\x08\xad\x84\xd8\x85\x88\x6c\xce\xdd\xc6\xb4\x77\xb5\x75\x4a\xed\x03\xdc\x48\x55\x97\xf4\xda\x99\x68\x11\xa7\x2e\x4b\x84\x90\x22\x7c\xb9\x13\x2e\x94\xe6\x2e\xbc\x83\x25\x12\x1d\x98\x30\x3f\xfa\x82\xae\x94\x0e\x7c\x12\x3a\x66\x7a\x5d\x9e\xb5\x9d\xac\xa5\x7f\x47\x95\xb2\xa3\x4a\xd9\x51\x26\x15\xf0\x41\xcc\x96\x9f\x88\x1c\xd6\xdc\x2a\x4a\xd4\xfc\x9d\x85\xcd\xcd\x23\xb3\x5b\x08\xea\x04\x2a\x6b\xc0\xcd\x59\xd0\x99\x77\x00\x37\x0d\x25\xf1\x69\x98\xd7\xbb\x26\xaf\x77\x0d\x3e\xa9\x77\x8d\x14\x96\xd1\x9a\x15\xd4\xee\xca\x7f\xf4\xa8\xa2\xf2\x4c\x50\xd5\xa7\x55\x35\x61\xb9\xfd\xd7\x19\xc4\x55\xa7\x27\x41\xf8\x55\xd7\xcd\x75\xbb\xfd\xad\xfb\x10\xfa\x11\xd8\xae\x4d\x4e\x42\x0e\x85\x4e\x67\xe9\xaf\x55\xd4\x81\x26\x47\x3d\x54\x09\x0d\xda\xdd\x8a\x61\xef\x06\x68\xc2\xcb\xe0\xa5\x00\x5c\x73\xee\xb3\xe0\xa3\x1b\x24\xe3\x4c\xb1\xd9\xae\x4e\x03\xde\xb3\x13\x25\x35\xaa\xde\xe4\xc7\xe7\x1f\x86\xc7\x17\x8d\x1c\xdf\x56\xba\x67\xbe\x75\x43\xd8\x09\x55\x63\xe7\x79\xdc\x5b\x26\xea\x1b\x63\x03\x64\x6d\xf0\x99\xde\xef\x71\x40\x11\x62\xf4\xfb\x2b\xaf\x08\x9c\x0a\x5d\xcb\x24\xeb\xf1\xe9\x72\x84\xd9\x3d\x9f\xd3\x26\xd9\x75\xf6\x8f\xa1\xe3\x40\xc8\xdc\x37\xc7\xbd\xed\x01\x1c\xcc\x88\x7d\xf7\x34\xd1\x1b\xfd\x3e\x38\xe9\x47\x2b\xec\xea\xe6\x37\xbd\xeb\x68\xdc\x74\xf4\x1c\x1e\x3e\xad\xf4\xce\x62\x65\x26\x62\xc8\xa2\xd9\xa7\x5d\x70\xac\x11\x43\x9f\xbf\x5c\xed\x71\x9b\x22\x28\x40\xd9\x7e\xcf\x14\x44\x23\x0d\xb7\x18\x20\xd4\x50\xca\x69\xcc\x0c\x2e\x93\xe0\x49\x42\x1d\x4a\xb8\x14\x8e\xbf\xd0\xa4\x97\x0a\x5a\xaf\xb0\xd2\xd0\xd9\x5c\x19\x44\x57\xef\x79\x9a\x69\xb9\x4b\xfb\xf9\x3c\xcf\x8b\x45\xd9\xb1\x3a\xe7\xd1\x8e\x9d\xc5\xbc\x27\xf6\xa1\xc7\x2e\x59\xd2\xff\x46\xf0\x43\xee\x9e\xa1\x8f\x47\x22\x3a\x8d\x5a\x38\xa7\xde\x24\xbd\xd5\xdb\x2e\xf4\xbb\x24\x56\x42\xbe\xc9\x4a\xee\x54\x03\x64\xb4\x45\x56\xb2\x48\xc5\x35\xb7\x17\x78\x2c\x0c\x78\x12\x10\x8a\x4e\x45\x81\x06\xbb\xef\xa7\x9e\x76\x66\xf5\xc4\xe2\xca\x9b\xb5\x5c\xc2\x1a\x54\x4f\x35\xeb\x42\x8f\x01\x51\x4f\x44\x1a\x6d\xa2\x83\x78\x0c\xa4\x2b\x82\xd1\x97\xd5\xb8\xed\xc0\x95\x39\x87\x69\xd3\x28\x98\x31\x87\xee\x1c\x1b\x02\x13\x17\x53\xcc\xfb\x3a\x56\x1f\x30\xe8\x58\x1b\xdb\xdb\x33\xb6\xe5\x85\xfb\xa9\x65\x72\x4c\xfb\xda\x64\xbc\xb9\x27\xc5\xaa\x79\x7f\xad\x0d\xcb\x93\xed\xb6\xea\x23\xb5\xfb\x0b\x43\xa7\xe6\xfd\x9f\x56\x1f\x1c\x83\x64\xe9\x89\x1d\x5c\x4d\x6c\xef\x39\xd0\x92\x9e\x38\xcb\x15\x5b\x29\x35\xf9\xa5\x7b\x32\x78\x37\x0a\x0a\xd1\x69\x18\x41\x59\x08\x73\xa8\xc2\x0a\x36\x89\x17\xaf\x10\xb7\x4a\x79\x57\xf1\x8d\x04\x76\x04\x0d\x92\xac\x56\x6f\x60\x92\x0d\x47\x2b\xbe\x7b\x2d\x06\x38\xf8\x24\xff\x40\xaf\x32\x3c\xcf\x57\xfa\x6a\x53\x26\x2f\xe3\x35\x9c\xbf\x0a\xda\xbc\x9f\xb3\x19\x18\x17\x60\xb8\x7e\xa1\xe1\xda\x5d\x76\xbb\xe6\x38\xeb\x84\x8d\x6f\x70\xc8\x2c\x83\x68\xce\xaa\xb6\xd5\xae\x67\x94\x3e\xb5\x26\xde\x1e\x5d\xe4\xdc\x43\x77\xa4\x42\xcc\x29\xcf\xb8\x27\x74\x7a\xd0\x90\x18\x74\x37\x44\x43\x37\x60\x04\x17\x15\xce\x6e\x63\x46\xdd\xe4\x99\x12\xc3\x33\xb1\x34\xc7\x6e\x11\x77\x14\xda\x80\x5d\x46\xd1\x6c\x1e\xc0\x1d\xed\x15\x83\x74\x9c\xa9\x35\x5b\x3e\x81\x39\x6d\xa8\x09\x4c\xa8\x53\x59\x77\xf4\xc5\x7d\xba\x21\xd6\xee\x7c\x8e\x12\xef\x93\xdb\x63\xf5\x5a\x97\xbd\xca\x69\x1d\x39\x0f\x19\x95\x23\xf4\xbf\x09\xb6\x6c\xed\x7b\xac\xbe\xd3\x25\xb4\x59\xaf\x64\x2e\xe3\xbf\xf9\xa6\x7a\xb7\xda\x14\x30\x2a\xfa\x81\x0b\x4d\x7f\x1e\xcd\x1e\x72\x42\xa2\x91\x3f\x42\x76\xa4\x07\xc7\x4c\x30\xb0\x45\xf1\xdd\xc5\x2a\x7f\x17\xaf\x60\x60\xd4\xf0\xdc\x4d\x8c\xc4\x5c\x3b\x6d\xd5\x7e\x2d\x26\x3a\x9c\xba\x52\xb7\x8e\x51\x00\x73\x29\xb7\xda\x1c\x64\x74\xc9\x07\x44\xc1\xc1\xc7\x0a\x62\xd3\x56\xe6\x09\xd1\xae\x2b\xeb\xd7\x0d\xc3\xb9\x8b\x4d\x8a\x2d\x29\x17\xa8\x0f\xbf\xc3\x61\xa0\xfc\x32\xba\x95\x4e\x22\x86\xba\x73\x27\xb9\x95\x97\x74\x2f\x75\xe2\x6d\x7d\xd7\xb7\x5c\x9a\x63\x9d\x57\x22\x07\x15\x49\x27\x57\x06\x61\xf4\xc5\x45\x52\x70\x90\x19\x11\x70\xd0\x79\x65\xdf\xc2\x1c\x8d\x49\x36\xf1\xef\x5b\x8e\xa8\xe3\x57\x8e\xcf\xd8\x4e\xc9\xa3\x28\x81\xfd\x97\x9f\x75\x25\xf5\x1e\x01\xf8\xc6\x5a\x33\x8c\x37\x60\xf4\xe3\xe8\x07\x9d\xa0\x3c\x9b\x6e\x66\xe2\x7f\x73\x19\x5d\x45\x31\x62\xc6\x5d\x44\x7e\x3c\x7d\xa4\x43\x99\xea\x78\x10\x23\x13\x10\x22\x50\xb0\xd5\x99\x47\xb6\x83\x7c\xaa\xc5\xab\xe9\xe5\x0c\x96\x7e\x54\x8b\x9f\x4f\xe6\x6c\xd8\x7f\x41\x54\x02\xb8\x8f\x70\x3e\x02\x01\xae\x23\xb0\x5d\xaa\xfd\x1f\xaf\x23\x47\x32\xc5\x8c\xda\xa5\xca\x69\x7a\xb8\x96\x2b\xb1\xea\x4a\x95\x5e\xc7\xb0\x50\x58\xa8\x50\xd6\x4d\x99\x15\x0d\xf3\x66\x0e\xad\x5c\xa6\xba\xa6\x7d\xbb\x89\x1c\x73\x9a\x3a\x42\x51\xec\x70\x13\x5e\xe8\x80\x17\x23\x64\xc2\x5a\xd1\x32\x2f\xa2\x92\xfa\x87\x25\x96\x2b\xce\xc4\x6c\x07\xf8\x2c\xdf\x64\xc8\x07\x38\xc7\xa9\xb8\x59\x53\x63\x72\x61\xe3\xa2\x11\x98\x2e\xc1\xf7\x0c\x4e\x59\x38\x42\x20\xce\x86\xf4\xdf\xa4\x25\x0d\x33\x29\x26\xdd\x47\xfe\x25\x81\x38\xa2\x36\x26\x4d\x6b\xfd\xa4\x6d\xac\xef\x0d\xa9\x64\x80\xa3\x16\x75\x60\x59\xf0\x6b\x5a\x5e\x07\x6a\x6d\x60\xde\xc0\x78\xf3\x41\x24\x3f\xc8\x48\x3d\x59\x18\xaf\xef\xd6\xd0\x86\x43\x75\x42\x55\x85\x0b\x11\x3d\xad\x05\x93\xf2\xe2\xc9\xbe\xc5\x8c\x40\x04\xa4\x9d\x3a\xbb\xfe\xe9\xed\x38\x93\xaa\x77\x27\x63\xe5\xb5\x3d\xa0\x0f\x3e\xab\xb5\xad\xaf\x18\xe8\xae\xcc\x6e\xd4\x11\x51\xc4\x96\xa8\x07\xde\x57\x75\x7c\x94\x95\xce\x26\x5e\x5a\x90\xaf\xa6\x2b\x0d\xf2\x8b\xe8\x82\x96\xf4\x14\xb0\xef\x97\xf7\x80\xfc\xc2\xc4\x85\xec\x00\xee\x42\x00\x77\x11\xf9\xc5\x64\xd9\x84\xfa\xa5\x0b\xf5\x0b\xc0\x36\x97\x66\x71\x65\xc9\xa1\x80\x5b\xc1\x56\x91\x3d\x90\x96\x54\xc3\x1f\x12\xe7\x4d\xc2\xd1\x43\x64\x2c\x0c\x60\x2c\xe5\xe3\x0a\xc1\x57\x69\x37\xe7\xd1\xda\xe6\x73\x95\xfd\xbc\x9e\xc2\x04\x32\x3d\x3c\xbc\x80\xa0\x6c\x64\x76\x0d\x91\xdf\x30\x27\xc2\x32\xf3\x73\x81\x83\x12\x86\x92\x02\xfb\xf1\xc8\x82\x3e\x75\x13\x74\x2a\x97\x33\xbb\x09\x7a\x8b\x87\x0f\x3d\xc9\x92\x36\xa8\x9f\x07\x0c\x4c\x1a\x64\x72\x04\x0a\x70\xbf\x59\x37\x61\xe8\xe8\x88\x90\x94\x80\xc5\xe1\xa1\xb9\xb2\xc6\x4b\x41\x30\x46\x3c\xce\x75\x6d\x09\x08\x3f\xa1\xb8\x58\x10\xd7\x81\xe2\xe6\xda\x7c\x70\xa9\xae\x0c\xda\xd5\xdb\xca\x32\xd7\xb2\x33\x12\x82\x29\x5b\xc4\x28\xcf\x31\xf9\x41\x1d\xe0\x7a\xc1\x4e\x1a\x81\x5d\x4f\xf9\x1e\x9f\x0e\x01\x1e\x0c\xb0\x80\x6a\x3e\xe2\x5f\xc0\x40\xe3\x15\xdb\x4c\xf8\x73\x08\x3d\x75\x9d\xa6\x91\xae\x0d\x93\x27\x70\xea\x71\x7c\x60\x8d\xe0\xeb\x1d\x71\xdf\xb9\x16\x4d\x89\x0d\xfb\x12\x10\xb9\xd1\x4e\xb0\x99\x0e\x2b\xc3\x3c\x2e\x00\x2b\x23\x0c\xed\xbc\xb4\xeb\xc7\x25\xec\x9d\x03\xc6\xe1\x94\x0d\x2f\x37\x6c\x2e\x8c\xea\xd5\x63\x66\x79\x6a\x6d\xce\x5f\x5a\xf7\x83\xef\x34\x6a\xbc\x1c\x76\xcf\x29\xcc\xc0\x65\xad\x86\x1d\xb1\x02\x96\x9e\x5d\x44\x97\x4e\xa3\x34\x82\x0b\x6b\xe3\x76\xa1\x77\x12\xfc\x30\x9d\x4f\x43\x51\xb3\x6b\x54\x96\x45\x99\x6b\xd0\x4b\x2c\x22\x36\x08\x3d\x91\x65\xbd\x54\x1d\x63\x4a\xc0\x36\x9c\x4d\xd2\xf2\xad\x74\x2e\xca\x27\x8f\xc2\xc7\xca\x99\x86\xc8\xc1\xe7\xee\x73\x5a\xaf\xc8\xb9\x9d\xf4\xee\xc5\x8b\x8f\xee\xc5\x50\x32\x30\xc0\x76\x88\xf8\xf3\xa8\x42\xc4\x7e\x8e\x0f\x08\x19\xb3\xbe\x8c\x52\x36\x27\x64\x82\xad\xe0\x54\x5c\x0d\x39\x7c\xa1\x58\x7c\xb6\xff\x54\x44\xe6\x8b\xb9\x99\x7e\x82\x76\x73\xa9\x49\x02\x04\x74\xe2\x8d\x20\xca\x83\x01\x07\x9e\xa0\xb5\x14\x07\x2a\x31\x9d\x4d\xcb\x1f\x68\xd2\xf3\x0f\x88\x26\xa2\xb3\xed\x37\xcf\x68\x9c\xcb\x66\xcd\x57\xc3\x4b\x6c\xef\x4d\xb4\x71\x83\x22\x8e\x37\xe3\xd6\x13\x7d\x24\x6c\x02\xb5\x8c\x36\x63\x44\x82\xf5\xd3\x76\x2a\x84\x2f\x09\x58\x74\xb9\xa5\x9b\x87\x0f\xde\x5c\x52\x95\x74\x0c\x49\x13\x76\x26\x03\x37\x35\xbd\xe0\x14\xdc\x88\x58\x88\xd5\x85\x39\x4d\x7c\xc1\xe1\x14\xdf\x54\xf9\x7a\x0d\xbb\xae\x71\x20\xdb\x21\x5a\x9f\x9d\x4e\x56\x0e\x8d\x81\xa1\xc4\x91\x3f\x77\xac\x74\xcd\x6e\x64\x5f\x84\xa9\x7c\x37\x73\xce\x18\x2a\x22\x3b\xd9\x63\x81\x67\xac\x67\x76\x83\xf4\xc8\x31\x64\xa5\x1b\x98\x72\x89\x1e\xa1\x36\xdb\xa6\x91\xdb\xb2\xcd\x8f\x74\x70\x1b\x44\x43\xe0\xa6\x9f\xcb\xc0\x7d\x3e\xca\x74\xb7\x2f\x15\xaf\x14\x86\xa7\x5f\xbf\x96\xc2\x18\x1c\x0c\x60\xe7\xd4\x39\x79\x81\x35\x37\xd7\xba\x95\x85\x04\x17\x35\x6d\x05\xed\xae\xa5\xf4\x84\xfa\x9d\x12\x0c\xf5\x41\x40\x94\x62\x40\x4b\x08\x68\x11\xdd\x94\x1d\x08\x54\x0f\x45\x7a\xc9\xee\x9b\xa8\xc5\x0f\xb4\xdd\xd1\x55\x70\xb7\xeb\x29\x59\xd5\xb5\x2d\xad\x7a\xca\xec\x8b\x1d\x47\x66\x61\x3a\x36\x6c\xc6\x2e\xb2\x35\x2d\xd3\x1b\xdf\x06\x27\xb2\x9e\xec\xa0\xb5\x36\x7d\x41\x0b\x56\xce\x02\x8b\x4e\xbf\xb9\xc6\x89\x51\xbd\x72\x6c\xa3\xce\xce\xb2\xaf\xef\x38\x4a\xc0\x46\x02\xb8\x26\xf5\x96\x90\x8d\xcb\x35\xd3\x42\xd0\x32\x3e\xd7\xfd\xc7\x5a\x38\xb7\x8e\x02\x5c\x1f\x47\xb2\xbf\xca\xba\x4d\x4d\x71\x95\x6e\x51\x10\x96\x88\xe3\xe7\xe7\x44\x0a\x64\x1a\xd2\x93\xbd\x90\xce\x51\x26\x47\xf3\x4d\x81\x0d\xa3\xfb\x96\x6b\x4e\x00\xb5\x40\x64\x6e\x9a\x99\xc6\x4e\x75\x5f\x5f\x5d\x25\x8b\x14\xe9\x18\x7a\xeb\xf5\x07\x49\x03\x23\x42\x00\xe8\xde\x0b\x3e\x48\x1d\x12\x81\xe3\xe2\xea\xb6\xe8\x44\x8c\x52\x4c\x1a\x2d\x02\x9d\x1e\xf8\x21\x3c\xe7\xfb\x9d\xd9\x4e\x2d\x39\x32\x13\x6f\x20\xf9\x7e\xbb\x4d\x4d\xaf\x03\x0d\xd6\x7a\x50\x1b\xad\x4d\xe0\xc6\x34\x6a\xb5\xbb\x8a\x63\x51\x34\xb7\x95\x92\x30\x52\xce\x20\xe9\xa8\xb1\xc2\x37\x5a\xb0\xbc\xac\xcc\x8a\x81\x42\x77\xef\x1b\x2b\xa8\x92\x1a\x62\xcd\x84\xee\x73\x6f\xa8\xe1\x33\x6b\x92\x3b\x04\x9c\x89\x46\xfd\x0c\x5c\x87\x87\x2b\xd7\x70\x82\xe6\x5c\x9b\x61\x6e\x3d\x71\xb7\x1d\xd8\x28\x93\xa2\x52\x83\x26\x9d\xfa\x33\x5e\x11\xa3\xda\x48\xf4\x0e\xeb\x0a\x6d\x60\xd2\xa8\x72\x65\xd5\xcc\xec\xc5\xd1\x57\xb1\xb6\xa7\x92\xa8\x4a\xe3\x8d\xb1\xdd\xa2\x23\x97\xad\xb6\x52\x4b\xbd\xb1\x7d\x4b\x0e\x15\x9b\x2c\x00\x5f\xa6\x0d\xae\x69\x02\x4d\xb0\x12\x5b\x0f\x3e\xcb\xfd\x15\x8b\x36\xb4\x42\x40\xbf\xd3\x79\x78\x56\x36\x0f\x4f\xc0\xd5\xc2\x42\x5d\x27\x5d\x19\xe7\x96\xe6\x2b\xe5\xd9\x1d\x96\x3f\x5c\xd5\x73\x9f\xef\x2c\x32\xd9\x3c\xc9\xfa\x8b\x73\x63\xf6\x0b\x13\x5f\x77\x03\x8f\x28\x8e\x86\x74\xd3\xf1\xaf\x71\xc9\x0c\x9b\x07\x65\xec\xc6\x4a\x91\x69\x83\x11\x94\xb6\x1f\x06\x82\x12\xb1\x4c\x3a\x63\xab\xe0\xd8\xd8\x82\x38\x2f\xa2\x38\x7a\xad\x0f\xd1\x34\x10\xd3\x2f\x96\x9f\x88\xe2\xea\xf3\xd6\xab\xf7\xc9\xad\xd6\x68\x21\xb0\x0b\x11\xdd\x90\x5f\x95\xf2\x8e\x2f\x21\x03\x26\xa4\xeb\xeb\x37\xda\x4e\x8c\xaf\x11\x43\xc7\x25\x8e\x72\xe4\x6e\xb2\x2e\x2f\x15\x78\x02\x98\x3a\x54\x33\x25\xba\x0e\x24\xd7\xb2\xc2\x4a\x4b\xa1\x98\x4b\x28\xe9\x8a\xb9\x76\x29\xc4\xa1\xad\x24\x3e\xad\xbc\x75\x21\xcd\x7e\x61\x5f\x3a\x04\x81\x42\x8c\xb8\x2a\xfe\x7b\x72\x1b\x21\x1a\xaf\xbe\x56\xb1\x8e\x8f\x39\x31\x17\x1c\x89\x27\x4c\x44\xa9\x57\x86\x5e\xbc\xaa\xa8\xdc\xc1\x3b\xf1\xf8\x3e\x98\xc7\xd9\x3c\x59\x01\x9c\x69\x7c\xc5\x0a\xaf\x1a\xa8\xef\x80\x37\xff\x6b\xe2\x16\xe1\x71\xc0\x6d\x1c\x70\x1a\x99\x64\xa1\x0b\x30\xd9\x89\xc7\xd2\xc7\x83\x2a\xbd\x4a\xde\x54\xf1\xd5\xfa\xe0\x9a\x68\x8f\x83\x0f\x97\xe9\xfc\xd2\x33\xb4\x2a\x12\xb0\x98\x35\x84\x10\xaa\x5e\x16\xdd\xbd\xf9\x25\x01\xc6\x5c\x67\x7c\x3e\xa0\xd7\xf8\x87\xeb\x56\x15\x9c\x05\xa4\x57\x50\x68\x02\x1f\x72\xc3\x3c\x8b\x7c\x15\x69\xab\x99\x91\xa9\x7c\x52\x5f\x86\xd5\x48\xb7\x82\x0c\x2a\x3b\xe5\xc0\x91\xe9\x97\x60\x91\x03\xf9\xa1\x69\x5b\xa5\x34\x2d\x3f\xea\xdf\x9f\x0e\x90\xa7\x5a\x2f\xe9\x81\xb8\x1c\xfe\xa8\x7f\x7f\x3a\x20\x34\x99\xfc\xc8\x7f\x7f\x3a\x28\xe7\x45\x92\x64\x3f\xea\xdf\x9f\x0e\xaa\x5c\x7f\xf5\x91\xe1\x35\x71\x21\x21\x41\xe9\x88\x42\x10\x43\xa7\xed\x71\x6b\x0e\xb8\x69\xa3\xed\x85\x65\x26\xf7\x9a\x55\xc5\x16\xa6\xda\x44\xa4\x82\xfd\x43\x3b\x01\x33\x90\x16\xdc\xd1\x95\xae\xb3\xae\x6c\xe8\xb3\x1f\x0c\x0d\x28\x5f\xad\xbe\x49\x96\x95\x30\xb6\x8d\x07\x27\xc1\x91\x94\x92\x6f\x9c\x52\xee\x03\xce\x25\xc5\xd3\x64\x6b\xff\xa9\x51\xfb\xdb\x7c\xdd\xa8\x9c\xef\x5b\x75\xd7\x65\x9c\xfb\x13\xc9\xa6\xdc\x80\x5b\x26\xd9\xfc\xd6\xc3\xa8\x74\xb6\x22\xab\x1d\x4d\x16\xc6\x12\x9d\x63\x40\xda\x6e\xe3\x48\xac\xd3\x0c\x64\x9d\x1e\x22\x19\xde\x23\xfa\xfb\x38\xfc\x94\xfe\x3e\x0a\x4f\x04\x8e\xf4\x99\x1c\xde\x21\x03\x35\x22\xee\x0b\x9b\xc0\x59\x92\x24\xd0\xf8\x5d\x87\x5f\xb5\xce\x7a\x88\x5a\x00\xe2\x54\xf0\x1e\x4a\x73\x8a\x37\xd7\xfa\x78\x29\xb1\xc6\xd5\xe0\x54\xd3\x8b\x09\xec\xd4\x55\x43\x32\xe2\x69\x91\xb1\xb7\x53\x90\x13\xf7\xb6\xe8\xd4\x19\xb9\xad\xe2\x83\x89\x6f\x2f\xb9\x25\xd7\xd3\xab\xd3\x4c\xbe\xa9\x3c\xb8\x9a\xd0\x79\x78\x5f\x43\xae\xfe\x55\x08\x4a\xad\x82\x25\xf6\xd4\x6a\x0a\x8c\x19\xa4\x84\x93\xd6\xe6\xa6\x54\xf1\xc4\xaf\xaf\x5b\x3d\x32\x74\x7b\x9f\x8e\xa9\xa1\xf3\xd5\x2b\xac\x10\xed\x88\x26\xcc\x4d\x14\x4e\x3b\xde\x21\x58\x9a\x14\xb4\xa6\x57\x2c\xb5\x04\x4a\x2b\xcd\xe2\xd5\x0b\x2d\xd6\x40\x43\xa2\x36\x36\x45\xa1\x1d\x53\x65\x7a\xb5\x59\x35\x02\xe5\x69\x31\x9d\x13\xf3\x52\x0b\x62\xdd\x73\x06\xde\x5f\x2c\x83\x48\x54\x5a\xbe\xd1\x75\x88\x03\xb0\xdb\x6e\x08\xd7\x84\x31\x3b\x56\x35\xf8\x04\xc4\xbd\x92\x64\x85\x3d\x02\x6e\xa1\xc3\x38\x90\xd9\x1e\x9e\xa8\xcb\x4f\x89\x1a\xc5\x11\xfe\x44\x5f\xba\x77\x56\xc8\xda\xd6\x9b\x26\x7d\xa5\x20\x61\xed\x79\xcc\xc9\x69\x68\x49\x77\xfd\xbe\x8d\x12\xb9\xa4\x1a\x83\x79\x70\x43\xab\x18\x1b\x35\xa1\xa4\x7e\xe2\x7c\x12\x85\x61\xb5\x1a\x85\xfd\x42\x2c\xb3\xcc\x24\xf7\xa7\x7b\x04\x84\x1d\xa4\x59\x59\xe1\x74\x64\x55\x82\x94\x9e\xf8\x1c\x06\x8e\xf5\x06\x02\x86\x8d\xa5\x88\xb4\x87\x09\xf3\x9c\x9a\xaa\xe1\x07\xdd\x29\x8e\xac\x9d\x81\x7d\x04\x86\xc0\x85\x21\x91\xb7\xb1\xd2\xe9\x75\x63\x29\xb4\xe3\xf0\xeb\xd6\xfa\x4c\x36\xe1\x4a\x93\x2d\xd2\x01\x55\x69\x71\x3c\x83\x96\x78\x1f\x68\xdb\x63\x7b\x48\x47\x32\x20\x73\xcb\xf2\xbd\x8c\x38\xd7\x40\xb1\x35\x04\xdb\x37\x3b\x04\x1c\xa4\xcf\x41\x53\x54\x24\x6e\xdb\xe6\xd6\x09\xd5\x7d\xd7\x1d\x35\x51\x9b\x7d\x6c\x17\x3f\xbe\x87\x7d\xa2\xf7\x4d\x60\xec\xc6\x85\xec\x2e\xc6\x78\xdf\xcc\x6f\x54\xd2\xc3\xd8\x4c\xba\x9c\x4e\xd8\x5c\x0f\x80\xa5\x6a\xb1\x3e\xff\x95\x8e\x74\xc7\x65\xbb\xd2\xaa\xd5\x84\xea\x6d\xf0\x58\x0a\x52\x5c\x10\x6b\x72\x88\x44\xec\xd7\x8e\x52\x7d\x13\xe7\xf6\x4b\x37\x7f\xcf\xfc\x52\x3f\xb8\x50\xa7\x4d\xc7\xb6\xe1\x8e\x89\x22\xcc\x60\x11\x7a\x7c\x4d\x7b\xb7\xf0\x84\x56\x5a\x25\xf1\x75\x62\x1e\xf3\x19\xd0\x31\x2f\x68\xc9\x04\x66\xd1\x5d\xe3\xfc\xa8\x94\x11\x29\xd1\xa5\xf0\x17\xbd\x29\xec\x18\x8a\xd3\xa8\x75\x6e\xb3\x03\x85\x65\x94\x35\x15\xe4\x0f\x52\xe2\x7a\x07\x9c\x24\x0b\x52\x99\x3a\x03\x32\xe1\x3d\xe1\xad\x19\x4e\x73\xcb\x31\x23\xa8\x83\x55\xda\xf4\xc6\xf8\x54\xfa\x1b\x58\x15\x76\x0c\x1f\x38\x0c\x93\x0e\xa5\xa4\x0d\x5a\xdd\x41\xeb\x02\xac\xe3\xde\xac\xff\xd0\xb1\x28\x41\xd2\x60\x69\x62\x6c\x4c\xa5\x46\xf8\x2f\x4a\x09\x3e\x06\x47\xbf\x48\xd5\xa0\x95\x39\xff\xa7\x79\xe0\xa9\xce\x1c\x5a\xf2\x46\x2c\xf9\x6b\x2b\x69\x7b\x08\x6b\x1c\x50\x3f\xd7\x99\x22\x20\xf1\x46\x87\x90\x0d\xd5\x0d\x12\x50\x28\xaf\x31\x74\xf6\xef\x6f\x74\xd5\x96\xe8\xef\x57\x62\x1e\xff\xf2\xce\x80\xb6\xcc\xec\x9e\xfa\x39\xd7\x20\x7b\x12\xee\x3f\xa9\x9b\x35\xd6\x6a\x84\xf6\x1b\x01\x7c\xd7\x94\x83\x65\x39\x5a\xc4\xed\x68\x8e\xcd\x21\xee\x7b\x66\x08\xad\x2f\x55\x22\xfd\x52\x46\x87\xf2\x3f\x5a\x61\xad\x23\x91\x42\x76\xda\x5a\x71\x29\x47\x12\xef\xeb\x1e\x90\x93\x02\xfb\x41\xee\x0b\x93\xfe\xdf\xf5\xd7\x08\x26\xbe\xdf\x4f\x87\x6d\xb7\x8e\x79\xae\x79\xd8\x59\x6e\xe9\xf4\x5a\x67\xbf\x92\x2e\x8c\x7e\x91\xdf\xe6\xca\xdb\x88\x6e\x4c\x76\x37\xc9\x29\xf3\xbd\xf8\x2a\x49\x0f\x7f\xf9\x75\x53\x56\xba\xa6\x05\x63\x40\x47\x92\xda\xd9\x14\x7d\x2d\x76\xab\x69\xaf\x78\x6f\x4b\xa7\x4e\x3b\x35\x24\x98\x06\xb4\x9c\x91\xfb\xe3\x50\xa4\x3d\x3d\x13\x4a\x93\xb3\x08\x51\x0d\xfd\x5d\x34\x76\x48\x5a\xaa\x65\x97\xc8\xb5\x8c\xad\x77\x5f\xa5\xbc\x06\x14\x74\x77\x9f\x2d\xd1\xdf\xdc\xa0\x05\xc7\x20\x39\x1c\x7a\x53\x6e\xdf\x5a\x85\xc8\xfd\xb3\xd0\xd9\x0f\xee\x46\xee\x74\xd5\x6e\xe4\x3d\x08\xdf\x99\x05\x87\x30\x13\xdf\xa0\xfb\x3a\xa9\x81\x74\xc0\xb9\x21\x98\x7d\xa8\xc1\xd9\x3e\x9c\x38\x27\xc6\xfd\x48\xdf\xf2\x17\xf7\xef\xec\xde\x8d\xab\x27\x87\xa0\xa2\x7f\xab\xb5\x36\xb4\x66\xd6\xec\x8e\xb6\xa7\xaf\xb0\x8b\x96\x99\x13\x5e\xce\x65\xba\xfa\x5c\x28\xe1\x37\xe7\xce\x69\x77\xf1\x2a\x65\x8f\x83\x96\x76\x80\x17\x6f\xdc\x39\xb8\xb5\xd1\x62\x13\x99\x70\xba\xaf\xe1\x10\x69\xb5\x3b\xf6\x15\x89\x28\x77\xfb\x27\x0f\x1f\x1e\x1d\x65\xf8\xb0\x8f\x19\x30\xdf\x76\xe3\x53\x34\x32\x22\x75\x6c\x97\x20\x09\xee\x06\x83\x21\x74\xd3\x0e\x2e\x90\x71\x62\xea\x82\x0d\xbd\xe9\x4c\x17\x59\x23\x47\x40\x0c\x84\x8e\xcb\x10\xfe\x8c\x6a\x4f\x20\xb9\xcd\x03\x17\x0c\x91\x48\x52\xeb\x19\x45\xc2\x82\x30\xd3\x08\x36\x02\xfd\x23\xec\x86\xf5\x33\x68\xf5\xbb\x8e\x63\x54\x10\x86\x52\x15\x67\x0a\xc7\x95\xf4\x00\xae\x31\xac\xd8\x48\xa3\xd5\xd8\x24\x75\x1c\xa4\xae\xcf\xb1\x9b\xfe\x13\x56\xff\x65\x94\x22\x90\x5e\x1f\xc7\xeb\x07\x88\x7f\x85\xc5\xdc\x13\xb2\x7c\x47\xec\x1f\x1b\xa7\x94\xc6\x68\xa5\x6c\x1b\x66\xf5\x3a\x2b\x3a\xa0\x64\x71\x1b\xcc\x6f\x0a\x09\x28\xa2\xf2\xac\x8f\xd9\x75\x45\x17\x8e\xad\x0a\xc8\x6a\xea\xe6\x3e\xf7\x0a\xed\x4f\xd1\x26\xcf\xd9\x3b\xc0\xec\xdf\xda\xd5\xd2\x79\x08\x1f\xc9\xb6\x96\x49\x26\xc4\x51\xb2\x4c\x6a\x7d\xc9\xd0\x1b\x79\x43\xe7\x55\x58\xbf\x52\xb5\xc8\x5e\xd5\x7a\x14\x9e\x99\x7d\xb0\xc6\x2a\x00\x17\x94\xa8\xdd\x9c\x06\x96\x4c\xf3\x59\x13\x8e\x34\xb5\x9a\x69\x86\xcf\xcd\x7a\x61\xc0\x25\x90\x04\xea\x0c\x22\xec\x05\xc5\xba\x99\x22\x5a\x7d\x6c\x75\x5c\x6c\x94\xd8\xe5\xe9\x48\x66\xda\xbc\xef\xfe\x0a\x8d\x70\x21\xd1\x8e\xec\x6e\x7d\x5f\x69\x5b\xb1\x5e\x6f\x6e\xed\x28\x6b\xf3\xca\xf4\xd6\xc8\x91\xbd\xac\xd5\xa6\x68\x28\x1f\xc0\xaa\x71\x34\xfd\x39\xfc\xd3\xf9\xf4\x7c\xa4\x66\x0f\x1f\x1c\xab\xaf\xb5\x39\xa4\x9c\x36\xe5\x16\xa0\x41\xb7\xdf\x67\x55\xba\xda\x3e\x25\xa6\x3f\x38\x56\xbf\x57\xd1\x7e\x5b\x34\xf5\x23\xd1\xe1\x9c\x97\x95\x2a\xe0\xc8\xa9\x62\x29\x5b\xe2\x1a\xe9\xe4\x38\x9d\x15\xd5\x0a\x59\x5d\x2b\xaa\x06\x67\x53\xef\x09\x39\x20\x49\x33\x35\x83\x62\xd5\x03\x8e\x0f\x78\x1d\xd3\xa4\x11\x43\x00\xda\x15\x62\xbe\xe7\xef\xb5\x01\xab\x96\xdb\x3b\xb3\x2f\xf6\x57\x27\xe3\xf4\x8c\x98\x49\xf1\xad\x6c\xf0\x33\x50\x3d\xf0\x62\x58\xf7\xe5\x9d\x8e\x0f\xeb\x7e\x65\x34\x46\x04\x07\xf8\xa0\x36\x98\x97\xd5\x71\xfa\x91\x9e\xb1\x13\x8d\xa4\x5b\xe1\xe4\x2a\x1c\x65\x54\xef\x00\x29\x6d\xee\x26\x8d\xbb\x21\xbb\x6d\xc3\x1b\xb9\x9b\xac\xc4\x4c\xd3\x9c\x65\x06\xec\xf7\x5e\x07\x7e\x1a\x37\xe4\x9a\x7b\x67\xa0\xe8\x9f\x01\x51\x81\x21\x7d\x83\x33\x03\x88\xa1\xd7\x2b\x0a\x6c\x8d\x76\xad\xb7\x07\xeb\xaf\x85\x84\xef\x08\xe0\xff\xd8\xb7\xa7\xf8\x36\xed\x4b\xd1\x32\x18\xe8\x92\x7d\x61\x26\x7e\x37\xbe\x4f\xc1\x84\x21\x20\xb4\xd5\xe9\xc9\x81\x48\x35\x2f\xa9\xc8\x7e\xe7\x53\x8e\x27\xe0\xf8\xc8\x2b\xad\x7e\xac\xeb\xae\x43\x5c\xd4\x70\x38\x91\xb5\x10\x6d\xe7\x48\x1b\x1e\x07\x21\x60\xa6\x18\x17\x34\xcf\x68\x41\x6f\xde\x62\x36\x86\x09\x10\xe8\xa7\x31\x3c\x3a\x1d\x5d\x14\x1b\x5a\x18\xc5\xd5\x93\x53\xe0\xa6\x78\x12\x6b\x75\x65\xc6\xd9\x68\xda\x91\x2a\x8c\x3f\x13\x6f\xcd\xa4\x7c\xa3\xe1\x87\xd8\xcd\x04\x8e\xb9\x60\xc4\x4d\xba\x3c\x49\x51\xd4\x3f\xff\x4e\x3a\xde\x1a\x60\xf3\x20\xcc\x39\xcf\x22\xfc\xd6\xfa\xdc\x0d\x26\x3d\x59\x9c\x1c\x3b\x72\x8d\xab\xf8\xfc\x08\x58\x7a\x6a\x73\xeb\x8c\x7e\xa5\x06\x8a\xdb\x09\x32\xd7\x87\x1a\x8a\x43\x5d\x5e\x84\xd4\x08\x07\x5b\x4f\xcd\x44\xc3\x73\x51\xe2\x30\x06\x42\x21\xec\xe4\x9b\x75\x85\x5f\x5b\xdb\x0e\xdb\x62\xcc\xde\x3e\x72\x81\xa6\x49\x93\xcd\x4a\xcf\xe1\x1b\x91\x01\x24\xd1\x5e\xfa\x57\x09\x1d\x79\x42\x6f\xc2\xc7\x2f\x70\xb6\x7c\x07\xf1\x98\xb9\x43\xbe\x3a\x74\xe9\xf3\xd8\x4d\xdf\xd3\x82\x7f\x9c\xf9\x26\x34\x80\x56\x93\x26\xd7\x62\xb3\x17\xb6\xee\xad\x16\x32\x08\x5c\x1f\x88\xbb\x9e\x0c\x9b\xf7\xfa\x5f\x9c\x9e\x0e\xdc\x2c\xb1\x93\x4a\x7b\x0d\xe9\x13\x60\x8f\xc4\x7f\x91\xb2\x53\x62\x5d\x23\xec\x8c\xf5\x27\x7c\x58\xdc\xe3\x21\xd6\xfd\x96\xe3\x58\x66\xed\x4c\x99\x26\xe9\x06\x0a\xbb\x19\xc7\x39\xd2\x11\x1d\x20\xfb\xca\xb6\x13\xab\xeb\xba\x09\x3e\xee\x1f\x4c\x4f\x1b\x1f\xfd\x66\x4f\x5b\x7f\x70\x0a\xdc\x16\x79\x0e\x50\xdd\x1f\x9d\xbe\x76\xfa\x78\x7c\x5f\xca\xcd\xbe\x55\xd3\xaf\x11\xe8\xd6\x65\x4b\x61\xcc\x52\x07\x81\x45\x30\x29\x65\x4f\xf0\xfb\x2b\x72\xb3\xf4\xe1\x2b\x73\xd6\x7f\x4c\x4d\xa4\xbc\x94\xfd\x69\x3c\x76\x38\x91\xaf\x6a\x4d\xa9\x7d\x24\xc6\x5e\x56\x67\x1a\xda\xad\x47\x18\x38\x71\xb2\xbf\x43\x9c\xda\x91\x8b\x2e\x39\x43\x8b\x6b\xae\xea\x68\x85\x10\x98\x43\xe4\xf6\xf5\xde\xf5\x78\xe6\xc5\xdc\x44\xac\x2f\x8e\x3e\xd3\xf4\x61\x20\xa1\x35\x5a\x78\xa3\x30\xe1\x36\xf5\x56\x64\xf1\xa7\x72\xce\x8a\x33\x20\xec\x1f\x25\x8b\x9d\x94\xd4\xc8\x00\xe5\xbe\xb6\x07\x08\x57\x83\xf8\x33\xd7\x49\xc1\x69\xcc\x75\x25\x0e\xdd\xd0\x0e\x53\xd9\xa3\xa7\xaf\x75\x39\x95\x4b\x0f\x42\x1c\x1b\x79\x21\x9d\xd8\x3e\xc7\x7d\x81\xe9\xb5\x24\x86\x36\x66\x28\xa7\x9c\xda\xc2\x8d\x53\xdb\x7b\x80\x10\xaf\x16\x4c\xe8\xb0\x0a\xa7\xb3\xb0\x55\xc6\x67\xe3\xe1\x8b\x22\x59\x37\x32\x15\xd5\x29\x33\x1b\x1e\xf7\x3b\x60\x42\x82\xe2\x0e\x5f\x62\x4e\x5d\x9d\x3e\x14\x36\x1f\xe3\x5c\x82\xc5\xe6\xae\xf9\x46\x21\x6a\xe2\xd3\xc6\x73\x76\xfa\xa6\x13\x6a\x94\x96\xc0\xb5\xe3\x80\xd9\x38\xe7\x33\x9b\x44\x14\x09\x84\x1c\x4b\x92\xd4\x6e\x9b\x7d\x44\x00\x75\xa7\x27\x1f\x72\x73\x50\x74\x56\x0c\x74\xd4\x4b\x6e\xa6\x4e\x71\x9f\x19\x7a\xfb\xfb\x2a\xf2\xe2\x77\xef\x8a\x6d\x5c\x54\xe9\x7c\x95\x6c\xe3\x32\xa5\xed\x17\x6f\x16\x69\xbe\x7d\xb7\x48\xb7\xf3\x38\xbb\x8e\xcb\x2d\x44\x3a\xfc\x67\x45\xec\xfa\x16\x2a\xb6\x74\x55\x6e\x97\xe9\xc5\x3c\xe6\x18\x18\xb8\xdc\x14\xc9\x76\x99\xe7\x04\x03\x5b\x49\x92\xbc\xbd\xe4\xe0\x1b\xdb\xab\xb8\x78\xbf\xbd\x4a\xf0\x22\x8b\xaf\xb7\xf9\xa6\x82\x97\x94\x09\xd5\xb8\x2d\x13\x1e\xe0\xb6\xdc\x5c\x51\xc9\xdb\x2d\xf4\x53\xdb\x6b\xea\x46\xee\xa9\x7f\x12\xed\x7f\xf0\xeb\x3f\x70\x0c\x9f\x2f\x86\x91\x47\x74\x3f\x8e\x82\x2d\xdd\x04\xde\xf1\x85\xfa\x49\xd2\x0f\x19\xfb\xe2\x27\xf4\xde\x1b\x7e\x5f\x11\x48\x4d\xcf\xcf\xcb\xe3\xb3\x99\x47\xdb\x9a\xa0\xeb\x6f\xe0\x21\xce\xcb\xe1\xb1\xfa\x92\xae\xa8\xd8\x40\xa2\xf6\x15\xdb\x79\xbe\xda\x72\xb0\xe5\xed\x65\xb1\x4d\xaf\x2e\xb6\xe2\xc3\x85\x4c\x2d\xe8\x73\xbc\x25\xac\x14\x5f\x05\xbe\x3f\x3d\xff\x10\xce\x86\xc1\xf4\xe7\xb3\xd9\xc3\xe0\xfc\xf8\xec\xf8\x22\x55\xff\xe0\xca\xf4\x9b\x63\xf5\x77\xdc\x72\x72\x98\xe3\x54\xfd\x0b\x37\xdb\xc3\x3f\x4d\xce\x3f\x0c\xc7\xc7\x2a\xc9\xb8\xdd\xb0\x9c\x17\xe9\xba\xda\x8a\xe3\x24\x5a\x09\xa8\x6c\x95\x39\x81\x01\xdf\xe5\x37\x5b\x96\x69\xb1\xe3\x58\x46\xaf\xb4\xe0\xf4\xbc\x7c\x48\x65\xa6\x3f\x47\xb3\x6d\x44\xd7\xc6\x2b\x6e\x84\x1a\x0a\xd4\xf0\x60\x7b\x8e\x50\xd4\xbf\xc6\xd7\xf1\x36\x99\x5f\xc5\x81\x34\x46\xaf\x73\xbc\xae\x8a\x4d\x42\x05\x46\x0f\xa9\xab\x71\xc6\x13\xf2\xf0\xc9\x00\xce\x63\xd3\x67\xcf\x9f\xbe\x7d\x7a\x3e\xdd\x1e\x1d\x05\x5b\x3c\x98\x9d\xcf\x70\x7d\x46\x25\x1e\xd0\x34\x97\x59\x64\xa2\xd8\x4c\x4f\x95\xf7\x44\x38\x80\x83\x2b\x62\xcd\xd3\xf5\x2a\x89\x3e\x31\x57\x9f\x20\x45\xec\x93\x63\x79\x7f\x06\x7f\x91\xe4\x82\x90\x83\x7c\xb5\x4c\x93\xd5\xa2\x4c\x2a\x29\x53\xdf\x11\xe9\x4a\x8b\x21\x65\x08\x09\xca\x6b\xbe\x98\x29\x9e\x7d\x79\x25\x7c\xb7\xbc\x35\xd7\x60\x85\x08\xd6\xa4\x80\xc9\x34\xe0\xd9\xa4\x03\xf4\xba\x08\xa7\x8f\x54\x9d\xa9\x00\x8b\xa3\x8b\xf0\xa5\x53\x94\x20\xa1\xa7\xac\x2d\x48\xaf\x19\x9c\xe5\x6b\x7b\xe7\xb6\x45\xfd\x78\xdc\xf9\xbe\x2a\x74\x7b\xc5\x59\x4f\xa3\xd6\x8a\xc1\x91\x0b\x36\xb2\x09\x4d\xa6\x27\x0a\x8e\xdf\xde\x8c\x07\xf9\xe3\x13\x09\x91\xee\xe9\x58\xe9\xb3\x9d\xda\x64\xd1\xc2\xff\x32\x50\xab\x2c\xda\x64\x7f\x24\xa4\xfd\xb8\xcc\x46\x26\x32\x4e\x24\xd7\x29\xcc\x8b\x32\x9d\xf7\x08\x17\xd8\xc8\xb8\x30\xe3\xe4\x6b\xd9\xeb\xfc\x1e\xb3\xce\x5f\x5c\xf2\xed\xa2\x25\xb2\xeb\xa4\x18\xef\x0f\xfa\xd8\x1b\xc8\x11\xee\xd6\x73\xc9\xef\xea\xd7\x34\xb7\x4e\xc1\x6e\x12\x52\xf8\x7e\x87\x10\xef\x18\xc8\xeb\xd1\xc3\x71\x98\xbd\xc6\x41\x96\x8a\x99\x44\xd2\x09\x31\x09\x42\x98\x2b\xde\x63\x2a\x43\x07\xfe\xd5\xcb\x38\x4b\xd7\xbd\x19\x40\xd9\x8e\xa7\x13\xcb\x8b\x8e\x83\x9e\x67\x7f\x6d\x3f\x32\xc4\xf0\xa5\xb1\x95\x1d\x57\x8d\x55\x4c\x24\xa6\x2b\x11\x57\xff\x7b\xfa\x47\x7c\x78\x52\x54\x9f\xb3\x82\x03\x27\x53\x83\xe6\x42\x6f\x45\xf7\xf1\xdf\xec\x6c\x47\x4d\xd7\x7a\xd0\x69\xde\xc8\xa6\xe2\x65\xb5\xd7\xd8\xe9\xff\x8f\x46\x1b\x87\xef\x2e\xe8\x75\xd1\x6b\x72\xee\x9a\x96\xd1\xc6\x9a\x35\x78\x23\x38\xd0\x58\x4c\xf7\x38\x94\x56\x3a\x0b\x38\x53\x9e\xa6\x29\x32\x67\x81\xe6\x92\x44\x27\x63\x77\x84\x1b\x0e\xcb\x9d\x35\x3a\xee\x8b\x29\x88\x15\x98\x64\xcd\xad\xa1\x20\x61\xbc\xc5\x97\xca\x93\x03\xc2\x6b\x55\xd1\x4a\x87\xd0\x94\x60\x76\x33\xcb\x9a\xf1\x21\xb0\xb1\x1d\x84\x18\x47\x40\x4a\xc3\x32\x1c\x2e\xd4\x26\x4f\x5a\x23\x49\x58\xa8\x32\x76\x09\x78\xa4\xaf\x77\x3b\xd3\x20\xee\xc7\x36\x02\x57\x27\x78\x90\xc9\x4e\x27\x96\x5b\x52\x48\xef\xf4\xe8\xa4\x15\x5c\x94\x33\x17\xed\x8b\xe2\x6c\x38\x5f\xc4\x4e\xa2\xe1\xc9\x6d\x35\x81\xe1\x82\x58\x21\x13\xd1\xde\xab\x20\xe2\x5a\x8d\x2c\xb6\x12\xc5\x17\xe1\xf5\xff\x22\x52\x6c\xc8\x53\xd9\x67\xa9\x23\xfc\xa9\x23\xff\x3b\x94\x6d\x0d\x2f\x93\xac\x4e\xb3\x61\xe3\xd7\xfd\x53\xe2\xd7\xb1\x15\xfd\xa0\x47\x64\x49\xfc\x4e\x56\x8b\x92\x06\xfb\xce\xa6\xc3\xc3\x9f\xaa\xfe\x62\x9d\x74\x7b\x87\x87\x7f\x73\x8a\x96\xd9\xd4\xff\x87\x76\x1a\x4d\xc4\xb5\x14\x27\x5c\x80\xbc\x3c\xcd\xc8\x04\x01\x7c\x59\x12\xdb\xf1\x2f\xa9\xe3\x4f\x1e\x9c\xd2\x09\xfa\xe0\xd1\x99\x17\xb0\x13\x0d\x5b\xf6\x1b\x19\x96\x95\x5f\xf1\x64\x75\x42\xa6\xb6\xf7\x0e\x43\x9c\x72\xa6\x28\x42\x8c\xed\xe8\x44\x9b\x58\xe6\x30\xb1\xcc\x34\x2a\x68\x1d\x40\xc9\xbd\x87\x89\xee\x70\x33\x91\xb1\x31\x1b\x72\x99\xbd\x2e\x3c\x4c\x1b\x34\xbd\x72\xf9\xe2\x19\x92\x43\x47\x27\xe3\x3f\x8a\xd6\xea\x18\x2a\x53\xda\x84\x33\xd8\xd2\xf0\xc5\x18\x8a\x2a\x36\x9c\xad\xeb\x96\xf4\xd9\xbe\x96\xf8\xba\x88\x4d\xb5\xe2\xdc\xfa\x6c\x48\xe8\x62\x43\xb0\x4a\x34\xe8\xc1\x09\x75\xcf\x09\xed\x6e\x8a\xc3\x7c\x14\x46\x79\x7b\x65\x4c\xd6\x49\x94\x95\x87\x66\x44\x1d\x56\x32\x89\x0a\xe3\xa6\x05\x6e\x5b\x58\x98\x46\x72\x4e\xf8\x8b\x37\x24\xa3\x4b\x91\xd1\xaf\xa3\xf9\xd1\xa9\x5a\x44\x10\xe5\xa9\xcb\x56\x8c\xce\x05\x7b\x8f\x5d\x12\x04\xfb\xa7\x67\xd1\xbc\x47\x76\x2a\x91\x55\x1a\x41\x25\x38\x85\x19\x4c\x27\xf5\x46\x59\xdc\x17\x2b\xd8\xb2\xf9\xcb\x51\xf2\x1b\x02\x03\xb1\xad\x3a\x7c\xa3\x16\x8e\x97\x0c\xab\x9b\x68\x7f\x31\xb7\x9d\xd6\x0b\xab\x03\x11\x71\x2f\xe7\x9c\xbe\x9c\x3a\xf3\x6e\x43\x28\xd0\x26\xba\x93\xa3\xa4\x43\x05\x11\x78\xab\x81\x86\x5f\xc8\x09\x37\xae\x4c\x45\x32\x81\xd4\x12\x8b\xda\x4d\x78\x13\x21\x7c\x83\x76\x6d\x89\x0d\xb8\xde\xc0\x9b\xcf\x1c\x18\xea\x02\x3c\x6b\x6c\x70\xd0\xfc\x6c\x35\x5e\xb1\xdb\x0b\x2d\x02\x41\xd2\xda\x66\xfd\x60\x34\x98\xd2\xc2\x32\x74\x48\xcc\x00\x11\x98\xc4\xea\x86\x5e\xd4\x47\x10\xa7\xa3\x34\x93\x01\x57\xe1\x54\xad\x74\x10\x50\x71\xfc\x8a\xa7\xa6\xbd\xa3\xd3\xf6\x40\x75\x1f\x63\x75\x05\x17\xb6\x93\x71\x6e\x3b\x14\xa3\xaa\x22\x33\x1e\x57\xda\xb2\xc5\x6b\xd8\x55\x50\x37\xc4\xe7\xfe\xc5\x75\xbc\xf2\x82\xe6\xf1\x49\x67\x33\x8b\x43\xe0\xc9\x81\xd3\xfb\x97\x84\x0a\x7d\x5f\xac\xe4\x09\x0b\x68\xeb\x8f\x7d\x34\xc1\x61\x6d\xe4\xf7\x99\x48\x8d\x70\x6b\x71\x8c\x38\xc3\x1b\x94\x16\x73\x8c\x3d\xf8\x6a\xeb\x84\x43\x8d\xd3\xc9\x15\xa3\x0a\xe2\x79\x9b\x87\x9e\x5c\x79\x86\x26\xc4\x23\x7d\xe9\x29\x77\x63\x86\xda\x06\xc5\x3c\x7d\xca\xf4\x91\xc7\x64\x92\x67\x70\x14\x04\x8a\x9e\x83\xaf\xfa\x0c\xfa\x5a\x82\xab\xa4\xab\x8e\x60\xf1\x08\x0b\xd1\x9d\xbc\xc7\x47\xa7\x63\xa4\xb8\xd7\x98\x19\x32\x92\xd8\x41\x0f\x02\x1b\x00\x0b\x48\x49\x08\x67\x07\x44\x2e\x20\xfd\x52\x5a\x59\x0f\xdc\x4c\xa4\xd9\xfb\x64\xd9\x1d\x21\x54\xf7\x30\xef\xb8\x96\x29\xde\x3f\x76\x79\x5b\x41\xb8\x94\x84\x45\x68\x1d\x79\x92\xab\x54\x27\x4e\x71\xc2\x5d\x0e\xcc\x01\xe8\x3d\xf1\x86\x75\x38\xbb\xa1\x47\x87\xd3\x04\x76\x8a\x8d\xb4\x88\xa1\xbf\x6a\x1c\x35\x4e\x12\xd3\x55\xd6\xa0\x73\xf2\x88\x1e\x38\xa4\x4e\xa0\x06\x6e\x97\xdc\xc4\x91\x0c\xac\xad\x17\x3a\xb9\xa5\xd0\x8e\x8d\xa4\x47\xcd\x07\xed\x01\x89\x9b\x5c\x11\xdd\x40\x24\x55\x46\x37\xb2\x9a\x96\xa6\x4b\x23\x84\x22\x0f\xc6\xc3\x61\x1c\x14\x74\x75\x78\xf8\x0e\x4e\xd2\xfc\x0c\x8e\x0c\xac\x1b\xd2\x9b\xb5\xdc\x6e\xf9\x73\xb6\xb8\xe0\xfa\x7a\x2a\x82\xa7\xdc\xb5\xad\x82\x4d\x20\xae\xd9\x87\xc9\x86\xf7\x42\x57\x1c\xac\x63\x34\xad\x67\x27\x20\x61\x0b\x35\xd8\x1c\x1e\xde\x30\xc1\x67\x09\xd9\x22\x2a\x4d\x96\xae\x9c\xf8\x10\x17\x4d\xf6\x98\x29\x58\xf9\x5e\x2b\xc1\x73\x62\x0e\x90\x35\x31\xd7\x15\x7c\xee\xa7\x88\xdf\x72\x32\x5e\x9e\x5d\x8c\x2f\x44\x29\x09\x71\xe0\xc5\x0c\x5e\xe4\x30\x6d\xc9\x83\x86\x71\x00\xc7\xb2\xa7\x29\xa6\x91\x07\x16\xe5\x5d\xaa\xdc\xd1\xde\xe4\xb3\x30\x0f\xac\xe1\xc7\xbf\x6c\xcc\x14\xe3\xe8\x4a\x53\xb8\x6e\x70\x82\xd5\x9e\x14\x75\x9b\xc8\x52\x53\xf9\x7d\xd4\x14\x9d\x8d\x25\xc2\xd2\x80\x00\xb3\x7e\xcf\xaa\x74\x40\x72\x4e\xdf\x0c\xf3\x7d\xe4\xd6\x70\x8e\xec\xee\x84\xd7\x39\xe1\x14\x5c\xe1\xa8\x93\x75\x32\xd4\x71\x2b\xd2\xe7\x3d\x44\x20\xc2\x51\x5f\xea\x98\xbb\x6d\x36\xfd\x6f\x76\x28\xd4\x0c\x20\xdf\xa9\x92\x05\x14\x81\x78\x5c\x7a\x12\xe6\x8a\x00\x7a\xb3\xdd\xfe\xdd\x56\x3c\xb1\x82\x20\x38\xd5\xd0\x78\x1a\x2f\x4f\xc2\x32\x2c\xdd\x53\x30\x8d\xc4\xa1\xa8\x7d\x0c\xca\xf8\x5c\xb6\x62\x15\xb9\xc5\x88\x43\x53\x26\x11\x34\x1d\x25\xab\xbe\x83\x34\x6f\xec\xe9\x95\xce\xe2\x5a\x03\x43\xe9\xea\x0b\x54\xe9\x1e\x18\x91\xe7\x8d\xcb\x06\x23\x54\x36\x2a\x2b\x1b\x8c\x50\x89\xa8\x25\x66\x19\x24\x16\xc7\xbe\xd9\xcd\xb5\xb1\x40\x89\x60\x22\x8d\x1a\x1b\xb6\x69\x8d\x24\xb9\x8c\x26\x58\x94\x7e\x83\x60\x11\x26\x6f\xf0\x87\x80\x77\x44\x1e\x5d\x4e\x2f\x24\x7a\xfd\xd2\xe7\xf4\x52\x47\xa7\x02\xff\x46\x93\x9a\x83\x98\x80\x9e\xb8\x81\x78\xf3\x16\xe2\xd5\x28\xa7\x09\xf2\xf4\xb0\xde\xfd\x31\x36\x7d\x09\xd5\x26\x83\x40\xca\x8d\x97\x26\x48\xae\x3e\xe2\x73\xf7\x88\xcf\x8c\x80\xdd\x26\x83\x17\xcc\xb0\x96\x1c\x39\x59\x4f\x3e\xb9\x46\x90\x67\x9b\x55\xa2\x76\x8b\xd0\xc7\x07\xd2\xe6\x11\xa5\xe1\x4c\x59\x23\xe5\x72\x8f\x6f\x7c\xcd\xde\x27\x16\xf9\x61\xc6\x2a\x9e\x5e\x27\xc4\x00\x07\x4f\x84\x71\x19\x42\x09\xe4\xa0\xca\x37\x9c\x1f\x0d\x42\x9c\xdc\x04\xea\x61\x44\x0d\x93\x23\xfb\x64\x4e\x27\xe8\xa4\x6d\x0c\xc4\xc1\x9a\xe7\xcd\x30\x2e\x18\x99\x31\x7d\x27\xb2\x83\x73\xf1\x1b\x93\x69\xdc\xa9\xd5\x44\xdf\xa1\x07\xa1\xb1\x4b\x6a\x07\x01\x46\x62\xc9\x49\xe7\x29\xad\x4f\x98\x99\xd0\x07\xaa\xaa\x8c\x4b\x32\xf4\x61\x86\x72\xda\xc7\x04\xff\x1a\xdf\xf8\x77\x1b\x7a\x9f\x70\x22\xcb\xd0\xfb\xf2\xc5\x5b\x8f\x83\x53\x89\xdb\x99\x06\x04\x15\x97\xb7\xd9\x3c\x24\xda\x56\x07\x38\xa3\x2b\xaf\xba\x2c\xf2\x0f\xa5\xc7\x39\x90\xbb\x26\x84\x1f\x8a\x78\xdd\x56\x9c\xfe\xf7\xd3\x7d\xe8\xda\x9a\xa9\x3e\x4c\xc8\x7a\x4d\x88\xd7\x31\x73\xf7\x11\xe7\x01\x78\x01\x93\x5a\x1a\xe4\xc1\xb8\x6b\x52\x80\x60\x83\x0d\x4e\xcb\xd4\xae\xaa\xb6\xe8\xc1\x4a\x61\xc4\xc5\xdd\x95\x94\x98\xf8\xd2\x3d\xc9\xee\xc7\x41\xd2\x78\x61\x7d\x99\x77\x96\xd1\x15\xe9\x5a\x43\x64\x82\x09\xf8\x1a\x87\xc6\xfd\x09\x82\xda\xd3\x3b\xd9\x3b\x9b\x5c\x59\x67\x3e\xdb\x9c\x73\x55\x27\xd1\xc8\xa2\xca\x68\x64\x4b\x1f\x89\x48\x04\xe7\x12\x3c\xda\xc5\x09\xc2\xca\xe1\xd5\x03\xe9\x75\x7f\x54\xe3\x46\x2f\xc7\xfb\x81\x20\xeb\x01\x82\xaa\x99\xac\x21\x08\xa5\xb1\x4d\xd6\x6c\xae\x65\x54\xc4\x2b\xec\x07\x7d\xb6\x77\x2d\xa7\x01\x39\x62\x80\x23\x2c\x13\x6e\x49\x75\xed\x1d\xe9\x28\x9d\x91\x64\x7f\xe1\xdb\xa4\x56\xf3\x4c\x2d\x33\xb5\xce\xd4\x22\x8b\x8e\xe3\xd5\xfa\x32\x3e\xf7\xa7\x3f\x07\xb3\x87\xe7\x50\x1a\x5d\xd2\xc3\x1c\x81\x27\xab\xdb\xf3\xf2\x21\x74\x4a\xf2\x32\x38\x56\x17\xac\x91\xaa\xf2\xf5\xb6\x40\x70\xd3\xed\xbb\xbc\xaa\xf2\xab\x2d\x72\x47\x23\xfa\xe0\x15\xbf\x46\xce\xe4\x2d\x1f\xb6\xfe\x64\x70\x34\x9f\x26\x84\xd6\x46\x50\x84\xdd\xe2\xb5\x64\xa6\x3d\x56\xd7\x59\x43\x47\xf7\xb3\xef\x0d\x97\xd0\xd0\x41\x11\xf5\x40\xeb\xe7\xde\xed\x2b\x33\x19\xac\x6f\x82\x69\x7c\xf4\xfb\x7f\xcc\x86\xa6\xf0\x4d\xbb\xf0\x74\x78\x34\x0b\x22\xf3\x8d\x2e\xf5\x21\x8b\xee\x3e\x7f\xf5\xfc\xa7\x50\xe7\x9b\xdd\xa9\xb7\xf4\xc4\xe6\x40\xf6\x4c\x12\x64\x4f\x5d\xa7\x65\xfa\x2e\x5d\xd1\x2c\x84\xde\x25\xa7\x7d\xf6\x94\x49\x7b\x6b\x3f\x7e\x46\x1f\x13\x4e\x24\x7a\x5d\x87\xea\x0c\x91\x77\x3d\xab\x7e\x90\x74\xdb\x9f\x9e\x9c\xec\xd4\xb7\x59\x34\xf5\xde\xe6\x08\xcd\xc9\x09\x79\xe9\xf7\x73\x9e\x37\xba\x80\xdb\xb3\x37\x53\xef\x51\xe4\x07\x4e\xf1\x4c\x0f\x5f\xd1\xbf\x97\xf9\xef\x88\x07\x5a\x7a\xb3\x96\xe9\xe1\xbc\x6c\x47\xc8\xf8\x98\xbc\xb0\x1d\xf9\xff\x6e\xf7\xff\xb1\xf7\xe7\xed\x6d\x1b\xc9\xa2\x38\xfc\xbf\x3e\x05\x85\x93\x2b\x03\x61\x8b\xe2\x22\xc9\x36\x68\x84\xc7\xb1\x95\x44\x73\xbc\x8d\xad\x64\x66\x0e\xcd\x68\x40\x12\x92\x38\xa6\x40\x85\x8b\x97\x48\x3c\x9f\xfd\xad\xad\x37\x00\x94\xe4\xcc\xcc\x3d\xf7\x7d\x9e\x5f\x66\x2c\x02\x8d\x5e\xab\xab\xab\xab\xab\x6b\xc1\x20\xa1\x26\xae\x91\x89\xe8\x28\x2e\x2b\xce\x28\x3c\xc9\xc4\xaa\xe5\x4d\xbe\x5b\x50\x50\xcf\xb4\x8f\x14\x7c\x40\xfb\x1c\x06\xc2\x51\xb4\x13\x01\x95\xb5\xfb\x68\xaa\x09\x02\x3b\x27\x1f\x89\x2b\x58\x1d\x1e\xc0\x96\x84\xa5\x80\x69\x95\x21\xbd\x16\x17\xb3\x4f\x15\x2b\xe4\x15\x8f\x8b\x64\x41\x30\x1f\x55\xb7\x08\xaf\x84\x2a\x49\x60\xa1\x0a\x32\x54\x0e\x21\x94\xf5\x44\x81\x09\x9b\x0d\xe5\x56\x09\xeb\x0f\xa3\xea\x48\x84\xcf\xb8\x91\x9e\x59\x79\x52\xd0\xbc\x73\xe1\x52\xbc\x4e\x18\xb9\x89\xfc\x41\x8b\xab\xe8\x4f\x5d\xbc\xe2\x1b\xed\xaf\x2b\x4c\x0b\x24\xb3\x71\xa6\x2e\x6e\x81\x83\x56\x10\xe7\xe4\xc5\x1e\xea\x7d\x45\x91\x5e\xe2\xeb\x11\xa0\xee\x65\x4e\x4e\x51\x50\x79\xf5\x6c\x32\x9d\xbe\x96\xb6\xb6\x3d\xbc\x84\x37\x8c\x82\xfc\x93\x79\x9b\xd9\x6c\x1c\x3f\x9c\x1e\x80\x30\xe4\xa4\x0e\xfb\x69\x32\x86\x6d\x14\x9f\x7e\x67\x57\xf0\xf8\x84\x31\x9f\xd1\x8c\x1d\x3a\xf0\x86\x3c\x24\x5c\x07\x67\x18\x9d\x3a\x70\x6f\x2d\xe1\x23\x85\xac\xee\x05\xfa\x29\x80\x1d\x1b\x91\x82\x5f\xd0\x7e\xf1\xcb\x34\x2b\xa9\xf2\xb3\xe3\x10\xf6\xa1\x9f\x15\x3c\xa7\x79\xba\x0c\x8c\x61\x9e\xaf\x43\x3f\xae\x6c\x1e\x91\x83\x18\xca\x46\xfe\xa0\x04\x81\xa9\xcf\x74\xec\x09\xfd\x84\xe4\x24\x9c\xaa\x15\xf9\x4e\xe3\x0f\x36\x42\x85\xfb\xbe\x1a\x70\x30\x0a\xcd\x1d\x2c\xac\x77\xfd\x05\x85\x90\x58\x88\x5b\x7d\x58\x21\x13\x13\x43\x62\x8a\xfa\x1c\x18\x29\xc8\xa8\xe6\x38\xfa\xa0\x18\x3a\x03\x0a\x7e\xce\xf9\xa8\xc3\xec\xf1\x3c\x09\x67\x78\xfe\x6a\x45\xdf\xce\xe0\xa0\x55\x77\xc2\x80\x3b\xeb\x09\x0f\xd2\x3a\xe2\x0f\x8a\x05\xc4\x2c\x01\x18\x5e\x13\x06\x08\x6b\x9f\x2c\x5e\xa5\xaf\x42\x72\x27\xa8\x3f\xa0\xff\x41\x3d\x32\x46\x24\x06\xca\xbc\x9e\x04\x57\x9f\x03\xdf\xd8\x0c\x23\x48\x92\x2c\xe1\x1d\xbb\x78\x0e\xc4\x55\x61\x93\x6e\xa3\x8c\xa3\x39\x0c\x52\x8a\x17\xc4\xf9\x18\xf7\xa8\x10\x07\x9d\x00\x60\x2e\xb2\x39\x5a\xb0\xa9\x85\x0d\x5a\xb0\xa0\x11\x2e\x4c\xd0\x02\x80\x14\x01\x35\x22\x4f\x07\x54\x70\x2e\x62\xf7\x11\x8a\xdd\x09\xdd\x2a\xb0\xe5\x96\xe9\xb7\x3a\xce\x77\x4f\xbc\xe0\xc9\xfd\xa6\xbf\x30\xe3\xa9\x9d\xf1\x26\x1e\x6d\x54\x2a\x2e\x7d\x52\x5e\xca\x39\x29\x5d\x05\x39\x39\xe6\x96\xf9\xc8\x91\x57\x7f\x96\x53\xa6\x67\x39\x39\xa6\x0b\xc4\x8f\xfb\xbc\x07\xa8\xe0\x4c\x76\x2a\x6a\xff\x4d\x11\xcf\xc0\x5c\x01\x38\xf1\x40\xdc\x43\x59\x43\x9c\x46\x71\xba\xae\x0c\xb0\xdf\x0b\xcf\xf2\xc4\x65\xb2\x5c\x4f\xde\x7e\x10\xf9\x25\x07\x91\x5f\x03\x73\x50\xed\xe4\x5d\xfc\x30\x41\xff\x78\x9f\x58\x25\x8b\xde\x82\x4d\xd1\xd9\x56\x8f\x0c\xa5\x43\x0c\x62\x8b\x30\x8b\x97\xce\xe2\xb3\x0b\x25\x0c\xe4\x80\x7e\xbb\xc8\x8d\xbc\xe2\xb9\x9b\x48\x84\x3c\x01\x1f\xe8\xd0\x19\xdc\x97\x5c\x47\x39\xa0\x93\xd1\x54\x62\xf8\xa3\xc3\xe1\xcb\x49\xce\x11\xdf\x53\x7c\x49\x3f\xf3\x8b\x4d\x77\x52\x75\xb9\x64\x85\xa3\x91\x3a\x74\xda\xc4\x2d\x33\x53\x4e\xa9\x14\x45\x2c\xeb\x28\xfe\xb1\xe8\x29\x45\x3b\x0e\x23\x88\xa2\x7b\xcd\xbc\xca\x34\x27\xf3\xb2\x7d\x25\xc0\x37\x40\x96\x17\x3d\x3a\xc0\x82\xff\x43\x1e\x12\xda\x4f\x09\xab\x5c\xb0\x6d\x9f\x17\xe1\x86\x0c\x1c\x19\x50\xcf\x61\xeb\x20\x47\x00\xb8\x08\x52\x16\x82\xd0\x47\xa2\x4c\xf4\x98\xf8\x3d\xa7\x34\x20\xb1\xfc\x2d\xc0\x4d\xe6\xdd\xe4\xf7\x4c\xef\x52\xd9\x65\x10\x23\x5c\xa7\x8d\xab\xc9\xe7\x8c\x9c\xc1\xd4\x91\xac\xe8\x02\x13\xb7\x66\x04\x29\xa1\xff\xaa\xc7\x4e\xee\xe3\x95\xe7\x34\x5d\x5c\xea\x2b\xf1\xb1\x5f\xe1\xc1\xde\x2c\xcf\xb2\x03\x7b\xcf\x00\x29\xef\x35\xd9\xde\x94\x1c\xf4\xd0\x84\xee\xec\x5c\x0a\x58\x0c\x59\x0d\x84\xdf\x0b\xa2\x88\x78\x99\x4f\x29\x5e\xbb\x9c\xe4\xaa\xcc\x7a\xbc\x23\xe1\xe1\x1c\xa3\x81\xeb\x47\x63\x33\xb8\x39\x3e\xc4\x7c\x67\xe7\xcc\x3d\x5c\x7c\xe0\xcf\xbd\x23\xae\xc2\x25\xbd\xc3\xd9\x67\x80\x2b\xec\x13\x40\x74\x86\xb4\x47\xef\x8a\x69\xae\xed\xae\xc9\x13\xf0\xa6\x03\xff\x8f\x9b\x25\xef\xfc\xb2\xd7\x1b\xf2\xc7\x4e\xf1\x25\xb5\x04\x35\x4b\x2e\x2e\x04\x3c\x21\x19\x5e\xb9\x38\xd0\x2b\xa0\x84\xe8\x7c\x6a\x37\xfd\xfc\xca\x61\xff\x7a\x8d\x66\xeb\x5b\x87\xaa\x31\xbb\xde\xf8\xa6\x15\xd5\x83\x20\x5e\x12\x5f\x13\x04\x55\xbe\xff\xb5\xe9\x3a\x13\xe8\x79\x01\x0d\x95\x84\xd8\xd3\x54\x71\x19\x01\x0a\xe1\xc9\x26\xd4\x03\x0b\xea\xad\x66\xf3\x5b\x3a\x0a\x40\x0b\x80\xed\x74\xd3\xc9\x7d\xc3\x20\x62\xfa\x29\x08\xe0\xdc\x88\xcc\x4d\xd2\x52\xe1\xf2\xbb\x04\xed\xb1\xc8\xd8\x99\x62\x57\x88\x08\x17\x03\x5a\x5a\x81\xe8\x98\x2f\x6b\x50\xb0\x54\x90\x7b\x50\x3c\xce\xa2\x2c\x24\xe0\xa6\x02\x41\x76\x76\x84\xb4\x3d\xb7\x70\x0a\x75\x6f\x92\x71\x6e\x64\x94\x5e\x73\x30\xb1\x33\x32\xb4\xd1\x57\x1d\x85\xd3\xa2\x09\xab\x94\x4d\x27\x78\x12\x7b\x49\xa7\x2e\x3a\x7e\x14\xe6\xfd\xd2\x7e\xb9\x65\xee\x97\x0e\xfe\x5f\x9b\x53\xd0\x24\x47\x2e\x72\x57\x1f\x86\xe0\x40\xd9\xcf\x30\x88\x81\xa9\x31\x18\x38\xa6\x5c\x9e\xc8\x96\xa8\xc1\x1b\x39\x76\xb1\x2d\x48\xde\xb8\x72\xdf\x75\xa0\x04\x3a\x38\x4d\xf9\x9c\xf4\x75\xeb\xdd\x59\xed\xa1\xb0\xd3\x4b\x4b\x09\x73\x31\xb5\x31\xad\x86\x78\xd1\x44\xc4\x29\xf6\x42\x6b\x68\x36\xfe\x6a\x6e\x5d\x9b\xf3\xf4\x2c\xc4\xce\xda\x49\x69\xf0\x51\xb1\x9a\xe2\x3b\xd4\xe6\x09\xba\xf0\xd5\x29\xcc\x87\x43\x92\xaf\x2e\xa1\x27\xef\x27\xaa\xf2\x35\x65\x45\x9e\x23\x97\xf0\x7c\x9a\x5b\x31\x5c\x70\x43\x66\x46\x73\x2a\x3e\x09\xb3\xe1\x5f\x74\x5f\xe9\x88\x5b\xe9\x40\x7f\xbb\x7a\x58\x24\x32\x71\xfc\x81\xd0\x4c\xe3\x6a\xba\xe2\xd0\x14\xf8\xc8\xc4\x29\x0e\x68\x98\x55\xb7\x86\x66\xce\xb2\x3a\xce\x1a\x0b\x50\x63\x57\x9a\xa2\x85\x56\x7c\x87\x88\x2e\x79\xcb\xa6\x30\x18\x78\xd1\xfa\x4b\x8b\x91\xad\xde\x17\x6d\x8f\x09\xd4\xfc\x2a\xef\xcf\x07\x58\xff\x8c\xb4\x3e\xe0\xef\x6e\x9b\x7e\x9b\x8e\x3a\xf5\x5a\x7d\x71\x14\x5a\xc2\x62\xdf\x90\x29\x4d\x3e\xe8\x68\x0e\x47\x79\xb2\xf7\x7f\xda\xcd\xbd\x73\xf5\x0e\x9e\xde\xf7\xdf\x0f\xbe\xd9\x53\x4f\xf1\x71\xde\x7b\x9f\x43\xf2\x3f\x44\x5d\x97\x1d\x35\xe8\xd8\xdf\x93\xcb\xf4\x3c\xbb\x99\x67\x50\xd7\x0d\x00\x33\x23\xf5\xdd\xe7\xf9\x6d\x51\xc3\x3f\x64\x5f\xce\xb3\x3c\xda\x9b\x14\x8e\xfe\x0b\xad\x61\x53\x6d\x7c\x4e\x4a\xb1\xa1\xd8\xe2\x49\x4e\x3e\xdc\xe3\xdc\xfb\x49\x9b\x24\x50\x05\xe9\xa1\x51\x4c\xa1\x20\x7f\x2c\x79\xca\x98\xcb\x59\xd8\xf0\x5e\xa4\xbd\xe6\x58\x23\xf1\xc1\x79\x5d\x65\xc6\xe8\x38\xc8\xc1\x79\xf4\x84\x6a\x39\x79\x79\xd8\x36\xe7\xe8\xc9\x22\x0c\x62\x1b\xe9\x71\x67\xe7\x79\x5e\x65\x3e\x0f\x45\xfe\x91\x3b\x06\x0a\x22\xfc\x92\x2b\x8a\xed\xa5\xf9\x86\x62\x30\x6f\x7c\xce\xb6\xe2\xc7\x52\xf5\xf9\xa9\x9c\xe3\x5e\x7a\xc2\x92\x9e\x68\x16\xe4\x15\x9a\x3a\xd7\x38\x90\x78\x49\xe3\x51\x1c\x78\xc8\xaa\x2a\x3d\x85\xad\x02\xc3\xc8\x93\x1f\x8f\xb8\x22\x6b\x5e\x9d\x95\x2f\xbc\x65\x27\xa7\x99\x4e\x7c\x52\xa7\x03\xf2\xd3\x8d\xbb\x3f\xc4\xa2\x30\x13\xf6\xc6\x65\xa8\x8d\xd3\x97\x18\xa7\x74\xa9\x26\x7d\x1d\x9a\x72\x90\x50\x18\x97\xec\xe7\xb7\xc7\x78\x36\x00\x5a\x83\x9a\x24\xb0\x3d\xc3\x0e\x5a\xf1\x65\x19\xad\xf9\x54\xcd\x67\x1d\x3a\x64\xa1\xc8\xfe\x5d\xb6\x5c\xa2\x81\x0f\x7b\x4a\x76\x12\x60\xf3\x4c\xc7\x44\x70\x53\x76\x82\xac\xa1\x8a\x6b\x50\x5b\xd7\x69\x27\xca\x6f\xa6\x70\x34\x10\x57\xf0\x19\x5d\x99\x12\xe5\xc9\x5c\x0e\x6c\x16\x1a\xf4\x61\xed\x3b\x02\x24\x2e\x5b\xe3\x7e\x7e\xce\x56\xd8\xcf\xd1\x34\x04\xe8\x01\xf0\x58\x56\x66\x35\x11\xa7\xe3\x3b\x8e\xf6\xc5\x11\x80\xbe\x1e\x44\xd6\xf5\x51\x80\xce\x16\x6a\xe4\x6b\xa1\x26\x0e\x18\x6a\xda\xf3\x42\x0d\x7d\xc6\xd5\x60\x85\xc3\xe2\xaa\xb1\x5b\xc2\x1a\x3b\x92\xab\x91\x17\x92\xda\x78\x38\xe5\x07\x72\x8e\x84\x0e\x10\xf8\x69\x75\xc5\xbf\xc8\x1d\xd4\x8c\x3f\xa5\x9a\x76\xa1\x54\xb3\xee\x96\x6a\xd6\xc5\x52\x8d\xdd\x49\xd4\x44\xd9\xde\x7a\xfd\xa1\x7a\xb5\xf7\x1f\x7c\x80\xea\xb3\xf9\x7c\x36\xaf\x39\xd1\x64\x7c\x1f\x93\x15\xfa\x1c\xcb\x41\x52\xb9\x85\x96\x24\x75\x4d\x96\x9a\x21\x3a\x69\x85\xb7\x5c\xbb\x1e\x13\x73\xee\x65\xc5\x95\xcb\x05\x0e\xf1\x16\xab\x73\x3b\x66\xdc\x9a\xed\xb0\xf1\x3e\x0c\x75\xeb\x86\xbe\xe5\xb5\x1f\xfb\xef\x42\x7b\x15\xe0\x5b\x26\x12\x33\xae\xf2\x52\x91\x42\x01\x74\x8f\xa0\xfd\xe4\x59\x97\x86\x77\x3b\x2f\x58\x2a\xe6\xe5\xb1\x8d\x0d\xa5\x3c\xbb\xa2\x22\x08\x7b\x4e\xf3\x18\xf4\x41\xa0\x87\x09\x4b\x34\x27\xc6\x34\x0e\x35\x47\xfb\xcf\x8b\x5c\xfd\x94\xab\xdf\x72\x76\xd9\x84\xee\xd9\x4e\x71\xf3\xe9\xed\xa9\x97\xf0\xfb\x1f\x0d\x34\x8a\x7f\x0d\x4f\x61\xbf\xb7\x33\x88\x4e\x93\xfe\xaf\x3b\x83\x6f\xf7\xd4\x0f\xb4\xd5\x34\xbe\xed\xc1\x1e\x59\x7b\xbf\x1c\xa0\x30\x1f\xa9\x0a\x9a\xab\xcc\x7b\xdf\xec\x9d\x5f\xaa\xef\x65\x37\x4a\x87\x80\x75\x37\xe9\xd5\x15\xfe\xdb\x5d\x2c\x67\x73\xdc\xba\x1a\xf5\x5d\x9a\xbc\x05\x1b\xf4\x4c\x69\x33\xbb\x81\x13\x18\xfa\x52\x88\xa1\xd1\x37\x52\xfc\xc7\xa3\x93\x9b\x9f\x8e\x9e\x3e\xc7\x9b\x80\xb7\x64\x48\xb2\xf7\x7e\x6f\x4f\xfd\x85\x3e\xf7\xdf\x7f\x82\x8a\x06\xf5\x98\xc2\x12\xc1\x07\xec\xc6\x5e\xef\x3f\x62\x0e\x54\x14\x87\x68\xbb\x73\x03\xff\xdb\x53\xdf\xd0\x10\x01\x67\x70\x09\xa9\xe3\x1c\x19\x80\xdf\xe9\xef\x5f\xf3\x24\xf8\x76\x2f\xd0\x7e\x7a\x83\x6f\x45\xd7\xf3\xa7\x3c\xf9\x13\x05\x3d\x13\x49\xd1\xcf\x00\x78\x48\x2b\x19\x3a\xa4\x80\xf4\x3f\xe5\x94\x13\xc3\xe6\x41\x16\x79\x5b\xbf\xc8\x93\xbf\x88\xd4\xed\xa7\x42\xa8\x41\x0e\x5d\x62\x7b\x54\x3a\xa6\x57\x9a\xf7\xef\xec\x7c\x93\x6b\xc9\xe0\x37\x79\xb5\xeb\x8d\xae\x7b\xc0\xa7\x6f\xab\x24\x73\xe3\xed\x1b\x1a\xb5\xe2\x88\x0f\x13\x63\xef\xb7\x52\x99\xf1\xf2\x9c\x99\xd4\x26\xc9\xad\x7c\x62\x0f\x7b\x95\xf1\x1b\x11\xe7\x18\xfc\xa1\x1c\xd4\x21\x4c\x93\xe0\xcd\xeb\x77\x27\x28\x9a\x73\x54\x69\xaa\x2e\x5f\x53\xe7\xe2\x15\x55\xa0\xf8\x22\x36\xce\x61\x87\x1a\xe3\x85\xa5\xbb\x1d\xce\x2c\xca\x43\xbd\xa4\xc3\x38\x41\x9e\x3b\x60\x6b\x15\x73\x95\xc8\x3b\xda\x22\x43\x5d\x13\xa4\xf2\xec\xa3\x60\xc2\x77\x66\x30\xd9\x97\x57\x78\xed\x8c\x9a\xa9\xfe\x2a\x16\xd9\xfc\x1c\x75\x6d\xfa\xe4\x6e\x13\xf6\xa4\x05\x29\x35\xc0\xe2\xcb\x06\xc8\xab\x8a\x32\xb7\x39\x4e\xd0\x4e\x04\x6c\x16\x4a\x11\xf8\x99\xce\x17\xf8\xf8\x4c\x1a\x92\xd7\x23\xa4\x9d\x3a\xd7\x8a\x6e\x56\xf4\x1b\x6a\xd4\x55\x1c\x46\x8a\xe4\xb3\x8a\x62\x14\x6f\x05\xc8\x0f\x54\x16\x37\x15\x2a\x6a\xbc\x9c\x8d\x29\x60\x21\xba\x45\xce\x96\xe9\x39\xc5\xe8\x72\xb6\xce\x98\x66\x02\xa8\x80\x73\x0f\x3e\x59\xbc\x98\x8d\xd2\x69\xfc\xbd\xf0\x39\x2f\xf2\x7e\x6b\x10\x99\x3b\x70\x74\x61\x31\xc3\xbe\x93\x4e\x03\xbc\xca\x2d\xb9\x71\x77\xc1\x53\x89\xf8\x39\x19\x91\xcb\xbf\xbd\xcf\xbb\x9f\x3e\x7d\xda\x45\xaf\x64\xbb\xd0\x1c\x6f\xf9\xe3\x2e\x79\x64\x46\x86\xf8\xe7\x93\x1f\x76\x1f\x05\x8a\x35\x13\x50\xe8\xff\x6d\x10\xff\x15\xba\x84\xb6\x3d\x01\xfe\xdd\xbb\xc2\x4d\x3b\x60\xc5\x76\x4e\x61\x4c\xf9\x8c\xef\x5e\x4b\x97\x53\x55\xa3\x0c\x9f\xf1\xfb\x3f\x16\x74\x03\xe7\x64\xc0\x14\xc9\x81\xe6\x6b\x72\xd3\xef\x98\xef\x5e\x63\x9d\x58\x7a\x8f\x9b\xa3\x96\xf6\xb8\x26\x2a\xbd\x87\x4a\xd7\x8c\x17\x3f\x90\x69\x19\x17\x09\x74\xe2\x5f\x5f\xbe\x08\xa4\xef\x2e\xfe\xe8\xce\xe8\xb4\x3f\xbd\x7b\xfd\x8a\xdb\x85\xed\x0b\x0f\x44\x38\x6e\xea\x58\x10\xbf\xa3\xb5\xaf\x68\xa4\x35\x1a\x29\x82\x97\x5f\xb1\x16\xba\x0f\x21\x04\xc7\x5a\xe4\x03\x0e\xd8\xa4\x43\x27\xe0\x9c\x34\x4d\x97\xaf\xd9\x26\x81\xe7\x59\xcf\x11\x79\x22\x59\x1b\x4c\x58\x5d\x6d\x3a\xa2\xff\x16\xfe\xc6\xf6\xad\x2e\xce\x60\x1c\xbc\xf8\xb7\xb0\x90\x4a\xa6\xd3\x98\xf0\x06\xa8\x1f\x4b\x6b\x5e\x84\xc7\x79\x44\x69\x27\xf3\x34\x5f\xe0\x09\x14\xd2\x7e\x97\xb4\xc2\xc1\x5a\xbf\xd5\xe6\x45\x11\xfc\x99\xfa\xa8\x86\xea\x93\x7a\x96\xe4\x5d\x0c\x79\xfc\x19\xc8\xcb\xe7\xa4\xad\x56\x40\x4f\xf0\xf6\xe0\x64\x72\x89\xcc\x0d\x86\x31\x19\x25\x4b\x20\x7c\x13\x94\xaf\xa8\x93\x06\x86\x41\xfc\x02\x4b\x73\x09\xf4\x0c\xb8\x8b\xfd\x18\xc3\x62\x67\xdf\x25\xed\x26\x90\xa2\x4e\xb3\xf9\x1d\x6c\x89\x9d\xe6\x3e\x8a\xed\xd0\xc6\x39\x1c\x26\xa7\xe1\x95\x3a\x21\x49\xfb\x30\x79\x09\xcf\x43\x78\x43\xa3\xd9\x5e\x78\xd5\x98\x9c\xe9\xc5\x04\x59\x3f\x25\x27\xc8\x3f\xbf\x95\xc9\xfc\x89\xec\x50\xc3\xe0\x05\x2c\xb9\x5d\x9d\x0d\xef\x86\xf9\x38\xef\xae\xc4\x7e\x3a\x48\x3e\xc1\x97\xea\x0a\x70\x8d\xda\x72\xf8\xc6\xf9\x23\xd5\xe6\x8e\xc2\xd0\x70\x47\xc4\xc3\xfa\x15\x7b\x1c\x7b\x96\xc0\xf1\x5d\xd0\x37\x88\x65\x3c\x9c\xba\xbc\xd4\x5d\x89\xc3\x67\xc9\x10\x8e\xf4\x00\x0b\x75\x06\x4f\x14\xea\xe1\x23\x3c\x10\x3f\x07\x60\xd9\xfe\x18\x45\x71\xf8\x31\x79\xa6\x42\x34\x27\x7e\x86\xe7\x1e\xa8\x23\x63\x92\x05\xa0\x22\x5b\xea\x26\x6a\x4f\x9f\x50\x3d\xab\x05\x40\x4d\x3f\x52\xcc\x4c\x0c\x5d\xf7\x0c\x85\x6e\x00\xaf\x73\xa4\x9d\xb3\xe9\x47\xd6\x1e\x18\xab\xfe\x99\x7a\xa6\x4e\x06\x51\x8c\x1f\x70\xb7\xd0\xe9\x27\x90\xfe\x71\x60\x2b\x45\x7f\xe9\xe1\x97\x48\x7d\x81\x99\x9c\xa2\xee\x9e\x66\xfd\x66\x3d\x8f\x6e\xc6\x2e\x45\x85\x5a\xae\xa0\xd1\xb3\x18\x6b\xba\x44\x2d\x93\xcc\xa9\x1f\xd2\xa6\x14\xf0\x48\x57\x55\xa0\xcd\x58\x1a\xf2\xec\xee\xd2\x7d\x37\x12\x4f\xc7\x23\x9d\x57\x86\x48\x3b\x80\x60\x5d\xf6\xcd\x44\x07\x95\x4c\xb1\x13\xcf\x24\xa7\xb8\x24\x15\xfa\x9e\x1c\x20\xcf\xac\xbb\x10\xc8\x31\x2c\x87\x31\xcc\xa5\x2c\xcc\x9b\x9b\x2b\x75\x61\x5f\x51\x61\xca\xd1\xa2\x1d\xcb\x61\x86\x04\x4d\x63\xeb\x83\x59\x9d\x63\xb5\xcf\xb3\x33\x98\x2f\xf4\xb4\xcc\xd1\xd8\x9e\xa5\xd3\x29\xde\x9b\x2d\x30\xd4\xdc\x08\x5d\xed\x5f\xce\xe6\x5f\x02\x04\xee\x95\x03\x6e\xb2\x60\xf9\x88\xdc\xd0\x10\xff\x7c\x4e\x9a\x80\x9d\x01\xbb\x85\x05\xd4\x51\x27\xc9\xb5\x5d\x49\xb0\x86\x4a\x68\x5b\xd6\x75\xc1\xf3\x5b\x1b\xf0\xf0\x33\x07\x34\x3a\x8b\x38\xf8\x1a\xc0\x64\x99\xfc\x20\x5c\xd1\x02\xc3\xa2\xf4\x97\x65\x53\x9c\x64\xd9\x6f\x0f\x20\xe3\x19\x06\x79\xf1\xbe\xac\xbd\x53\xf4\x92\x4f\xd1\xcb\x35\xf6\xe8\xe9\x74\xea\x77\x6a\x51\x21\x90\xa0\x2e\xf5\x16\xe2\xe5\x63\x81\xe3\x00\x70\x2e\x96\xa5\x61\xb8\xd2\x61\xaf\x0b\x9a\x7d\xfa\x8c\x9e\xda\x93\x21\x5e\x26\x0e\xe9\x22\x0f\x0e\xdb\xa8\xb9\xbe\xd4\xfc\x01\x1e\x4a\xe6\x93\x71\xf6\x12\x88\x13\x07\x93\x2b\x6f\xe2\x9f\x29\x04\xdb\xa5\xe4\xc0\xf8\x8f\x5c\xd6\x4e\x4d\x35\x64\xc9\x37\x4e\xfb\xbb\xcf\x04\xd5\x25\x1f\x44\xbf\x20\xa3\xd0\xff\xc2\xf1\x22\x96\x83\x01\x9f\x54\x4f\x1a\xe9\xf4\x53\xfa\x65\x11\x66\x7d\xbd\xc0\x0a\x7e\xc2\x14\xb0\xe8\xf3\x4a\x97\x29\x37\x37\x9f\x4c\xfc\x15\x0c\xb9\x42\x19\x51\x45\x79\x0e\x5c\xa1\x1e\x27\x9d\xd4\xcf\x51\x98\x73\x39\x01\xf8\x9c\x58\xe6\x2a\xb9\x44\x8f\x2e\xb8\xae\x79\xc5\x02\xbd\x43\x76\x0e\x12\x88\xa6\xc0\xeb\x59\x3a\x99\xaa\xab\x06\x6c\x4c\x49\x88\x44\x87\x1e\x6f\x6e\x7e\xca\x91\x86\xd8\x93\xf3\x4b\x12\x85\x9b\xd7\xb7\xb9\x22\x86\xa4\x1e\xec\xed\x05\x18\x20\x91\x5c\xe7\xe6\x18\xab\xe2\x62\x36\x46\xb1\x3b\xab\x65\x5e\x99\x14\xce\x02\x39\x35\x9f\xb9\x30\x02\x77\x9b\x86\x87\x23\x68\xc5\x9b\xec\x52\x50\x42\xc6\x3b\x58\x9c\xf3\x19\xb0\x3f\xb3\x4b\x60\x4a\x88\x87\xd6\x8c\x3e\x8d\xa0\xc0\xeb\x2b\x2f\x7b\xb2\xcd\x0e\x84\x61\x00\x80\x8b\x34\x10\x8c\xf1\xd4\x96\x37\x8c\x29\x18\x4e\xfa\x1d\xbc\x49\x06\x66\x78\x79\x15\x23\xa1\xc7\xdc\xbd\xe0\x51\x13\x88\xde\xfe\x7e\x27\xa0\xfb\x6c\xe4\xca\x0a\xd9\xa8\x36\x2f\x1f\xb5\x8e\x23\x44\x1d\x5c\x87\x6b\xb3\xfe\x3c\xcc\xf1\x42\xe7\x13\x90\x24\x46\xfa\xc7\xef\x08\x67\x47\xc8\x02\x87\x1e\xd8\xdb\x81\xe8\xe6\xea\x04\xb6\x26\x5a\xe9\x82\x2b\x27\xdd\x29\x40\x88\x99\x45\xa4\xbb\x4d\xbe\xdf\x60\xc2\x8a\xee\x1c\x37\x91\x56\xe4\xa0\xcd\x7c\xf2\x0f\x80\xf2\x67\x60\xe8\xb5\x56\x39\xc6\xbe\x5c\x68\xbd\xe5\xed\x37\xc2\x9e\x72\x56\xbc\x1b\x27\xf0\x7b\xb9\x68\x81\xc9\xc0\xe4\x7b\x3d\x09\x4f\xa5\x64\x1a\xf5\x82\x1d\x00\x56\x2f\x88\xea\x32\x4c\xd1\x47\xe5\x37\x9a\x3b\xd4\xbf\xd5\xbe\xf1\x18\x59\x5f\xdb\xe2\xa9\x41\xcb\xd7\x80\xa5\xdf\xb4\x4e\x93\xa0\xfe\x5b\x5e\xaf\x47\x71\x5a\xaf\x6c\x26\x30\x39\xb0\x72\x8f\xa5\x28\xf3\x09\x3b\x3b\x27\x8d\x22\x91\x0a\x83\xe3\x33\xc3\x61\xec\xbe\x9b\x00\x91\x0e\x54\xb9\x28\x9f\x08\x98\x7d\xd8\x58\xcd\x2b\x58\x8f\xbb\x2f\x11\xc7\x03\x27\x3b\xf4\x2c\xb4\x58\x63\x61\x89\x6f\x0e\x87\x2f\x91\x1b\x73\x37\x2d\xaa\x6e\x4a\x2a\xd8\xc5\x2c\x81\xf2\x6a\xa1\x8d\xbf\x54\xe0\x29\x9d\x04\x02\x77\xc9\x92\x05\xfe\x95\x68\x2f\x2f\xfa\xfe\x97\x41\x6f\xe3\x97\x3a\x9e\xe9\xd1\x50\xcc\x4b\xee\x05\xaa\x16\xd4\xff\x9a\xd7\x83\x6e\xed\xb7\xa4\xd9\x68\xd2\x1d\x61\x14\xdb\x6a\xa0\xd4\x80\x15\xd8\xc9\xdf\x22\x00\x82\x77\x95\xa8\xa2\xbf\x33\x65\x3e\x93\x1f\x46\x20\x89\x57\x0d\x36\x88\xc2\x83\x1d\x21\x8e\x7d\x65\x25\x4e\xa0\x8c\xea\x2a\x12\xef\x8c\xbc\x80\xcc\x0a\x12\x52\x1b\x75\x3f\xa1\xd3\x14\x78\x0c\x4c\x47\xae\x85\x9a\xc6\x2d\x45\x64\x14\x7e\x35\xc1\x8d\x5b\xeb\xe8\x04\xda\x0f\xaf\x74\x27\x46\xc9\x4f\xc0\x6d\xcb\x2a\x8d\xae\x3d\x86\xb8\xe5\x73\x57\xf6\x14\xaa\xd9\x21\x00\x05\x9e\xeb\x10\xe8\x4b\x66\xb0\xf1\x00\x1f\xae\x12\x18\xbe\xe6\xb8\x9d\x1d\x56\x77\x3a\x90\xcc\xe4\x45\x4a\x97\x8c\x58\xa8\xf2\x19\x5a\xc5\xe0\xba\x70\x4a\xfd\x88\x52\x2e\x16\xad\x3c\x63\x1e\x81\x36\xb4\x88\xb4\xab\x6b\xcf\xba\xf3\x70\xb7\xa5\x9e\xc1\xd1\x96\xb6\x31\x7a\x0b\x5e\xcd\x6a\xe6\x1c\x61\x05\x19\x27\xb4\xfd\xe3\x39\xe8\x16\xbf\x51\xac\x44\x83\x42\xb7\x80\xce\x4f\x11\x15\x7a\x47\x87\xbf\x8d\xba\x8f\x4e\x21\x6d\x19\xe0\x47\x5c\x47\x4d\x1d\x15\xa0\xbf\x70\xff\xec\x4e\xda\xbb\xc8\x1a\x38\x69\xe2\x4b\xd6\xd6\xee\x08\x54\xe6\x11\x29\x69\xcd\x60\x5f\x50\xda\x83\xab\xaa\x12\x95\xe4\x56\x54\x32\x63\x29\xc9\x5c\x69\x84\x98\x18\xf5\x40\x87\xbb\x34\x47\x6a\x1e\x80\x9c\x9d\xed\xc1\x57\xd5\xbc\xb3\xf1\x86\x74\x74\xf1\x52\x95\xfe\x79\xd7\x7e\xf1\x8e\xd0\xd2\x5a\xa5\x8f\x98\xc2\x91\x97\x8e\xae\x52\xc5\x06\x75\x7d\xc7\xe8\x91\x43\x29\xd9\x61\x9a\xb3\x66\x68\x74\xf6\xdd\x3a\x32\x43\xbe\x39\xb4\x0a\xbf\xa1\xdf\xed\xac\xb0\x87\x8b\x07\x7e\x16\x80\x64\xd2\x24\xe6\xdc\xb2\x8d\x19\xe4\xab\x6e\x0c\x19\x33\xb7\x56\x1b\x5e\xe0\x47\xa2\x0e\xa4\x59\x1d\xe0\x53\x10\x91\x91\x7d\x49\xcd\x47\x50\xfa\x7a\xe1\xb9\xdf\xc0\x80\x2a\xd7\x15\xa2\x47\x63\xad\x92\xf3\x4a\x4d\xe0\x74\x9f\x35\x38\xf5\x19\x4b\x56\x48\x57\x40\x4b\x59\x0a\xdf\xc8\xf9\xe6\x7c\x04\xc9\xb8\x69\xe6\x8d\x19\xdd\x2f\x24\xf8\x40\x64\x82\xce\x8a\xe2\xe9\xdd\x67\x8c\x51\x70\xbe\x9d\x3b\xc4\xe4\xe6\x66\x0f\xcb\x66\xe3\x1b\x4d\x8b\xf6\xe4\x42\xdc\xc9\x44\x9a\x87\xb7\x37\x23\x91\x58\x5d\xab\x84\x5b\xbc\x45\xe0\x31\x8b\x44\xec\xb0\x6c\x42\x38\xd2\xa3\x43\x7f\x3e\x1b\xe2\xe5\xe4\xbc\x64\x38\xee\xbb\x6b\x2b\xb0\xbd\x00\x61\x6c\x8c\x7b\x07\x20\x67\x07\xd1\x22\x27\xff\x85\xbc\xb0\xfe\x0d\x25\xe1\x49\xf4\xbe\x17\xf6\x92\x9d\x9b\x6f\xa2\x9b\xf7\xbd\xf7\x3d\x8a\x82\xef\x2c\x38\xa4\x2e\xc0\x8d\x8d\xe4\xe4\xc5\x42\x9f\x2b\x7d\x10\x2b\x5b\xe8\xff\x92\x73\x18\x50\x3e\x71\xb2\x49\x0f\x30\x09\xcc\x23\xb8\x8c\x3a\x1e\x2e\x70\x82\xab\x91\x1f\x5b\x21\xc9\xd0\x95\x83\x93\x15\x7a\x8c\x79\x83\x32\x6d\x0b\x3f\xf3\x37\xad\xb8\x80\x38\x00\x5c\x0a\xfc\x25\x5d\xda\xc2\xbd\xb8\x30\x03\xdb\xa1\xb7\xd9\xb3\x75\xb1\x91\x2d\xdf\x29\xef\xc3\xfb\x56\xdb\x20\xf1\x57\xc0\x87\xe2\xaf\x23\x95\x86\x4a\x79\x18\xe4\x50\xc1\xdb\xb2\x81\x42\x4a\xf7\x35\x38\x0b\x97\x90\x85\xaf\x18\x59\xc2\x4b\xc0\x0b\x4a\x3f\x45\xad\x7a\x68\xa6\x98\xe0\x1f\xc3\xc9\xfd\x8d\x38\xb9\xa0\x3e\x33\xd9\x35\xb8\xf2\x02\xff\xa8\xc1\xa6\x99\x3b\xc9\x4e\xf7\x9a\x18\x91\xbe\x61\x29\x5d\x5f\x96\x2b\x8b\xef\x9c\x9d\xc1\x10\x3a\xf1\xcb\x8e\x9b\x7a\x88\x8a\x38\x9f\xd2\x45\x2d\x9f\x2d\x6b\x88\x4a\x24\x4b\x42\x20\xac\x95\x0f\x94\x84\xb7\x33\xe0\x7d\xd1\x03\x34\xb9\x81\x76\xab\x5e\x58\x71\x39\x3a\xe5\x96\xb3\xa0\x93\x81\x0a\xa4\x2a\x87\x1f\x1a\x9f\x0f\xde\x79\x01\x5a\xbf\x18\x2b\x37\x52\xb8\xf5\xa1\x8f\xb3\x99\x86\x6c\x33\x04\xed\x26\xcb\xb5\x63\x51\xa7\x75\x5f\x78\x3d\xfd\x29\x57\x3f\xe6\xea\xcf\xe8\x4a\xfe\xbf\xf0\x84\xfd\x94\xce\x06\x7f\xe5\x4b\x59\x47\x24\x2f\x8b\x84\x98\x9f\x0c\xb9\xb0\x3f\xe5\xd1\x9f\xd0\x40\x5c\x16\x68\xb7\x78\x0f\xfc\xf9\x62\x5e\xac\xae\x57\x82\x34\x87\x26\x10\x21\xf7\xce\xce\x6b\x5c\x7c\x3f\x84\xd1\x3a\x7e\x0d\xbd\x2a\xde\x35\x63\x95\xa1\xaf\xb0\x3c\x9b\x2f\x92\xed\xed\x1f\xf1\xe2\xe3\xd3\x64\x79\xf1\x6c\x9e\x8d\x01\xc0\x93\x74\xba\x40\xb5\xdd\x1f\x73\xa9\xc5\x18\x38\x42\x6d\x94\x5f\xfd\x98\x9b\x0b\x10\xbb\x95\xb8\x4a\x2a\xc8\x06\xe5\xee\x16\xe2\x7b\x83\x80\x86\xe5\x52\xbe\x7a\xa3\xf0\x03\x92\xc3\x62\xa1\xbe\x73\xc0\xe2\x15\xd0\x42\xbc\xce\xee\xad\x1a\xb3\xab\x2c\x97\x10\xc6\x2a\x17\xe2\x4f\x1b\x88\xb2\xd9\x88\x0a\x2f\x16\x9f\x66\xf3\x71\x14\xdf\x52\x04\x91\x1c\x5a\x61\x39\x38\x1b\x64\xe3\x3c\xb9\x89\x2b\xb2\xd1\xb3\x09\xf0\xda\xcd\x8d\xd0\x63\x67\x07\x6a\x2f\x88\x4a\xaa\xd2\x42\x5b\x84\x16\x96\x0b\xa3\x49\x3f\xf8\xeb\xae\x70\xe4\x70\x26\x22\xd7\x02\xe4\x74\xb2\x2a\x3d\x09\xfe\xfa\xf2\xc5\x4f\x70\x64\x96\x0f\x8e\x6f\x17\xea\xfa\x24\x5a\x95\x19\xfc\x85\xc2\xb0\xc8\x9a\x61\x9d\x46\xd7\xeb\x15\xb3\xb1\xb9\x77\x3e\xe2\xb5\x09\x67\x22\x8a\x10\xe6\x46\x49\xd0\x74\x78\xc1\x52\x40\x8e\xc9\x7c\x16\x92\x13\xcd\x9b\x9b\x7d\x72\x90\xe1\x6e\x95\xf8\x2d\x61\x15\xd9\x55\xd5\x4e\x49\x17\xb6\xb3\x2b\x58\x3e\x3b\x3b\x72\x64\xfd\x53\x4e\xc7\xbe\x49\xb4\xbf\xed\xd7\x86\xe0\xd4\x07\x0a\xe4\xa6\xaf\xcf\xd8\x5e\x67\x25\x02\x21\x35\x85\xc7\x4a\x09\x5a\x18\x95\x3d\x4b\xaf\xbc\x4b\x31\x09\xf5\xff\x79\x99\xf8\xe9\x0c\xd4\x91\x69\x03\xd3\x04\x7a\x57\xc0\x1c\x27\x41\xb0\x5e\x10\x13\x21\xcb\x90\xce\x91\x76\x4e\x7b\xad\x76\x1b\xe3\x97\x2e\x28\x12\x41\xbb\xb9\x1f\xc5\x8b\x84\x1b\xea\xc1\x4e\x1f\xef\x37\xf7\xd7\x52\xdd\x18\x96\xcd\xcd\xcd\x0c\x0f\x08\xb0\xad\x9f\xed\xec\xcc\x60\xb6\x50\xd0\x8a\x2a\xe7\x82\xa5\xbd\x22\x80\x7b\xce\x19\x66\x1e\xc5\x61\x9a\xd4\xeb\x7f\xce\x09\x9a\xe1\x9f\x00\xa3\xe0\x0f\xc2\x88\x95\xf9\x58\xf1\x22\xfc\x2f\x54\x15\x27\x20\xa3\xd3\x92\xca\x59\x81\xaa\xe6\x61\x15\x6f\x81\x7a\xa1\x45\xa6\xe2\xbf\x73\x38\xc1\xa9\xe5\x9c\x6f\xba\xd9\xbc\xe8\x06\x0d\x7f\x6e\xd0\xda\x07\x6f\xbc\xf3\x79\xc1\xfc\xac\x17\x8b\x05\xda\x4d\x64\xec\xd6\xd8\x64\xcd\x1a\xb8\xcd\xa1\x42\x40\xdd\x15\x47\x1a\x85\x5a\x26\xf3\xa4\xff\xcd\x40\xcd\xe6\x09\xdd\xab\xf5\xab\x84\x9c\xac\xe0\xc4\xf6\xdb\x9f\xb2\x4c\xd4\x1a\xd1\x8f\xfa\x88\x02\x34\x4e\x92\x7c\xce\x12\xae\x65\xc4\x86\xc2\x22\xa3\xf2\x6c\x3c\xb2\x01\x2a\xfe\xb0\x85\x07\x87\x6f\x77\xbf\xc1\xce\x7e\x45\x81\x52\x66\x3b\x3b\x75\x3c\xf1\xe8\x2a\x45\xb1\x30\xe7\xc0\xd1\x19\x99\x49\xb4\x80\x7e\xb5\xc9\xa0\x0c\x83\xb9\x43\x5b\x58\x0e\xaf\x7f\xe1\x8c\x84\xaf\xd0\xa3\x09\x5d\xa2\xc3\xcc\xcd\x6f\x6e\x5a\xdd\xf1\xac\x46\x7e\x0c\x82\xc6\x01\xec\x86\x7b\xc9\x42\x19\x25\x7f\x5d\xb1\x4a\x61\x53\xee\x7e\x02\xfe\x2f\x0b\x31\xdc\x4b\xb8\xd0\xe3\xdb\xc3\xee\xa0\xc3\x0a\xc0\xb7\xdd\xdd\x95\xb1\x41\x9d\x90\xd4\x28\x47\x1c\x9e\x2f\x93\x3a\xac\x6c\x6c\xac\x89\x24\x30\x9f\x2c\x93\x19\x3c\x00\x11\x60\xf1\x5c\x5a\x0f\x27\x62\x53\x83\xe2\xbc\xb8\x8e\x7f\x31\x9e\xd7\x80\xb6\xa9\xa7\xf9\xe4\x92\x78\x23\x27\x2c\xe3\x5b\x75\xbd\x44\x68\x97\x24\xcf\x25\x73\xd6\x70\x49\x57\x0b\x2c\x94\x88\xe9\x76\xde\xe8\xdc\x74\x8b\x0e\x52\x32\x6b\x65\xa7\x1d\xa2\x90\x86\xd2\x6c\x4e\x71\x84\xe7\x24\xae\xee\xcb\x3b\x8c\x84\x42\xed\xa2\x66\x0d\x7a\x79\xa9\x8c\x81\xbb\xec\x4d\xe6\x26\x63\x16\xc5\xf0\x26\x7e\x5e\x85\x1b\x25\xa4\x49\x8e\xd5\xb1\x1b\xa8\x0f\x98\x1f\x20\x1e\x2b\xf4\x9f\x1b\x1f\xab\x09\x40\xac\xa4\x00\xc3\x67\x62\xb6\x89\x83\x39\xd2\x91\x0e\x51\x35\x30\xc9\x75\x10\x8a\x05\xd0\x1f\xba\xd2\x5b\x7c\x22\x3d\x74\xbe\xfa\xe6\x6b\xcd\x64\xa9\x63\xcc\xe1\x0c\x89\x16\xdf\x27\xc1\x67\x42\x5d\xae\x04\x66\x89\x43\x5a\xcb\xcc\x15\x51\x37\xb7\xa8\x0b\xcb\x7e\x35\x2f\x33\xea\x34\xb4\x2b\xd1\x0c\xd6\x9d\xb4\x11\x99\x25\x7a\x62\x8f\xfe\x8a\x37\x49\xa7\x88\x0d\xfe\x6f\x3e\xc3\x11\x65\x95\x57\x86\x32\xb8\xbd\x29\x4e\x99\xc1\xd0\x13\x17\x12\x8d\xf1\x6a\x4e\x08\x46\x96\xf9\x04\xb4\xbe\x03\xc0\x81\x76\x24\x58\xcc\xfe\x6d\xa6\x9a\xaa\x55\xfd\x2d\x8a\xb5\xf7\x41\x80\x69\xa8\x21\xb9\x6b\x21\x1e\x7d\xbb\xac\xdb\x37\xbf\x12\xd8\x73\xaf\xc4\xa1\x99\x9b\x64\x4d\x98\x79\x59\xea\xfa\x25\x76\x03\x9d\xc2\x16\x14\x26\x77\x71\x3b\x20\xcd\x67\xb9\x88\x70\x91\xaf\x81\xd8\xe6\xe0\xa2\xf3\x49\x39\x95\x25\xd7\xc6\x2b\x6a\x41\xd3\x5b\x5f\xb6\x78\xf7\x4d\x19\xf5\xb8\x9f\xf1\x7c\xa0\x66\x21\xbe\x6b\x85\x69\x76\xba\xe0\xa6\xe9\x9c\xb8\x7c\xb5\xf6\xb4\xd0\x22\xfa\x80\xd7\x1a\x18\x4d\x93\x0d\x53\xc8\x9a\x6f\x19\x37\x31\x40\xa4\xdb\x4e\xd1\x70\x81\xf5\x42\x3e\x13\x30\x4d\x0b\xe5\x24\x8a\xf8\xe0\x75\x30\xac\xe8\xa1\x6b\xad\x26\x05\x0b\x46\x69\x92\x1a\x39\x96\xb7\xde\x18\xd0\x72\xf2\x53\x3d\xa3\x75\x55\xec\x3a\x99\x55\x7e\x5a\xeb\xb9\x91\x19\x34\x61\x96\x93\x72\x2a\x1a\xf3\x50\x28\xa8\x42\xe0\x3d\xea\xb2\x6b\xa2\x49\x09\x9e\x2f\xca\xaa\xa6\xdd\x50\x93\xa8\xf7\x8f\x7b\x2c\xec\x93\xb8\xcb\xc2\x0f\xee\xb3\x25\xa5\x1b\xad\xbc\xcb\xaa\x37\xdd\x2a\x15\x46\x3a\x55\xfb\x98\x01\xd4\xa9\xc2\x0c\x78\x83\x92\x16\x2b\xe5\xa5\xb4\x23\x64\xe1\xef\xcc\x18\x28\xae\xb7\xac\xde\x78\x06\xac\xd8\xc9\xec\x0e\xdd\x41\x91\x03\x3c\x8b\x08\xcb\x8c\x85\xaf\x6a\x6a\x5b\x62\xb6\xd6\x37\x8d\x1a\x83\xe1\xe5\xda\xa8\x1c\xca\xb7\xdb\xe2\x09\x4f\x16\x47\xe8\x9b\xd0\x68\xcf\x92\x27\x2e\x74\x3b\x92\x8d\x43\xce\x0b\x1b\x72\xc9\x97\xc2\x5b\x06\x80\xa3\xa2\x04\x8d\x46\xa8\x2f\x8b\xcc\xef\xc8\x04\x72\x23\x5d\xf0\x33\x58\xba\x8b\x0b\x32\x7d\x59\x52\xe8\xd0\x90\x4e\x7a\x5a\x67\xb4\xc1\xdf\xe1\xcc\x8a\x5c\x5f\x83\x38\x1d\x12\xa2\xf7\xac\x65\x75\x2a\x10\xa6\x8f\xa1\x64\x52\xa9\x04\x36\xdd\x60\x37\x55\x71\x01\x4a\xcd\x77\x4d\x88\x47\x7c\x53\xc8\x2f\xea\xde\x54\xa9\xe8\x89\x62\x9c\x56\x04\x60\xcf\xe8\x28\x3c\x70\x7a\x84\xd8\x72\xf6\x39\x50\xfd\xc1\x86\x40\x4b\xdc\x3e\xc6\x0c\x92\xf8\xf2\x88\xf2\xf5\xc0\xb2\x75\x01\x03\x1e\xa5\xeb\x73\xc0\xac\xc4\x83\x21\x9f\xf8\xd0\xb6\x7e\x80\xbc\x13\xec\xf1\xd8\x73\x60\xd9\x42\x7c\x71\x54\x98\xc9\x52\x34\x2d\x67\x9c\xcf\xad\x2d\x9f\x2e\xc4\x21\x5b\xb4\xbb\xb5\x6e\x8e\x3e\x8b\xd0\x91\x3c\x2d\xba\x6d\x76\xe4\xcb\x07\x1f\xea\x2d\x7d\xa2\xfe\x6e\xd3\xea\x08\x29\x01\x31\x8c\xe7\x14\xc3\x5c\x25\x68\xe7\x4f\x8c\xcc\x08\xe5\x73\xe8\x91\x95\x24\x8b\x73\x76\x8b\x37\xce\x18\x5a\x84\x16\xec\xea\x82\xe7\xbe\x32\xf8\x8a\x16\xd1\x64\x89\x40\xf7\x36\xd0\x52\xb8\x20\x17\x62\xc8\xea\xf6\x35\x84\x03\xe4\x2e\xed\x2b\x03\x7c\x50\x80\xf8\xbc\xa7\x3d\x84\xc5\x4d\x06\x8e\xc6\x4c\xd4\xb1\x5a\x36\xdc\xbe\xd3\x44\x23\xcf\xac\x27\x82\x7e\x1d\x5f\x1e\xe4\xce\xd2\x02\x77\xc9\xc0\x5d\x32\x70\xc5\x4b\x32\xc2\x74\x39\x30\x08\x8f\xa8\x46\x09\x16\xa6\xe4\xf6\x50\xc3\x73\x49\xf0\xd4\x01\x8e\x52\x09\x70\x84\x21\x9a\x60\x7e\xb1\x1c\xf7\xd6\x7b\xb1\x3d\x8a\x34\xd6\xeb\x51\xad\xfd\x38\x2b\x8b\x29\x90\xce\xe7\x18\x76\xef\xf7\x90\xa9\x29\x30\xed\x98\xf6\xf3\x15\xa6\x10\x61\x95\x94\x13\xf6\x9b\x00\xa9\x42\x7e\x23\x85\x14\xed\x38\xb7\x4e\x0b\xb8\x86\x35\xa5\xbf\x5e\x2d\x9d\x0f\x54\x11\x7f\x90\x7a\xec\x37\xa9\xee\x1e\xd1\x2f\xb2\x32\xbd\xd4\x74\xd0\x28\x5c\x8b\x3d\x23\x52\xb2\xa4\xd2\xa9\x1f\x42\xbc\xac\xf5\xd3\x2b\x10\x35\x74\x98\x20\xb7\x71\x39\x9e\x6f\x61\xdd\x8b\x6d\xb5\xc3\xce\xc3\x62\x56\x9a\xc5\x02\x0e\x8b\x19\xb4\x98\xf3\x2e\xb5\x99\x82\x63\x5a\x01\x1f\x0c\x01\x9c\x1b\xe6\x2c\xe1\x3d\x7f\x76\x76\xd6\x6b\xc6\xd6\x24\x5f\xfb\x00\xb0\xfc\xa0\x7d\x8c\xed\x23\x2e\x7d\x61\x1a\x70\xcc\x8b\x9e\xfb\xd2\xb7\xf9\x38\xdc\x85\xfe\x60\x7d\xb9\x69\x6f\x00\x8c\x90\x37\x37\x73\x4b\x8a\x9b\xe4\x62\x40\xde\x79\x29\xce\x1b\xb3\x29\x70\xe0\x46\x37\x44\xd9\xc7\xc4\xb7\x32\x74\x6f\xc5\xb0\x50\x84\x16\x95\xf0\xeb\xe0\xa6\x92\xba\xcb\x54\x42\x3e\x20\x6b\x2d\xfb\x3e\x9d\x1d\xae\xd1\xa4\x30\xad\x74\x21\x94\xc1\x9e\xf0\xc9\x8f\x7e\xa1\xbf\x35\x0e\xf0\x6a\x1c\x16\xc5\x0c\xd8\xb6\x6f\xe9\xf1\xcd\x71\xb4\xd7\x66\x96\x82\x09\x41\x22\x6a\xdc\x9f\x93\x22\xf3\xc9\xc9\x90\x6d\xf4\xa1\xb8\x21\x66\x4c\x7e\x84\x94\xcc\x13\xa6\x1f\xff\x6d\xb5\xf0\xbb\xf3\x27\x36\x80\x19\xac\xda\x2c\x41\xcb\x33\x95\xa1\xa0\x12\x9f\x98\xa4\xe6\x7a\xa9\xcf\x77\x77\x61\xb1\x1b\xcf\x44\x84\x6f\xc4\x0c\xe2\xbd\x82\x82\x7a\x97\x6b\xd3\x1b\x68\xd2\xdb\xe9\xb2\x90\x89\x2d\x77\x46\x9f\xea\xd8\x78\xf2\x33\x73\xf5\x61\xa4\x8b\x4f\xd0\x86\xe2\x63\x3a\x4d\x5a\x1d\xe5\x64\x70\xc7\x87\xd6\xae\x21\xb4\x01\x1c\xdc\xb1\xe4\x0e\x2d\x24\x0a\xf5\x44\xa6\x66\xec\xab\x87\x08\xa8\xd6\x69\x2a\xc0\xa0\x88\x99\xb8\x2c\x55\x2e\x3a\x02\xa7\x38\x9d\x7d\x8a\x0f\x9b\x4d\x20\x11\x8b\x65\x8c\x97\x40\x86\xa3\x27\x47\x39\x96\x2f\x66\x79\xce\xbd\x6d\x2e\x85\x40\x8c\xab\x43\x60\xb2\x8f\x3a\x3b\x89\x55\x9e\x10\x28\xcc\x0c\x12\xf0\xb5\x09\xb8\xa6\x59\x3b\x36\xd1\x4c\x0a\x97\x87\x25\xe7\xce\x5e\xa0\x02\xeb\xcd\xb4\xc2\x5d\x98\xd4\x88\x67\x22\xb6\xe9\x74\xfd\x81\x77\x8d\x93\xb9\xe4\x1a\xf9\x9f\xa6\x42\xd3\xd7\xb8\x89\x36\x90\xe2\xe5\x4b\xdb\xe5\x7b\xde\x12\x48\xfa\x12\x19\x4f\x17\x69\xf1\xb6\x12\x07\x63\x5d\xbf\x03\x3b\x07\xe7\x1c\x26\x3e\x33\x3c\xe5\x7e\x8f\xbe\x3a\x60\x69\x3d\x9b\x4e\x20\xf3\x5b\xa0\x9b\xe8\xc7\x8d\xd4\xa5\x36\x7c\x0f\xc9\xa9\xe6\x5f\xd1\x2d\x05\x75\x74\xd2\x80\xbf\xf5\x10\x7d\x47\x9f\x67\x7f\xe3\x81\x11\xde\xeb\x03\x44\xb4\x8b\x37\x52\x54\x1e\xde\x6e\x6e\x60\x03\xa4\xa1\x4d\xc8\xf6\x5f\x97\xfc\x6b\xb1\x24\x1e\x32\x9c\xa2\xf8\x8a\x65\xd7\x51\x3c\x21\x1c\x91\xe9\xb9\x36\xd0\xdc\x10\x6a\x68\x64\x2c\x62\xb5\xbd\x6f\x10\x75\x03\x14\x08\x4e\x46\xe4\x71\x43\xa2\xf0\xa3\x19\xad\xce\x91\x04\x14\x62\x7e\xf2\x11\x36\x42\xab\x1f\x2a\xfe\x6c\x17\x00\x64\x6e\x3c\x8c\xc4\xe9\x08\xd7\x4f\x6a\xa7\xec\x04\x50\x52\xc8\x7a\x19\xf5\x9d\x43\xeb\x5f\x8a\x9d\x7c\x00\x07\xfd\x99\x63\x5f\x0b\x23\xa5\x9d\x23\xf2\x31\x53\xf5\x57\x6a\x3a\xc0\xe8\x79\x8a\xe4\xc0\xb8\x30\xba\xa3\x5e\x78\x05\x6d\x5b\xb3\x65\xc0\x95\x2b\x84\x3e\xa0\xc8\x15\xbb\x63\xc0\x88\xb2\x8e\x91\xfd\x2a\x42\x41\x98\xe7\x4d\x64\x1a\xd1\x0c\x94\x77\x2f\x60\x41\xc4\xe1\x32\x6e\xb6\x0b\xf4\x83\x4e\x7c\xe2\xb2\x41\xec\x10\x4a\x90\x61\xf9\xd3\xdb\xee\x82\xe6\x7c\x62\xb3\x60\xe3\x94\x87\xdc\x39\xf0\xfb\xee\x82\x27\x18\x7d\x36\xa2\xdd\xdc\x39\x5e\xbc\xc0\x12\x69\xd0\x8b\x6e\xea\x2c\x8a\x53\x02\xd7\x99\x1c\x03\x9d\x43\x95\xf1\xce\xe5\x10\x9d\xa2\x4b\x3d\x9a\xeb\xe2\x92\x99\x17\x62\x8e\x5a\x68\xcb\xdc\xcc\x5d\x6c\xe8\x2d\x61\xd3\xdb\x80\xeb\xb1\x44\x2e\x90\x19\x7f\x23\x8e\xda\xd4\xd2\x4d\xe5\xab\x27\x1b\x70\x00\xd7\x2a\x1b\xc9\x90\x4d\xbf\x71\x37\x11\x92\x73\x79\x04\x9d\xc1\x11\xca\xca\x96\xd3\xb0\x38\xd8\x74\x9a\x38\xcd\x9c\x81\x57\x95\x11\x97\x82\xcd\x29\xcb\x90\x27\x86\x6a\xdf\xb5\x83\x64\x43\x6d\xf2\x41\xb6\xad\xd7\x9d\xcc\x0e\x37\x50\xca\x4b\x8e\xc9\x44\x06\xae\xdc\x41\xdf\xd3\x72\xd8\xf7\x3b\xe8\x81\xed\xe6\xe6\xcf\x5d\x36\xf4\xf5\x82\x33\x30\xa0\x48\xd9\x51\xaf\xc9\xca\x35\x4b\xae\x09\xdd\xfa\x8c\x58\x0f\x2a\x2e\xb2\xbe\x86\x84\xc4\x81\x43\x5d\x02\x65\xa8\x12\xa7\x0b\xbd\xf2\xad\xd5\x0d\xe9\xd8\xfb\x9b\xd6\x90\x88\xba\x65\x86\x75\x72\x0f\x0f\x6c\xf6\xb2\x0f\x28\xa6\x75\xf7\x31\xa3\xcd\x22\xed\xf1\xd9\xae\x87\x87\xb7\xd8\x52\xee\x22\x09\xef\x4f\x06\x71\x86\x7f\xf0\x7a\x96\xa2\x6b\xea\x51\x84\x73\xd4\x30\x4f\x23\x87\x64\x02\xca\xce\xd4\xbc\x37\x8b\xdd\x0f\x27\xc8\x64\x44\x54\x49\x32\x23\x17\x6c\x93\x92\x0b\x36\x71\x00\xe4\x42\x51\xdc\x84\x19\xf7\x2b\x84\x74\xb1\x38\x61\x29\x82\x6c\x64\xc3\x3b\x8a\x4b\x00\xf2\x23\x1c\xd4\x33\xad\x72\x14\xa3\x8a\x70\x1c\x90\x97\x6b\x48\x76\x2a\x20\x59\x0d\x43\x78\xe2\x42\xd8\x42\xaf\xd8\x5b\x64\x5e\x1d\x71\x8e\x39\xdc\x4f\x22\xf6\x99\x13\x4e\xc4\x65\xd2\x8c\x7e\x7b\x82\xdd\xd0\x3c\xaf\x21\xab\xcc\xb0\x69\xf2\x5c\xbd\x8c\xae\xab\x10\xc6\x21\xff\xd0\xbe\x2e\xdf\x3c\x65\x01\xef\x5a\x30\xcc\x41\xfc\xd8\x8f\xc0\x41\x1a\x12\xc5\x5d\x9a\x38\xd7\xcb\xf4\x33\xec\x77\xe8\xe1\x91\x14\x11\x60\xe2\xb0\xbc\x9a\x79\x6f\x3a\x03\xaf\x04\x9d\xc1\x7f\xb3\x8d\xc3\xac\x4f\x74\x08\x25\xba\xbf\x81\x51\x2d\xc8\x22\x41\xae\x5d\x48\xbc\x8f\x72\xee\x5c\xa5\xbd\x49\xbc\x54\xa9\x41\x04\xc3\x09\xa1\x81\x73\x85\x2e\x04\x2d\x70\x13\xa5\x96\x72\xa6\xf9\xf8\x5d\x36\x3d\x13\x3b\x4e\x89\x25\xaa\x4a\x27\xb2\xcb\xd9\x78\x85\xc2\x4e\xfd\xbb\x21\x03\x32\x7b\xb3\xf9\x72\xd1\xf3\x5f\xa1\xf6\x18\xc3\xb1\x52\x1c\x38\xa0\x09\xdf\x40\x82\xaa\x08\x9d\x0d\x3c\x26\x1c\x29\xf0\xea\x15\x7f\x1b\xe9\xe5\x58\x3f\x87\x01\x1b\x68\xa0\x74\xa7\xc2\xa7\xcf\x68\x89\x01\x00\xc3\x4f\x34\xd1\xcc\x00\x70\x7c\xeb\x21\xec\xa3\xc5\x83\xc2\x17\x37\xc1\x98\x47\x4d\xc3\x0b\xb9\x32\x61\xf1\x53\x72\xb1\x9e\x3a\x87\x8f\xe5\x8c\x8d\xc7\xca\x50\x0d\x82\xba\x53\xcc\x9c\x28\xa7\x6b\xd8\x64\x3e\xda\xec\x53\xa7\x2d\x94\xa5\xe9\xae\x0f\xfb\x29\xde\xe1\xed\xa4\x97\x57\xdd\x60\x8d\xfd\x3b\x17\x93\x11\xd2\x7f\xe1\x74\x15\x3c\xc1\xe7\xe9\x12\x1f\xbf\xc3\xc7\x73\x7c\x7c\x10\x3c\x80\xc7\xdf\x56\x33\x4a\x7f\x80\xe9\xff\xf1\xb9\xfd\x10\x5f\xfe\xce\x2f\x87\x4d\xa8\x14\x18\xa1\xbd\xfe\xce\x93\xef\x82\x07\x7f\x1f\xec\x9d\x03\x73\x63\xdf\xba\xe7\xb2\x77\xdb\x8e\xa6\x6a\x68\x37\x85\x0f\x48\xef\x86\x91\x84\x87\xb5\xe0\xb8\x48\x17\xaf\x3f\xe5\xda\x93\x18\xb3\x06\x43\xf5\x81\x9c\x44\xf7\x3f\xa0\xf1\xc6\x87\x41\xc4\x96\x3a\xe3\xa4\x54\x5a\x03\x13\x5a\x37\x70\x1d\x77\x79\x13\xb2\xfd\x30\x00\x76\x10\x45\x63\x4a\xba\xee\x66\xe1\xde\xe7\x3d\x0a\x10\x74\x57\x99\x2d\x5d\x08\xf0\xb6\xcf\x88\x5b\xd3\x9c\xd4\x00\x33\xc8\x31\x38\x45\xae\xfe\xdc\x61\xb3\x92\x8c\x3a\xf5\x39\x21\x4e\x4f\xbb\x3f\xb8\xb9\x29\xb7\x47\x75\x5b\xdf\xf1\xba\xc1\x9e\x69\x8f\x4a\xfa\x8d\xc5\xdb\xad\x35\x35\x47\xdf\x92\xcf\x38\x17\x8b\x51\x7a\x85\x2e\xa8\xd1\x33\x00\x76\xc0\xb4\x34\x24\x46\x6a\x08\xd3\x01\x9b\x6e\x3e\xc2\xda\xa7\xfa\x10\x31\x34\x50\x64\xb5\x94\xed\xe1\xce\x0e\xba\xf9\x1b\x46\x1a\x43\xbb\xc3\x04\xd0\x74\xd8\xd5\x2e\x63\x78\x93\x1c\x46\xbd\x61\x3c\xb4\x81\x2c\xd4\x45\xc4\x1d\x22\x69\x74\x05\x54\xb7\x53\xae\x38\xed\x6d\x37\xe3\xcf\xa4\x9a\x84\x66\x08\x3a\xaa\x07\xa6\xe2\x98\xa4\x5b\xe7\x6b\x34\x38\xbb\xda\xb0\xda\xce\x11\xcd\x68\xab\xe8\x42\x77\x87\xac\x45\xf8\x82\x96\x7f\x98\x26\xce\xbb\x3a\xaf\x27\x41\x6d\xb7\x16\xd4\xd3\x3a\x20\x75\x5d\x3e\x3d\x23\x0f\x9a\xf6\x9a\x76\x94\x90\xd1\x9a\x83\x65\xce\x45\xa9\x23\x14\xdc\x3a\x47\xbb\xb0\x66\x77\xfc\xe4\x42\x0b\x03\xc6\x18\xa7\x0b\xd9\xcf\x8b\xfe\x18\xbd\xa6\xf2\x6f\x37\xd5\x2e\x4a\x50\xce\xc1\x17\x9a\x49\xca\xe2\x4f\x76\xdf\x99\xf8\x5d\xa1\xc5\x7b\x91\x04\xe3\x8c\xd5\xb3\x70\x9c\x68\x85\x8f\x6c\x53\xcd\xd6\x51\xbb\x84\xb9\x05\x4e\xa6\x86\x0a\x41\x35\x16\x30\xd5\x16\x18\x0d\xc3\x75\xf9\xd0\x75\x88\x0f\x8f\xcc\x1a\x49\x11\x69\xf9\xdd\x21\x2d\x30\x71\x16\xb4\xe7\x30\x91\x1f\x84\x94\x5d\x64\xd3\x2b\x94\xa7\xa4\x64\x37\xa7\x3d\x17\x93\x52\x55\xf2\x81\xd2\x86\x72\x6b\x6a\x8a\x0f\x71\xba\xd1\xfe\xe2\x7c\xb2\xc0\xe0\x16\x54\x03\xea\xd7\xe2\xef\xcb\xc9\x82\xce\x05\xca\xc5\x0d\x34\x9a\xda\x2e\x3b\x4d\x10\x9d\x73\x54\xb5\x00\xf2\x2d\x25\x6b\x5c\x4f\x5c\x7b\x40\xd3\xf9\x00\x06\x0a\x6b\xae\xdc\x1c\x39\xaa\xfa\x69\x43\x9b\x48\x68\xae\x79\xce\x3f\xc0\x31\x8c\x22\xdc\x3a\x8b\x32\x42\xe3\x3f\xf8\x72\x96\x77\x61\xc5\x44\x64\x80\xba\x35\x74\x24\x5d\x1a\x90\xdb\x88\xbc\xc3\x5e\x2e\xd7\xa1\xdb\xe8\xfa\x61\xc8\xd2\x76\x4c\x1f\x49\xfa\x67\x5c\x28\xcd\x27\x43\x8d\xe5\xa9\x06\x2b\xb3\x4f\xd8\x9b\x58\xe7\xc5\x85\x5a\x39\x20\xcc\xea\x82\x4d\x63\xff\x07\x44\xa2\x1c\x68\xf2\x50\x8f\x44\x65\x49\x53\x61\xfc\x00\x35\xee\x9e\xd1\x1a\x83\xf5\x90\x7a\xdd\x1f\x6a\xdb\x9b\x71\x02\x0d\xb2\xce\x67\x24\x5a\x1d\x15\x54\x08\xd5\x9e\x70\xb5\x46\x7a\xad\x9c\xdb\xc0\x3f\xd9\x93\xf3\x6e\x06\xf8\x3f\x26\x8b\x48\xd2\x3a\x4d\x32\x35\x66\xc4\x4e\xc8\xf5\x1e\xbc\xa1\x15\x4c\x92\x39\x4b\x7d\xb7\x05\x27\xaa\x7a\xf2\x01\xa8\x3d\x30\x30\xd7\xa4\x33\x3f\x76\xfd\xb8\x9c\xcb\x25\x48\x61\xa7\x08\xcf\x71\x3c\xdc\xd8\x87\xec\x4b\x72\xae\x36\x34\x6a\xaa\x3f\x77\xaa\x57\xd8\xd3\x6e\x53\xe4\xf4\xcb\x64\xe4\xcf\x67\x6d\x59\x09\xfa\xc9\x59\xa0\xb6\x0a\xdb\x5b\x35\x5c\x05\x2d\x86\xd8\xe9\x0b\xe8\xd7\x68\xba\x1a\x67\xff\x9d\xcd\x67\x70\x06\x4a\xd1\x4a\x54\x48\x23\x9a\x1e\x99\xf9\x92\x99\xc7\x69\x94\xb5\x54\xd5\x89\x55\x3e\x25\xb7\x04\x3e\x12\x9b\xeb\x37\xc1\xa8\x3e\x76\x76\xe0\x50\xab\xa1\xba\x3e\xcb\x63\x83\xe5\x4a\x7e\x63\xc4\x6e\x85\xbd\x84\x27\xfc\x59\x57\xb7\x8a\x8a\x94\x45\xac\xdb\x30\x76\xdc\x37\xdc\x01\xda\xcd\xe5\x2c\xe7\x9d\xb1\x5c\xfd\x74\xb6\x71\x59\x32\x82\xb2\xb4\x81\xdf\x00\x73\x3e\x66\xd3\x1e\x49\x36\x8e\xe1\x48\xee\xa6\xaa\x56\x33\x8a\x5b\xd0\x02\xd4\x18\x8e\x14\xae\x21\x4b\x91\x52\xee\xf7\x07\xfa\x88\x8f\x6b\x6e\x04\x96\xf9\x38\x99\xc2\x72\xb9\xe8\x8e\x1a\xbf\x1c\xbd\x7d\x77\xfc\xfa\x55\x12\xb4\x1a\x9d\x46\x33\x80\x94\x67\xaf\x5f\xbe\x39\x7e\x71\xf4\xf6\xf4\xed\xd1\x2f\xc7\xf4\x6d\x6b\x1f\x92\xf5\xdb\xe9\xb3\x9f\x9e\xbe\xfa\xf1\xe8\x5d\x72\xdd\x8a\x83\x27\x49\xad\xd5\x68\x36\xe6\xa3\x46\x3b\x50\x6d\xb4\xfa\xa3\xf7\xe6\x2e\xa4\x74\x02\xd5\xf1\x53\xf6\x03\xb5\x1f\x07\xdf\x49\x4a\xb0\x16\x26\x61\xac\xb7\x72\x75\x46\xcf\x9a\x8b\x50\x73\x78\x35\x2c\xcf\xa8\x61\x39\xd3\xa3\xfc\xe3\x64\x3e\xcb\x91\x6a\x26\xc8\x0c\x6d\xd0\xf2\x39\x57\x30\xf2\x73\xa0\x9a\x1f\xf0\x21\x4e\x95\x3f\x0f\xb1\x3b\xbf\x38\x07\xe8\xe6\x44\xf3\x1d\xcc\x7b\x11\xe3\x31\xd7\x8c\x07\xe5\x00\xf2\x3f\xf4\x49\xf4\xd3\xf9\x39\x69\x46\x8b\x62\x6c\x36\xae\x21\xfa\x98\x20\xc1\x42\xba\xd1\x9b\xd8\x58\x0b\x7c\xdc\x4d\x06\x6f\x82\x69\xf9\x7f\x40\x8a\x0b\xa7\x27\xf4\xc8\xa6\xdc\x1c\xa8\xe3\x37\x5c\x9b\xde\xbf\xe1\x9d\x28\xf6\xd1\xf3\xd6\x9e\xf7\xfc\x96\xf5\x5e\xa6\xf4\xd5\xb4\x4e\xe0\x96\x78\x62\x3e\x24\x5b\xd7\x6c\xb2\xfa\x32\xbd\x8a\xaf\x9b\x31\x6c\xd0\xc3\x15\x20\x6e\x0b\x0f\xbc\x67\x33\x9a\xf0\x4f\x29\xb0\x49\x38\xcf\x6c\x98\xbf\x56\xcf\x8f\xbe\xff\xf9\xc7\xb8\xa9\x8e\x5f\xfd\xf0\x3a\x6e\xa9\xbf\x3c\x7d\xfb\x2a\x6e\xab\xa3\xb7\x6f\x5f\xbf\x8d\x3b\x8a\x90\x16\x7f\x67\xe7\x85\xee\x23\x64\x19\xa7\x9f\x24\xa9\x5d\x0e\xa6\x03\xd0\xb3\x6e\x80\x5e\x88\xf0\x54\x33\x26\xed\x14\xa6\xd2\x38\xe1\x33\x3c\x5a\xc9\x43\x7f\x34\x70\x9f\x19\x02\xf2\x8e\x6b\x00\x46\x37\x6a\x30\x5e\x24\x1f\xf8\x31\x49\x59\x26\xed\x71\x6e\x98\x82\xf6\xe7\x76\xd2\x86\x00\x2e\x4d\x31\x87\x58\x0b\x6b\x28\xfe\x80\xc1\xf3\x93\xdc\x9c\x9c\xd7\xe1\x47\x75\x15\xa9\xa7\x1e\x9f\xa1\xce\x1d\x4e\x63\x48\x08\x37\xe2\x36\xbc\x13\x44\x8e\x96\x35\x6c\xac\xaf\x1b\xc2\x54\xd1\xe3\x1d\x45\xd8\x1b\x8a\x1f\x9e\x5e\x42\xa7\xc7\x8d\x71\x76\x85\x81\x3d\x75\xe6\xf1\x9a\x65\x08\x78\xb7\x90\x9c\x97\x57\x32\xac\xfb\xf3\xd2\x42\x06\xea\x41\xbe\xe4\xde\x66\xe8\x2c\x11\x78\xe7\xad\x32\x18\x48\xeb\x11\x6d\x84\x5a\x48\xef\x86\x18\x60\x88\xf9\xea\x27\x23\x67\x2d\x5c\x84\xc1\x49\x76\x09\x4c\xf1\x32\x23\x73\x01\xe0\xc6\xf1\x5a\x0d\x58\x39\x59\x12\x69\x5e\x9b\x4d\xc7\xc0\xb6\x21\x31\x46\x48\xc0\xfc\xd9\x55\x0d\xc7\xec\x14\xcf\xda\x59\x4d\xdc\x9e\xd6\xc4\x57\x6f\xa3\xf6\x66\x9a\xa5\xb0\x42\x56\x57\x63\xac\xfb\xcb\x6c\x35\x77\x2a\x9f\xd7\x96\xb3\x5a\x8a\x3d\x70\x6a\x0e\x83\xfa\x18\xa6\xbf\x1e\x44\xb5\x19\x00\x79\xf6\x29\x07\xa0\x8d\xa5\xac\xd4\x4b\xe5\x8a\x5d\xa2\x82\x43\x2c\xd8\x40\x5d\xec\xaf\x18\x5c\xa1\x07\xff\xc4\xd8\xdc\xfe\x95\xc7\x95\x92\xb5\x39\x75\x0f\x90\x39\x85\x33\x09\x77\xcb\x45\x24\x9e\x9e\xed\xc2\xec\xbc\x9a\xd5\x32\x4b\x3a\x6b\xa8\x52\x0f\xbd\x87\x56\x74\x15\x50\xe5\x16\x23\xe5\x75\xf1\x48\x15\x4f\x4b\xa7\x2c\xdc\x55\x67\x1f\xb2\x2a\x7a\xa4\x72\x05\x8c\x89\x3a\x63\x04\x3a\x4f\x60\xa3\x79\xd9\xf0\xb2\x6f\x70\x18\x85\xba\x22\xb4\xf9\x9d\xeb\x8d\xf4\x9c\x4c\x47\x1b\x02\x6c\x93\x9a\x5c\x0b\x75\x8c\x33\xa5\xc9\x57\x3c\x66\x2b\xc4\x33\xd8\xe1\x60\x0e\x13\x53\x0a\xba\xc4\xcc\x10\xdb\x7d\x00\xfe\x42\x96\x51\x44\xb9\xc2\x1c\x16\x67\x61\xa2\x61\x9e\xa4\x4e\x38\x3e\x0d\xeb\x01\x50\x99\xd5\x74\x4c\x54\x7e\x08\x53\x68\xe6\xfd\x22\xcb\x71\xb2\x72\xe4\xd0\x27\xb9\x9e\xb7\xdd\x59\x3e\xfd\x82\x92\x1d\x84\x27\xaa\xb1\xd2\x82\x5d\xc4\xfd\x81\x7e\x76\x61\xf5\x41\x53\x02\x11\x24\xeb\xec\x48\xf1\x46\xbd\x2c\x19\x4a\x9e\x38\x23\x1f\x0f\xc5\x3c\xfc\xdd\xf2\x72\xd9\x5a\x51\x98\xad\xb8\xcc\x33\x8f\xf0\x3c\x33\xa4\xf3\x19\x1c\x1d\x53\x3a\xe9\xe2\x5d\x23\xd2\x8b\xad\xa9\x26\x73\xc8\x46\x28\xe7\x2d\xb5\x75\x8f\xcc\x60\xd0\x78\xe1\x39\x12\x9f\x98\x66\xb6\x98\xaa\xd0\x1a\x80\x3f\x91\x5d\x80\x5e\xa9\xc7\xb0\x6f\xb0\xb7\x0b\x5d\xa5\xcf\x05\x7d\x90\xd3\x15\x93\xe3\x0f\x7a\x5f\xea\x7d\x88\x47\x6a\xa9\x2e\xbb\x26\x05\x40\x01\xdb\xa4\xd9\x42\x2f\x6d\xde\x05\xc6\xb1\x4d\xb5\x51\x73\x0e\xa8\x08\x05\x15\x33\x4d\x91\x5b\x01\xf5\xce\xa3\x7c\xc0\x5b\xbb\x1d\xb5\x4e\x32\x69\x99\x15\xc7\xe8\x49\x7e\x2c\x35\x67\x91\x87\x3d\x4d\x93\xdf\x32\xd9\x87\x8d\xaf\xb0\x4e\xa4\x3e\xb8\xe5\x9d\xa1\x1b\xf6\xd1\x59\x1f\xfd\x54\x06\x00\xbd\x1e\x68\xdf\x70\xe3\x08\xb6\x83\x0f\xce\x76\xf0\x41\xb6\x83\xb1\xb9\xac\x17\x97\xdb\x4e\xef\x13\x98\x7e\x7f\x1d\x26\x5b\xfe\x38\x60\xd5\x7e\xc0\x7d\x08\x48\x80\x80\x0a\xdd\x34\xe9\xb5\x36\xb6\x6b\xed\x83\xf6\x8b\x86\xeb\x93\xd7\x15\x1e\x74\xa2\xaf\x59\x49\x67\x1c\x40\x81\x8e\x60\xae\x88\x46\xb3\x80\x7a\xb5\xa7\x80\x87\xe3\x08\xc7\x81\xe8\x54\x25\x4b\xb4\x2a\x79\xb4\xff\xaa\xdf\xd1\xab\x8c\xbf\x03\x2b\xdc\xc0\x65\x21\x14\x44\x9b\x23\xb2\x6c\x98\x56\xb3\x98\x70\x6c\x34\x8b\x61\x1a\xc1\xbe\xff\x2e\x3d\xcb\x44\xfa\x86\x2c\xf4\xd1\x67\x34\x6a\xc6\x9d\x13\xb9\xd4\x9f\x97\x93\xe9\x02\xc0\x8c\xe8\x05\x93\x32\xaa\x20\xcf\x43\xe7\x00\xa3\xbf\x86\x88\x42\x6b\x67\xa1\x8d\xe1\x94\x86\x1c\x23\x33\x19\xc9\xc8\xee\xf1\xe1\xef\xea\x0b\x8c\xf0\xa3\x7a\x7a\x8b\xa0\x14\xda\x18\xe2\xa1\x5c\x8b\x2f\x8c\x58\x48\x0b\x5f\x4e\x51\xb2\xd2\xdd\xb2\x1f\x9f\x79\xb2\x99\x53\x16\xd5\x70\x61\x0a\xb1\xa7\x3f\xe3\x4b\xe9\xab\xd4\x4c\xdf\xb0\x62\x2d\x90\x7d\xc3\x68\xf7\xca\xf3\x1d\x03\xf3\x80\x78\xa6\xcd\xe9\x3a\x55\x9e\x23\xe1\x88\x3e\x02\x26\x86\x24\xf4\x71\xbb\x22\x07\x9d\xe2\x53\x95\x72\x96\xae\xa3\x2d\x06\x35\x77\x8d\xff\xdd\x24\x10\xcc\x0f\xba\x5a\x33\x7c\xc9\xde\x7d\x61\x8e\x8c\xfc\x59\xdf\x3a\x03\x7d\xc5\x18\x8f\x51\x0f\x1e\xae\x2d\x98\xe2\xcc\x11\xab\x99\x31\x42\xaa\x1e\xba\x72\x80\x22\xc9\x0c\x2f\xe5\x02\x53\x57\xc3\x9f\xd6\xcc\xe3\xcb\xc9\x94\x10\xf0\xbc\xe1\xc0\x0b\x49\x2f\x9a\x9f\xc4\x77\x67\x8b\x94\x1d\x49\x83\xe2\x56\x91\xc0\x01\xaf\xc9\x8d\x30\x8e\x3f\x72\x10\x02\xce\x13\x01\xd5\x7f\xb9\x42\x09\xda\x45\x56\x39\x41\xd0\xfa\xb5\x0b\xd7\xcc\x83\xeb\xa5\x14\x0d\x5c\x30\x8e\x25\xd8\x1f\x79\xe8\x41\x4b\xef\xa7\xcb\x1e\x6c\x30\xfa\x39\xec\xa0\x65\xb1\x7e\x69\x6b\xa5\x48\xe2\x2b\xc6\x49\x70\x4d\xa1\x2b\x77\x76\x82\x1d\x7a\xd0\xe1\x89\xe4\xf3\xf6\xf6\x48\x9a\x42\xd5\x98\xc4\x93\xe9\x9e\x37\xde\x61\x22\x0e\xa3\x37\x8c\x19\x48\x26\x85\x39\x77\x5b\x14\xce\x98\x6f\x67\x33\xd4\x68\xe5\xc4\xc9\x38\x71\x3f\x8e\x8d\xc0\x0f\x76\x58\xf7\x0b\xa7\xf0\x57\x14\x1e\xb8\xdf\xf0\xbd\x2b\x66\x04\x93\x73\xf4\x39\xce\x87\x4c\x37\x8f\xff\x45\xda\x5e\x94\xf3\xe9\xb4\xb5\x32\x43\x28\xcc\x8d\x3f\x2f\x23\x6f\x5e\xa8\x8e\xc0\xe9\x25\x10\xa1\x44\x8f\x73\x88\xaa\x02\x5b\xc3\xc4\x1d\xe1\x50\x7c\x6b\xb6\xa2\x42\x97\xc2\xaa\xf1\x8c\xe0\xfb\xbb\x09\x2a\xcb\x91\x84\xd0\x68\x79\xa1\x3e\xb3\x6c\x29\x1b\x56\xfb\x2d\x4b\x94\xcb\x05\x9e\xa4\x15\xc5\xbf\x7a\x8d\x8a\xf7\x31\x18\x8a\x83\x6b\x40\x24\xbf\x47\x71\xe7\x7d\x71\x17\xcf\x2b\x66\x8e\x1b\x33\x58\x03\x93\x3c\xc5\xa0\xdd\x70\xa6\xc2\x4b\x49\x9d\xe2\xec\x60\xd3\xaa\x12\xb0\x89\x8d\x67\xd9\x22\x7f\xb0\xac\x91\x43\x26\xd8\xd8\x0a\x35\xb0\xf1\x88\x3b\x42\x0e\x20\xc0\x29\x7a\xe1\xe8\xc1\xd9\x1d\xdc\x5b\xe9\x23\x8f\x3c\x91\x42\xc3\xd0\x59\xc5\x8a\xd6\x70\x3c\x76\x57\xfd\xba\x1b\xd2\x31\xd1\x5d\xec\x43\x37\x43\x77\x2b\x1c\xe1\x54\x79\xa4\x62\xec\x64\xef\x8e\x50\x64\xa7\x69\xc6\x64\x71\x2c\x9d\xa1\x98\x64\x62\x58\x5a\x82\xb7\x0f\xe9\xd4\x1b\xb8\x76\x04\xd8\x75\xaf\x08\x87\x6b\xf5\x13\x60\xe6\x57\x55\x84\xa8\x6c\x10\x04\xa8\x28\x56\x72\x3c\xfe\xaa\x2a\x8e\x9f\x07\xce\xb5\x07\x0a\x8a\x51\x61\x12\xc5\xc6\xe7\xf0\x0f\xdd\x10\x0a\xe3\x74\xfe\xe4\x8c\x62\x1d\x8b\x76\xc4\xb0\x7f\x4e\xb1\x29\x97\x18\xdc\xb4\x1e\x86\xf4\xbe\xc8\x70\xf9\x2c\x67\x14\x4f\x23\xaa\xcf\x09\xbf\x82\x46\x43\xab\x3d\x99\x07\xec\x00\xab\x3f\xe1\x91\xac\xf9\x64\x5c\x96\xf3\x4f\xc3\x00\x00\x9d\x4e\x81\x87\x42\x3c\x8a\x01\xa3\x46\x82\x43\xba\xc6\x5e\x56\xaf\xcb\x4e\xb0\x78\x37\x9a\x11\x3d\x6c\xb2\xdc\x68\xcc\x7a\x92\xf3\x68\xcd\x8a\x28\x82\x84\x1a\x81\xb0\xe3\x8b\x64\x6b\xec\xcd\xc0\x58\x5c\x82\xf3\x19\x17\xd2\x99\x75\xcc\x34\x05\xe0\x15\x9e\x90\x64\xdf\x6c\xb8\xdb\x5e\xfb\x7c\x87\x95\xb9\xd5\xbe\x84\xd9\xa0\xe8\x48\x89\x7b\xb3\x6b\xc8\x02\x2c\xe8\xaf\x9a\xaf\x37\x4f\xdf\x9e\x1c\x3f\x7d\x71\xfa\xea\xe9\xcb\x23\x99\xfa\x9c\x88\x82\x19\xe3\x5a\xa1\xfb\xb0\xaf\xaa\xf4\xf9\xd3\x93\xa7\x81\xa1\xfb\x80\x44\xcc\xc9\x7d\x55\x1d\xef\x4e\xde\x1e\xbf\xfa\x51\x6a\x31\xf0\x76\xe1\x5b\x09\x14\xc4\x58\x58\x0d\xe7\x59\x99\xa4\xdf\x8a\xb6\xaf\x4e\x8e\x7e\x3c\x7a\x5b\xd9\xdc\x84\xeb\x73\x79\x19\xb7\xc5\x2d\xbe\x3a\xc3\xcb\x15\xf5\x3d\x6b\x90\x7c\x55\xd3\xdf\xbf\x7e\xfd\xe2\xe8\xe9\x2b\x69\x1a\x75\x50\x36\xb5\x14\x2c\xe7\x2b\x52\xf9\x1b\x22\x9d\xb8\xbc\xfc\x7a\x3a\x41\x65\x02\x4d\xef\xe9\x8d\x64\x91\xf6\x56\xb4\x24\x55\xd3\xd2\x85\x6b\xbc\x7e\x25\x01\xf9\x3c\x99\xea\xc7\xd2\x1d\xb0\x7b\xb1\x09\x1d\xbd\x70\xb9\x28\x23\xb5\xef\x4e\x1b\x5f\xbe\x24\xe6\xec\x34\xe5\xba\x10\x80\x4e\x47\xca\x8a\x14\xd5\x77\xb5\x74\xf2\x16\xdf\x08\x44\xc0\x83\xff\xa1\xa8\x68\x0e\x03\xc4\x54\x9c\xd3\x87\x3a\xbd\x89\x91\x84\xfc\xa4\x56\xb4\x5e\x3b\xec\xbd\xdc\x53\x42\x57\xaf\xd7\x9a\xd7\x5e\xce\xd3\x91\x17\x38\x03\xf8\xbb\x2f\x5f\xd0\xc3\xf2\xe2\xcb\xe5\x70\x36\x5d\x9c\xc6\xd7\xec\xa4\xab\xad\xe6\xc0\xff\xc4\x1d\x65\xb9\xe1\x78\x5f\x1d\xbd\xfe\x21\x3e\x30\x12\x8a\x43\xb5\x20\x1a\x20\x3b\x40\xfc\xd0\x66\x8e\x1f\x29\xf4\xc0\xa0\xbf\x3c\x56\xa3\xe9\x6c\x91\xd1\x5e\x1c\xb7\x9a\xf4\x4d\x5e\x5a\x4a\x6f\x76\x71\xab\xad\x8f\x8e\x71\xab\xa3\x9e\xbd\x06\xa4\x7e\x75\x12\xb7\xf6\xe1\xf1\xe5\x4b\x7a\x3c\x50\xaf\xdf\x1c\xbd\x3a\xfd\xfe\xc5\xeb\x67\xff\x15\xb7\xa0\x7d\xdc\x78\xe3\xd6\x43\xf5\xec\xc5\xeb\x77\x47\x71\xeb\x11\x7f\x3f\x7e\x85\x77\x16\xf0\xfe\x98\xdf\x8f\x5e\x3d\xe7\x22\xed\xa6\x22\xea\xd9\x6e\xd1\x87\xb8\xdd\xe6\x0c\x3f\xbf\x3a\x7a\xf7\xec\xe9\x9b\xa3\xe7\x71\xbb\xc3\x75\xb9\x49\xfb\x9c\x49\x68\x4d\xdc\x3e\x50\x0e\xff\x11\xb7\x0f\xf5\xeb\x29\x5b\x8d\x36\xe3\xf6\x43\xee\xd9\xe9\x3c\xbb\xca\x96\x13\x49\x7c\x24\x89\x26\xd7\x63\x3a\x1e\x53\x25\x1d\xec\x18\xc2\xb4\xd3\x52\x4c\x3a\xe2\x4e\x5b\xc9\xb2\x8e\x3b\x1d\x25\xcb\x2c\xee\x48\x67\xde\x1d\xfd\xf5\x0d\x7c\x38\x90\xde\xca\xeb\x21\x5f\x5c\x75\x1e\xd2\xaf\xd3\xfc\xe9\xd5\x74\xb5\x68\xc6\x9d\x47\xf4\xe1\x5d\xc6\x31\xff\x3b\x8f\xd5\xd6\xf1\xf3\x78\xbf\xa9\x8e\xfe\xfc\xf3\xd3\x17\xef\xe2\xfd\x96\x42\xe2\x17\xef\xb7\x09\x4e\x92\x0f\x66\xbe\xa3\xde\x1d\xbd\x89\xf7\xf7\xd5\x37\xec\x9f\x2b\x6e\xaa\x6f\xd0\x93\x47\x0b\x8e\x28\xd9\xfc\x12\xa9\x0d\xe2\x4e\x5b\x4b\xf9\xd5\x41\x1c\x00\xb2\x04\xaa\xb5\x1f\x07\x32\x93\xf0\x72\x80\x2f\x34\x97\xf0\x72\x18\x07\x76\x36\xe1\xfd\x11\x7c\xc4\xc1\xc0\xe3\x63\xf9\x24\x13\x19\xa8\x76\x53\x52\xf4\x54\x42\x52\x9b\x93\xe0\xa9\x23\x1f\xcd\x9c\x41\xda\xbe\xd4\xe6\x25\x1e\x48\x46\x99\xca\x40\x75\xa0\x12\x21\xd5\xaa\x03\xd5\x68\x42\xaa\x3a\x50\x5e\x93\x36\xd5\xd1\xe5\x08\xcc\xf0\x7e\xa8\x2b\x97\x84\x7d\xe8\x1e\xb0\x0e\x6a\xbf\x05\xc3\x26\x50\xc2\x33\x54\x4d\x3b\x89\xda\x87\xba\x00\x7c\x01\x89\xc6\xc6\x2b\x5a\x7b\x00\xad\x7e\x53\xf5\x3b\xaa\x3d\xc0\xbf\x2d\xf8\x7b\x48\xcf\x87\xaa\xe3\x3c\xb7\x9c\xbf\x4d\xf8\xbb\x4f\xcf\xfb\xf4\xf5\x11\xe5\xd4\x7f\x5b\x95\x7f\x61\x79\xe1\xe7\xc7\xf4\x17\x16\x1e\xfd\xb4\xd5\x96\xfc\xd2\x4f\x47\xed\xc3\xcf\x43\xaa\x13\x96\x52\x87\x7f\xb0\x34\x20\xe3\x3d\x7e\xb0\x40\x47\x0a\x70\x43\x6d\xee\xb2\xff\x03\x28\x8e\x2d\xb4\xb9\x1c\x60\x54\x87\x7f\x28\xcb\x43\x1a\x5d\x9b\x6b\x81\x95\xd2\xe4\x1f\x2a\xf0\x98\xdf\x1e\x73\x2d\x8f\xf4\x4f\x7b\x30\x50\x70\xda\x40\x97\x4d\x4f\x47\xbe\x66\x34\x4a\xa9\x80\xbd\x57\xe7\xea\x0c\x77\x80\x34\x39\x33\x77\xeb\xdd\xc5\xa7\x09\x3a\xe1\x38\x8f\xae\x47\x28\x53\x6f\xc5\x5a\x82\x87\x37\x75\xde\xa9\xf9\xac\x9f\xee\x42\x5b\x44\x45\x4f\xbf\x89\xba\x94\xbf\xbd\x39\x7f\xbf\x98\xb7\xc3\xdc\xd8\x37\x49\x65\x5e\xa9\x1e\x7e\x9c\x72\xc3\x79\x96\x7e\xe0\xd2\xfb\x9b\x4b\x63\xd1\xf6\xdd\x35\x1c\xdc\x5e\xc3\x96\x2e\xdb\xaf\x2e\x7e\x78\x6b\xf1\xea\x32\x0f\x6f\x1d\x72\x55\x89\x47\x5f\x5d\xe2\xb1\x2e\xd1\xc7\x6e\x0c\xdc\x4f\xad\x66\xcc\x40\x61\x7e\x17\xbf\x0b\x0b\xf1\x4d\xc2\x1f\xbc\xdc\x2d\xbf\x6d\x73\x54\xf4\x01\x6c\x34\x04\xee\x82\x77\xab\x7d\xaf\xfa\x2a\xaa\xdd\x50\x9f\x41\x20\xcc\xe2\x7d\xd9\xdf\xf8\xa5\x30\xe9\xce\x81\x8c\x67\x6d\xab\xb2\xa5\xc3\x62\x29\xc3\x9e\x6d\x9e\xeb\x56\x61\xb2\x5d\x41\x91\x5e\x3c\xe4\xee\x4e\x46\x3f\x75\xc0\xa0\xed\x88\x8b\x55\x3e\xfa\xd7\x57\x69\xd0\xe5\x9a\xb6\x7e\xa9\x85\xce\xb3\xb1\x5f\x7e\xed\x96\x83\x1d\xe7\x5f\xdd\x95\x76\xeb\x5f\x5f\x65\x01\xe5\x1c\xf1\x4a\x01\xe9\xb6\xb8\xb6\xce\xad\xb5\x19\x84\x9b\x86\x0e\xb2\xfb\x79\x0a\x74\xc9\x8a\xd0\xfa\xdc\xa0\xb9\x7d\xe0\x1a\xa2\xcd\xf8\xdd\x3e\xb8\xad\xaa\x81\x00\xa3\xb2\xe4\xe1\x26\xfc\x6f\x17\x90\xd2\x1e\xdd\x36\x23\x72\xbb\x80\x75\xce\x09\xec\x96\x42\x8f\x0b\x8b\xdd\x9e\x9d\x36\x17\xea\x34\x37\xf5\xbb\xd3\xd2\x94\xcb\xc8\xd6\xb4\xec\xb1\x8a\x74\x75\x0a\xf3\xae\x65\x25\x95\x4d\x6f\x71\x91\x8e\x4b\x37\x35\x5a\xf9\xb5\x16\xf7\x1c\xff\x54\x7e\xcb\xb8\x8a\x5b\x4d\xa1\xe0\xed\x73\x51\x5d\x65\x71\xfb\xa9\xac\x72\xe3\x54\xf9\x75\x15\x90\x42\x4b\x04\x6e\x19\x50\x11\x25\xc6\x77\xe4\x7f\x1c\x33\x50\x79\xe3\xa1\x7b\xb1\x98\x72\x1b\x21\x90\xcc\xef\xda\xdb\x90\xda\x1e\xfc\xf7\x0d\x7a\xf4\x6d\x0d\x6b\x3f\x8b\x9d\x45\x3f\x7d\xbf\x62\xe7\xdb\x72\x33\x3c\xdc\xbc\x6d\xee\x3f\x2a\x17\x5e\x03\x67\x8f\x41\x07\xe3\xfe\x75\x27\x6e\xa9\x7d\x38\x11\x1e\xc4\x7d\xe2\xf6\x1e\xc1\x49\xf0\x31\x9c\x03\x61\xff\x04\xd6\xae\x0d\xe7\x3e\xd8\xa9\x1e\x21\xab\x0f\xdf\x1f\x0f\x90\xcd\x87\x87\x16\x70\x6d\xb0\xaf\xe0\x13\xe0\x1a\x90\x61\x7c\x02\x8a\x02\x24\x0b\x9f\xa0\x1e\x20\x37\xf8\x04\xdc\x67\x9b\x4b\x1c\x0c\xd6\xea\xba\x15\xf7\x3b\xf8\xcb\x49\x87\xd8\x1c\xb0\xa3\xff\xd6\xf6\xda\xc0\x4c\x72\x8b\x6d\xaa\x6f\x5f\x3f\x98\x94\x43\xfd\xf0\x58\x1e\x60\x7b\x90\x87\xb6\x7e\xe8\xe8\x07\x29\x05\x35\xee\xe3\x89\xf3\x10\xcf\xa5\x0f\xf1\x30\xfa\xc7\x01\xd7\x6e\xe9\x26\x1f\xdd\x39\xa2\x2d\xdd\x2c\x9c\x6e\xff\x2f\x36\xcb\xe0\xc3\xcf\x0c\x3f\x7a\xb2\x69\x87\xe6\xe9\xb1\x7e\xe2\x9a\xe9\xa9\x6d\x9e\x3a\xe6\x49\x97\x35\x55\xef\x9b\xaa\xf7\x4d\xd5\xfb\xa6\xea\x7d\x53\xf5\xbe\xa9\x7a\xdf\x54\xbd\x6f\xaa\xde\x37\x55\xef\xdb\xaa\x0f\x4c\xd5\x07\xa6\xea\x03\x53\xf5\x81\xa9\xfa\xc0\x54\x7d\x60\xaa\x3e\x30\x55\x1f\x98\xaa\x1d\x80\x1c\x9a\xaa\x0f\x4d\xd5\x87\xa6\xea\x43\x53\xf5\xa1\xa9\xfa\xd0\x54\x7d\x68\xaa\x3e\x34\x55\x1f\x12\xd2\x3e\x44\x49\x05\x30\x14\xed\x7d\x05\x9b\x4a\xfb\x40\x6d\x01\xf1\xc0\x19\x83\x89\xda\xa7\x89\x6a\x3f\x84\xa7\x4e\xdc\x3e\x94\xec\x8f\xbd\xec\x77\xe4\xc6\xc3\xda\x57\xe4\x6e\xdd\x3b\x37\xe4\xeb\x40\xc7\x0f\x51\xbc\xd1\xa1\xaf\x1d\x98\x90\x0e\x21\x54\x07\xe0\xe7\x94\xd5\xf5\xd3\xa8\x2d\x3c\x9b\x06\x9e\x4d\x03\xcf\xa6\x81\x67\xd3\xc0\xb3\x69\xe0\xd9\x34\xf0\x6c\x1a\x78\x36\x0d\x3c\x9b\x04\xcf\x26\x0a\x4f\xda\xd4\x78\xe7\x21\x2f\x5d\x38\x63\xfe\x93\x94\x8e\x9a\x7f\x78\xf7\xca\x79\x88\x92\x98\x3f\x44\xe6\xb6\x8a\xeb\xf4\xf0\x1e\x04\x8f\x70\x07\x58\x6d\x48\xd9\x47\x38\xdc\x77\xa2\x9b\x28\x1f\x72\x61\x24\x75\xb4\xf5\x73\x1b\xf2\x0e\x50\xf4\xa2\x9f\x1e\xa1\xe4\xa8\xd3\xd6\xef\x9d\x8e\x79\x32\x79\x3a\x07\xe6\xe9\x50\x3f\xed\x37\xcd\x93\x2e\x6b\x5a\x68\x1f\xe8\x16\xf0\x89\xcb\xb4\x0f\xec\xf7\xce\x23\xfd\x1d\x9f\xb8\x6d\x7a\xea\x98\x27\xfb\xf5\xc0\x3c\x1d\xea\x27\x6e\xbb\xf3\x48\xb7\x4d\x4f\x34\x05\xfb\x44\x2f\x00\x5a\xfb\x07\x55\x68\xca\xe3\x6f\x9a\xf1\x37\x75\xeb\xf4\xd4\x31\x4f\xf6\xeb\x81\x79\x3a\xd4\x4f\x32\xf2\xa6\x19\x79\x93\x5b\xa7\x27\x03\xf1\xad\xfd\x43\x07\xfc\x34\x15\x6d\xee\xe2\x23\x67\x2a\x5a\x34\xb5\x07\xb0\x92\x1f\xc6\xfb\x8f\x37\x76\x19\xd7\x9f\x0c\x7a\xdf\x01\xe3\x81\x49\x75\x81\x7b\x68\x52\x0f\xed\x8a\x6c\x99\x15\xd9\x32\x2b\xb2\x65\x56\x64\xcb\xac\x48\x83\xa4\x7a\x5b\x96\xa7\x8e\x79\xd2\x65\x19\xce\x07\xad\x8a\x4e\xff\xb3\xdc\x00\xf7\xfe\xee\x55\xb2\x1f\x1f\xb4\xff\x25\xeb\xff\xe0\x1e\x2b\x92\xf1\xd9\x6c\x98\x6d\xb3\x61\xb6\xcd\x86\x89\x4f\x5b\x5c\x63\xdb\xec\x98\x6d\xb3\x63\xb6\xcd\x8e\xd9\x76\x76\xcc\xb6\x99\x99\xb6\x99\x99\xb6\x99\x99\xb6\x99\x99\xb6\x99\x99\xb6\x99\x99\xb6\x99\x99\xb6\x99\x99\xb6\xed\x6d\xeb\x91\xa9\xf1\x91\xa9\xf1\x91\xa9\xf1\x91\xa9\xf1\x91\xa9\xf1\x91\xa9\xf1\x91\xa9\xd1\x45\xd8\x03\x46\xd8\x43\xbd\x82\xf0\x1d\xa0\xdf\x41\xda\x74\xd8\x54\x70\x44\x3a\xd8\x97\x4d\xe3\xe0\xa1\xde\x34\x0e\x64\x45\xc3\xd3\x63\x5e\x53\x2d\x75\xd8\x32\x6b\x0a\x69\xc4\xc3\xf8\xe0\x00\xd6\x71\x7c\x08\x13\xff\x38\x3e\xec\x08\x56\x1d\xee\x57\x51\x39\xf9\xe6\x22\xfd\x43\x43\x51\x1e\x1a\x8a\xf2\xd0\x50\x94\x87\x86\xa2\x3c\x34\x14\xe5\xa1\xa1\x28\x0f\xcd\x82\x79\x68\x28\xca\x43\x07\x8a\x0f\x0d\x14\x1f\x1a\x28\x3e\x34\x50\x7c\xa8\xa1\xb8\xd5\x7a\x68\xc0\xf8\xd0\x80\xf1\xa1\x01\xe3\x43\x33\xe7\x6d\xb3\x3f\xb6\xcd\xfe\xd8\x36\xfb\x63\xdb\xec\x8f\x6d\xb3\x3f\xb6\xcd\xfe\xd8\x36\xfb\x63\xdb\xec\x8f\xed\xa6\xad\xda\x2c\xf4\xb6\x59\xe8\x6d\xb3\xd0\xdb\x66\xa1\xdb\xdd\xa8\x6d\x16\x7a\xdb\x2c\xf4\xb6\x59\xe8\xed\x96\xa5\x62\x87\x87\x0e\x22\xb4\x9d\x74\x1a\xd9\xbf\x64\xd1\xef\xdf\x63\x21\xf2\x16\xb3\x6f\xb6\x98\x7d\xb3\xc5\x38\xb4\x71\xdf\x7c\xc7\x27\x21\xf2\xfb\x86\xc8\xef\x1b\x22\xbf\x6f\x88\xbc\xa9\x67\xdf\x50\xdb\xfd\x7d\x43\xe4\xdd\xba\x0f\x4d\xdd\xf0\xb4\x25\x85\x1c\xe0\xb4\x4d\x06\x7c\xe2\xc6\xe9\xa9\x63\x9e\xec\xd7\x03\xf3\x74\xa8\x9f\xb8\x71\x7a\xd2\x65\x6d\xdd\x06\xd3\xdb\x06\xd3\xdb\x06\xd3\xdb\x06\xd3\xdb\x06\xd3\xdb\x06\xd3\xdb\x06\xd3\xdb\x06\xd3\xdb\x0f\x9d\xba\xcd\xbe\xdc\x36\xfb\x72\xdb\xec\xcb\x6d\xb3\x2f\xb7\xcd\xbe\xdc\x36\xfb\x72\xdb\xec\xcb\x6d\xb3\x2f\xb7\x1d\xca\xd1\x7e\x6c\xea\x7e\x6c\xea\x7e\x6c\xea\x7e\x6c\xea\x7e\x6c\xea\x7e\x6c\xea\x7e\x6c\xea\x7e\x6c\xea\x7e\xec\xac\x7e\xb3\xa3\x77\xcc\x8e\xde\x31\x3b\x7a\xc7\xec\xe8\x1d\xb3\xa3\x77\xcc\x8e\xde\x31\x3b\x7a\xc7\xec\xe8\x9d\xa6\xf0\x60\x87\x8f\x6e\xe5\xbc\xb6\x3c\xd6\x8b\xbb\xd2\x36\x5d\x69\x9b\x26\xf0\x09\x88\x9a\xde\xdf\x1f\x36\x1d\x5c\x32\xd3\xb9\x6f\xa6\x69\xdf\x4c\xd3\xbe\x33\x39\xff\x42\xb6\xa5\x45\xbd\x68\xdd\xc6\xc0\x20\x19\x36\x23\x31\x13\xd6\x31\x13\xd6\x31\x13\xd6\x31\x13\xd6\x31\x13\xd6\x31\x13\xd6\x31\x13\x46\x4f\xba\x84\x21\x57\x66\xf7\x6b\x9b\xdd\xaf\x6d\x76\xbf\xb6\xd9\xfd\xda\x66\xf7\x6b\x9b\xdd\xaf\x6d\x76\xbf\xb6\xd9\xfd\xda\x56\x48\xd0\x32\x52\x82\x96\x11\x13\xb4\x8c\x9c\xa0\x65\x04\x05\x2d\x23\x29\x68\x19\x51\x41\xcb\xc8\x0a\x5a\x46\x58\xd0\xa2\x5e\x77\x88\x74\x6d\x3d\x74\xf9\x69\xb3\x6a\xf6\xcd\x6a\xd8\x37\xab\x81\xd9\x3d\x03\x72\xe1\x9a\x0e\xed\x7e\xf9\xb0\x73\xef\xfd\xf2\x56\xce\x9f\x27\xad\x65\x26\xad\x65\x26\xad\x65\x26\xad\x65\x26\xad\x65\x26\xcd\xec\xc3\x9d\x96\x99\x34\x83\x1a\x9d\x96\x83\x10\xe6\xdc\xd0\x31\x27\x81\x8e\x39\x09\xc0\xd3\x7a\xa0\xc4\x4d\x1a\x5f\xf6\x2d\xe2\x6b\x9e\x1e\x03\xf4\x81\x3a\x68\x9a\xdd\x83\x54\x32\xc8\xb6\xbb\x60\xe4\xc0\x1a\x55\x6c\xf5\x9d\x92\xe9\x05\xe6\x8c\xcb\xf6\x4c\xe8\x63\x68\x9c\xf4\x51\x04\x8d\x0a\x60\xfd\x81\x12\x95\x1d\x92\x8a\x29\x8a\x9d\x7e\x91\x34\xd5\x87\x04\x9d\x9e\x8a\xa8\x76\x9a\x7d\xce\xe6\x0d\x72\x25\x77\xb5\x42\x9f\x33\x6e\xf2\x97\x2f\x89\x68\x64\x74\xe5\x97\x3f\x24\x36\x8f\x28\x5b\xc3\x17\x51\x55\xc1\x57\xd7\xa8\xcd\xd8\xb4\x79\xf5\x4e\xa7\xb3\x91\xb1\xa8\x77\xd2\x92\x6b\xb4\x2d\x4d\x4a\xe9\xdd\x8c\x05\x7d\x29\xfb\xf3\x58\xba\x39\xc4\xf3\xb5\xb8\x7f\xf5\xd2\x1a\x73\x8c\x19\x00\xfd\xa9\xf0\x1a\xe1\xf5\x9b\xc0\xab\x3b\x64\x53\x92\x72\x26\xeb\x64\xe0\x52\x4d\xd5\x4a\xfd\xa6\x3e\x91\x8b\x2f\xb5\xe8\x76\xa3\xeb\x55\x32\xec\x0f\xcd\xd5\xed\xa0\x2b\xfe\xae\x1a\x3e\x26\xf4\x57\x83\xe8\xb7\xa4\xfa\x03\x87\x8f\x10\x8b\x21\xe8\xed\xe5\xcd\x4d\x15\x34\x2f\xa3\xcb\x84\xed\x13\xd4\xa5\x0b\x0c\xf8\x8b\x2e\x0c\x5b\x4a\x7b\xab\xb4\x46\x85\x97\x30\x3e\xc9\xab\x75\x67\xfa\x97\x83\x9b\x9b\xcb\xa8\xfb\x5b\x72\x0e\x4d\xef\xec\xe0\x5f\x48\x5b\xa3\xd6\x9f\xdb\xa8\xae\xe2\xb7\x9b\x9b\xed\xdf\x8c\x76\xec\xd6\xf6\x6f\xc6\x91\xd7\x47\xc0\x2e\x32\x1b\xce\x31\x22\x4e\x7f\x40\x50\xba\x42\xfb\x21\xac\x33\x62\x3c\x34\x7a\x17\xfd\x2b\x68\xac\xfd\xe4\x6a\x67\x47\xfc\x21\x06\x0f\xc4\x71\x8a\x97\x87\x7d\x02\x7c\x74\xc7\x87\x6e\x4c\xdf\x88\x57\xa9\x5e\xf0\x06\xa7\xa5\x46\x0a\x1c\x35\x54\x4e\x82\xee\xd6\x82\x7a\x78\x51\x6f\x45\xf5\x20\x7e\x9f\x4b\xa5\xe5\xa2\x21\x7c\x7f\x9f\x1f\x7d\xbe\xca\x46\x18\x82\x06\x0a\x2d\x44\x79\x50\xd5\x30\x82\xa4\xaa\x9d\xcf\x96\xe8\x97\x20\x2c\xf6\x8a\x21\x56\x27\x07\x2b\xb7\x37\x5f\xfb\x39\xcf\xa8\x81\x6c\x8c\xa9\x2d\x98\xcb\x5e\x90\xe5\x63\x34\xa2\x9b\xe0\x6a\x83\x1a\x6e\x6f\x21\xea\x16\xf0\x31\xfc\xa8\xae\x29\xb2\xb8\x33\x2c\x52\xd7\x55\xcb\xd9\x87\x2c\x8f\x2b\xab\x52\xa4\xd7\xef\x2f\x29\x48\xc9\x67\x0a\x16\x56\x9c\x2a\xdd\xc9\x78\x81\x6e\xb8\x60\x0e\x71\x56\x1d\x35\x74\x32\xfe\xd9\xd9\x69\x3d\xf9\xcd\x57\xf2\xe4\x1e\x09\x10\x98\x72\x59\xfb\xe0\x94\x11\xba\x76\x35\x5b\x2c\x50\xd1\xba\x96\x2e\x6b\xa4\x6b\x85\x7a\xa0\x5b\x2b\x84\x30\x77\x19\x5e\x01\x01\x45\xc7\x81\xf1\x49\xd4\x1c\x86\x8c\x1a\x97\x68\x30\x42\x4f\xde\x10\x96\x14\x01\x25\xab\xf8\x82\xf4\x02\xdd\x22\xd0\x97\xdf\x30\xac\x7e\xf7\x92\x0c\x2a\xba\xd3\x1e\x2c\x80\xa9\x9a\x8a\x05\x46\xf8\xa1\x40\x68\x60\x74\x40\x26\x4b\xcd\xa8\x8b\xa4\x0a\x7a\x15\x64\x4a\x35\x9f\xa0\x73\xfd\xdd\x5d\xff\xe2\x2d\x5e\x18\x0b\x37\xa3\x4c\xd3\xc7\x9e\x0d\xe0\x5f\xf7\x53\xe3\x9b\x64\xdc\xd7\x1a\xb4\xbb\x0b\x4c\x39\xfd\xc6\x37\xd5\xe8\xeb\x80\x13\xbb\xe1\x02\x56\x77\x34\x70\xec\x5d\x5c\xe3\x0d\x9b\xaf\x35\xb0\x86\x2b\x05\x83\x8d\x4d\x95\xf1\x77\xdf\xec\xa3\x5c\x21\x7f\x59\x77\xd1\x63\x20\x76\x94\x69\x6c\xd2\xaf\xa8\x96\xbe\xe0\xb6\xe4\x7c\xdb\x6a\xe9\x74\x18\x7e\xd4\x5d\x09\x64\x5c\xb5\x18\xd6\xa7\xfc\xa4\xce\xd4\x07\x75\xa1\x84\x04\x2b\x84\x17\xa9\xc0\x77\x7d\xea\x64\x09\xdc\x4a\x2b\x3c\xae\xba\x0b\x72\xf4\xa1\x8d\x00\x9a\x6a\xb7\xfd\xed\x02\x5d\xbd\x8c\x6d\x4a\x0b\x53\x28\xcc\x87\x9b\x62\x10\x67\xd3\x84\x01\x82\x6a\x7c\x84\x89\x33\x18\xf8\x89\xee\xd7\x90\x8e\x3a\x1b\x40\x1b\xf2\x7b\xfb\xc1\xc0\xa0\xa5\x7f\x17\x17\x6b\x1f\x24\xeb\xb5\x7d\x52\xc3\xb2\x4d\xd8\x35\xea\x33\xb6\x36\x33\x0b\x7a\xbf\x31\xfb\x71\xe4\xbf\xba\xb4\x04\x0b\xb0\x8f\x8e\x12\x8b\xa1\xf9\x01\x8f\xcb\xe0\x5b\x44\xa2\x5c\x5a\xad\xff\xf4\x72\x36\x17\xbd\xe8\x53\x74\x69\x21\x7b\xda\x2c\xc7\x00\x90\x9a\x67\xe0\xe5\x92\x68\x46\x01\x81\xa1\xb9\x0f\x5e\x5f\x5c\x8a\xe8\x58\x36\x76\x5e\x70\x4b\x11\xcd\xd9\x9c\xa3\x22\xbf\x43\xcf\x38\x49\x3f\x38\x7e\x75\x4c\xda\x70\x03\xd3\x06\xf1\x0e\xce\x8a\x69\xf9\x38\xdf\x74\x16\x49\xcb\xc3\xf0\xa6\xd8\x92\xf9\x1c\x83\x66\x05\xb8\x66\x8d\xe2\x4d\xd5\xd4\xda\x39\xe2\xbf\xb4\xe9\xc7\xf9\x9e\xf8\x40\xd3\xee\xef\x1c\xc8\xa1\xa9\x8a\x33\xf4\xba\x86\x24\xc3\xa5\x5e\x77\x6b\xd7\x6f\x04\x0c\x93\x53\xe0\x84\xef\xa9\x04\xcf\xc6\x18\xa0\xef\xe7\xef\xf3\xde\xcd\xfb\x3c\x6a\x7c\xbb\x77\x8e\x6e\x62\x5d\xe0\xd7\xeb\xca\x1d\x8e\x81\x05\x06\x51\x2e\x7d\x60\xc0\x98\xae\x14\xe0\x52\x02\x0b\x1a\x6e\x4b\x5e\x41\x0e\xe7\xd9\x5a\xe1\x6c\x19\x53\x46\xb5\x2a\xa1\x96\x18\xe4\x6b\x5f\x86\x63\x78\x64\xef\x47\xde\xc8\xf6\xce\x23\xaf\x9d\xb4\xee\xbc\x95\x11\x8a\x9f\x1b\x8b\xd5\x70\xb1\xa4\x70\xea\x4e\xa2\xac\xc8\xe1\x6e\xcb\x9b\xcf\x5d\x34\x25\x75\x30\xf0\xd6\x5e\x30\x8e\xba\x99\xbd\x96\x38\xcd\x78\xc8\xe9\x6e\x40\xf2\x6c\x5c\x55\x2e\x1b\x3b\x25\xed\xb3\x83\x96\x34\xaf\xbb\x89\x9b\xcf\xb1\xb7\x76\x27\x68\xe3\x1a\x71\x73\x56\x6e\x27\x3e\x0e\x15\x96\x54\xb9\x74\xc5\xfe\x31\xee\x6d\x85\xba\x8b\xae\x73\xb0\x4d\x85\xe3\x66\x54\x4f\xfb\xc6\xb1\x90\x2e\x3a\x30\x09\xb0\x7e\x74\x4c\x80\x4d\x75\xec\x0e\xbf\x62\x49\xcb\xf6\xd4\x1c\xd4\x9d\x65\xb8\x3b\x2c\x06\xf0\x47\x3a\xe7\xae\x6b\x87\xfa\x6d\x17\x68\x00\xd2\xc1\x32\xdd\x24\x9c\x0f\x5d\x64\xa1\x85\x91\xa2\x7f\xee\x2b\x00\xd8\xf1\x2d\x94\xe3\x5e\x78\x52\xc2\x39\x3d\x82\xb0\xdd\x7c\x62\xe0\x1e\x34\x1a\x0d\x8a\xc2\x5d\x4f\x75\x75\xbb\xed\xa6\x0d\xfc\xbf\xf7\x3e\xdf\x3b\xc7\x98\x39\xb0\x4a\xaf\x46\x33\xe0\x23\xcf\xef\xec\x59\xb7\xdd\xfc\x2e\xb5\x06\xac\x69\xdd\x27\x00\xba\xd3\x5b\xed\xe6\xae\xce\x66\xac\xef\xc3\xd4\x66\x80\x7e\xd4\xab\x3b\x5b\xd9\x3f\x97\x9d\xdf\xd0\x3d\x03\xd8\x30\x82\xcd\x94\x3d\x34\xeb\xda\x81\x47\x17\x8e\x7f\xd7\x7a\x13\x15\x8a\xe2\x0d\x9d\x8f\x0a\x64\xe7\xfd\x6b\xb0\x56\x39\xb2\xdf\x65\x8f\xc6\xb4\xe9\x45\xae\x6b\x4d\xd8\xa9\x5d\x6a\x85\xc6\xfd\x76\x73\x6c\xf2\x6a\x25\xb5\x5f\x67\x2b\xd5\x99\x1c\xd2\x22\x14\x2d\x70\x82\x90\xe9\x1d\x57\xbc\x6e\xbc\x5d\x01\xca\xc1\x08\x71\x57\x3d\x7f\x62\x22\x93\xa1\xad\x17\x74\x2e\x1c\x7a\xd3\xc1\x1b\x06\xa5\xcc\xb1\x1c\x2c\x80\x73\xe0\xc3\xd0\xec\x11\xbd\x5a\x0d\xed\xfa\xfa\x2e\xb5\xcf\x14\x2c\x31\x4d\x86\xe8\x6b\x45\x6d\x7b\x8b\xeb\x0c\xf8\xdf\x88\x79\x19\xf2\x65\x4e\x56\x29\x09\x95\xdd\xb4\x39\x45\x3e\x5d\x41\x7f\x6c\x3a\x2a\xc7\x3d\x28\x95\xe5\x6a\xff\x00\xa1\x72\x68\x93\x47\xa7\x86\x3d\x8f\x4f\x33\xfb\x83\x97\x28\xe3\x79\x3f\xef\xc1\x68\xf6\xa2\x0d\xa4\xc8\xdd\x43\x1d\x10\xae\x0b\xdb\xbe\x61\x04\xf4\xee\xee\x27\x64\x0b\x9f\x33\x48\xca\xbb\xd7\xfd\x89\x9c\xb3\xc3\x29\x97\xbf\x48\x9c\x06\x34\x63\x23\x44\xad\x75\xc7\x8e\xee\x22\x47\x91\x2f\xc1\x91\xa4\x1b\xf9\x7a\x4c\x37\x4c\x3d\x31\x85\x40\x7f\xc7\x03\x55\xc1\xe9\xf5\x2b\xd2\xec\x7c\x68\x23\xbf\x19\xba\x89\x74\x7a\xa8\x61\x20\x6c\x68\xe4\xf9\xd8\x4f\x25\xd8\xbd\x78\x58\x90\xc0\x2f\x52\xb2\xa7\x17\x6e\x5c\x3c\x77\x07\x2f\xb2\xcf\x13\xe8\x7e\xf9\xb0\x5f\x40\x3d\x20\x16\x0d\x38\xf8\xa3\x1f\x9d\xf3\x7c\xf2\x3b\x7a\xa2\xc1\x19\x33\xa2\x08\x5f\x08\x21\xa7\xf9\x20\x90\xf3\x3b\xa9\x8f\x96\x31\x1a\xe3\xf2\xc0\x32\xdb\x40\xe5\x90\x22\x19\x7f\x90\x95\x07\xa3\xb4\x97\x9a\xf3\x3f\x86\x9a\x18\x66\xe7\x93\xbc\xbc\x47\x15\x00\x2d\x02\x37\xd8\x9f\x66\x57\x14\xd1\x73\x93\x0f\xf1\x62\x39\x74\x57\xbd\x56\x1e\x79\xba\xb3\xe8\xa2\x6a\xae\x6f\x9b\x7f\x38\x47\x0e\x98\x84\xad\x01\x78\x5f\xd3\xc1\xdb\x6a\x25\x49\x2c\x8c\xbb\x50\x9d\x86\x10\x01\x8e\x60\x22\xcb\x0e\x0d\xd1\x6e\x37\xe9\x28\x38\xe3\x1c\x5b\x5f\xbf\x9a\xb4\x0f\x0b\x9c\x2a\x14\xd4\x7c\xc8\x38\x5a\x8b\x64\x64\x2c\x62\x91\x66\x1c\xbc\x87\xff\xd8\x8c\x4e\x97\xa3\x15\xb9\xdb\x06\xae\xff\x1c\xf6\xd1\x96\xa8\xa7\x72\x67\x83\xcb\x15\x6c\xa0\x58\xaa\xaa\x4c\xab\xba\x4c\xc6\x85\x8a\xd5\xb0\xb5\xb9\xc8\x5e\x64\x18\xad\x7d\x4f\x77\x3d\xb6\xc9\xbe\xf5\x09\xaf\x28\x99\x28\xc0\x7c\x9d\x41\x9f\x7d\x6b\xd8\x8d\x7d\xe9\x86\x9b\xef\x40\x1b\x97\x48\xbe\xce\x81\xa8\x07\x1f\x98\x94\x43\x6d\xfe\x21\x09\xed\x03\x6d\xdb\xa1\x7b\x73\xa8\x4d\x37\x74\x8e\xa6\xb6\xcc\xd0\x39\x1e\x1b\x7b\x8c\x62\x8a\x19\x53\xbb\x63\xac\x26\x74\x4a\xdb\xb7\x7b\xb0\xfd\xee\xba\xb0\x03\x6e\x22\x88\x0a\xd6\x10\x66\xd4\x1d\x75\xb0\x79\xd4\xad\x83\x52\x53\x66\x94\xfb\x2d\x63\xd5\xa0\x53\x9a\xc6\x28\xa1\x98\x62\x06\xba\xbf\x6f\x54\xfb\x37\xcc\x4c\x7b\xdf\x68\xea\x6f\x9a\xbb\x47\x46\xfb\xbe\x88\xcc\xe7\x61\x4b\xb5\x5d\x7e\xed\x7d\x00\x0c\xdb\x83\xe0\x41\xa4\x3a\x6d\xa3\x8f\x7f\x77\xa9\x07\xc8\xe6\x3d\x08\x9c\x52\x06\x12\xfb\x6d\x41\x80\xb6\x01\x45\x67\xdf\xe8\xd2\x17\x53\x0c\x28\x3a\x1d\xa3\x06\x5f\x00\x4e\xa7\xb9\xa1\x43\xca\xe4\xd0\xc0\x0a\x8e\x5f\xfd\xf2\xf4\x05\xda\xdc\x6b\xa5\x76\x29\x79\xb0\xc6\x58\xa3\x48\xe9\xfa\x14\x6b\xb8\xff\xeb\xfb\xcf\xcd\xe6\xe0\xdb\x5e\xd8\x4b\xc2\xf7\xd7\xef\xaf\xa3\x28\xda\x53\xee\xa7\x7a\xe1\xfd\xba\xad\xd6\x26\xf7\x0d\xac\x71\xf9\xe1\x87\x6f\x9c\xf2\xef\x17\xef\xdf\x41\xcd\xbb\xbb\xef\xd7\xef\xd7\x3a\xf5\x7d\x68\x9e\x4c\x4e\x2c\x19\xfe\x4f\xd4\xfb\xae\x98\xf0\x1f\xc5\x84\xf7\x7b\xa5\x94\x5f\x4b\x29\x8b\x6f\x71\xef\x7c\x3f\x2c\x7d\xb8\x2e\xa6\xec\xb8\x09\xdb\xbb\xbb\xde\xab\xee\xbf\xd7\x7b\x29\xa8\xdf\x13\xf3\xa1\xf1\xbe\x61\x9f\x11\x3c\xfd\xe4\x7f\xd6\x50\xc3\x5e\x23\x1a\x10\x4c\xb6\x04\x28\x7b\x8d\x81\xc9\xb8\x30\xc0\x7d\xbf\xa6\x1e\x3a\x4d\x15\xdf\x83\xf0\xfd\xfb\x7e\x30\xb8\xe9\xff\x1a\x0c\xa2\x6f\x03\x9d\xfc\x00\x93\x1f\x60\xf2\x03\x48\x7e\xa0\x93\xff\x53\x3f\xa0\x69\x38\x75\x07\x7b\x23\x5d\xa1\x0f\x67\x29\x00\xa9\xf2\xcb\x6e\xaf\xdf\xdc\x7d\x3c\xa8\x57\x7e\x0c\x01\x0d\x16\xdb\xc1\x7f\xfc\x9f\x5d\x05\x63\xde\xeb\xee\x7e\xf7\x9f\xef\xfb\xbb\xef\x7f\xfd\xfb\xfb\xeb\xdd\xff\x91\x32\xde\xc8\xcd\x08\xfb\x50\x72\x30\xf8\xf6\xbd\x19\xbe\x01\xd8\x37\xd1\xde\x40\xd9\x2d\x36\xbe\xbe\x5c\xc5\xd7\x82\xa5\xfb\xea\x40\x1d\xaa\x87\xea\x91\x7a\xac\x5a\xb0\x01\xa0\x06\x8a\x6a\x75\x80\x2e\x03\xf1\x51\xad\x43\x85\x16\x95\x8f\x54\xeb\x31\x9c\xcb\x54\x1b\x56\x03\xea\x69\x01\x6d\x50\xed\x03\xd5\x3e\x54\xed\x87\x0a\xad\x1d\x1f\xab\x0e\x5e\xdb\xd2\xa5\x3e\xb9\xc8\x5d\x4c\x3e\x66\xe8\xf7\x5b\x65\x4e\x5b\xa5\x8f\x40\x10\xcd\xc7\x4e\xf1\xa3\x08\xf7\x4c\x06\x0c\x9d\x5b\xa8\xbf\x89\x21\xbe\x81\xc8\x6e\x9d\xcb\x85\xe4\xb0\x7b\xe1\x38\x4c\x45\xf7\xa9\x6f\xf8\x3a\xd2\x18\xbd\x93\xef\x2e\x28\x43\x9e\xf8\x23\xf5\xfd\x26\x1f\x53\xd1\xf5\xda\xb1\xbf\x7f\x26\xae\xd3\xa0\x9e\x0b\xdf\x23\x2b\xa7\xc7\x17\x6a\x3c\x59\xa0\xcb\xc1\x4b\xb4\x3c\xa8\x88\xa4\x32\xd4\x11\x84\x47\xb3\x71\xb6\x40\x3f\x2e\x78\x33\x4b\xb6\x9e\xd5\xfe\x39\xf8\xa4\x85\xae\x8e\x83\xe7\x47\xcf\x5e\x3c\x7d\x7b\xc4\xe6\xf5\x5c\x43\x34\x92\x0b\x33\xf9\x86\x9e\xd0\xc9\x81\x44\x3d\x48\xf0\xf1\x23\x3a\x2e\x90\x18\xf4\x63\x7d\x0f\xc7\xbe\xc8\x9b\xdd\x0b\x38\x5b\xa7\xf3\x73\xed\x6d\xaa\x7b\x41\x81\xcf\x38\xad\x7f\x31\x70\x02\xd1\xbb\xd1\x36\xb3\x04\xc8\x77\x3d\x33\xd4\x19\x4f\xc3\x0a\xf8\x89\x3c\x88\xea\x44\xd8\xc7\x3a\xa6\x59\x57\x3a\xa7\x3b\x5b\x0f\xc8\x8d\x0c\x1f\xb3\x6b\xc0\x51\xe8\xa0\xdf\x23\x49\xc3\x3a\x00\x55\x7e\x5b\xa1\xef\x35\xd7\xb5\x81\xc3\xde\x0a\xe4\x4c\xc0\x6d\x64\x41\xfc\x34\x60\x74\xb7\x34\x83\x0f\x07\x17\xeb\x0d\x05\xa8\xf7\x93\xb4\x3b\xd2\x4e\x4f\xc6\x5e\x85\xfd\x11\xde\x92\x0f\x9d\x57\xac\x7b\x2c\xef\x18\xff\x4d\x1e\xd1\xd7\xb3\x03\x35\xfa\xe2\xbc\x97\x1b\xe6\x83\xb8\x57\x48\xcf\x2c\x27\xc2\xe4\x9a\x5a\xe0\xd9\xd4\xb0\x96\x21\x8f\x2e\x26\xd3\x31\xf0\xce\xde\x98\x0b\x89\xe8\x64\xdd\x6f\xda\x1d\x2f\xde\xc4\x7a\x55\xa1\xd7\x58\x86\xb3\x53\x15\x24\x46\xb6\x0e\x73\xf3\xa0\xce\x57\x93\x71\xdc\xd4\x0e\x0e\x0b\xee\x2e\x5c\x18\x22\x82\x79\xcd\x98\x04\x72\xbd\xb2\xc0\xb0\x80\x8b\x65\xdc\x1f\xf8\x12\x39\xf1\x4d\x3b\xf2\x83\x6b\x7f\xc8\x67\x9f\x72\xb6\x24\x5b\x74\x37\x7e\xd1\x2e\x32\xc5\x13\x3c\xfa\xf1\xdb\x2a\x3b\x88\xc7\x64\xf4\xb2\x8e\xbf\xe8\x46\x1b\x7f\xd9\xeb\x36\xa5\x90\x2b\x6c\x7c\x42\x9f\xbd\x30\x62\xf2\xc6\x69\x3c\xa2\x8f\x29\x70\x63\xb4\xb1\x0b\x70\x5a\x4d\x46\xf0\xc7\x8b\x16\xce\x5e\x06\xc8\x29\x89\x38\x1c\x28\xe3\xb3\xb8\x2d\x22\x07\x76\xa9\x44\xdd\x72\xc0\x19\xd2\xfa\xbb\x42\x56\x91\x23\x60\x0d\xc9\x8f\xc8\x00\x2a\xe8\x8a\x7b\xb3\x0d\xf9\x8d\x03\xdf\xb2\x2f\x4e\xf6\x99\xe7\xb8\x88\x33\x68\x9a\x02\xfd\x19\x59\xfa\x93\x3e\x19\x75\x53\x09\x7e\x60\x46\x63\xcd\x91\x3d\xf7\x39\x23\x77\x92\x1b\x38\xc7\x49\x31\xa1\xb1\x98\xcd\x97\xa1\x7f\x3b\xa5\xcf\xe0\xbb\xc3\x75\x41\xbe\x2a\xa8\xf6\xa6\xb2\xf7\x64\x39\x27\x87\x36\x26\xbb\x91\xf1\x81\x3a\x14\xf3\x60\x99\x27\x11\xab\x71\x6f\x10\x8d\xeb\x75\x25\x9d\x5d\x2d\x8c\x77\xc8\xc2\xfb\xcd\xcd\xd0\x79\xf3\x11\x9a\x9c\x91\x1a\x90\x8d\x01\x64\x48\x33\xdc\x71\xea\xb8\x11\x4f\x32\x8a\x1d\x31\xf2\x3f\xa3\x64\xa3\xfd\xdd\xe8\xe6\x86\xc1\x3a\x1e\x93\x9b\xcd\x70\x84\xf2\x7a\x7b\x23\x42\x08\x5c\x89\x30\xda\xd5\x08\xcd\x94\x4c\x6e\x77\x68\x03\x04\xa0\x6f\xab\x50\x16\x92\x0f\x44\x40\xe8\x08\xa3\x69\x68\x01\x60\xe1\xeb\x30\xd2\xb0\x4a\xd9\x1b\x98\x12\xf2\x38\x9a\xc2\x76\x36\x39\xfb\x42\xb6\xad\x78\x1d\x28\xe1\x1e\x28\x5c\x09\x4b\x48\x38\x41\x32\x28\xf4\xad\x1a\x07\xec\x58\x85\x33\x89\x73\x3e\x4a\xd1\xd5\x28\x0f\x71\x71\x9b\x90\x9e\x04\xe8\xb3\x76\xf3\xc7\x61\xe1\x63\x86\x2e\xe9\xd1\x78\x14\xce\x06\x5b\xde\x17\x02\x22\x39\xee\xc1\xb3\x2b\xf7\x21\xbd\x1c\x4e\xce\x57\xb3\xd5\xc2\xed\xec\xbf\xa3\x2b\xde\x07\xd3\xea\xf7\x6e\x97\xba\x7e\x9e\xab\xab\x0c\xdd\x84\xae\xd9\x01\x4a\x71\xbd\x92\x3b\x30\x91\x11\x8f\xba\xa5\x3e\x71\xab\x25\xbc\x2c\xe0\x22\xf2\x11\x80\x7f\xa3\x04\xbd\x2b\x2b\x8f\x9e\xf1\x4e\xff\x86\x9c\xe5\xf5\xc2\x11\xa3\xac\x50\x17\x8b\xa5\x9c\x5c\x18\xdd\x79\xb6\x7c\xc6\xae\xeb\x00\x5e\x9c\x83\x82\x12\x96\x3a\xf9\xce\xb6\x81\x39\x0b\xde\x95\x20\x05\xa9\x5b\xa4\xc4\xb9\x1f\x92\x15\x4a\x91\x5e\x50\x2a\x22\x71\xec\x52\xa4\x51\x71\xd6\x11\x59\xcf\xf3\x93\x19\x41\x44\xa5\x7d\x7b\x43\xab\x7b\x32\xbb\x62\x68\xad\x8d\xaf\x9e\xaa\x85\xe6\x38\xc8\x29\xd1\x8b\xed\x66\x77\xa8\xdd\xf5\xf1\x0a\x38\x7e\x1e\x9a\x14\xe9\xa0\x3b\x72\xe0\x8f\x08\x2e\xcd\xa0\xd0\x19\xcf\x4b\x2d\x74\x97\x58\xb7\x8d\x98\xa1\x23\xaf\xb9\xfd\xad\xc8\x2a\x1e\x13\x00\x41\x05\xc6\x50\xd4\xb8\x28\x2a\x95\x65\xb8\x8a\x0b\x40\x54\x77\x10\x57\x94\xda\x15\x9a\xc6\x90\x7c\x76\x44\x1f\x7a\x15\x2d\xf2\x17\xe8\x63\xbc\xa1\xe7\xfe\xba\x2b\x39\x7a\x24\x02\x36\x96\x88\x50\x0c\x7b\x0a\x91\x9a\x49\x2c\xf6\x54\x87\x39\x2f\xa0\xbe\x8b\x7a\x5b\x42\x67\x8b\xd3\xed\xae\xd8\xf4\xb6\x8f\xa3\xca\xb9\x79\xaa\x7b\x1e\x90\xf4\x6e\xad\x1c\x32\x56\x5a\xa5\x30\x06\xf6\x98\x43\xa2\x35\x44\x5e\x86\x16\xa6\x41\x9e\x58\x86\xe6\xdd\x7a\x22\xea\x18\xf2\xa4\x57\xda\xf0\xce\x95\x56\x9d\x03\x07\xa4\xb3\x14\x29\xcc\x3c\x5b\xcc\xa6\x1f\xb3\x37\xa2\x81\xf5\x02\xe6\x64\x9c\x12\xc1\xb1\xe4\xbb\x34\x33\xa9\xf6\xd9\xb9\x5c\x5d\xfd\x00\x53\xa0\x3d\x3e\x30\xa5\x90\x5c\x5d\x8a\x50\x33\x36\xf3\x66\xd4\x1c\x2b\xb9\xa5\xd1\x20\xaa\x80\xf3\x7f\xd9\x2c\xb8\x0e\xe4\xe6\x7f\x14\x19\xfd\xc7\x8d\x15\xbe\xce\xa7\x5f\x7c\x3f\x83\x7f\x9b\xad\x6a\x8b\xab\x6c\x34\x39\x9b\x64\xe3\x5a\x31\xaf\xaa\x0d\x57\xcb\xda\x8a\xbc\xc2\x5f\x64\xb5\x55\x4e\x19\x24\x82\x05\x6a\xa3\xe1\x9e\x50\x85\x0a\xe5\xde\xc1\x2c\xb0\x9b\x55\x34\x36\x5f\x94\x50\xc2\xe1\x3d\xfc\x5d\x74\x88\x31\x6b\xcd\x06\x99\xf6\x4a\xfb\x23\xee\xa0\x76\x9b\x4d\xcb\xdb\xec\x50\x93\x41\x7f\x43\x43\x76\xf3\xf8\x79\x79\x91\x97\x10\x6b\xf3\x3a\x32\x39\xec\x3a\xf4\x97\xfc\x74\x36\xfb\xb0\xba\x7a\x9d\x3b\x25\x74\xc6\x0a\xd2\x67\xb0\xd1\xe1\x33\x5b\xcc\xbd\x38\x4b\xc1\xe7\x36\xfd\x96\x6c\x03\x68\xd4\xcf\xee\xbd\x2a\x28\x20\x23\x06\xfa\x23\x43\xfa\x4c\x47\xa4\xc9\xd8\x38\x72\x44\x9e\x6e\x22\xb1\x24\x7c\x64\xe1\xef\x35\x2c\x58\x9b\x67\x67\x19\x30\x79\xa3\x6c\x51\x4b\xe7\x99\x1f\xf0\x84\x14\x15\xad\x57\xc6\x12\x8e\x70\x67\xd1\x31\x03\x31\xec\x76\x41\xdc\x8b\xc1\x2e\x0d\x99\x07\x2b\x9e\xd4\x36\x12\x7c\xbb\xad\x7a\xd4\x5e\xbb\x5d\xbb\xb5\xdc\x8b\xc9\x32\x9b\xe3\xae\x33\xd4\x1e\x16\xd1\x81\xa2\x78\x69\xbb\x6f\x49\x74\x97\x48\x3b\x13\xb9\xdb\xf1\x1d\xf3\x71\x91\x4d\x55\x89\xa6\xef\xb5\xe4\x1a\x62\x80\x04\x0c\x1f\x50\xed\x4c\xbe\x85\x51\x7f\xd4\x38\x83\x75\x34\xbf\xed\x04\xea\x57\x6a\x24\x26\x0a\xf7\x55\x68\x83\xc4\x21\x71\x8a\x75\xe9\x25\xe1\xf5\x8f\x22\xe3\xe9\x9d\x8f\xd9\xf6\xfe\x70\xb0\xb3\xb3\x15\xfa\x29\x80\x62\xaa\x74\xc2\xa1\xa6\x87\x14\x61\xdd\x5d\xed\x95\xec\x85\xf6\x91\x42\x08\xe1\x7b\x1f\x56\x63\xef\x1c\x6c\xbc\xd5\x8e\x7d\x32\xea\x51\xdc\x41\x0f\xb1\x3e\x1e\x97\x08\x23\x9d\x06\xb6\x5b\x36\xbc\x41\xda\xd3\x84\x25\x1e\xf5\x2c\x67\x1a\x18\x8e\x9d\x2f\xbc\x98\xbe\x7b\x5d\xb7\x68\x3c\x34\x04\xb0\x9b\xee\xee\x76\x51\xba\x00\xc3\x30\x9e\x45\xaa\x78\xca\xe8\xff\x65\x96\x52\x6b\x3d\xc2\x11\x7b\x24\x47\xec\x51\x44\x5a\x8f\x55\x9b\x9e\x8b\x7d\x5b\xa9\x0d\x8a\x30\xf4\x7c\x67\x5b\x20\x86\xe3\x7f\x86\x25\xe1\x78\x63\xb2\x01\xa4\x88\x60\xf4\x53\xa0\xb4\xce\xd1\xc3\xfa\xd0\x27\x87\xa1\x26\x82\x4b\x52\xdc\xda\x8d\x4d\xc1\xf0\xe6\x46\x4b\xfa\xec\x1d\x31\xc5\x5d\x74\x9c\x89\xa2\xaf\xf2\xc6\xd3\x77\x27\x9e\x43\xd1\xd2\xae\x8b\x6c\x26\x85\x5c\xa9\xa5\x35\xae\x12\x23\xd3\x38\x21\x62\xa0\x06\x8c\xc5\x62\x53\x9c\x1e\x36\x6a\x58\x85\x04\x6c\x09\xea\x28\xe5\x90\xe0\x84\x01\x52\x67\x0c\x38\x0e\xaf\x61\xaa\x89\x3c\x92\xd9\x91\xf1\x5d\xda\x15\xc1\xc0\xc8\x08\x69\x5d\xa9\x80\x89\x6a\x24\x79\xfe\x94\x7e\x4c\xdf\x51\x24\xc6\xea\xdc\x08\xbb\x3b\x01\xb7\xf5\xbf\x0b\xb9\x3f\x0c\x36\xc2\xd7\x52\x70\x92\x0c\xe3\x37\x51\xa4\x37\xc6\xe8\x33\x07\xb8\xea\x6c\x33\x70\xcf\xd0\x37\xbf\xf9\x7e\x1b\x60\x21\xa7\x12\x23\x15\xec\xc6\x38\xb1\x81\x23\x30\x60\xbc\x46\x5c\xd7\xa3\x39\xf4\xa9\xe8\x1e\xf7\xea\x96\xe0\x96\xb2\x19\x10\x99\x4f\x52\x37\x70\xa5\xc8\xf1\xd3\x64\x5a\x11\x32\x6a\x04\xa9\xc5\x90\x51\x18\x3f\x0e\x03\x67\x75\x87\xae\xa0\x1f\xf7\x91\x17\xb4\x47\xbb\x37\xfb\x5b\x9a\x08\xa8\xac\xcb\x41\x4f\x29\x6e\xe1\xeb\xb3\x90\xcf\x7d\x01\x05\x36\x24\xd8\x67\xc9\xde\xaf\x7c\xed\xf3\x8d\x84\x23\x1f\x45\xbd\xb4\x1e\xf4\x83\xfa\xa8\x1e\x0c\x82\x18\xf7\x86\x5f\xd0\x4d\xb6\x85\xe4\x2f\xe9\x7c\x82\x36\x5b\x14\x63\x9d\xb3\x37\x20\x7b\x8c\xc5\x1e\x50\xb9\x07\x83\xc0\xac\xfb\x5e\x10\x52\xfc\xcc\xda\xce\x0e\xa0\x43\x56\x0f\xa2\x20\xce\xd6\x7e\x78\x9a\x72\x70\x11\x4f\x9e\x86\x79\x6a\x49\xad\x4f\xf5\x28\x6c\x02\x88\x3b\xb6\xd2\x7d\x9f\x63\xc8\x60\x3a\xd7\x9d\xcc\xbe\x5f\x9d\x9d\x79\x21\xe6\x7c\x35\x0b\x27\x0c\x93\x11\x17\xf6\x02\xc9\x41\x55\x77\x83\xf8\xba\x50\xd9\x76\xd3\x1c\x73\x53\xa5\x03\xe3\x55\xf4\x77\x48\xd9\x6b\xf5\x44\xd7\x84\x11\xee\x27\xf9\x04\x0f\xd2\x93\xdf\xb3\x62\xd7\xfc\x9e\x61\x54\xe4\x6c\x2c\x61\x71\x49\x7b\x10\xe7\x75\x71\x85\xbe\x85\x03\xbb\xc2\x82\xb2\xc8\x9b\xc3\xc7\x64\x82\x67\xce\x08\x93\xad\xd4\x97\x69\x73\x5c\x92\x71\xa8\x23\xca\x95\x40\xe2\x5c\x14\xb1\x4e\x21\xde\x7e\x38\x1e\xc0\x4b\x05\x72\x23\x8b\x98\x2c\x9e\xa1\x3c\xd2\x46\x8b\xd0\xb1\x03\x46\xd0\xa8\x1b\x8a\xc9\x29\x4e\xef\x00\x9b\x74\x91\xa1\x9a\x8a\x8e\xf8\x3a\xcf\x52\xee\x81\x76\x79\x9d\x8e\x3e\xbc\x9b\xce\x96\x5a\x25\x9f\x12\x7e\xc1\x48\xd9\x5a\x94\xaf\x43\xf4\x95\xa4\xf9\xb8\x2f\xb9\x77\x00\x0c\x3b\xd1\xd1\x1f\x68\xc7\xff\xa8\xc2\xe4\xa7\x49\xc6\x67\x22\x62\x65\x43\x84\xd4\x5c\x71\xc9\x86\x3a\x81\x1e\xf1\xb5\x46\xea\x29\xbc\x4d\x9e\x08\x0c\x26\xc0\x4b\xa3\xa6\x21\xbf\xf8\xd7\x65\xfa\x5a\xa7\x27\x72\x74\x04\xe5\x00\x52\x99\x1f\x94\x44\xce\x32\x70\x83\x12\x0d\xe9\x4e\x26\x52\x43\x7b\x0d\x24\x50\x81\x75\xf9\x0a\x20\x6e\x58\x43\x93\x42\x2a\x66\x86\x05\x78\x37\x5b\xcd\xf1\x8e\x8c\x95\x65\x7c\x10\x8b\x10\xd8\x01\x89\x31\xa5\x2b\x01\xb0\xec\x4f\xff\x22\x0c\x84\xc2\x52\xac\xae\x69\x66\x82\x32\xca\xfa\xa9\xe1\x85\x02\xaa\xa6\x71\xfc\x60\x4f\xc2\xae\xc3\xfa\x09\x5a\x0b\xb3\x15\xa2\x7c\x43\x63\x44\x59\xbb\xac\x6f\x0f\xf6\x82\x80\x51\x2a\xb7\x8f\x81\x9c\xd3\x9d\x1b\x4e\xb3\xa2\x80\xba\x0a\xcb\xb9\x00\x9a\x42\xdf\x28\x78\x57\xa8\x03\x5b\x71\xd0\x24\x1d\xe7\x0a\x8e\xc6\xdd\x12\xea\x5b\xe1\x1b\x31\xb4\x40\xf1\x74\xc4\xa5\x42\x9d\x26\xea\xa3\x54\x6a\x03\x66\x59\xd1\x9b\x3d\x29\x62\x65\x18\x40\x9a\x0e\x7f\x09\xff\xdc\xdc\xd4\x70\xeb\xc4\x2b\x16\x1a\xdb\x48\x42\x0e\x54\x52\xb3\x2d\x0b\x80\x58\x3f\xa2\x7c\x81\x68\x13\x92\x26\x99\x61\x9f\x2c\x85\x5a\x34\xc3\x31\x74\x78\xe9\xea\xf5\x46\x08\x03\x7b\x97\xaa\x9c\xa2\x0a\x33\x09\x7f\x99\x6a\xdf\x95\xfe\x52\xa5\x03\x4a\xd4\xb5\x81\x8a\x4d\xc4\x1c\x6a\xae\xdf\x1a\x24\xfe\x2b\x1a\xe4\x61\x38\x6d\x6b\x04\xc9\x51\x60\xbd\xd9\x37\x37\xab\x78\x41\xe6\xd2\xa1\x86\xd0\x99\xa8\x2a\xb1\x18\xf5\x77\x14\xdd\xaf\x33\x23\xba\xd2\xae\xaa\x11\x45\x4a\x5d\xbf\x48\xb9\xca\x00\x7b\xaa\xb5\x2e\x75\xaa\xe8\xd8\xe1\x36\xd0\x8e\x70\x17\x89\x3c\x02\xab\xf5\xaf\x6d\x4f\x12\xd2\xfd\xde\xf2\x7a\xa1\x09\xae\x73\x89\x4d\x2a\xe2\x51\x19\x8f\x35\xe2\xc8\x0a\x77\x29\x84\xbe\xb3\x23\x0c\xe9\x9a\x4b\x3f\xdd\x95\x5e\x5f\x8b\x90\x15\xb3\x75\x83\xb8\xef\x6d\x55\xf6\xb3\x8e\xc5\xaa\x74\xcc\x99\x85\x29\xd3\x1d\x09\x15\x75\xf4\xc6\xbd\x3d\xa9\x7c\x91\x35\x7a\x92\xd1\x15\xb2\x58\xaa\x09\x43\x53\xbf\xad\x28\xcd\x87\x5c\x42\xd1\xb2\x94\x31\x96\x80\xeb\x5f\x54\x11\xdb\x01\x5b\xe1\xc8\x57\xd1\x1d\xea\x75\xa8\xf4\x5a\xf0\x28\x34\x6e\x15\xc6\x9e\xdb\x68\xe0\x22\xf5\xe1\xa0\x25\xc8\x0d\x19\x3c\xc6\xf7\xa8\x76\xfd\x3e\xaf\x31\x42\xad\x03\x67\x87\x4e\xcd\x26\x6c\x6f\xe2\x9c\xee\x57\x69\x73\xa4\xc9\x56\x10\x20\x4b\x90\x34\xf5\xb1\x9d\x71\xc5\x42\x6f\x6c\x15\x0e\x32\x0f\xaf\x47\x83\x6e\xd6\xf0\xb9\x9f\xde\x30\x19\xf6\x86\xd8\x8d\x1a\xfc\x57\x47\xf6\xad\xa1\xb9\x21\xfb\x84\x81\x0d\xd1\xac\xc2\xe3\x81\xa0\x54\x97\x86\xa5\x86\x62\x08\x1e\xc1\x80\x92\x8c\x2b\x0b\x0c\x77\xad\x6f\x17\xe9\x80\x5c\x32\x61\x29\x2e\xd5\xf2\x4d\xba\xa1\xe5\x15\xdf\x02\xb9\x41\x34\xa8\x2a\x1b\x3c\x1d\xa4\xe5\x30\xdc\x34\x27\x5e\xd1\x1f\xa1\xed\x2d\x74\x05\x0d\x6c\xec\x85\x66\x62\xaa\x89\xf3\xab\x39\xbe\x52\x7b\x7c\x50\x40\x35\x17\xd7\x56\x3b\x0a\xd6\xee\x8d\xc3\xf7\xff\xbe\xd1\x6e\xdd\x73\xb8\x0e\x9d\x66\xd5\x64\x18\x30\xee\x2f\xfe\x30\x4b\x14\x61\x72\x56\x0b\xb7\xb5\xc9\x3a\xec\x14\xdc\x3a\x21\xb0\xc4\x19\x4c\x6a\xf7\x06\x4a\xb7\xb6\xa6\x8b\x18\xf7\x86\xa8\xac\xd0\x8c\x1f\xa1\x0e\xf9\x4e\x91\xc0\x2b\xd2\xeb\x26\xd2\x98\x65\x83\x28\x66\xb8\x51\xd8\xfc\xf5\xfd\xa2\xbe\x87\x76\x39\x7a\x58\x5e\x79\xdc\xdd\xd8\x7d\x75\x71\x46\x4a\xed\x57\x95\xae\x48\x73\x54\x45\x17\x70\xb0\x72\x5a\xb6\x7c\x99\x68\x47\x68\x18\x94\xda\x3e\x9b\x02\xec\x8f\x89\x19\x0b\x3d\xbd\x81\x2b\x3b\x67\x15\x73\x04\xa0\xde\xc2\xd3\x16\xf0\x0d\x7c\xec\x02\x76\x13\x16\x1f\xcd\x11\xcb\xba\xbc\x25\x0e\xa0\x86\x3c\xeb\xdb\x36\x07\x91\x4e\xb9\xcd\x90\x80\x6a\x53\x8d\xc1\x83\x07\x81\x54\xaa\x07\x27\x17\x72\x77\x62\x7c\x31\xda\x6d\xc2\xe7\xc0\x62\x72\x50\x1a\x78\x65\x3f\x8a\xc5\x42\xe9\xaf\x05\x20\xae\x4e\x14\x90\x5a\x01\x5f\x19\x07\x1d\xa6\x08\x95\x9a\x8c\x5b\x10\x87\x57\x42\x8d\xfb\xc2\x35\x44\x05\x2e\x1b\xb3\x6d\x7b\x68\xf7\xb7\x2f\xa7\x4a\x95\xaa\x60\x64\x2e\xce\x58\x06\x5a\xaa\xd9\xa9\x98\xc6\x23\x72\x70\x53\xe9\x56\xb1\xd6\x08\x03\x9a\x57\xdc\xba\xdd\x39\x2f\xfa\xfb\x09\x0a\x1d\x1e\x58\x77\x25\x0f\x6e\x23\x9d\xa9\x3d\xcc\xb3\x24\xca\xe2\xa3\x5b\x5f\xad\xc7\x1f\x64\x17\x65\xda\x15\xd5\xf0\x7e\x83\x04\xe3\xd3\xa2\x78\x43\xfa\xb8\x91\x5e\xeb\x7d\x9a\xda\xaa\xa1\x68\x8c\x17\xc3\x50\x37\x8e\x1a\xb0\xd4\x2a\xa6\xc4\x1a\x8b\x9d\x59\x19\x7a\xe0\xb7\x9d\x78\x4e\x81\x8e\xef\x06\x3f\x5d\xba\x68\x4b\x0d\x23\x11\x2e\x39\xce\xb9\x6d\xee\x4a\x53\xe7\xa0\x3c\x33\x88\x74\x69\x47\x72\x64\xbe\x24\x08\x1d\xf5\xc8\x2d\x63\x59\x53\x2c\x65\xa2\xcf\x17\x1b\x26\x53\x4f\x23\xb7\xbd\xc7\x28\xaf\xd7\xc5\x23\x8c\x2b\x60\x37\xb4\x92\x98\x34\xcc\xab\x0a\xef\x02\xa0\xca\xd6\xf0\xe8\x2e\x64\x87\x4f\xf1\xce\xea\x21\x71\xb3\x3d\xe1\x27\xd7\x74\x68\x26\x71\x02\x8e\x9a\x1e\x64\xee\xf0\x79\x4d\x06\x42\xc5\x56\x1c\x72\x6a\xa3\x48\xda\xf8\x92\xba\x51\x34\x15\xba\xf7\x18\x71\x8f\xd3\x0d\xbb\x0c\x5e\x71\xec\x98\x8f\x7a\x5a\xc8\xe4\x4c\x31\xe4\x62\x9e\xcb\xe8\xcc\x9a\xcc\x92\x1e\x31\x23\xb5\xf6\xf1\xac\x9a\xea\x78\xf3\x46\xa9\x9e\xc0\x89\x66\x7e\x0b\x33\x96\x8b\xbb\xc2\x00\xed\xe1\xc8\x72\x6e\xce\xe5\xdb\x3d\x5a\x4e\xa5\xab\x25\x2d\x3a\x28\x21\x7a\x15\xbd\x5b\xfa\x2c\xc7\x1a\x87\x9c\xa7\xd1\x26\x64\x26\x07\x2a\x6b\xe5\xde\x93\x17\x64\x66\x1b\x08\xdd\x45\x35\xb7\x75\xe1\x33\x5a\x54\x74\xb5\xc8\xde\xca\x79\x36\xd4\x77\x58\xd6\x39\x94\xe1\x8f\x1c\x85\x05\x4e\xa0\xf6\xf9\xb6\xe0\xde\xbb\xc1\xd0\x21\x47\x50\x4e\x9a\xa3\x13\xbd\x56\xaf\x16\x1a\x87\x62\x02\x42\xce\x63\x38\xe4\xa3\x76\x1d\xf0\xe5\x0a\x73\xd9\x54\x0f\xcf\x90\x5d\x00\x32\x28\x4a\x17\x40\x15\xf9\xc1\x72\x6d\xf8\xc0\xe8\x8e\x9c\x5e\x5c\xbb\xa8\x66\xee\xbc\x64\x93\x1f\x76\xd7\xae\x56\x2e\xf4\xf8\x19\x3d\x37\x8e\x9a\x45\x65\xf0\xf4\x2a\xe0\xb9\xfd\x1f\xc9\xe8\x75\x47\x46\x7e\x7f\x03\xd3\x90\xd1\x9b\xa9\xa2\xc2\x5f\xb9\xdd\x55\xcf\x3c\x73\x2a\x9a\x80\x0a\xcb\x56\x31\x02\x60\xc1\x51\x55\x6f\x5c\x8d\x28\x2e\x36\x98\x83\x73\xaa\x4c\x33\x2a\xbb\x3f\xd6\xb8\x9b\x98\x76\x1c\x84\xd6\x98\x9a\x7b\xdc\x1a\x79\xb8\x52\xe4\xa9\x46\xd5\x38\xe3\x1e\x07\x1c\x3c\x1c\xeb\x83\xc0\x19\x1d\x04\x7c\x34\x2a\x4c\x4b\xd7\x32\x9c\x15\x5c\xa5\x53\x29\xcc\x6c\xd7\x54\x29\x7b\x9a\xfe\x5c\x66\x23\x6e\x6d\xd3\xa0\xae\x9c\x3c\x3c\x55\x37\x8f\x16\xa5\x62\x91\xec\x82\xd8\x4a\x2e\x52\x23\xc6\x00\xa0\xa2\x83\xac\x14\x5d\x61\xa9\x02\x63\x59\x29\xf5\x18\x54\x49\xfc\xb4\x98\x8e\x99\x86\x6e\x25\x3e\x2e\xb2\xe9\x19\xb3\xc2\x81\xbb\x76\x31\xd9\x0f\x2c\x5f\x71\xf8\x44\x1e\xdc\xd1\x41\xac\x10\xd8\x6d\x15\xfb\x3e\xd2\x46\xff\x1b\x36\xbd\x71\xf1\x1c\xa2\x46\xc5\x14\xcf\xdb\x07\xed\xb0\xa3\x9d\x9d\xcc\x6e\x8f\xc6\xab\x1a\x42\x8f\x62\xaf\x46\xdd\x31\xe6\xe0\x8d\xb1\xf4\x79\x8c\x9e\x8c\x64\x23\x2c\x7c\x0c\x89\x8f\x8b\x58\x21\x51\xcc\x5e\x86\xaa\x20\xc4\x2f\xac\x7a\x6b\x83\x91\x1a\x55\x6a\x32\x7a\x39\xa3\xc0\xb4\x23\x2d\x2e\x39\x7b\x72\xde\x3d\x43\x71\xc9\x38\x19\xf5\xcf\x06\x5d\x8e\x05\xee\x09\x89\xba\x6c\xbd\xc2\xc2\x25\xb4\x31\x3f\xfa\x0c\x94\x01\xc1\x25\x9a\xcc\xd0\x75\xbe\x9e\xbd\x10\xc5\xe3\x92\x9c\x4e\x8b\x6c\xb5\x23\xaf\x52\x06\xed\x77\x86\xaf\xf1\x12\x7c\xa2\x2b\x19\x13\x67\xbd\x7e\xa1\x2a\x4b\xf6\x2f\x06\x49\x66\xee\x3b\xc7\xb0\x8f\xb8\xd9\xb4\xae\xaa\x2e\xe5\xde\xce\x60\xc9\x71\x14\x87\xb7\xb5\x89\x5a\x66\x55\x43\xf6\x70\xcc\x1a\x1a\x35\xd5\x28\xd9\xd8\x9e\x86\xf8\xf0\xc9\xa8\x3b\x2c\x58\xc4\x54\xf6\x6f\xc8\xf6\x30\x3b\x3b\x63\x6d\x38\x92\x46\x46\x44\xb7\x36\x96\x06\x96\x5d\xa8\x34\x28\xdf\xb8\xcc\xcc\xa5\xba\x96\xfb\xf1\x6a\xcb\x67\xb3\xab\xc0\x15\xa0\xb8\x07\x66\x47\x29\xbf\x9b\xfa\x7a\xf6\x8e\xd5\x0f\x6a\xca\x20\x48\x15\x5f\xfb\x68\x51\xa8\x62\x25\xe9\xb4\xa8\x24\x8d\x57\x48\xe3\x81\xa2\xa8\xc0\xbd\x91\x2b\xf4\x6c\x06\x51\x3c\xf2\xa5\xa0\x21\x7a\x0c\x32\xaa\x05\x4d\xd7\xa5\x0d\xf7\x5f\xa0\x12\x06\xf1\x96\x97\xf0\x97\xc9\xf2\x82\x35\x60\x80\x6a\x8c\x8a\xf2\x2b\xa5\x05\xf7\x55\x9b\xa7\xbb\x1b\xa6\x65\xaa\x4e\x47\x3e\x11\x08\x92\xdf\x16\x9b\xbd\xea\x4c\x27\x17\x04\x00\x42\x2d\xec\x76\xd3\x8c\x9e\x93\x7f\x93\xa0\x59\x53\xc3\x0b\x5b\x56\x70\xe3\x6d\x30\x15\xa1\xa0\xf5\x4e\xc1\x82\x60\x75\xa3\x18\xca\x95\xac\xda\x93\x49\x41\xfe\x50\xe6\xb4\x2b\x2a\x8b\x22\x7d\x38\xf0\x85\x4a\x22\x33\xed\xa6\x5a\x37\xc8\x69\x2c\x75\xc7\x59\xee\x6d\x59\x70\xa4\x45\xf7\xf9\x68\x6e\xf6\xfe\xb4\xbc\xe1\x0f\x65\xaa\x52\xe7\xe6\xc1\xbb\xf4\x13\x8d\x32\xc7\x9e\xc7\x3d\x84\x57\x6c\x2d\x41\xa0\xd7\x3c\x86\x35\xe7\x1e\x31\x9d\xed\x8e\x7a\xa5\x7d\x04\x98\x62\x85\xc6\x4d\xc6\xb5\xe3\x39\xe6\x19\x33\xdd\x07\xd2\x0c\xdf\xe3\x30\x4b\xb6\x45\x90\x26\xd7\x96\x6a\x98\x6c\x8b\x5e\xb3\x96\x66\x92\x62\x82\x9c\x0d\x9c\x41\x43\xce\xc0\xc8\x80\x78\x28\x32\x62\x64\x5e\x54\xa0\x79\x32\x2b\x14\x85\x03\x46\x29\x8d\xae\x82\xbd\xa8\xfa\x30\x94\x33\x7d\x83\x62\xf7\x44\xa3\xd5\xa5\x3b\xba\xbb\xab\x7c\xc6\x7b\x88\x90\x8e\xc8\x1a\x64\xef\x57\xca\x26\x2a\x18\xe3\x08\x90\x7f\x5c\x62\xd8\x9c\x63\xa4\xcc\xd8\x98\xfa\x6f\xaa\xea\x06\x91\xa3\x6f\xa5\x4c\xd1\x4d\x7a\x07\x06\x89\x90\x21\xdf\x32\x90\x2a\x1d\xc7\xcd\x10\xb4\x27\x35\x93\xf0\x9d\x7d\xa5\xdb\x3e\x7d\x9b\x57\x48\x16\x7e\x85\x2e\x7e\xeb\x7e\x0d\xfe\x3d\xb0\x3f\x83\xda\x75\x06\xbf\x57\x68\x5d\x54\xd6\xb8\x56\xce\x0a\xd8\x70\xe8\x77\xce\xb5\x74\xb9\xa3\xef\xb3\x4b\xa7\x5e\xd7\x46\x95\xb7\xb0\x74\xc3\x56\x95\xe2\x96\x54\x40\xdf\x0d\x4b\x68\x5c\x3c\xb7\x42\x0a\xe9\x8b\x2c\xca\x9d\x76\xa1\x53\xbe\x9a\xd7\xde\x4f\x2a\x57\x5f\x71\xe1\x8d\x92\x70\xd8\x2b\x56\x14\x6f\x95\x3a\x19\x89\xe0\x03\x2f\x58\x81\x4c\x8c\xbc\x31\x45\xc6\x46\x96\x96\x25\x65\x62\xcf\x8e\x85\x75\xe9\xeb\x06\xe8\x58\xfb\xf4\xb9\x06\xf5\x07\x45\x0d\x8f\xdd\x5d\x63\x7e\x6b\xe7\xfd\xee\x51\x95\x07\x54\x1a\x0f\xac\x7b\xdf\xed\xb1\x98\x92\xc2\xd8\x86\xfe\x7c\x69\x0d\x0c\xa0\x6c\x2e\xe1\xae\xd8\x44\xd0\xe6\x38\x75\x3d\x42\xa0\x43\x08\x72\x7d\xe2\xf8\x89\x20\xdf\x12\x90\xf4\xa0\xe4\x21\x8c\xcc\x93\x9d\xc4\x39\x27\xce\xbd\xc4\x55\xbb\xd9\x7e\xc4\x1f\xe8\xb1\xf4\xf1\xb1\xfd\xf8\x98\xad\x9d\x45\x4b\x74\x83\xc8\x83\x11\xb5\x8f\xdc\xc9\x96\x3d\x97\xca\xd5\x50\x0a\x84\x79\xe4\xf1\xed\x95\x67\xd1\xa1\x3d\x8b\x0a\x1c\xaf\xf9\x98\x18\x8f\x95\x3d\x2f\xc6\x29\xab\x38\x67\xca\x1e\xc2\x62\x7b\x31\xa5\xb5\x02\xc6\x91\xc3\x6a\xa8\x0a\x19\x42\x0c\xc7\x06\x7b\xd3\x5c\xde\x51\x87\x51\x75\x5d\x6b\x01\xc4\x6b\xf1\x83\x53\x25\x5b\xe8\x93\x3f\x72\xf1\x45\x7e\xa6\xce\xb5\x79\x78\x40\x16\x6f\xa5\xbb\x82\xdb\x05\x81\x6e\xd9\x13\x12\x43\x96\x2b\x50\x6e\xa6\x67\x5a\x44\x59\xce\x17\x75\xcf\x4a\x37\x3d\xe8\x2a\xed\xbc\x74\xca\xba\xb9\x39\x8b\xce\x35\xa3\x74\x0b\x3b\x0b\x67\x1a\x87\x7f\x05\xbe\xff\xec\x3e\x85\xce\xfc\x42\xba\xf7\x62\xda\x09\x1d\x3f\xb3\x89\x67\x39\xbc\x9f\xb3\x55\x05\x1b\x98\xa7\x64\x54\x5e\x1a\x89\x92\xfb\xf3\xb3\x68\xb3\x76\x36\x5a\xf5\xbb\x6e\x6e\x1d\x10\x8e\xab\xd3\xef\x37\x39\x56\x2c\x6c\xed\xfe\x49\xfa\x3a\x70\x86\x27\x42\x64\xbc\xeb\xf6\x73\x54\x2a\xec\x8c\x9c\xe3\x7b\x2c\x67\x78\x4b\xc6\x9c\xf5\x55\x5a\x8c\x69\x82\xa2\x60\xbb\x0c\x05\x55\x09\x43\x7d\xc9\x30\x9b\x7f\xbb\x1b\x81\x27\x81\x92\x0e\x05\x06\xb4\x4e\x8a\x7e\x44\xe7\x0b\xdd\xad\x61\x41\x86\x1b\x04\xeb\xb5\xa3\x7e\x11\x90\x0b\xa0\x1a\x89\x61\x90\x6c\xd3\x32\x41\x3f\x32\x67\x68\x61\x32\xfd\x22\x6e\xc9\x6a\xc4\x9b\x8e\xf0\xe0\x57\x83\xc2\x35\x76\x01\x55\xfb\x74\xc1\xba\x5f\x39\x9c\x04\x57\x99\x91\xcd\x50\x87\x59\x11\x4c\x9c\xc9\xd7\x26\x67\xe2\xd2\x77\x9c\xa1\x9a\x18\x69\xeb\xcc\xbf\xd4\xc6\x33\x97\x18\xeb\x1b\x0c\xd4\x87\x49\x47\xcb\x5a\x96\xaf\x2e\xe1\xfb\xb2\xb6\xb8\x98\xcd\x97\xb5\x21\x47\x87\xad\x65\x9f\xd1\x1c\x06\x3f\x64\xf3\x33\xa0\x8c\xe4\xc5\x7b\x32\xaa\x0d\xbf\x40\xc5\x30\xd7\xc0\x55\x2f\x6a\xd3\x59\x7e\x8e\x96\x33\x19\x8c\xe7\x02\x55\x89\x71\x3c\xb5\x1c\x32\x7e\x84\x02\x5f\xf2\x11\xf4\x86\xbd\xa1\x91\xa5\x44\xed\x6c\x3a\x4b\x51\xfb\x79\xf4\x21\x3d\x17\xf7\xc3\x8b\x1a\xa9\x50\xa3\xdf\xf5\x59\xed\x6a\x3e\xf9\x98\x42\xfd\xd0\xb3\x7c\x31\x41\xdd\x36\x52\xd9\x38\x87\xfa\xe9\xc6\x94\x4e\xa8\x35\x54\xd3\x65\xf7\xea\x1f\x67\x53\x68\x0b\xa0\x33\x9e\xad\xd0\xd9\x38\x64\xc2\x4e\x5f\xc1\x0b\x74\x15\x60\x50\xfb\x32\xc9\xa6\xe3\x40\xfc\xb9\xa2\x2f\x0a\x75\x05\x07\xc8\xb7\x47\xef\x8e\xde\xfe\x72\xf4\xfc\xf4\x2f\xaf\xdf\x3e\x7f\x87\x7e\xfc\x51\x3e\x31\x4f\x32\x2b\x9f\x98\x93\x7c\xe2\xaa\x9f\xf5\xcf\x06\x03\xb6\x04\xbd\x55\x5f\x37\xd9\x2a\xef\x65\xdb\xc5\x96\xe0\xa4\xb5\xb3\xb3\xf7\x6b\x3f\xdd\xfd\xfd\xe9\xee\x7f\x9f\x7e\x33\x40\x0d\x61\xf3\xf2\xad\xd6\x14\x4e\xa3\xde\x76\x13\x7d\xa2\xd8\x03\x41\xf8\xbb\xba\x8a\x4a\xaa\xdc\x53\x75\xa1\xce\x15\x19\xc7\x30\xe9\x3d\x17\x7f\xcf\xe8\xb0\x91\x1f\xc9\x3e\x58\xab\x68\xd3\xe0\x65\x07\x27\x1f\x24\x56\x29\x1f\x46\x3f\x15\x6d\xc1\xee\x79\x52\x60\xee\x86\xc9\x3c\x8c\xba\xc3\xb2\xa6\x3c\xe9\xc9\x4b\xaf\xae\xc4\xcc\x7a\xdd\x1d\x56\x9a\x23\xb8\x79\xcf\x9c\xbc\x4f\xdf\x9d\x24\xc0\xf4\x59\x9f\x2b\x19\xbc\x94\xd5\xcb\x93\x14\x92\xc5\xbb\xcb\x88\x8d\xd6\x16\x59\x32\xb6\x20\xea\x4e\x93\x73\xe8\xa5\x1e\x45\x72\xae\x3f\x4d\xd7\xe1\x17\xf5\x51\x3d\x55\xdf\x03\x0c\xc9\x7d\xcc\xde\xb7\xdb\x5b\xb5\x6f\x6b\xff\x39\x03\x82\xfb\x71\x02\x2b\xb2\x76\x84\x41\x13\x6a\xbb\x35\xdb\x6e\xed\xe9\x15\xaa\x6d\xa4\xb4\xd6\x7e\x00\x4a\x93\x7d\x9a\xcd\x3f\x50\xb1\xd1\xec\xea\x0b\xb9\x65\xa8\x3d\x33\x4f\xed\x66\xab\xb5\x0b\x7f\xf6\x6b\x27\x93\xe9\x38\xab\x1d\xe7\xa3\x46\x2d\xcd\xc7\xb4\x70\xe7\x93\xe1\x6a\x39\x9b\x2f\xb0\xb4\xf3\xdf\x1b\x40\x56\x24\x22\x5e\x35\xcd\x43\xac\xa6\x55\x83\x8d\x78\x36\xe4\x7a\xee\x55\xec\x11\x17\xc3\x5e\x4b\xeb\x4f\xa7\xd3\x1a\x7d\x5e\x00\x81\x01\xb0\x7d\xcc\xc6\x54\xd5\x7f\xa2\x36\x4a\x0e\xe4\xa7\x56\x7b\xc1\x4f\xe3\x1a\xba\x0f\x9c\xd7\x5e\x1e\x9f\xd4\xe4\x63\xa1\xcd\x77\x59\x56\xbb\x58\x2e\xaf\x16\xf1\xde\xde\x3c\xfd\xd4\x38\x07\xba\xb3\x22\x84\xd8\xcb\x10\x74\xff\x58\xf0\x6f\x03\x1e\x2e\x53\xa4\x9f\x7b\x2f\x8e\x9f\x1d\xbd\x7a\x77\x44\x2d\xe2\xc6\x86\x70\xac\xd5\x5a\x8d\x87\x8d\xe6\xee\x30\x5b\xa6\x8d\x56\x7d\x94\xe6\xe9\xfc\x4b\xa3\x33\x7e\xd4\x7a\x74\xf8\x30\x85\xac\x7b\x5b\xb5\xb0\x80\x7c\xec\xd7\x10\x4e\xc4\xbf\xad\x26\xf3\xec\xe5\x6c\xbc\x9a\x9a\x37\xfd\xfb\x8f\x85\xa2\x19\xec\xba\x85\x29\x85\xb7\xc9\xe2\x23\xe9\x6c\xa3\x92\x2b\x13\x43\xfe\x9c\x24\x8e\x17\x45\x5d\xfc\x9a\x42\x23\xb8\xf9\x1a\xa7\xa7\x40\xc6\xc6\xe5\x02\xd8\x59\x96\x9f\xcc\xbf\x20\x4d\x59\x64\x59\x8e\xee\x84\x38\x87\x5d\x08\x24\x9d\x02\xd6\x6b\x41\x3c\xdc\x10\x0f\x06\xd7\xba\x5c\x9f\x35\x96\xaf\xf1\x73\xec\xe5\x89\xf5\x03\xd9\x49\xc8\xa8\x13\x79\x4a\x3c\xe8\xf8\x4d\xd1\x19\x02\xfb\x52\x54\xc8\xa4\x8f\x66\x49\x62\x0e\x6e\x7d\x6d\x1f\x13\x06\xd3\xb6\xdf\x3d\x1d\x9c\x06\xf7\x32\xf1\x93\xf9\x6c\xb6\x9a\x8e\xc9\x90\x12\xc6\x3a\xae\x5d\x52\x3f\x6a\x41\x9d\xda\x20\x8b\x0c\x48\x4a\xfc\x6a\x08\x06\x09\xa4\x37\xbc\x81\x52\x8a\x7e\x81\x09\x26\xeb\x5e\xe2\x27\x69\x4b\xb2\x76\x96\x13\xa0\xd9\xd3\x04\xcb\x1a\x87\x39\x4f\xa6\x5d\x54\x0f\xc7\x11\x63\x7a\x7f\x32\xc0\x49\x92\x82\x01\x8e\x95\x6a\x13\xc7\x45\x9c\x8c\xb1\x67\xc8\x3b\xa8\xff\xd5\x83\x68\x28\xea\x1d\xba\x56\x60\x8c\xd6\x34\x2a\xb6\x40\xd1\xbd\x75\x15\x16\xa5\x32\x43\xb4\x1d\xa0\x4a\xc3\x37\x37\x7c\xd2\x33\x3b\xba\x6e\x84\xe4\x9d\x34\x08\x7a\x6a\xe0\xde\xfa\x74\x19\x36\xa3\x6d\x18\x4c\x23\x30\x53\x46\x5f\xa9\x1b\x64\x1f\x98\x70\x6e\xd9\xeb\xf6\x02\x3e\x73\xc0\x27\xd8\x35\xbf\x07\x76\x23\xc1\xd6\x9d\xcf\x4e\x04\x84\xa8\x00\x54\xcf\x66\xd7\x40\x55\xb7\xc4\x9f\x01\x0c\x88\x1b\x94\x80\xfd\xc2\x8e\xd9\xc6\xc4\x1d\x28\xf1\x3c\x6e\x2e\xc8\xa4\x59\x19\x06\xba\x5b\x04\xe1\x8e\x39\x23\x1d\x0f\xc1\xe9\xbd\xb0\x6e\x7b\x41\xe4\x2e\x80\xc6\x29\x70\x56\xa7\xb4\xd2\x34\x72\x75\x0b\xab\xf4\x9a\xd7\x5f\xec\xd3\x91\xd8\x52\x10\x2e\x16\xeb\x87\x35\xf7\x4b\x56\xad\x5f\x59\x83\x53\xef\x5c\x80\x85\x52\xf2\x71\xbd\x8e\x60\xf7\xe1\x2a\xc2\x00\x11\x66\x08\x63\x44\x53\xf3\xbe\xf3\xb6\xb7\x02\x96\x06\xef\xb7\x9c\xa4\x31\x1a\x2c\xcf\xb3\xf1\x29\xc7\x57\x39\xfd\x6d\x95\xad\x32\xcc\xa3\x51\x1b\x0e\x5a\x7a\xcd\x9f\x9e\x02\x92\x02\x7b\x96\xe5\xa3\x2f\xad\xd3\x53\xe5\xbe\xb7\xe9\x5d\x0a\x9d\x9e\x46\xd7\x01\x70\xbc\x64\x87\x36\x5a\xb2\xf8\xfd\x67\x6c\x3c\x29\xd4\x81\x27\x45\x62\x31\x83\x01\x65\x7a\x2e\xdd\x61\xdf\xa7\x7f\xa6\xce\x24\x85\x76\x1a\x55\x99\xa8\x34\xa1\x5d\xa2\x2d\x80\x51\xd0\x82\x2f\xf0\x43\xae\x9b\x12\xea\x41\x03\x1f\xd5\x64\xc1\xc7\x51\x49\xd3\xaf\x90\xae\x55\x84\xcd\x17\x9d\x00\xdf\x5e\x51\x04\x24\xf3\x85\x5f\xd5\x72\x72\x99\x91\x75\x8b\x3a\x9f\xce\x86\xe2\x0d\x48\xbd\xfa\xf9\xe5\xf7\x47\x6f\x93\xbd\xf7\xe3\xfa\x1e\x75\x2e\xcf\xb2\xf1\xe2\xf8\xe8\x64\xfe\xe5\x19\x32\xe2\x3f\x4c\x3e\x27\x8e\xe5\xdc\x67\x20\x7d\xf3\x2f\xd7\xe8\x4d\x97\xf8\xf4\x10\xa8\xab\x0e\xdd\xb1\x9d\x21\x6f\x61\x16\xf3\x64\xf1\x6c\x96\xcd\x47\xc4\x1f\x52\x0f\x42\x8e\xcc\x64\x56\xaf\xee\x99\x4e\xbf\xb9\xe1\xce\x30\x0f\x28\x89\xd6\xb4\xed\x7b\x83\x0d\x21\xcd\x3e\x32\x9d\x0b\xed\x8f\x56\xe4\x6b\xf6\x43\x62\x1f\x7d\x73\x25\xf9\xd5\x1b\xa0\xef\xfb\x43\x66\x99\xe6\xaa\x68\x70\xef\x7c\x72\x2a\xef\x37\x07\x6b\x11\x14\xf1\x09\xc3\x37\xf9\x01\x94\x18\xce\x60\x04\x99\x63\x2f\x74\x8a\x9b\xc7\x72\x39\xe5\xd9\x58\xdb\x71\xb9\xf6\x77\xb6\x05\x76\x8e\xac\xfd\xee\xd2\x8b\x78\x18\x3e\x96\x26\x39\xd1\xeb\x00\x27\x15\xfc\x1d\x33\x01\xd3\x80\x70\x47\xa7\x66\xf9\xf7\x98\x37\x31\x31\xc5\xf4\xb0\xe5\x03\x5a\xcb\x7c\x9c\xcc\x56\x0b\xdd\xa6\x5c\xa0\xf9\x1d\x21\x72\x58\xc8\x68\x24\x9f\x4e\xef\x84\xd0\x15\x73\xae\xab\xea\xa4\x8b\xd1\xaa\xa5\x14\x16\x66\xdc\xa0\x02\xf6\x42\xba\x1d\x5d\xcb\x43\x58\x55\x75\x69\x50\x28\xdd\x29\x68\xcc\xde\x02\xb1\xa3\x7c\x5c\x05\x2f\x48\x2e\x4e\x50\x25\xb0\x48\x8a\x6e\x47\x89\x71\x9a\x3e\xea\x23\xe4\xf4\xcb\xd3\x29\x30\xf1\x63\x58\x83\xd3\x29\x6c\xfe\xa4\x59\xd8\xc5\x95\x57\xa8\x84\xef\x64\x60\x35\x4a\x31\x12\x97\x56\x55\x11\x5d\x57\x56\x8c\xde\x3c\xbb\xd5\x60\xc7\x0e\x19\x33\x28\x6f\xf6\xb4\x48\xdb\x1b\x40\xd5\x2c\x5b\x2d\xb7\xf2\xa4\xda\xa2\x6b\x9a\x2f\x00\x1b\xce\x16\xfc\x84\xb7\x01\x0a\xc5\xd9\xe8\x71\xd6\x41\xeb\x65\x3a\x3f\xcf\x96\xea\x32\x5b\x5e\xcc\xc4\xa4\x17\xea\xa1\x30\x76\x90\xfe\x9a\x1f\x3d\xb7\x2a\x9e\x97\x62\x16\x47\xeb\xd2\xfc\x9b\x70\x9d\x5d\xfe\x21\x58\x60\x2f\x35\xfd\x0d\x25\x77\x21\x7b\x9f\xdf\x06\x6c\x80\x3b\x3f\x5f\x24\x95\x2e\x1e\xda\x62\x98\x3c\x19\xff\xc0\x53\x22\xd3\xcb\x60\xa0\x58\x7b\x44\x64\x85\x4c\x72\xa5\x9a\xb3\xe2\xb1\x92\xb1\x9e\xa6\xc0\x5c\x42\x8a\xca\xab\x87\x0f\xb6\xa5\xe8\xda\x69\xd5\xce\x3d\xe0\x7c\x88\x80\xa5\x7d\xff\x5e\x4d\xff\xa1\xea\xd1\xaf\x85\x67\xac\x6a\x16\xaf\x2a\xcc\xe1\xbf\x65\x46\xe8\x42\x80\xf1\xf4\xf9\xd1\xf7\x3f\xff\xd8\x33\xec\x7b\x6c\x4e\x31\x34\xbc\xc4\xcc\x95\x0e\x09\xd1\xe9\x55\xce\x64\x27\xb2\x25\xed\x66\x52\x40\x5f\xe0\xf7\xe8\x3c\xfe\x14\x4f\xc0\x2b\xa6\x44\xc6\x4a\xa5\xaa\x40\x63\x81\xf1\x04\x90\xe9\xde\x00\x1f\xea\xa4\x22\xa4\x51\x34\xa8\x48\x20\xfb\x3a\x77\x2f\x99\xff\x3f\xe8\xfe\x13\xd0\x45\xec\x35\xc0\x5d\x64\xcb\x13\xe0\x9e\x66\x15\xf1\x60\x36\xad\xf2\x48\x49\xf0\x1f\xc7\x19\xaa\x6e\xe0\x53\x3a\x59\xfa\x6d\xbe\x9e\x9f\xf8\xaf\x7f\xc1\x2c\xfa\xe5\x29\x54\x81\x00\x30\xe1\x84\x9a\x9a\x87\x32\xc7\x0b\xf3\xa9\x65\xe6\x88\x1a\x5e\x5c\x4c\xce\x30\x48\x02\x36\x99\x34\xcb\xd9\xdb\x3a\xbb\xee\x01\x15\x43\xd7\x56\x6e\x4f\x38\x91\xc3\x7a\x5a\x4e\x33\x74\xb3\x00\xf7\x56\xf1\xe5\xc4\xc5\x13\xce\x08\x47\xc7\xeb\xa5\x6d\xca\xf4\xf0\x1e\xbd\x2e\x73\x94\x5e\x0f\x6e\x19\xb9\x9b\xc2\x54\xee\x96\xe6\xd6\xc6\xc2\x17\x75\x1e\x79\xec\xce\x2c\xee\x6a\x38\x14\x3b\x83\xb9\xa1\x13\xb6\x41\x7b\x02\xbc\x96\xaa\xef\x80\xf5\x53\x59\x1e\xb7\xc0\x1a\xb3\x10\xac\xbd\x95\x29\xe9\x3b\x3b\x7e\x03\x70\x5c\xc6\xa5\x6c\x93\x31\x17\x4a\xc5\xfd\x6c\xf7\x9e\x90\x8d\xa0\x63\x59\x40\xf6\x39\x1b\xad\x60\x29\x2e\x93\x3a\x31\x6d\xb0\x2c\xeb\x24\xa5\x3c\xce\x97\x21\x21\x7d\xab\x19\x75\xbf\x92\xae\xdc\xb9\x95\x9b\x03\xc2\x99\x84\x25\xf2\x36\xd1\x3b\x77\x4f\x67\xe7\x8c\xd6\xee\x00\xab\xca\xac\x59\x42\xb0\xc8\xd2\xf9\xe8\x02\x49\x02\x94\xd2\x83\x96\x03\x16\xf0\x16\xf4\xab\x8d\xde\x26\xaa\xa9\x6c\x9e\xb3\x3c\xea\xae\xae\xc6\x00\x99\x17\xf0\x6f\xce\x55\xd0\x41\xcc\xe6\x41\x48\x59\x51\x77\xbe\x56\xfa\xbc\x70\x2b\xcb\x43\xf7\x6b\x54\x93\x4f\x64\xd5\xe4\xf2\x32\x1b\x4f\x50\x20\x0c\xf8\x68\xa8\x14\x10\x28\x26\x43\xfa\x2c\xa2\x58\x77\x8c\x3a\xcf\x73\x24\x68\x6d\xca\xbb\x68\x67\x13\x05\xe1\x4d\x42\xd7\xb6\x87\x34\xd4\x41\x7f\xbf\xf9\x35\xa7\x95\xd1\x83\xb4\x02\x51\x88\x76\xa2\xbb\xe6\x0f\x57\x15\x0f\x51\x8c\x52\x58\xec\xbb\xdd\x96\xaf\xd7\xe0\xe4\xea\x53\x0e\x38\xac\xe1\x00\x13\x3e\x02\x37\x2c\x61\x77\xe5\xa6\xb8\xd7\xd8\x01\x5e\xd3\x55\x25\xec\x2d\x82\x10\xf8\x2a\xe8\x40\xd8\x70\x67\x7f\xa9\xfc\xe6\xfe\x16\x3f\x1b\xc4\xa1\xf9\x68\xe1\x99\x84\x31\x02\x4b\xdd\xa7\x57\xa6\xaa\xa4\x5f\x00\x1c\x0e\xbd\x7c\x08\xd5\x17\x9f\xf2\xee\xe8\xcd\x48\x0a\x72\x17\x7c\x8a\xfd\x77\x60\x20\x8f\xd3\x9c\x93\xff\xa5\x18\x48\x3c\xd2\x3f\x81\x82\xcf\x75\xaf\x2a\x51\xd0\x9e\xed\x0b\x53\x6a\x3e\x24\xc5\x8c\x82\x85\x25\xe1\x40\x71\xd2\xbb\xa3\x29\xd0\x18\x8d\x9b\x26\x5f\xbf\x3d\x88\xfe\x8d\x18\xbc\x69\xb8\x8c\xa2\x1b\x87\x5b\xfc\x7c\x2f\x0c\xde\xd9\xe1\x76\x93\xc4\x54\x51\xd9\x43\x0b\xcb\x6a\x6c\x2e\x35\xce\x8a\x50\xfa\xdd\xaa\xad\xe9\x94\xb5\x1a\x21\x1f\x38\x25\xda\xbb\x28\x32\x74\x04\xf7\xe3\x65\x76\xb9\xb0\x62\xaf\x09\xbc\x02\x9f\xe9\xce\x08\x26\xd1\x64\x74\x51\x4e\x17\x16\x97\x94\xb2\xd5\x44\x55\x42\x1f\xb7\x94\xed\x7a\x45\x29\x5f\x7c\xa4\x8f\xe3\xa7\x53\xb3\x79\x14\xfa\x55\xfa\xdc\x2d\xa6\x30\x73\x6f\x84\x81\xb6\xce\x94\x39\xe8\xca\x0a\xf5\xb7\xae\xf7\xca\x55\x91\x23\xe7\x32\x30\xb5\x50\x50\x76\x43\xed\xf0\x65\x7b\xbb\x84\xfa\xc5\x4f\x0e\x65\xf2\xdc\xc4\xe8\x66\xf5\x04\x3a\xc4\x88\x21\x41\x11\xf2\xf1\x91\xcc\x6b\x74\xb8\x7b\x4d\x4e\xe8\x61\x67\xc7\x66\x48\x92\x60\x36\xfc\x47\x36\x5a\x06\x92\xca\xc2\x24\xfd\xa2\x49\x9b\xa6\x86\x36\x47\x83\xdb\x97\x66\x0d\x7b\xea\xd5\x6c\x4c\x7b\xac\xa2\x3a\xdf\x2c\x78\xf0\x90\xab\x05\x64\xc3\x75\x05\x40\x22\xea\x2d\xbc\xb5\x91\x41\x15\xb9\x89\xb6\xa5\xcf\xb8\xbd\xae\x4d\xf3\xaf\x69\x2c\x56\x86\xd8\xd0\x4e\xa5\x44\xa7\x94\xaa\xc3\xae\xf5\x79\xd4\x1c\xdf\x7c\x10\x14\x76\x4c\x1e\x1b\x22\x61\xe8\x6d\x6a\xa5\x6d\x97\x17\x60\xa4\x27\xa7\x50\xee\xb9\xa5\xe7\x45\x2c\x77\xc0\xa6\x8f\x31\x18\x35\xcd\x94\xb7\xf3\x8a\x15\xbd\xd4\x87\x32\xe8\xac\x72\x26\x1a\x57\x20\xef\x1d\x66\x72\x05\xa8\x4f\x3a\xf6\x9a\x9d\xe8\xbf\x25\x70\x5c\x19\xe7\x46\xbf\xcb\xfc\xd0\x1a\x70\xf5\x05\xb2\x86\x2d\x24\xf4\x41\x53\x6d\xfc\xcc\x0b\x5f\xcf\x0f\xd2\x80\x6b\xca\x73\x3b\x05\x37\x99\xfd\xc9\xf3\xba\xb9\xee\x56\x89\x82\xcd\x79\x35\xa9\xfc\x4a\xe7\xfe\xdb\x0b\xa2\x54\xe0\x96\xc2\xf8\xb9\xba\x02\x22\x1a\xd5\x25\xed\xb6\x43\x06\x0d\xa5\x3b\x03\x11\xc3\x89\x0f\xd9\xb7\x40\x2b\x2a\xab\x81\xd5\x5c\xdd\x34\x52\x97\x4f\xf3\xf4\xea\x38\xd7\x95\x86\x4e\x65\x2c\x40\xd3\x09\x28\x87\xad\xac\x24\xcb\xc7\xd5\xb5\xc3\x87\x4d\xb5\xa3\x18\xd2\xde\x39\x14\x32\x61\xba\xc5\x2d\x47\x97\xd9\x8a\xcc\x30\xd5\xbd\x05\xb5\x02\x01\x7b\xe0\xe0\xcb\x63\x5c\xbb\xd6\xa5\x9f\x3d\xdd\x98\x1b\x0d\xa9\xd1\x91\x2c\xe3\xf7\x9b\x9b\x42\x02\x9f\xe1\x3c\x09\xb4\x4d\xee\x17\x52\x5f\xca\xc9\xca\x34\xec\x4b\x4f\xec\x8d\x5b\x74\x6d\x9f\x8d\xa0\xd4\x49\x32\x7b\xc0\xad\x7c\x48\x55\x01\x12\x2c\x3b\x1f\x58\x3a\xe8\x00\xbd\x74\x3e\x22\x6e\xa0\x70\x3e\x22\x16\x87\xf7\x7e\xbb\xb7\xdd\xdc\x98\x5c\x4f\x8a\xdf\x8e\x3e\x5f\x4d\xe6\xd9\xe2\xe9\x52\xf3\x2b\xce\x96\x78\xeb\x18\x4a\xb9\x69\x00\x1b\xab\xe7\xcf\xd2\x0f\xde\x16\x69\x00\x91\x66\x82\x36\x97\x34\x9d\x77\x10\xa3\xa2\x22\x5a\x5a\xf9\xec\x93\x3d\x65\x13\x1d\x83\xb3\x25\xb0\xda\x4a\xba\x86\xb3\xe9\x32\x84\xde\x99\x15\x0a\x9b\xd3\xea\x19\x5e\x6c\x78\x7b\x4c\x53\x4d\xf8\x3a\x7c\x92\xb4\x60\xc3\x82\x0c\xe5\xdd\x8a\xda\x30\x92\x34\x7a\xab\xba\x28\x53\x74\x0d\x05\x35\xa0\xca\xc0\x7a\x1d\x19\x52\x6d\x82\x08\x5d\x57\xcf\xb6\x6c\x85\x9a\x44\xe3\xd3\x2e\xf4\x3a\x72\x20\x73\x1b\xc3\xea\xb0\xaa\x66\x61\x42\x76\xda\x9d\x36\xe6\xf4\xab\xde\x7c\xfa\x34\xe7\xb8\x3b\xaa\x76\x72\xfa\x55\x57\xe4\x1d\xcd\xa6\xd3\x8c\x72\x14\x77\x37\x60\x8f\x0b\xba\x09\x36\x6f\x59\xed\x03\xb7\x2c\xfb\x5d\x34\x14\x68\xcf\x6a\xd2\x9e\x25\xb4\x82\x52\x88\xcb\x30\x32\x61\x6a\x6b\xc2\xc1\x1a\xcd\xc6\x44\xa9\xb6\xf3\x2e\x0e\x11\xca\x09\x12\x5d\x8b\x00\x78\xbe\x44\x53\x33\x20\xae\xde\x1c\xef\xb6\xd5\xe5\x64\x3c\x9e\x66\x80\x9b\xa4\xcb\x19\x52\xd6\x27\x19\xde\xf8\x4c\x93\x10\x7e\x77\x29\x25\xda\x6b\x77\x39\x67\x42\xef\xf5\xe9\xee\xf4\xff\xb4\x35\xce\x7c\x27\xb5\xf6\x39\x0b\xec\xbb\xdc\x22\xbf\xd6\xdb\xcc\x50\x60\xeb\x9c\x62\x06\xe1\x15\xa6\x32\x83\x1e\xd7\xdf\x8e\xe9\x77\xed\x68\x04\x34\xec\x86\xe1\x6c\x2a\xeb\x2a\xad\x85\x8d\x4a\x09\x77\x29\x33\x50\xbe\xff\x35\xdd\x05\xbe\xc1\x2e\x2a\x2b\x50\x2a\xeb\xe8\xdf\x4f\x07\xc1\xca\xdd\x2a\x2f\x67\xab\xae\xe8\xb1\x76\x86\x51\x62\xef\x6e\x51\xfd\xa8\xbb\xf9\xf2\xde\x79\xbc\xb9\xe9\x0f\x2a\xef\xf2\xf9\x34\xe5\xb4\x58\xbe\x02\x89\xf8\x42\x7d\xd1\x37\x29\x03\xba\x58\xa6\xde\xf2\x4e\x6d\xaf\x03\x74\x87\x61\x53\xaa\x1a\xdb\x6d\xd7\xf4\xdc\x4a\xc5\x95\xbd\xa6\x95\x77\x5e\xcf\xf0\xf5\xc3\x0c\x48\xd2\x0f\xd3\xf4\x5c\xae\x20\x36\x80\x8e\x9b\x4b\x4a\x43\xa3\xdb\x92\xdf\xb4\x12\x43\x41\x53\x0d\x9d\x28\xa7\x4b\xf4\x47\x8c\x1a\xc4\xcb\x59\x4d\x77\xad\x96\xe6\xb5\x54\x74\x37\xe0\x89\xdb\x43\x1b\x30\x53\x31\x5a\xbb\x2f\x2f\xd2\x65\x6d\x3c\xcb\x16\xf9\x83\x25\xec\x4e\x93\x05\x3a\xb2\x21\xa9\x2b\xf7\xd8\x50\x45\x3e\x2a\xe1\x69\xfc\xe7\x7c\xf2\xdb\xaa\x48\xa2\x69\x98\x72\xc1\xe2\x1c\x05\x9c\x62\xb7\x14\xd0\x56\xf6\x1b\xe4\x51\x9c\xf7\x94\x98\x04\x7c\xdc\xd9\x71\xe4\xf7\xdf\x35\xa3\x5b\x24\xbc\xae\x00\x98\xcf\x4d\x2c\x22\x37\x4d\xa2\x41\xab\xb0\x6a\xb7\xb6\xee\x49\xa1\xff\x95\xfd\xb8\xed\xd6\x57\x2c\xd4\x8a\x42\x8d\x4d\x98\xc3\x2b\xac\xa8\x47\x61\x11\x93\x9e\xf8\x2f\x49\x25\xd4\xd5\x7c\x32\x9b\xff\x59\x7f\x3f\xa6\xa3\xce\x6f\xde\x2b\x6c\x00\xac\xb9\xf3\xfa\x4c\xd4\xa2\x6c\xcd\xfa\x1a\x6c\x93\x3e\x05\xc9\xf9\xff\x1d\xec\xae\x4c\x5d\x22\xa9\xda\xb2\xab\x38\x9d\x4e\x72\x17\x98\xc0\x6c\x3e\x9d\xcd\xae\x62\xde\xb2\xfc\x51\x3e\xf1\xc7\x18\x59\x3a\xe0\xaa\x06\xf9\x65\x06\xdd\x4d\xab\xd5\x02\x98\x3f\x36\x78\x27\xf9\x3e\x03\x32\xfb\x03\xce\x67\x36\xf6\x3e\x88\xde\x62\xd4\x75\x13\x51\x96\x63\xe6\x5a\x4c\x3e\xa4\x94\x06\xf1\x30\x3b\xc3\x18\xf7\x6e\x8e\x9d\x1d\xf7\xad\xc1\x39\x54\x7a\x86\x07\xbf\x5b\xf2\x51\x86\x2a\xba\x45\xeb\x53\x30\xa6\x0a\x1d\x9c\x51\xd2\xa3\x13\xe9\xb1\x9c\x6f\x67\x87\xfb\x03\xe7\x08\xfa\x85\x63\x82\x33\x19\x15\x13\xc1\xa2\x33\x7d\x9b\x65\x5b\xe9\xdb\x02\xfa\xb2\xad\xfa\x6b\xbd\x35\xe8\x92\xf0\xba\xfa\x6b\x7b\xd0\xe5\x6b\xee\xea\xcf\x9d\xc1\xd7\x5c\x6e\x41\x56\xcb\x7c\x21\xce\xdd\x46\x45\xd6\x4e\x33\xc9\xfe\x7a\x23\x9a\x68\xad\x9d\x2a\x60\xd2\xa4\x45\xd7\xf4\x13\x12\xcd\x0e\x2b\xd6\x73\x22\x1e\xdd\xdf\x98\x4f\xb8\x44\x78\xff\x5b\x14\x76\x4a\x2a\x10\xa1\x56\x2e\xca\x4b\x0a\x84\xa0\xa2\xee\xae\x31\xe2\x31\xcb\x6b\xed\x97\xaa\xd7\xd7\x68\x39\x64\x74\x08\x6f\xeb\xcb\x38\xfd\x4d\x2b\x5a\xfd\xd9\x40\xc7\x21\x78\x96\x84\x15\x19\xe8\x62\x21\x60\xa0\x13\xe1\xa0\xed\x42\x86\xea\x1d\xaa\x88\xac\x34\xaf\x33\x93\x5e\xdc\x71\xbd\x25\xaa\x8f\x37\x9a\x91\xd6\xdc\xe8\x6e\xcb\xe3\x36\x2b\x15\x49\xab\x12\xab\x39\x50\xe1\x24\xfb\xd5\xac\xe4\x26\x56\xd1\x80\x97\xb9\x1f\x84\x63\xee\xf2\x3d\xac\xb1\x07\xc9\x38\x56\xc7\x51\xbb\xf5\xcb\xce\x07\xe6\xd7\x05\x36\xac\x8a\x37\x63\x8d\x6f\x91\x1b\x6b\x42\xb5\xfe\x33\x6f\xf2\x96\x8f\x82\x86\x98\x4f\x22\xe3\xce\x32\xfb\x24\xeb\x80\x5f\xb8\x1e\x7e\xf6\xbd\x8b\x6d\xe4\x18\x2c\x56\x24\x4e\x57\xba\xf7\x61\x36\xb4\x31\x2a\x37\x4a\x0b\x80\xf3\xc6\x5e\x91\x98\x7f\xd6\xec\x41\x81\x59\x9e\x3f\xdc\x31\x8d\xd7\xa2\x15\x22\x6f\x22\x0a\xc5\x33\x3e\x1f\xcf\x11\x99\x5d\x74\xd3\x07\xf4\xfd\xe8\xda\xab\x80\x33\x21\x0a\x7b\x35\xe9\xe4\x3a\x6b\x1b\xf8\x45\xec\x61\xd1\x2f\x63\x8f\x8c\xba\x74\x7b\x40\xba\x00\x5d\xfd\xde\x19\x24\x34\xb6\xaf\x05\xdc\xfa\xdf\x32\x1b\x9b\x19\x22\x0f\xe0\x3e\x46\x97\x91\xbc\x9a\x69\x91\x1d\xb5\xa4\x05\xea\xed\xa3\xa5\xaf\xbc\x7b\x1a\xc5\x06\xb7\x19\xcb\xf6\x54\x26\x6b\xe6\xe7\x96\x8f\xfd\xca\x6f\x9a\x11\xda\xb8\x65\x4f\x4a\xa8\x74\x16\x4e\x2b\x36\x60\x41\x3c\x07\xd3\x96\x05\x14\xbb\x2c\xe1\x96\xdd\x51\x09\x5b\xdc\x3d\x94\xd0\xa5\xbb\x89\x3d\xfe\x37\x2b\x73\xe8\x88\x7b\x55\x6d\x78\x3c\xf7\x9d\xb5\xfb\x1c\xfa\x9a\x61\x57\xde\x6f\x5d\x00\x7f\x37\x15\x3a\x7b\xea\xb0\x85\xc2\xd9\x4d\xe5\xa2\x4d\x2b\xf7\xb2\x5e\xa6\xcd\x2c\x55\xa0\xae\x52\xe9\x2e\x8c\x4f\x70\x27\xb3\x67\x94\xfe\xff\x32\x7d\xf1\x7b\xda\xd8\x44\x6e\x0a\xd9\x3c\xea\x63\xaf\xc5\xf6\x0b\x37\x2b\xa5\x21\xbb\x6c\x92\x7b\x3e\x96\x1b\xa8\xff\x3f\x19\x30\x5f\x0e\x12\x97\xe7\xdf\x02\xae\xbb\x2e\x5b\x41\xfb\x6b\x42\x7f\xab\x19\x07\x91\x4a\x7d\x25\xe3\xe0\x7c\x71\xa4\x4a\xc9\x35\x45\x1c\x37\xe5\xad\xfc\xd1\xb1\xef\x73\x38\x30\x00\x6a\x85\x08\x13\x99\x2f\x9d\x3d\xf4\x44\x98\x74\xf6\x5e\x14\x1d\x66\x2c\x56\x18\xf9\x72\x69\x6f\x2f\xf9\xba\x57\x92\xf1\x9e\x53\xbc\xd6\xae\x1d\x6b\x99\xaf\x29\x6e\x6e\x70\xd7\xc6\xa4\xe6\x6b\x8a\x33\x07\x8e\xd1\x7a\xec\x04\x20\xfb\x9b\x4e\xc4\xe0\xc9\xbc\xec\x39\xc9\xf7\x93\x09\x6e\x9a\x1f\xb6\xba\x7a\xf9\xfa\xf9\xd1\x8b\xd3\x1f\x9e\x3e\x3b\x79\xfd\xf6\x6f\xa7\xc7\xaf\xfe\x74\xf4\xec\xe4\xf8\xf5\xab\x77\x56\xcd\x9c\xf3\x1d\xbd\xfa\x65\x67\xc7\x33\xec\x84\x94\x8d\xa5\xb7\xab\xac\x43\x37\xb7\xb5\xbd\x7d\x77\x95\xa4\x7d\xf2\x4c\x0f\xfe\x36\xb9\xe5\x06\xc4\x33\x65\xab\x60\xbc\xb7\x01\xda\x93\xfc\x22\x9b\x4f\xd0\xab\xdc\xe9\x18\xa1\xf6\x4f\xc2\x1c\xc7\x70\x6c\xaa\x7c\x0e\x69\xb7\x0d\xc4\xb0\xde\xa6\xeb\x21\x5b\xf8\x69\x87\x60\xf4\x92\xf0\x8f\x98\x4e\x88\xf3\x37\x27\x2e\x11\x59\x49\xce\x25\xd7\xce\x0e\xff\x9a\xf4\x9b\x1b\x87\xdb\x59\xbb\xb1\x8c\xe6\x5f\x48\xe8\xe9\x77\x37\x2c\x55\xc3\x59\xb5\xe5\x06\x06\x04\xbc\x47\x31\xca\xa7\xf7\xad\x14\xe3\xc1\x7d\x79\x76\xcf\xa2\x6e\xf6\xc8\x1b\xe3\x7d\x6b\x70\xb3\x4b\x0d\x88\xd8\xc7\xf9\x3f\x98\x8a\x2c\xee\x51\x87\x5f\x40\x87\xf0\xb0\x35\x68\x50\x4a\x6f\x4f\xbe\xb6\xfe\xca\x72\x3e\xc0\x8e\xcb\xad\x9d\x6a\xbe\xf3\xee\x06\x4e\x7d\xeb\x96\x53\x1c\xd0\xeb\xfb\x97\x76\xb2\x47\x6b\x83\x9e\xee\x21\x8d\x73\x8a\x09\x9a\xf6\x7f\x49\x6f\x1a\xf5\xf4\x9b\x58\x94\x72\x4e\x0a\xc7\x4d\x8f\x3e\x88\xb5\xd9\x9a\xff\x7e\xea\x9d\xfb\xdc\x5e\x39\x0d\x97\xb4\xb6\x0c\x11\xc1\x81\xda\xb5\x45\xd6\x00\xfe\x32\x12\xf7\xbe\x3a\x8b\x75\xaa\x62\x68\x09\xaa\xfb\xdb\x06\x58\x59\x46\x7d\xc8\xbe\x70\x50\x55\x60\x02\x29\xa5\x0f\x29\x83\x84\x92\xaa\xdc\x18\x9e\x41\x5f\x49\x00\x21\x53\xeb\xde\x82\x4c\x27\x63\x0a\x78\xc4\x39\x4c\x56\xba\x1d\x95\xec\xb0\x83\x18\x62\xeb\xca\xf0\x11\x7b\x44\x8e\xff\x94\x65\xf8\x18\x40\x71\x39\xab\xe9\x1e\xa0\x10\x5f\x47\x7a\x96\xba\xe2\xda\xdf\x83\xba\x6e\xa4\x1e\xfc\x3d\x60\xb5\xbf\x7c\x36\xbf\xa4\x58\x4d\xe3\x57\x26\x0a\x9b\x49\xf3\x3b\x65\x09\x01\x9a\xd0\x87\x7e\xc9\xa8\xca\x1a\x3e\xcd\xd1\x14\x7e\x9e\xed\x1a\xc8\x14\x3a\xa1\x6a\xe9\xa2\x36\x59\xd6\xa0\xbe\x5a\xca\x26\x69\xb5\x61\x96\xe5\x35\x74\x88\x8f\xfe\x18\xae\x1a\x81\x18\x04\x6a\x74\xc2\xfb\xf9\x42\xdb\x1a\xba\x91\xbf\x58\xaa\x72\x3a\x76\x9f\xe8\x2c\x32\xdf\x3c\x65\xb7\x4e\xd1\xd7\x40\xce\xef\xfd\x3c\xbb\x9c\x7d\xcc\x8a\xc0\x73\x88\xec\xad\x39\x5c\x1a\x79\x6b\x46\x97\x14\xde\x9a\xd1\x00\xab\x3a\x93\x89\xe8\xf0\x6f\x04\x10\xfb\x01\xc2\xeb\xa7\xa4\xdc\xf7\xf3\xd2\x1c\x12\x2e\x72\x7e\xeb\x02\x80\x5e\xd7\xec\x7a\x82\x4a\xfb\x75\xcd\x8b\x75\x88\xbe\x9a\x99\x96\xaa\x66\xca\x9d\xa9\x40\x28\xdd\x9c\xa1\x20\x3a\x01\xd5\xa5\x17\xa3\xf9\x64\x58\x09\x3a\xa3\x27\xc4\x09\x6b\x65\xaa\xbd\x57\xee\xcb\xf4\x43\x76\x52\x8a\x16\xa9\x89\x4c\xb9\x20\x7f\x30\xba\x80\x61\x45\xdc\x0b\x43\xaa\xee\x43\xa2\xb4\x4b\x19\xf6\xde\xc6\xf2\x97\x0d\xd3\x6b\xef\x51\xa5\xc9\x1f\x84\x1e\x7d\x1d\x42\xf9\x23\xf9\x41\xec\x3f\x36\xb6\x1a\x91\x3e\xea\x1f\x6b\x03\x89\xdb\x5d\x95\xcb\xa0\xa0\x1f\x48\x8b\x1d\x09\x1f\xbc\x59\x08\x6a\xa2\xa9\x99\xbb\x09\x9c\x67\xce\xd3\x29\x79\x8d\x7e\x7d\x95\xcd\xc9\xab\x8e\xf1\xa7\x25\x95\x69\x82\xe7\x6e\x7a\x84\x79\x5e\xdd\xa6\x0b\x9b\xda\x76\x25\x54\x52\x73\xb1\x06\x6f\x23\x2e\xd4\x73\x25\xee\x51\xd4\xbd\x20\x77\xcf\x81\x7a\x0d\xca\x06\xa4\x2b\x21\x95\x59\xfd\xa2\xdd\x73\xc4\x41\x84\x96\x51\xb8\x23\xba\xd9\x38\xf8\xf0\xe6\x1d\x87\xb9\x89\x5a\x5a\xd8\x6d\x30\x3a\xe4\x6c\x09\xec\x0f\xc6\x64\x81\x0a\xea\x41\xb8\x88\x1a\x35\xed\xea\xac\x06\x9f\x8a\x25\x70\x5f\xaa\x8d\x27\x67\x14\x28\x7f\x49\x07\x3c\x72\x67\x04\x63\x82\xb3\xec\x25\x15\xf1\x46\x85\xfb\x55\x3a\x1e\x7b\xfc\x5d\x58\xc1\x8a\xaa\x0d\x50\x5e\x5b\x56\xa8\x62\x6d\x9a\xfc\x26\xd3\x2b\xed\xda\xe6\x3e\xf0\x9f\x78\xb0\x2f\xcc\xa6\x5f\x65\x81\x82\x1f\xbb\x1f\x8b\xa4\xbc\x50\xd2\x99\x2d\x1b\x18\x18\x66\x52\x94\xfc\x3d\x7f\xac\x1e\x98\xca\xc3\xdc\xd0\x81\x8a\xde\xff\xb1\xad\xe7\x8f\x70\x35\x4f\x5d\xad\x09\x97\xe1\x32\x60\x20\xb7\x75\x29\x23\x0b\x29\x4a\xdc\xc2\xde\xd4\xc2\x07\x41\xdd\x6f\xb4\x1e\x3c\x50\x35\x48\xd5\x50\xd0\xef\x1e\x98\x21\x31\x62\x54\x2b\xa0\x99\xe5\xa4\x55\x61\xab\xba\x1b\xaa\xaa\xea\x74\x72\x37\x61\xb8\x27\xf6\x55\x55\xbe\x71\xb5\x54\x9e\x93\x0a\x8b\xe6\x16\xfa\x5c\x3c\x4a\xfd\xbb\xd7\xd2\xd7\x71\x3b\x7f\x6c\x5d\xdd\xb5\x62\xbf\x62\xdd\x55\x41\xb7\xc8\xd9\xfc\x53\x8b\x50\x03\xd1\x63\x58\xff\xa9\xf5\x55\x2b\x4e\xe9\xff\xea\x2a\x2b\x1d\xd5\xff\xc0\x62\x03\xfe\x70\x39\x9f\x7d\xa9\x0a\xb4\x29\x46\x22\xde\x89\xb5\xa8\xe5\xe9\x7d\xed\x4f\x06\x0d\xa9\x2f\xd4\x1e\x54\x1c\x89\x11\x8a\x66\x9f\xf3\x67\x34\x55\x66\xf6\xa6\x60\xd9\x84\x7f\x9d\x3a\xb4\xab\x7d\x16\x45\x59\x13\x7c\x26\x32\x0b\xa9\x4d\x9c\x87\xd0\x31\x21\x5b\xfe\xd1\xa1\x50\x61\xc2\x91\xb0\x38\x2a\xb4\xe2\xf7\x3e\x46\xae\x66\x00\x62\x94\x39\xb2\xfb\x14\xc9\x24\x3b\xc4\xdd\x52\x88\x6b\x57\x6e\xae\x8d\x94\x6c\x11\xed\x82\xcc\x6e\xcb\xa6\x49\xe1\x79\xcb\xad\x5a\xd6\x6b\x83\x93\xa1\x5b\x7b\x64\xef\x05\xd1\x3b\xf1\x34\x5b\xce\xf2\xed\x84\x65\xb5\xf6\x94\x53\xa8\x00\x0f\x2d\xb6\x87\xd6\x0f\x1b\xfb\x5f\x59\xa2\x7d\x5d\x15\x74\xb0\x2f\x9c\xd1\x13\x2f\xc8\x15\x08\xeb\xae\xe8\x3e\x54\x95\xbf\xb5\xab\xc5\x3e\x2e\x9c\x3e\x8a\xe8\x44\x6b\xe4\xb2\xd4\xc4\x6a\x79\x54\xd2\xd9\x99\x7e\x2a\x53\x0a\xf3\xa9\x1e\xd4\x26\x0b\xf2\xba\x27\x97\x28\xd3\x2f\xe8\x8e\x15\x25\xb5\xb0\xfc\x67\xe2\x21\xce\x82\x6f\x11\x38\xf3\x79\xc7\x60\x59\xa9\x59\xe7\x90\x29\xad\x9a\xfd\xc0\x64\xb2\x2e\x7a\x4b\xf0\xb1\xcd\x0e\x57\xd0\x25\x4b\x3e\x9c\x1a\xed\x06\xce\x8d\x73\x14\x3a\x76\x53\xe5\x7e\xb3\xa7\x95\x0b\x31\xe0\x94\x6f\x52\x03\x2e\xf4\x82\xca\x8b\x2d\x5e\xd6\x19\xd7\x9f\x9c\x4c\xa4\x38\x6e\xea\x4a\x4a\x98\x6f\x72\x36\x3c\xdc\xb2\x45\xb6\x3d\x04\xc3\x9e\xf6\x6d\x19\x4d\x21\x07\x89\x2d\xa0\xef\x38\xab\xb7\x04\x11\x72\x69\xee\xde\x8a\xb8\x2c\xcb\x8c\xfc\x7b\xb9\x5b\x2c\xee\x5a\xbb\x10\x33\x13\xb1\x79\x46\xf9\x8b\xc5\x02\xbd\xac\x2d\x8a\x1b\xe1\x89\xb7\x12\xc9\x85\x4f\xe1\xb6\xbf\x6f\x2b\x1b\x6c\x57\x2c\xbb\x5a\x45\x3e\x9a\xd5\xe5\x2d\xc7\xa2\x8a\x0e\xb9\x67\xc6\x73\x39\x33\xba\x1d\xba\xb5\x3d\xc7\x3e\xc1\x1e\xb3\x37\xad\x09\xd2\x05\xd2\x49\xec\xb3\x4a\x84\x96\x65\x32\x9a\x1b\xce\x87\xe7\x26\x1b\x8b\x10\xc0\xca\x7e\x9c\x52\x2e\xcf\xd0\xbd\x0b\x06\x9b\x84\xa5\x96\x9a\xdd\x46\xfe\xab\xe8\x28\xf9\xce\xe2\x2a\x6f\x6e\xe4\x62\x4c\x0b\x50\xd8\xe3\xf3\xb6\x7b\x2f\x78\x73\xb3\x7d\xfb\x25\x18\xdf\xae\xe1\x65\xe0\xe5\x6c\x9c\x4d\x83\xa2\x54\xc6\x3a\x1a\x71\xae\x19\xec\xe3\x86\x39\x70\x21\xee\x5c\x18\x94\x52\x36\x15\x2f\x65\x04\xdc\x11\xe9\x90\x33\x15\xae\x9c\xa9\x2c\x5e\xea\x16\x66\x33\xf1\xc1\x14\x3a\xd4\xaa\x98\x15\x50\x03\x56\x7f\xfe\x0c\xfd\x61\x87\xa5\xbe\x44\xdd\x8a\xcd\xa3\x50\x83\x21\xb2\x85\x74\x07\x8b\xef\x04\x22\x13\x77\xc4\xa7\x57\x2e\x36\x3b\x28\x46\x27\x8e\xc4\x64\x41\x53\x24\x67\x96\xfa\x9a\x3e\x16\xe6\x4c\xc7\x0c\xb0\x80\xf4\x0f\xff\x76\x69\xa2\x35\x43\x74\xdf\x4a\x1c\xca\xac\xbb\x3a\x28\x55\x70\xaf\x8d\xc5\x29\x40\x46\xb9\xab\x73\x73\x5b\xf2\x5f\xd9\x17\xbb\xac\xfd\xde\xc8\xe5\x8a\x79\xf2\x67\x00\x73\x95\x28\xc8\x9d\x88\xf8\x87\xa6\xa0\x8c\xf7\x18\x46\xe5\xee\xc5\x50\x06\x69\xe5\x31\xb3\x38\x3d\xff\x4c\xcd\xc7\x1b\xe7\xac\x5c\xeb\xe6\xa9\xab\x58\x21\x15\x0b\xf8\x96\x89\xf4\x49\xce\x71\xc5\x84\xdd\xc1\x34\x5e\xbb\x14\xfe\xf6\xed\xc1\x6e\x37\x95\x7c\x92\xd3\x10\x9d\x4d\x7d\x1e\x57\x13\x45\x4b\xd7\xf9\x44\x5e\x45\x87\x0b\x16\xf6\x05\x61\x37\xdb\xb4\x86\xbe\x5d\x49\xe1\xe3\x9d\x14\x22\x72\xcd\x73\x8b\xa7\x28\x9b\xdf\x6a\xb8\x14\xf9\x5f\x2c\xf3\x62\x06\xdf\xad\x1d\xa6\x73\x89\x58\x05\x29\xfc\x7c\x3b\x90\xd6\x46\x43\x46\x18\x6a\x87\x9d\x75\x4e\x4b\xf6\x76\xf3\xff\x4e\xaf\xa8\xb4\x77\x82\x2c\x36\x8b\x9a\x16\xe8\x4a\xdc\xf4\xb6\x24\xfb\x99\xaf\xa6\xd9\x46\xd9\x68\x71\x93\xa4\xcc\x3e\x9b\xe3\x71\xc8\x3e\xa5\xe6\xdc\x46\x90\xee\x64\x5c\x3b\x64\x8e\xee\x85\xaf\x75\xdb\x71\xa9\x13\xb1\xb9\x84\xe1\x13\xd7\x2f\x4f\x5f\x1c\x3f\x3f\xfd\xe1\xe7\x17\x2f\x4e\x5f\x3d\x7d\x79\x74\xfa\xf6\xe8\xc7\xa3\xbf\xbe\x49\xf6\x7e\xed\xff\x1a\x0f\xea\x8d\x7a\x4c\xbf\xdf\xec\xd9\x33\xeb\x66\xa9\x09\x59\x33\x57\x57\xc8\xde\x70\x1d\x06\xa6\xf2\x32\x58\x47\x41\xc2\xaa\x91\xe7\x52\x18\xbf\x82\x36\x47\x60\x8c\x71\xd4\x31\xa6\xfe\x1d\xa3\x4c\x60\xd4\x4b\xcb\xf3\x78\x33\x52\x9c\x0d\x59\x33\xb7\x0a\xcd\xaa\x66\xa6\xef\x14\x1c\x54\x24\x91\x25\xdf\xd7\x80\xde\x6b\x13\xe0\xff\x87\xf4\x81\x4a\x8a\x3f\x7f\x54\x6d\xbe\x52\x91\x62\xb3\x02\x8f\xc6\x7d\xbf\xd8\x26\xc5\x0a\xcc\xcd\x4f\xe7\xae\x58\x05\x56\xa1\x44\x03\xc0\xda\x4c\xbd\x14\xaa\x12\x6b\x2b\xb8\xb6\xc7\xec\x86\x2e\x62\x06\x52\x57\x58\x17\x25\x9c\x5e\xcc\x36\xd6\x03\xc1\x45\x85\xa5\xd7\x05\x3d\x08\x87\x4a\x98\xd6\x0b\x3a\x10\x78\x8d\x5c\xe8\xb1\x04\x62\xf1\x4b\x14\x6e\xe8\xfe\x99\xa1\x91\x14\xe7\x1e\xa3\xc2\x43\x00\x8d\xca\xf3\xb8\xa1\x0c\x35\x74\xb4\x17\xb5\xe3\xfd\xe1\x84\xe2\x26\x56\x76\x4d\x1f\xae\x11\x53\xd1\x58\x12\x13\xd9\xe9\x7e\x45\x87\x31\x53\x64\x95\x1b\x59\x59\x58\x6a\xa7\x65\x45\x73\xde\xc7\xa7\x41\x54\x54\xe5\x74\xd1\xdb\x47\x20\x07\xc7\x29\xf2\xc4\x6e\x6a\xe3\x75\x10\x6e\x53\xe2\x65\xb6\x4c\xa7\x7b\xa3\xd9\x9c\x0c\x8e\x29\x69\xbe\xca\xd1\x18\x7a\x6f\xf1\x65\x01\x87\xeb\xbd\x69\xfa\xfb\x17\xf2\xd3\x6e\x32\x38\x15\xe9\x4c\xe3\xf4\xfc\xb6\xcf\xfa\xb2\xfd\xb6\x3c\x5e\xf7\x2a\xb2\xc1\xce\x4e\x2a\x7b\x73\xd4\xfd\x9c\x7f\x9d\x51\xb4\x7d\xef\x14\xde\xf7\x0b\xef\x07\x85\xf7\xc3\x4a\x85\x3e\x0e\x7d\x71\x87\x21\x35\xc0\xf1\x05\x80\xed\xa7\xd9\xec\x43\xd9\xf9\xbb\xfb\x91\x5d\xc6\x3f\xfd\x31\x29\x74\xb4\x58\xe1\x5b\xad\xd8\x57\x18\x40\x43\x7f\xd0\xbe\xe7\xb1\xcc\xc6\xcc\x85\xef\x54\xc6\x09\xe5\x92\x14\xa0\xe1\x76\x82\x8f\xb3\x6e\x66\xe7\x59\xbe\xe2\x38\xe0\x9f\xbc\x99\x5e\x98\xe6\x24\x57\xa1\x93\xc5\x4e\xb9\xe0\x09\x83\x52\xbb\x81\x72\x5e\xa2\xdb\x30\xbd\x88\x36\xb7\x21\x3e\x27\xe9\xdd\xe5\x14\x28\xdd\xa6\x4f\x8b\xd2\x27\x32\xb0\x2d\xa4\x69\xd3\x7e\xbf\xc1\xcb\xab\x15\x6c\xbb\xa5\xd5\x66\xfb\xb8\xf0\xfa\xab\xb3\xcd\x56\xb8\xb0\xf5\x62\xb1\x39\x4e\xcf\x66\xf7\xd6\x0b\xfe\x97\x2e\x0b\xef\xfd\x61\xe1\xfd\xd1\x9d\x3a\xb1\xf7\x5a\x42\xa8\x17\x5f\x5c\x39\xe8\x87\x98\xdd\x09\x2e\x8b\x0b\x06\x79\x38\x5b\x39\x9b\xcf\x14\x46\x55\x6c\x01\x18\x57\xd2\xc8\x2e\x0c\xb6\x21\xe9\x2c\x86\x92\x39\x4b\x0a\x10\x68\xe8\x0f\x5d\xad\xa8\xcc\x53\xf2\x72\xf2\x79\xe2\xaf\x23\x00\x4f\xa3\xf0\x9d\xca\x20\x4e\x94\x9a\xc6\xc4\xae\xd6\x5a\xe4\x12\x3f\x14\x06\xf2\x88\x1a\x77\xbe\x3a\x4c\x24\x6c\x01\x67\x5f\x5e\xa1\xc7\xa5\xe7\x3a\xff\x24\xe3\x23\x23\x67\x57\x96\x77\x27\xc7\x4c\x3a\x8a\x90\xae\x1c\x0d\x3c\xd4\x25\x07\x43\xd4\x51\x48\x59\x4a\x4c\xd9\x4b\x02\x62\x5b\x92\x33\x88\x57\x11\x9b\x5c\x75\xe7\xe8\x14\x0a\x6c\xd7\xe2\xa0\x6e\x3f\x90\xbc\xcd\x1e\x14\x70\x8b\xb6\x1f\xd1\x6c\x96\xbb\xa8\x1d\xfa\x99\x2f\x64\x5f\xa3\x3f\xda\xf0\xaa\x46\x72\x6c\x70\x23\x94\x49\x76\x60\x83\x71\x79\x69\x10\xb5\x3e\xb0\xc1\xba\x12\x37\x2a\x75\x6d\x50\x1b\xae\x96\xf0\xb1\xd0\xc4\x77\xad\xff\x1f\x7b\xef\xb6\xde\xc6\x91\x24\x0c\xde\xcf\x53\x50\xb5\x1e\x0a\x18\x16\x21\x52\xb2\xdd\xdd\x80\xcb\x1a\x9a\xa2\xdc\x5a\xeb\x34\x22\xed\x9e\xf9\x69\x36\x1a\x24\x8a\x64\x59\x20\x40\xa3\x40\x49\x6c\xb0\xf6\x25\xf6\x76\x9f\x6e\x9f\x64\x33\x0e\x99\x19\x79\xa8\x42\x91\x92\x6c\xf7\x7e\xff\x85\x28\x54\x66\xe4\x39\x32\x32\x32\x32\x0e\x8f\x93\xc5\x79\x7e\xad\xc6\x58\x2c\x10\xf0\xc4\x84\xfc\x39\xce\xd7\x4e\x67\x57\xd3\x71\xc2\x1e\x62\x19\x05\x2d\x46\x94\xbb\x8c\x49\x9a\x29\xc8\x34\x6a\xf9\xc1\x9e\x6c\x57\x91\xdd\xd0\xe6\x6e\xd8\xe7\x3e\xf0\x66\x62\x9d\x13\x4c\x85\x08\x83\x7a\x12\x03\x08\xab\x03\xdf\x4d\x59\x66\xae\xbb\x20\x0d\x36\x74\x01\x21\xe4\x85\xaa\x75\xa0\x60\xf5\x33\x75\xf1\xe7\xe3\x91\x46\xe1\x89\xdf\xae\xe3\xb5\xdb\xe0\x05\x3f\x3e\xb8\x58\xe4\x15\x65\xff\xc3\x64\xe9\x56\x96\xa3\x33\x7c\x0a\x0b\xd7\xfe\xff\xa0\xb5\x07\xf7\x15\x6b\xa4\x2e\x74\x32\xb9\x1a\xa3\xee\x8f\x5b\xe3\x46\xf2\x8f\xde\xda\xc1\x6c\x6d\x74\x72\xa2\xea\x43\x65\x9f\x10\x44\x2c\xd6\xda\xe9\x7c\x76\xb1\x06\x2f\x10\x91\x56\xd3\xba\x0c\x08\x39\x08\x38\x74\x3e\x7a\x97\x83\xce\x12\xf6\xee\x1f\x6b\xfa\x18\xa2\xc7\xed\xa2\x44\xc7\x1c\xe0\x63\x6e\x0d\xfc\x19\x9e\xe7\xa2\x5d\xab\x43\xcb\x1d\x9d\xf5\x92\x81\xdd\x0b\x6f\x72\x54\x5f\x3a\xc9\x85\x97\x08\x9e\x20\x72\x6b\xfe\x63\x1d\x4e\x38\xec\x7e\xc4\x83\xc8\x09\xe9\x5b\x41\x00\xb9\xf7\x8a\x27\xcd\xb1\x5f\x58\x00\x3a\xf9\x0f\xd1\xc3\x5e\xb2\xa1\x2a\x43\x25\xac\xd3\xf8\x44\x74\xd1\x48\xc6\xa3\x9f\x2c\x27\xee\x2c\x49\xbe\x96\x4f\x47\x76\xfb\x14\x18\x47\x93\xb0\xff\x88\x88\x5c\xff\x10\xe4\xb3\x45\xe0\xa0\x9d\xf0\x18\x25\x05\xf0\xf2\x6d\xb6\x0c\x5b\xd0\xa1\xf6\x27\xe2\x77\x42\x29\x49\xd7\x7a\x5a\x67\x13\x44\x17\x1f\x55\xb5\x35\x14\xd8\x6a\x0e\xfa\x04\xb8\xb2\xed\x8b\x89\x31\xea\x7e\x18\x40\xb2\xc6\x69\x5c\xea\x1c\x03\xf5\x7b\x56\x3c\x14\x1b\xe8\x8e\xdb\xac\xa6\x03\xfe\xde\x11\x09\x10\x72\x6d\x15\xe9\x52\x4b\xd5\x70\xfd\x16\x2b\xd8\xc8\xb6\xc5\x2e\x05\x0e\xeb\xf6\x91\x5c\xdb\xc7\x5e\x72\xbc\xf2\x20\x3d\x29\x2f\x47\x27\xe1\x2d\xea\x02\x86\x5a\x1a\x5f\x50\xb7\xba\x25\x71\xff\x27\xa3\x05\xa8\x14\x7a\xc9\xaa\x81\x21\x78\x48\xa8\x61\x3a\x6b\xcc\xc7\x6e\xc3\x73\x32\x67\x3b\x55\xb8\x36\x07\xb1\xe6\xd0\x65\x68\x63\xb5\x90\xed\xc3\x30\xc6\xc0\x46\xa0\x91\x68\xc5\x80\x21\xe6\x64\xa9\xa7\x25\x7f\xa7\x50\x7d\x38\x2e\xd4\xfc\x2e\x4e\xce\xeb\xa0\x7e\xf9\xf5\x2a\x9f\x5f\xd7\xf1\xcb\xf0\x99\x37\x66\x86\xac\xf6\x64\xc6\xcb\x03\xcf\xc2\x43\xfd\xd5\x00\x56\x94\x20\xc1\x6a\x01\x09\xae\x0e\x5b\x80\x4d\x67\xd3\x3c\x04\x3b\x1f\x4d\xc7\x93\xfc\x78\x34\x2f\x37\x39\x84\xe8\x1f\x96\xff\xb7\xdf\x7f\xf1\xbe\xb7\xb7\xfc\x04\xbf\x87\xdb\x7e\x17\xb7\xfd\x3e\x6e\xfb\x9d\xdc\xf6\x7b\xb9\xed\x77\x73\xdb\xef\xe7\xb6\xdf\xd1\x6d\xbf\xa7\x0f\xfd\x9e\x3e\x0c\xe6\xd2\xef\xe9\x43\xbf\xa7\x0f\xfd\x9e\x3e\xfc\xea\xf7\xbd\x1f\xd5\x8a\x26\xbe\x6c\x23\x9a\xf8\x2a\xec\xc8\x4b\x4d\xff\xfc\x3b\x52\x5d\x64\xbc\xe8\x1d\x29\x02\x5c\x2b\xca\xf8\x73\x8d\x28\x83\x83\xdb\x7a\xc8\xa7\x23\xf7\xf2\xe0\x33\x1f\x17\xfd\x96\x15\xfb\xf2\x8c\x7c\x42\xf9\x48\xda\x33\x59\x83\x06\xf3\xd4\x87\x61\x95\xf6\xf4\xcb\x7c\xb4\x16\x77\x43\x5a\x7b\x43\x72\x23\x1e\xfb\x22\x97\x58\x72\xed\x5c\xd7\x40\x64\xb9\xd0\xb5\x73\x1d\x7c\x64\xd5\xf6\x80\x04\x3f\x31\x14\x38\xf3\xf7\x94\x0f\xff\xcb\x7f\x01\x31\xce\xfc\x9d\x16\x08\xb4\x80\xf0\x66\xfe\xf6\x8b\x42\xb9\x6d\x3e\x8c\x2c\xd9\x5f\x15\x95\x7e\x3e\x8b\x08\xb1\x1e\x46\x36\xce\x5f\x89\x56\xc7\xe1\x23\x8b\x07\x0e\x70\xe3\xc0\x11\x39\xdd\x4b\x45\xb7\xe3\xc0\x91\xb5\xc3\x7d\xfe\x57\x43\xd3\x33\x9f\x4c\xf8\xf0\x3f\x70\xec\xcc\x1f\x5c\xf4\x7b\x02\x2f\xbc\x3b\xe3\xd1\xa5\x9a\x2a\xe9\x7a\x11\x02\x4d\x03\x67\x6c\x6d\x1e\x05\xa7\xca\x9e\xb9\xc3\xf7\xfb\x2a\x52\xb0\x37\xd6\x69\xd6\xf3\xbd\xe7\x03\xbd\xd6\xea\xd2\x6b\x28\xb0\xa9\xd4\x4e\xaf\x98\xc9\xb5\xfc\xb1\xe0\x74\xab\x41\xac\x53\xe2\x95\xc4\xd6\x4f\xef\x23\x6c\xc7\xd4\x38\x94\x4e\x42\x50\x8a\xed\xd5\xe6\x6c\x2b\xe0\x19\x0c\x0b\xb0\x85\xe0\xca\x12\x04\xa7\xf8\xf9\x40\xd8\x6a\xe8\xa6\xd6\x8c\x71\xe8\x63\xba\x9c\xcf\x66\x8b\x3d\x8a\xeb\xde\x4f\x8e\x67\x63\xc5\xe0\xe4\xee\x5e\xd4\x11\x1f\x15\x3e\x5f\xe0\x36\xd5\x96\xb1\xa0\xee\xac\xba\x52\x96\x54\xe5\x68\x52\xf6\xb7\x83\x2b\x90\x09\x9b\xf5\x05\x63\xc3\x17\x19\xed\x5d\xbe\x7a\xd8\x39\x1d\x0e\x69\x15\x51\x15\xc1\x62\x13\x2b\x03\xf3\x1e\xa5\x17\x10\xa6\xca\x98\xa4\x01\xe8\x12\xa3\xbf\xb4\x4b\xc9\x67\xaa\x3b\x05\xa9\xb4\x77\x59\x32\x3c\x29\x8e\xe7\xa3\xb9\xba\x2f\xf5\xf4\xbc\xed\xce\xe6\xf9\x73\x4c\xbd\xee\x24\x76\xa7\x24\xa9\xb7\x75\x7a\x3f\xed\xbd\xd9\x7f\xf6\xea\x65\xcb\x9a\x68\x9c\x49\x4a\xff\x77\xba\x3d\xe2\x20\xbb\xd6\x01\xc2\xf3\x57\xdf\x0f\x75\x9d\xcb\x20\x89\xdd\x25\x68\x8d\xb7\xe7\x78\x25\x2c\x33\x8f\x76\xf7\x2e\x46\x97\x1d\xaf\x3f\xbe\x7e\x35\xef\x06\xb8\x8d\xa1\x5f\xdf\x04\xea\xeb\xe9\xfb\x66\x45\x1a\x5d\x17\xa3\x0f\x2f\x4d\x33\xd9\x8b\xd1\xe2\x5c\x55\xfd\x41\xde\x0a\x45\x2f\xc2\x29\x40\x17\xa8\x4e\xd8\xeb\x94\x63\x8e\x6b\x45\x1b\x85\x84\x64\x07\x8e\x87\x43\xc7\x69\x6f\x53\xf4\x68\x63\xbb\xcb\x02\xb1\x35\xe8\x5c\x55\xa5\x2e\x4a\xd4\xdb\x5e\x47\x50\x4a\xec\x05\x1f\xb3\xc8\x36\x3b\xb4\xbe\x76\xd0\xcb\xc3\x65\x89\x8b\x9e\x12\xc2\xbf\x55\xab\x3a\x33\x70\x2b\x90\xba\x11\xd6\x1c\x58\x6d\x67\x6a\xf8\x42\xe5\x24\x52\x91\x21\x0e\x91\xca\x1a\xab\x40\x5d\xdb\x31\x7c\xf4\xea\xae\xd2\x70\x9b\xf8\x93\x6b\x62\xea\xd8\x00\x78\x5f\xb0\x05\xeb\x17\xbd\xa2\x7c\x03\x26\x0f\x6a\x06\xae\xa6\xd6\x19\x77\x42\xfe\x63\xd4\xfe\x41\x4f\xda\xc9\xb0\x30\xb5\x27\xd2\x95\xd0\x17\x6a\x4b\xa0\xc9\x44\xc7\xaa\x90\x5c\x4d\xe5\x8e\x85\x7a\x3b\xb1\x4a\xba\x3a\x94\xe3\x1b\x4d\x83\x64\xbf\x69\xe6\x43\xf2\xb4\xb1\x51\xa5\xa3\xf1\x3b\xf0\x6a\x73\xab\x72\x9b\x9b\x36\x48\x49\x98\xcb\xe1\xf0\xd4\x0c\x80\x07\x5a\x21\x84\x19\x17\xe3\xef\x72\x75\x83\xca\x69\x92\xaa\x98\x95\xfe\x6a\x0c\x8e\x20\x40\xd3\x21\xc6\xda\x11\x77\x6c\xc1\xea\x2f\x37\x37\x11\xc3\x96\x2a\x1d\xc6\x33\x4c\x0c\x57\x6b\xb9\x21\x95\x64\x9d\x1d\x71\x8b\xbe\x7e\xaa\x2d\x43\xb6\xd6\x12\xf1\xe6\xa5\x3a\x2c\xdc\x07\x42\x47\x4c\x24\x9c\x3a\xf8\xe8\xd4\x11\xc1\xab\x8a\x32\x62\x9b\x52\x8b\x45\xdb\xd2\xb4\x04\x4e\x9c\x37\x50\x94\x97\x6f\x2e\x4e\x3f\x67\x3e\x8c\x70\xda\x9d\x01\xfa\xea\xcd\xa9\x8a\x81\x8e\x4b\xe9\x96\x4d\x13\x56\x98\x4a\x74\x38\x5a\xff\xe4\xad\xd9\xd6\xae\x09\x8f\x1e\x53\x21\x36\xae\xda\xa0\x50\x16\xa9\x38\x42\x8b\x21\x75\x31\x7a\xae\x9c\x6d\x1f\x59\x0b\x91\x67\x24\xa7\x20\xd3\x54\xbd\xbd\x02\x42\x06\xea\x60\x16\x44\xbe\x3f\x44\xa6\x28\x3d\x9b\x8f\x2e\xcf\x29\x8a\xf3\xce\xf7\xa9\x11\xa4\x65\xe6\x4c\x13\x08\x3d\xc7\x77\x05\x48\x04\xad\x0a\xd9\x0a\xe8\x74\x99\xaf\x4c\xe6\xb0\x87\x49\x6c\x46\x21\xc4\x78\x6f\x7c\x96\x97\x1d\x01\xd1\xf3\x1b\xe9\xd9\xdf\x4e\x32\x7b\xed\x93\x49\xe4\xc3\xad\xa2\xca\x17\xb3\xcb\x52\xdd\xe7\xed\x31\xab\x4e\xd8\x85\x76\x39\x2a\xbb\x47\xe9\x3d\x14\x87\x0f\x44\x86\xd8\xd0\x66\x1e\x60\xb1\x52\x97\x56\x05\x08\xab\x96\xed\xea\xd2\xbb\xa3\x75\x8c\x9b\x02\x20\xe1\x9a\xef\x02\x77\xf6\x6f\x48\xce\xc4\x81\x8d\x89\x51\x00\x25\x32\x54\x66\xa1\x4f\xcb\x96\x2a\xfe\x1a\x1e\x0e\x76\x26\x13\xc3\xa1\x7d\xf7\xea\xd5\xc1\xde\x13\xb2\xee\x92\x9e\x10\xd8\x08\x2b\x8d\xf5\x26\x20\x78\x82\x5f\x15\xd2\x77\x99\x0c\x1c\xb6\xe5\x7e\x05\x90\x48\x55\x30\x56\x2e\xd8\xb4\xff\x7c\x19\xa2\xde\x89\xa5\xa9\xd5\x63\xab\x13\x51\x71\x77\x60\x7f\xd3\x5c\x77\x64\x47\x65\x37\x61\xf8\x62\x8e\xfd\x61\xdf\x96\x50\xc0\x02\xcd\x99\xf6\x32\x49\x66\xda\xe1\xae\x64\xc5\x3b\xf8\xc7\x37\xcf\x6d\x93\x57\xf3\xc9\x47\x91\x27\x53\x25\xd6\x04\xc4\x12\x70\xef\x07\xcf\x99\xcf\x1b\xe7\xeb\x7d\x31\x99\x3c\x09\xad\x17\x1d\xc4\xe1\x60\xe5\x2d\x7b\x63\xa8\x64\xa4\x80\xd5\x28\x95\x9b\x52\xf8\xe6\x71\x5c\x1e\x08\x0a\xd5\x93\x9b\xce\xb8\x3d\x50\x9c\xb6\xe4\x47\xa5\x21\x82\xa4\x2e\x65\x7f\x59\xd3\x9e\x48\xb4\xe7\x2a\x5e\x7c\x4e\xa0\x16\xd9\x6a\x29\x6d\x7d\xd6\xd7\x9b\x20\xc1\xa9\x01\xd9\x6f\x4b\x72\xc7\x3b\xaf\xae\x8b\xac\xc6\x1c\x16\xac\xf8\x48\x75\x48\xa4\x4f\x0d\x8f\x24\x05\xad\x67\xf0\x2d\x91\x6a\xf2\xb2\x34\x90\xb7\x62\xf3\x7a\x64\x01\x9b\x85\x14\x82\x5d\x00\x89\x26\x48\x30\x25\x03\xc1\x92\x41\xfd\xe3\x29\x1f\x0f\xd4\x2b\x01\x69\x8c\x6d\x43\x23\x24\x91\x29\x0a\x68\x1f\x2d\x31\x78\x9d\x27\xc0\xa5\x3d\x4c\xac\x88\xcc\x17\xc5\x3c\x37\x1c\x09\x48\xf4\x67\x53\xa0\x6c\xe9\xd2\xd8\x08\xf6\x49\x1b\xb1\xdb\x50\x0e\x9e\x42\x6e\x59\x04\x0c\xe7\x20\xca\x90\x2a\x26\xb4\xb7\x5b\x14\x3c\xcf\x27\x97\x40\x20\x57\x14\xb3\xcc\x9d\xe0\xce\x98\xc3\x33\x4b\xd4\xbe\x12\xf1\xbc\x7f\x3c\x2a\x8b\x93\x24\xb5\xf2\xcb\x3b\xd5\xc2\xb1\xfd\x52\x5f\x78\x7a\xa7\xca\xf0\x25\x2b\x49\x3d\xb9\x6a\xfb\xaa\x90\xe4\xe9\x81\x21\xeb\xdb\xbe\x6c\xfc\x6c\x4b\xbd\x13\xb8\x05\xdf\xcd\x2c\x77\xec\xc2\xe1\x41\x26\xf2\xbd\x33\x58\xde\x78\x53\xfa\x21\xab\x0f\xaf\x5f\x6a\xaa\x84\x44\x75\x45\x01\x78\x7f\x4b\x52\x29\xdf\x5d\x55\x80\xa4\xbb\xaa\x8c\x2b\xe6\x5d\x51\x0c\xde\xdb\x92\x54\x4a\x6f\x6b\xe6\xc2\x79\xb1\x24\x37\xad\x49\x5a\x7b\xcb\xa9\x2b\xd8\x7a\x0e\xfd\x55\x30\x6d\xb5\x6b\x54\xbc\x20\x02\xa7\xa2\x0e\x74\xf5\x6b\x53\xa7\x6e\x2a\x8a\x8a\xac\x0a\xe4\x6d\xaa\x93\xbe\xee\x86\xc6\x94\x6c\x53\xf1\xc0\x9b\x68\x4f\x74\x06\xa5\x08\x1f\x22\x04\x6f\x38\xd4\x3f\x15\x8f\xbf\x02\x97\xbd\x19\xc2\x44\x6a\x63\x73\x44\x22\x6d\x8d\x77\xe2\x89\xbc\xa9\x43\x35\x95\x8f\x47\x8b\x91\x5f\xe3\x49\x4c\x82\x2e\xd3\x63\x1d\x21\xce\x2c\x2a\x7c\xef\x2e\xa3\xc9\xea\x84\xfa\xf5\xaa\x98\xe7\x2f\x66\x74\x5b\xa3\xb7\x5c\x14\xfa\x96\xb8\x0a\x64\x95\x6e\x1f\xeb\xc9\x66\x6b\xc8\xcd\x26\x5d\xf1\x0e\x50\xd5\x11\xa3\xfa\x89\x8b\x77\x35\x94\xae\x55\x22\x5e\x7a\xfc\x4c\x05\xbe\xc6\x7c\xa1\x35\x80\x5d\x94\x6e\x77\x59\x49\x45\x65\x64\x4c\xb2\x5a\xe8\x9b\x1b\x2f\xeb\x8d\xc8\x8a\xbd\xed\xcd\x7d\x6d\x62\x6c\x40\x9b\x6c\x2d\x4d\x6d\x7d\xf3\x2b\x32\x9e\xd0\x7b\x9a\xc1\xd9\xd0\xb9\x03\xa7\x58\x6e\xa0\xde\x07\x9b\xa9\x85\xd8\xd8\x27\x58\xe2\xd2\x85\xad\x06\xba\x42\x87\x5f\x58\xed\xa7\x2d\xca\x47\x84\xe0\xb6\x7e\xcb\xef\x44\x7a\xac\x96\x30\xe4\x7d\xc2\xb6\x22\x4e\x6a\x5c\x93\x39\x6d\xf0\x64\x9b\x95\xbb\xde\x30\x65\x9e\x03\xbc\x3a\xeb\x1c\xc1\x7b\xb7\x51\x0d\x42\x6d\x9c\xc3\xb8\x12\xf6\xc7\x3a\xec\xad\xd1\x1f\xae\x73\xd6\xfb\xae\x28\x8b\x05\xdf\xf6\xd3\xd3\x69\x8a\xdf\xf9\x38\x55\x47\xef\xb9\xb0\x89\xe7\x6b\xbf\x16\xbe\x2f\x0a\x90\xb8\x73\x62\x31\x55\xac\x1f\x18\x7c\x20\xea\xfa\xa9\x78\x1f\x07\x9d\x34\xda\x4c\x3a\x50\x52\x81\x64\x88\x5b\x53\x0d\xd1\x0f\xb0\x25\x82\x74\x6a\x1d\xfe\x42\x48\x0d\x70\xed\x41\xf9\xbe\xfd\xc9\x54\x1a\xbe\x57\x00\x4f\x2a\xb5\x6c\x9b\x4f\x85\x48\x8a\x82\x97\xfe\x81\xf0\xf1\x9f\x4f\x49\x9d\xd3\xce\x00\x0c\x0a\x81\x41\xa5\xf3\x28\x98\x8d\xea\x54\x8b\x45\xe8\x7b\x40\xed\xcd\x2e\x3b\xc2\x54\xf1\xc9\xce\xf7\x5a\xb4\x41\xd3\xa1\x5d\x1b\x9b\x59\x53\x43\x54\x40\x22\x64\xeb\x68\x3c\xce\x9c\x7b\x09\xbd\x6d\x4d\xc5\x26\x32\xd2\x4c\x5d\x4b\xe3\x44\xac\x39\xa0\x34\x7c\xf2\xa4\x82\xbd\xcf\x90\xda\xf4\x59\x74\x44\xab\x44\xf7\x42\xb1\x62\xa0\x74\x08\x6d\x5c\x2d\xce\x66\x28\x0d\x80\x93\x8f\xd4\x26\xf1\xba\x5c\x0d\x22\x8d\xf0\xda\xdb\xb8\x2a\xa5\x5c\x0e\xed\x21\x05\x61\xaa\x81\x3b\x09\x17\xa3\xcb\xcc\x7b\xe3\x11\x16\x59\x6a\x8a\xa8\x12\x12\x3c\xb1\x5d\xd6\x20\x98\x47\x10\x90\x09\xaa\x31\x9f\x5d\xa0\x81\xdf\x62\x66\x4d\x11\x75\xe2\xcd\xcd\x3d\x4a\xbe\xb9\xd1\x49\x70\x5b\x9d\x49\xda\x45\xbe\xfc\x54\x6e\x66\x7a\xa1\x61\xbb\xaa\x52\x9b\xca\xc5\x50\x98\x3f\x33\xa8\xef\x2f\x92\x29\x6b\x5d\xf3\x6b\xb4\x51\x6c\xee\xc9\xdb\xdd\xeb\x13\x75\xbe\x4a\x14\x83\x1e\x8b\xad\x27\x3a\x18\x55\x0a\x4f\x4e\xa0\x86\xb5\x71\xbe\x60\xfb\xc8\x64\x83\xe0\x37\x92\xb5\x6f\x36\xd5\x17\x62\x2c\xbf\x80\x41\x02\xe8\xa7\x12\xfe\x43\xdf\x52\xdb\x0b\x75\xf6\xa8\x84\x9e\xc0\x00\xda\x3f\x62\x74\x87\x7a\x38\x47\x19\xfc\x92\x59\x2f\xed\xd2\x9b\x31\xfb\xab\xc5\x12\x47\xb1\x5a\xfc\x9c\x67\x49\x81\xa5\x34\x0e\xae\x31\x9d\xb1\x48\x16\xa1\x2e\x29\x63\x62\x6c\xbf\xd3\x26\x08\x37\x3c\x51\x24\x9a\x6d\x31\x70\x49\x21\x1c\x1a\x09\xba\xbd\x71\x14\x2c\x63\xa8\x9c\xca\xc8\x29\x2c\x58\xa5\x9d\x02\xef\xac\x02\xe5\xa1\x1f\x3a\x38\x89\xb5\x12\xe7\x78\x2c\xd6\xf9\xbf\xdd\x1a\xd0\x24\x55\xc0\xc5\xe8\xa8\xb3\x63\xa7\x64\x27\x1e\x41\x5d\x59\x0a\x4a\x00\xf4\x86\xfb\x69\x7b\x40\x21\x5f\x6a\x3b\x40\xa1\x5f\xa6\xf6\xa8\xb5\xed\x63\x56\x7d\xf3\x98\xad\x1a\xe6\xc2\x0d\x66\x82\x6a\xb6\xdb\x9c\xaf\x96\xd5\xfe\x18\x93\xa9\xc9\xec\xec\x2c\xa2\x05\xca\x6d\xf0\x24\xd4\xe4\xea\x1b\x7a\x5b\x95\xdb\x73\xa1\x1b\xf0\xc7\x50\x88\xfc\xac\x0a\x7e\xcf\x71\x6a\x57\x19\x0d\xa2\x3c\xb1\x38\xbd\x0e\xd4\xfc\x74\x06\xeb\xbb\x5d\x16\x0b\xe2\x17\x03\x38\x93\x35\x20\xdb\x95\x13\x35\xf1\x51\x48\x9b\x65\x07\x48\xd2\x95\x4f\xa6\x3e\xd8\xa4\x2d\x15\xd1\x43\x33\x9a\x83\xa2\x2f\x5a\xd3\x46\x5e\x17\x40\x74\xdd\xe8\x67\x39\xb0\x71\xd0\x06\xf5\x60\xac\x0b\xae\xa7\xfe\xd1\xc4\x35\xff\xa3\xb7\xf6\x7a\x92\x8f\x14\x02\x80\x3d\xc4\xbc\x18\x93\x39\xc4\x7d\x03\x7a\x7f\x8d\x14\xa0\xe0\x55\xab\xbc\x3a\xc6\xa5\x41\x3b\x09\xd7\x8a\xf2\x1f\xd0\xd2\xe5\x1c\x05\x3e\x60\xa2\x3c\x41\xbf\x57\xaa\x6b\x57\x67\xe7\x90\x05\x04\x81\xac\x5c\xc0\xd9\x6c\x93\x83\xee\x5b\x8c\x47\x5f\x8a\x2e\xd5\x7c\xb3\x6f\xc6\xba\xf1\x30\xe8\xe7\x19\x0d\xb6\xcf\x8e\x16\x78\x3c\xa2\x4b\x77\x18\xd1\x77\xe8\xdc\xe5\x16\xe3\xa2\x02\x9f\x67\x74\xc1\xa5\xf1\x23\x57\xad\xe1\x12\x5a\x37\xca\xa0\xc8\xe7\x19\x69\x5b\x0f\xe5\xb7\x18\x6c\xf4\x52\xbc\xb6\x72\xc0\xb2\xd8\x67\xdd\x81\xaf\x16\xce\x13\xe8\xc7\xa1\x2d\x56\x76\x0b\xac\x45\xf8\xcf\x33\xbc\xa1\x3a\xdd\x9f\xfb\xde\xe2\xc1\xd0\x31\xbd\xe3\x10\x6d\x85\x5c\xcf\x5a\x8b\x71\xda\x42\x9f\x65\x94\xae\x3d\x53\xc4\xa2\x3d\xa6\xa9\xfe\xb1\xe7\x8d\xf1\x7d\x15\xf1\x7b\x95\x3e\x94\x9e\xaf\xc0\xeb\x15\x5e\x6b\xe8\x8b\x22\x8b\x41\x36\xf8\xa2\x33\x6f\x3c\xfc\x10\x9c\x97\xaa\x93\x14\xa7\x93\x64\x40\xea\xd3\x5a\xe7\xaa\xd1\x7e\x4b\xfe\x80\x11\x8c\xb3\xe7\xb9\xaa\xe2\x24\xef\x3c\xf8\xb9\xd7\xe9\x75\x1f\x9c\x59\x7e\xca\xaa\x2e\x5e\xf4\x4e\xce\x47\xf3\x9d\x45\x67\xbb\xab\xee\x24\x3f\x5e\x2a\x6e\x70\x57\x2d\x14\x6a\x9a\xb0\xbc\xd0\x36\x33\x6c\x6e\x66\x78\xa7\x56\x44\x9c\xad\x0d\x35\x47\x1b\x54\x6b\x8d\xb8\xaa\x39\x74\xc5\x5c\x20\x5d\xa6\x9d\x84\xd0\xd1\x23\x82\x17\x70\x15\x14\x95\x0d\x41\x6d\xa9\x5e\x90\x69\xa2\x41\xe0\xfd\x48\xec\x5e\xbc\x7c\x61\x90\x1d\x9d\x80\x1e\x8b\x56\xb8\xf1\x31\x8e\x6f\x82\xa8\x29\x17\x57\x25\xda\x1b\xb3\x25\x28\xba\xa2\x97\x0e\x7e\x28\x18\x3b\x8c\xea\x30\xe8\xe4\x11\xae\x89\x8d\x91\x11\x81\x90\x74\x07\x85\x4c\x26\xca\xc5\x32\x1a\x5e\x23\x20\x56\x50\x48\x4e\xd4\x6c\xb6\x70\x46\x0f\x09\xa8\x65\xfb\x66\x6f\xff\xd5\xf3\x9f\xf6\xde\x68\xfd\x25\x4b\x19\x74\x43\x92\xc8\x54\x41\x8c\x8d\x08\xbb\x10\xba\xa9\x7c\x3d\x52\x9b\xba\xde\xb5\x9c\x01\x41\xd7\x72\x0c\x05\x21\x86\x67\x57\x8b\x03\x17\x60\x9b\x77\x61\x04\x4a\xe8\x34\x09\x3b\x53\x73\x7b\x21\x35\x17\x2b\x25\x8f\xee\xdf\xf5\x75\x77\x0f\x3d\x48\x74\x54\x65\xc6\xd7\x05\xc9\xd9\xf5\x10\x54\xfe\x60\xca\x48\xa9\x7a\x87\x7f\xf9\xee\xb8\xb9\x7d\x64\x94\x96\xb1\x41\x44\x5e\xcb\xe5\x77\x08\x98\x22\x4d\x6e\xa5\x9b\x46\xdd\x57\x91\x07\xd0\x0d\x51\x7d\x35\xec\x7a\xef\x18\x1d\x36\x75\x9c\xba\xf4\x62\x2c\x03\xcf\x58\x38\xab\x7d\x74\xb2\x15\x99\xa7\x7e\xdd\xdc\x91\x94\x0d\x5a\xc6\x47\xaa\x70\xeb\xf5\x8d\x56\xfe\x86\xbe\xd5\x90\xe3\xaf\xaa\x25\x63\xd5\x72\xd3\x0f\x5c\xe4\xd5\xde\x3b\x05\x95\xa5\x91\x9b\x94\xb5\xd1\x02\x05\x46\xa6\x48\x64\x88\x92\xc0\x2a\xba\x07\x4b\xc7\x4e\x02\x4c\x97\x33\x6f\x83\x6c\xa8\xb5\xb0\x23\xf5\x88\x49\xac\x97\xf7\x84\x8f\x51\x51\xef\x46\x16\xab\x84\x66\x4e\xfb\x86\xb2\xd0\x9f\x24\xb8\x8c\xba\x05\xd3\x33\xb3\x82\x74\x6a\x91\x1c\x83\x37\xa2\xcc\xfb\xf6\x67\x6c\x98\xf8\x63\x66\x39\x5f\x42\x0f\xea\x61\x85\x49\x62\x0f\x81\x03\x5e\xab\x78\x57\xd0\xcb\x2c\x43\xf8\x54\xbe\xdd\x62\x5a\x7b\x82\x83\xbd\x17\xaf\x9f\xef\x1c\xec\xed\x1f\xca\x1a\x8f\xcc\x7c\x35\x42\x55\x4e\x2f\xec\x55\xbb\x23\xd3\x3f\x59\x63\x66\x76\x7e\x2a\xf2\xf7\x75\x9c\xab\xda\x24\xde\x72\x4a\x00\xa9\x69\x5b\x7f\x1c\xe8\x76\xac\xd2\xc4\x6f\xd1\x1a\xd6\xf2\x5b\x34\xf4\x02\x36\x5d\x3d\x66\xe1\xf6\x23\xfa\x5b\xb7\x9b\xb5\x93\x3d\x3c\x3b\x3c\x3a\x90\x9a\xf2\x32\x36\x5c\xe0\x31\xd3\xf4\xe6\xaf\xa8\xb9\x13\xef\x4e\x9b\x61\xdd\xdc\xf8\x26\x37\xa4\x0b\x84\x07\x4c\xc3\xae\x38\x6a\x73\x13\x6a\x39\x1f\x51\xba\x87\x24\xeb\x93\xcc\x54\xbb\x2b\x0d\xb2\xe7\xd7\x17\xc7\xb3\x89\x4a\x1e\x83\xa3\x36\xac\x15\xe0\xba\x4b\xca\xc8\x92\xc3\xff\xf7\xff\xf9\xbf\x8f\x12\x62\x41\x4d\xda\x9a\x4a\x71\x69\x95\xe1\x3e\xd8\xa9\xc4\xd7\x5b\x40\xaf\xb0\xd2\x4c\xd1\x79\x2a\xaf\x13\xac\x7d\xce\xd7\x5b\x9b\xf5\x95\x88\x23\xbb\x22\x31\xa1\x62\x1d\x4e\x67\x1d\xd3\xe7\xa0\xa0\x1e\x07\x29\xdf\x87\xd2\x83\x48\x91\x6e\x70\x37\x5a\xe1\xd5\x2b\x90\x3a\x07\xea\x0f\x8d\xb2\xe6\x50\x59\x02\xf4\x39\x8c\x86\x44\x3d\x58\x9d\x4e\xc5\xdd\x45\xc3\x77\x15\xe7\x3e\x51\x1d\xd6\x0a\x21\x5e\x13\x31\x73\xe1\x50\x8b\xa4\x41\xd8\xcb\x8e\xd5\x44\x0b\xe2\x37\xe7\xc6\x2b\x8d\xa6\xae\x5e\xac\xda\x79\x5d\xfd\x60\x10\x77\x24\xd1\xea\x51\xc0\x32\xce\x2b\x5f\x0d\x7e\x8b\x17\x80\x8f\x96\xf0\xa3\x5f\xfe\xd3\x40\xc8\x4f\xc9\x24\x71\x1f\x95\xe0\xd7\xd1\x13\xb8\x83\xd9\xb8\xc9\xa9\x97\xf4\x3f\xf2\x25\xfd\x86\x77\x5f\xe5\x19\xed\x16\xe2\xfb\x38\x5a\xc5\x64\x20\x9e\x89\xae\xab\x4a\x7e\x32\x9a\xee\x2a\x94\x55\x14\x78\x4f\x31\x03\x45\x5e\x92\xc0\xd5\x0d\x33\x65\x1e\xd3\xac\xdf\x7c\x72\xc6\xef\x72\xe2\xd2\x8f\xa7\x13\x0a\x5d\xb5\xb2\xba\x09\xe7\x7e\x54\xb2\xc5\xf5\x4e\xc7\xde\x7b\xc0\x01\xef\xfe\xeb\x9d\xdd\xbd\x7d\xba\x2a\x5a\x98\x6e\x6a\x6d\xf2\xf4\xfa\xee\x5f\x9d\x9e\x16\x1f\xde\xe4\x67\xf9\x87\x8c\xdc\x2e\x9d\xed\x7d\xb8\xec\xb8\x77\x95\x8d\xe4\x0b\xbe\xb4\x51\xab\x3d\x75\x77\xdf\x0b\xac\x36\x23\x4a\x58\x8a\xb9\xc7\xc6\x6d\x64\x9d\xb7\xf9\x35\x88\xc0\x5c\xf8\x7b\xe6\x33\xee\x31\x15\x96\xa6\x98\xb2\xbb\x54\xb7\xd3\xe4\x63\x98\xc0\xb0\x7e\x57\xaf\x0b\x9d\xb6\xea\x6b\xab\xba\x9d\x62\x36\x38\x7a\x4b\x70\x84\xf0\xc6\x09\x53\xc4\x8e\xda\x34\xce\x42\x7d\x86\x5d\xf6\x1a\x4c\x13\x75\xd7\xc4\x47\xcc\xca\x32\x5c\x50\x47\xd5\xec\x5d\xe8\x2e\x54\xcc\x3d\x44\x3e\xe6\xad\x33\xf0\xc8\xf3\xb9\x08\x5b\xbc\xf8\xa2\x78\x97\x0f\x59\x11\xb9\xb5\x9b\xd5\x3f\xc2\x2b\xe9\x6f\xea\x36\xd2\xf7\xfe\x11\x79\x32\x8d\x13\xdc\x2f\x03\x82\x1b\x27\xa5\x11\xfa\x58\x47\x4a\x23\x0f\x9c\xb8\x6e\x3b\x81\xf3\xc8\x9d\x46\x37\xad\x7f\x6e\x15\x0d\x3f\x46\x8f\x7d\x7f\x00\x11\x5b\xfd\x79\x8e\x42\x77\x92\xb6\x94\x19\x75\xb0\xc3\x6e\xc1\x04\x2d\x8f\x2a\xd2\xf6\x8d\x8d\x4b\x3a\x5a\xa8\x65\x3c\x56\x97\xaa\xe7\xc5\x85\x6a\xf4\x51\xea\x56\xdc\xd7\x15\x83\x5f\xeb\xa7\xc5\x64\xe1\x59\x1e\x32\x15\xb0\xcd\xbf\x07\xbd\x76\xbc\x5f\x01\x05\xf7\xa2\x9d\x96\x3b\xe3\xb1\x6a\x13\x7f\xfe\x78\x09\x4e\xd5\xc7\x44\xba\x2e\x4c\x01\x92\xf2\xa8\xc6\x6c\x1d\x92\x78\x53\xd9\x83\xd9\xbe\x9a\xa7\xb4\x66\x0e\x06\x02\x26\xb3\x35\xa3\x2e\x4a\xe4\x44\x21\xb2\x89\x3a\x2e\xf8\x13\xd7\xf4\xfd\x5c\xed\xc8\x7c\x9c\x41\xc3\x3d\xf8\x30\xdd\x21\x3a\x8a\xfd\x60\xc1\x8e\xdb\x0d\xa2\xa7\x58\x6e\x76\x5c\xe6\x73\xbe\x6d\x7a\x45\xcd\xf0\x0d\x21\xe5\x16\x2b\xee\x3e\xce\x54\x47\x8c\xa4\xcb\xba\xb6\xd8\x56\xe6\x2c\x81\xd3\x7c\x70\x3e\x81\xf2\xd1\xe9\x14\xfd\xfb\x63\xaf\x3c\x78\x72\x00\x4e\x08\xd8\xe1\xbc\x6e\x15\x43\x32\x1c\x99\x07\x68\x95\x48\xf1\x5b\xdd\xd4\x60\x4e\x0e\x66\xa8\x02\x5c\xc3\x22\x80\x10\x9c\x39\x03\xab\x6e\x03\x09\x51\x17\x92\xc6\x0a\x1f\x57\xb2\x4f\x91\x60\x9d\x97\x05\x46\xba\x37\xb9\x3a\x17\xc6\x7e\x7c\xdd\x39\xa5\x12\xe2\xf1\x07\xcf\xbd\xfe\x7c\x83\x33\x30\xf6\x4c\xf7\xeb\xb0\x4b\x97\x32\x88\xca\xed\xd2\x18\x75\x29\x5e\x2c\xc8\xe1\xd6\xec\x92\x5d\x51\x02\x95\x83\xf5\x93\x9d\xea\x1c\x3a\xd9\x47\xec\x9d\x84\x81\x18\xa9\xf9\xcb\xc5\xe8\xb9\xa9\xaf\x19\x1d\xa9\x62\x06\x4f\x9d\x3e\x5a\x6c\x34\x78\xef\x40\x6b\xaf\x17\xb0\x46\x68\xc6\x32\xde\x3d\x1f\x4d\xa5\x5e\x22\x1e\x74\x69\x31\xfe\xc0\x8e\xe5\xc7\xbb\xea\xf6\xbd\x48\x47\x30\xfd\xf8\x53\x06\x1a\x54\x60\x83\xe2\x1b\xf5\x77\xc3\xe6\xb3\x22\x9b\x19\x72\x86\x35\xf6\xe8\x94\xdd\x59\x74\x8a\x6e\x7c\x7f\xba\xfd\x5c\xb9\x27\x57\x4d\x82\x45\x9a\xce\x21\xb7\x75\x84\xaf\x24\x72\x58\x66\xed\x18\x83\x3a\xfe\xb8\xc1\x3d\x0e\xf4\x96\x1b\x9d\x67\xcb\xb1\x9e\xb2\xbe\x3f\x87\x68\xa4\xc9\x79\xec\x4b\xa8\xd2\x1d\x01\x75\x32\x94\x2f\xbc\xe2\x8a\xc8\xbf\x83\xae\xd6\x0c\xf7\x8e\x64\x41\xb7\x42\x5d\x6f\x6c\xe8\x16\x14\xc4\x99\x44\x07\x7f\xa3\x47\x58\x2b\xea\x52\x63\xc8\xba\xf2\x7c\x6c\x1a\x3e\x38\xc5\x58\x38\xde\x1f\x88\x53\x5e\xba\x41\x07\x4e\x66\x93\xab\x8b\x9a\x08\xe2\x91\x73\xd0\xa7\xfd\x1e\x59\x0a\x8f\x40\x49\x78\x1a\x08\x0c\xe1\xd3\xd4\xdf\x77\xcc\xcc\x1b\x22\x12\x39\xb7\xb0\xb8\xa6\x27\x31\x8c\x94\xc8\x23\x7c\x18\xbc\x02\x07\x1d\x9e\x1f\x03\xdd\x81\x6e\x75\x3b\xb4\xa5\xc2\x06\x9b\x6a\x4f\xb4\xb6\xf8\x58\x85\x18\x22\xc7\xec\x4d\xfa\xd4\x48\x09\x19\x7c\x05\x2d\x87\xbf\xcc\x6a\xd8\xdb\xa3\x4d\x14\xca\xe6\x74\xd7\x15\x4f\x2a\x0a\x5d\xd4\xfe\x47\xc7\xce\xdc\x86\x75\x55\xab\x51\xa9\xcf\xe7\x9d\xc4\x2b\x6e\x99\xc8\x1d\xbe\xc9\x55\xf2\xa6\x45\x0d\x57\xa9\xc3\x1f\xf9\xe6\xec\x88\x09\x82\x65\x8a\xb2\x80\x66\xc8\x9d\x1a\x5b\xab\xae\x13\x02\x55\x66\xf5\x6a\x24\x02\x1d\xfd\x98\xc5\xc8\x98\xd5\x95\x6e\x28\xca\x9e\x6e\x2c\x27\x08\x17\x3a\xa2\x0a\xe5\xab\xa9\x61\xed\x4b\x08\x9a\x8b\x40\xbc\xe3\xf0\xa3\xeb\x1e\x88\x53\x21\x41\x5f\xe2\x9e\xee\xe3\xb6\x90\x2c\x0a\x01\xd9\xf7\xcc\x4a\xf3\x5f\x5e\xc5\xa7\xc8\xfa\xfa\xec\xa3\x3c\x2c\x89\x88\x74\x2c\x1f\xd9\xb5\x97\x64\xa7\x2e\xc5\x23\xc5\xc7\x14\x38\x41\xb6\xa2\x0e\xae\xa0\x49\xd2\x61\xf8\x13\x8b\xaa\x2d\xa5\x16\x9f\x4c\x3e\x71\x4f\x4e\x84\x2b\x87\x90\x90\xc6\xf2\xc6\x11\x3a\x90\xf1\x9e\x2d\xc6\x01\xce\x4e\x80\x5d\x94\x61\x25\xe8\xcd\x9d\x7a\x64\xf7\x5b\x17\xf7\xa2\x15\x7e\x6c\x24\x0f\x92\x0d\x5c\x50\x21\xe4\xc0\xb5\x0e\x64\x17\xa9\xdd\xf7\x2b\xa9\xba\xe5\x34\xfa\x01\xdf\x65\x79\x16\x4d\x1e\x78\x17\x53\xa2\x3e\x41\x7e\x02\x45\x78\x30\x95\x11\x0b\x25\x8b\xf5\x1c\x30\x97\x30\xed\x8a\x2c\xc1\xea\x88\xc2\x65\x3e\x9a\x9f\x9c\xff\x90\x5f\xbf\x8f\xd0\x35\x9d\x1c\x2f\x4a\x28\x1e\x6d\xf7\xa9\xc8\x8a\x17\x56\x9d\x9e\xcd\xc3\xde\x2a\xcc\xb2\xe0\x4c\xa8\x6d\x29\x31\xf5\x72\x64\xe1\xd4\xf2\x1e\xae\x44\x01\x3d\x96\x3a\x60\xb1\x68\xd1\x61\xb4\x6a\x04\x47\x50\xdb\x02\xda\x0a\xa5\x0e\x43\xe9\xc3\x7a\x9c\x65\xc4\x23\x23\xc8\xd2\x5a\x88\xc3\x1c\xd7\x3d\xe9\xe1\x91\xf4\x24\x24\xa5\x31\x41\x55\x51\xbf\xc4\x71\x71\xda\x27\x31\xcf\x6b\x12\x02\xd9\xfb\x1f\x71\x0a\x8a\x48\x2a\x4a\x02\xf7\x40\x23\x8f\x48\xb4\x57\x12\xce\x73\x66\xca\x2f\xff\x74\x6f\xe7\xe0\xc7\x37\x7b\xfb\xf1\x1a\x4c\xee\xb2\x28\xf7\xa6\xe0\xfa\x6f\xdc\x77\x27\x9e\x18\x21\xf4\x33\x40\xee\x69\x59\x0c\x43\x96\xab\x37\x37\xf2\x41\x14\x43\x54\x19\x9b\xa6\xa7\x50\xc1\x53\xe1\xe6\x92\x23\x87\x69\xcc\xc8\xdf\xaf\x3d\x25\x46\x0b\x5e\xea\xd3\x5d\xed\x3f\x82\x5d\xa2\x1a\x45\x79\xea\x69\x71\x81\x93\xba\xbe\xee\x7c\xf6\x2c\x1c\xf9\x8e\x63\x7f\x24\x36\x19\x29\xa6\xfd\xa4\xc0\xb5\x6a\x76\xd8\xa8\xd9\x0b\xb7\x28\x9a\x65\x80\x4e\x22\x6c\x33\x48\xbd\xc5\xd7\xe4\xa7\x1e\x89\x04\x39\x5f\x1d\x9b\xce\x5e\x88\x82\x37\xe8\xb8\xe1\x1b\xc6\xcd\x53\x13\xd3\x5d\xc2\xdf\xb8\x11\x36\xb9\x11\xb7\x7f\xc1\xd6\x1a\xa0\x13\x34\x9a\xbc\x67\xa6\x14\x2c\xbb\xf9\xe7\xea\x8a\xac\x23\x0f\xc7\x72\x5b\x55\x08\x55\xeb\xa3\x8b\x7a\xc9\x78\x24\x86\xa4\xcd\xba\xe9\xc1\x9e\x46\xe4\xc3\x80\x32\x0e\xd4\xc5\x30\x5c\x15\xb1\x35\x75\xf5\x7d\x07\x2f\xd4\x54\x80\x5d\xc8\xa1\xe8\xce\xf1\xb2\xda\xdc\x8e\x9d\x66\x48\xdb\x75\xef\x2f\x81\xdf\x1d\xa9\x6b\x12\x6a\x0d\xf4\x60\xaa\x28\xdc\x19\xb2\x8f\xa6\xc6\xd4\xba\xe4\xa9\x59\xed\x5a\xf4\xd0\xf9\x21\x9a\xec\x32\x51\x72\x76\x3a\x20\x76\x04\x26\x5c\x11\x9d\x23\x76\x62\x5d\x0f\x42\xd0\x6e\xb5\xba\xba\x9e\x26\x9a\x59\x1d\x6c\x30\xa2\xff\x73\xf4\x6e\xb4\x8f\x2f\xf4\x6d\xc6\x16\x42\x87\xa3\x0c\x61\x5a\x8c\xb7\xa9\x50\xb8\x0c\x4d\xd0\xf5\x73\x10\x96\x0a\xa6\xb4\xb1\x62\xc3\xae\x65\x89\x4f\x68\x92\xdb\x75\xd1\x9e\x8f\xdf\x5d\x9d\x9e\xba\x53\xce\xda\x7f\xf7\xef\x27\x21\xde\x36\x56\x0a\x62\x9f\xa9\xe2\x55\xfc\x2a\x49\x6a\x69\x2a\x86\xa7\xaa\xde\x31\xc2\x10\x9f\x99\x6c\x10\xc4\x86\xba\x44\x25\x74\x0c\x3c\x79\x75\x30\x7c\xfe\xea\xd5\x0f\x3f\xbe\xa6\x00\xa1\xd9\x03\xde\x11\xa0\xbe\xfd\x1f\x8f\xbb\x3f\x77\x1f\xa4\xdf\xbd\xd9\xd9\xfd\x61\xef\x60\xb8\x7f\xf0\xe6\xd9\xcb\xef\x6b\xc0\x0f\xef\x23\xfc\xfd\x07\xe9\xb3\x97\x3f\xbd\xda\xdd\x81\x90\xe5\xc3\xfd\xd7\xcf\x9f\x1d\x1c\x40\x21\x86\x56\x30\xc7\x93\xd9\xc9\x5b\xa2\x0e\x2f\x28\x24\xd2\xcf\xb8\xa9\x7f\x56\x79\x5d\x35\x84\xd1\xc9\xdb\xc3\xad\xcd\xbf\x1c\x6d\x74\x3b\xa9\x4a\x79\xd0\x66\x6a\x68\x58\xc5\xe9\xf5\xf3\x51\xb9\xf8\x2e\x68\x00\x1c\xb0\xf3\x3b\x88\x9d\xab\xd9\xd5\x5c\x7b\xa2\xa2\x31\x08\x28\xca\x3c\xa4\xff\xac\x22\x6c\x4a\x80\xa8\x71\xd4\xf1\x67\xae\x97\x7f\xc8\x4f\x3a\x7e\x55\xdd\x9b\x9b\x86\xe9\xab\x29\xd3\x05\xfd\xe0\x0b\x74\xc4\x53\x66\xf5\xd3\x59\x53\x7a\x50\xd3\xfb\x8c\x6b\x54\x95\x6f\x24\xf7\x93\x0d\x3b\x18\xfc\xd4\xb9\x8f\x8e\x08\x33\xcc\x9c\x86\xf3\xd9\x62\xbf\xb5\x5f\x12\x12\xfb\xcc\x8b\xb3\x62\x3a\x9a\x20\x20\x32\xc2\x6d\xda\xb0\x3b\xe2\xd8\x94\xbb\xdd\x4e\xb2\xe5\xe4\xc6\x0c\x7b\x13\x0f\xa7\x33\x68\x98\x23\xf6\xe6\x46\x58\x56\x39\x83\xdc\xb9\x38\x2e\xce\xae\x66\x57\xe5\x5d\x47\x3b\x0a\x2b\xb8\x25\x01\x89\xf4\x20\x32\xfe\x48\x47\x3f\x7a\x22\x5a\x1c\x6d\x60\x94\x00\x61\x9e\x85\xe3\x78\x4e\x21\x0e\xcd\x7c\x82\xd2\xf5\xe8\x42\x6b\xaa\xdf\xdc\x98\x74\x70\x01\xc5\xca\x07\xc5\x18\x75\x28\x44\x8b\x3b\xfb\x07\xbd\x67\xe3\x97\xb3\x71\xde\x39\x04\x55\xdf\x45\x3f\x19\xaa\xee\x8f\xce\xf2\x17\x5c\x3e\xa9\x8e\xe8\xd6\x6f\x2a\xcc\xcb\x93\xd1\x25\x5c\x94\x9c\x26\x32\xe7\xeb\xe6\x26\xd2\x10\xb8\xa1\xa2\xa6\x54\x95\x0e\xb8\xea\x7c\x31\x67\x01\xc0\xa1\xba\x26\x70\x13\x49\x1a\xa9\x85\xa4\x09\x58\x4f\x02\x6a\x29\x09\xc8\x4b\xcd\x34\x45\x0a\xe8\x91\x50\xd3\xc5\xf8\x48\xc7\x95\x3f\x34\x7d\x50\x89\xdd\xd4\xe9\x51\x1a\x8e\x57\x3f\x67\xb5\x5b\x30\xc1\x9c\x99\x15\x0b\x57\x1c\xdc\xf7\x51\x1d\xfe\xc9\x95\x8e\x4a\xba\xe9\xd0\xd2\x29\xc2\x91\xc9\x72\xa0\x53\xa8\xcf\x38\xda\x50\xc4\xf7\x65\x4b\x8c\x3a\x46\x58\x57\xf6\x97\x24\x12\xee\xc3\x44\xa5\x57\xd3\x63\x60\x62\xe9\x23\x81\x30\xb9\x9b\xf0\xb2\x9c\x50\x82\x56\x00\xa2\x2f\xe0\x2f\xe9\x97\x87\x0f\x7d\x52\x05\x82\xf3\x94\xf2\xa9\x13\xaf\x11\xfb\x28\x73\xa0\xbb\x9e\x99\x1f\xc2\x63\xe3\x63\x80\xe9\xeb\x1c\x7a\xb9\x9f\xbe\x2b\xe6\xb3\x29\x3a\x2b\xed\x18\x9f\x12\x31\xe6\x52\xb3\x39\x1d\x35\x1f\x86\xd5\xe5\x1b\x5d\xb4\x64\x84\x75\x33\x75\x88\x66\x75\x5d\xa9\x78\x74\xd7\xf3\xef\x73\x83\x5c\x3c\x64\x01\x6b\x56\xf2\xb6\x0b\xd8\x38\xb5\x9f\x62\xba\xa4\x62\xfe\xfe\x65\x7e\x12\xaf\xe4\xee\x33\x07\x3d\x75\x5b\x09\x48\xba\xce\xe8\xc8\x7e\x74\x07\xfa\xab\x57\x94\xf4\x28\x94\xb9\x5a\x68\x9c\x5d\xd5\xf9\x41\xf2\x9a\x69\x10\xb4\x58\xf9\x4a\x4d\x50\xa8\x3a\x55\xa6\x95\xd1\xcf\x6c\x7d\x0f\x20\x5d\xd4\x26\x72\xf2\x0f\x8b\x58\xb2\xa7\xe6\x24\x72\x98\xb5\x7c\x50\x9e\x8f\x64\x28\xb4\x08\x04\x87\xbf\x6e\x02\x39\x01\x6b\x81\x13\xad\xc7\x54\x07\x45\x8e\x31\xeb\xf3\x99\x9c\x34\x81\xa0\x72\x6b\x13\x00\xc4\x56\x68\xca\xb7\x9e\x36\xeb\x61\xe0\xd8\x2a\x44\x54\xbb\x08\xc8\x75\x91\x4f\x1a\x3b\xaa\x4e\xea\x58\x36\x3b\x1d\x54\x3f\xc0\x33\xcd\xf1\xec\x43\x23\x50\x99\x4f\xa4\x96\x59\x0c\x64\xa1\x16\x7e\xa8\x56\x70\xb4\x1a\xea\xb4\xae\xcf\x2e\x98\x51\xff\xae\x07\x8c\xe7\xb1\x90\x65\xc8\x51\x5c\x22\x30\x24\x8e\xb1\x09\x43\x5c\xef\x61\x1d\x5e\x10\x38\x6c\x99\x8b\xd9\xfc\xf2\xdc\xc0\xfd\x11\xf5\xe4\xfe\x77\x78\xb5\xe6\xf0\x6a\x22\xe1\xeb\x76\x32\xe5\x1a\xcf\x22\x11\x15\xc3\x50\x04\x1d\xd1\xe1\xaf\x0d\xb3\xf6\x28\x16\x66\xed\x78\x36\x5b\xa8\x1e\x8d\x2e\x57\x69\x66\x1b\xcb\xf1\xd7\xe0\xdb\xcd\xc3\xa3\x9e\x93\xeb\x1e\x60\x3e\xa8\xce\xe0\x00\x33\x6f\x73\x21\x1f\x0c\xc3\x52\xbb\xf9\xfc\xa4\x1e\xc8\x15\x83\x72\x11\x18\xe9\xcc\x11\xf8\xe9\x48\x19\x93\x27\x61\x89\x89\xa8\x83\xa6\x5c\xad\x00\xba\x47\x0c\x6f\x00\x6c\xb3\x10\xd2\x6e\xfd\xef\xf3\x30\x0a\xb8\x93\x4b\x6c\x0b\xc8\x59\xd5\x94\xfd\x48\xe7\x46\xcd\x98\xa3\x50\x03\x2b\x99\xe0\x9b\x54\x4d\xe9\x08\x0c\x21\x48\x70\x15\xab\xa9\xa0\x0e\xd0\x9d\x4b\x88\x56\xb4\xc2\x7f\x0e\x1c\xc3\x41\xd4\x3d\x48\xc4\x5c\x8f\xa9\x8e\x74\x06\xc0\xa3\x50\x0e\x06\xc4\xcb\x39\xb9\xa6\x37\x35\xc0\x36\x8b\xb7\x92\x9a\xf5\x67\xa7\x75\xc0\x32\x17\xe1\x99\x0b\xa8\x2d\xe1\xe5\x93\x62\x58\xb1\x38\xaf\x01\xb7\x59\x08\x59\xd4\x55\x5b\xb8\x7d\x98\xe4\x65\x59\xdb\x01\x9b\x69\xe6\x62\x47\xdd\x7b\x1a\xe6\xc3\x66\x47\x4a\x58\xa7\xeb\x2b\xca\x5a\x40\x53\x0b\xca\xe8\xf3\x32\x5a\x90\xf3\x58\x79\x4f\x73\x68\x91\x5e\x46\x02\xfd\x89\x57\x06\xff\x30\xeb\xd9\xbc\x01\xf9\xb7\xab\x07\x7d\xe7\x82\x5e\xd5\xee\xd4\xed\x08\x5d\x9f\xcc\x62\x9b\x0a\x4e\xcb\x9e\xc9\x62\x3f\x58\xe0\x71\x38\x8f\x2d\x00\x42\xbb\xf9\x74\x66\x28\xfc\xc7\x67\xa8\x20\xfe\xa3\xce\x41\xb0\xef\xe7\xb3\x2b\x45\x9e\x20\x2d\x84\x14\x99\x44\x8f\xd4\x8f\x58\x17\x00\xd6\xe6\x39\xc7\x40\x0c\x3c\x72\xca\x30\x47\x1a\x83\x8e\xa8\xb8\x23\x73\x1a\x83\x8d\xe8\xb8\x2b\xea\x14\x83\x8c\xd0\x9f\x5d\xe6\x58\x57\x46\x92\xdc\x47\xae\x35\x08\x25\xd9\xa3\x74\x01\xf2\xea\x32\xd0\x9e\x17\x80\x94\xeb\x82\x9f\xc1\x8c\x37\x14\xc0\x7c\x2c\x72\xa0\x58\xd9\x1d\xc5\x16\xaf\x0c\x55\x09\x80\x4f\x61\xc2\x56\xc6\xa9\x04\xc8\x7d\x62\x8e\x57\xc6\xa8\x2c\xa6\x97\x57\x8b\xc8\xc4\x02\xbf\xd4\x13\x99\x8c\x0c\x1f\x16\xc0\xc2\xd7\xc1\xbb\xf9\x6c\xe5\xc5\xdc\x36\xd9\xc7\xae\x8c\x6c\x39\xb4\xdc\x14\x9e\xfd\x01\xea\x03\x9b\xd6\x8b\x41\xd1\x02\x14\x0a\x5d\x73\x9b\x1b\x2f\x1e\x83\xa2\xd6\x29\xe7\x85\xe6\xe4\xc3\xe2\x5f\x43\xeb\x11\x28\x2a\xbe\xaa\x60\x53\x91\x26\xf0\x40\x7a\x66\xd9\x3e\xf3\x2b\x80\x31\x1c\x9c\xe1\xd8\x62\xaf\xb4\x92\x0b\xf3\xb9\xb5\x16\x2f\xc2\x59\x8c\x53\x0b\xcb\x59\xae\x4d\x72\x69\x35\x70\xcc\xb1\xb9\x1c\x5a\x5d\x9d\xba\x17\xf2\xdc\xf7\x61\xc1\xb4\xc7\xe5\xca\x22\x10\x9a\xf7\x13\xbc\x9e\x0f\x15\xe7\xe3\xe2\x7c\x5b\xb0\x62\xc0\x15\x21\x17\x14\xcb\xd1\xa7\xa3\x3c\x0d\x7d\x38\x73\x12\x18\xc2\xef\x43\xc8\x43\x40\xd2\xfc\xda\x79\x06\x6e\x4e\x7e\x04\x90\xe2\x74\x15\x87\xa9\x0f\xe5\xde\x2d\xdc\xbb\x44\xa0\xa2\xe1\x15\x36\x46\xc6\x2e\x9d\xf0\xbe\x19\x6a\x18\xdd\xdf\xd1\xed\xcc\x05\xa2\xe4\x24\x46\x3d\x9c\x06\xbc\x7d\x1c\xdb\xef\x0c\xef\x41\x36\xc3\x64\xfe\x8e\xee\x49\x52\x2d\x7e\xeb\x49\xd1\x27\x99\xfe\xc1\xe9\x7c\x70\xf1\x39\x25\xd3\xf8\xa4\x72\x0e\x26\x2f\x9f\x8e\x26\xef\x24\xb2\xbd\xc1\xb3\x48\xff\x10\xe9\x74\xf4\x98\x5f\x6d\xfa\x5f\xaf\x9b\x92\x38\xb7\x95\x24\x8d\x5c\x5e\x42\x25\x00\xbf\x8e\xf0\xc2\x92\xa4\x75\x97\x98\x16\xb5\x15\x20\xd0\xb3\x57\x82\x16\x25\x88\xbb\x57\x85\x24\x9b\xbf\xba\x9c\xff\xcc\xe4\xbf\x33\xb4\xad\xc7\xdc\x2f\x92\xd4\xbb\x6a\xac\x2e\x0b\x97\x8d\x24\xb5\x57\x8e\xd5\x25\x0a\xd5\x4c\xd1\xba\x7e\xba\x7a\x40\xc7\xec\x15\xa4\xdd\x1a\xd0\xc3\x4c\xea\xde\x27\xda\x15\xdd\x89\x94\xb4\x37\x91\xd5\x75\x48\xe1\xb0\x7f\x0d\x59\x5d\x5a\x71\xfa\x49\x6a\xd8\xfd\xd5\xf0\x9a\xd7\x4f\x52\x97\xeb\x5f\x5d\x92\x44\xc7\x96\x51\x6f\xd3\xb7\x13\xe8\xdb\x49\x5b\x78\x23\x58\x76\xf8\xf9\xd5\xe5\xac\xd0\xda\xbd\x37\xac\x2e\xc9\x72\x6a\x71\x23\x58\x5d\x86\xc4\xac\xf6\xe6\xd6\x7a\xcb\x98\x0d\xd3\x1a\xf9\x81\x11\x56\xf8\x6f\xf9\xe1\x36\x73\x41\xcc\x30\xcc\x85\x64\x8b\xfd\x30\xa4\x81\x6a\x91\xaf\xb4\x57\x6b\xbc\xde\xfe\xcd\x27\x22\xf4\x3e\xfc\x14\x8e\x30\x56\xca\x46\x23\xf6\xcb\x91\x0b\x8b\x7f\xf8\x8b\xa2\xc6\xe8\xd8\x31\xb7\x74\xa3\xc9\x59\x13\x12\x11\x7e\xd9\x9a\x77\x70\x68\x63\xf3\x8d\x4d\x6a\x7f\x34\x99\x8d\x9e\xd6\x27\x95\x7c\x83\xba\x4f\x0d\x88\x79\x20\x36\xb0\xe5\x03\x0f\xf8\x0d\xaf\xbe\x62\x20\x4d\x43\xeb\xeb\xd6\x5a\xf4\x7c\x54\x76\xfc\x8a\x29\x6a\x41\x50\x81\x8c\x21\x6d\xe3\x10\x19\x9f\x3b\xc9\x64\x74\x3d\x03\x6c\x0c\xaa\xab\x9c\xb9\xcc\xea\x4c\x55\x4f\x9b\x9b\xbf\xb9\x11\xca\xab\x9e\x2e\x6b\x24\x86\x90\xe9\x97\xc7\xc7\x75\x07\xb7\xe8\x89\x56\x30\x30\x45\xaa\x46\x9f\x0d\x0e\xb6\x34\xa3\xbd\x7e\x07\x0a\xdf\x3c\x6f\xf9\xc4\x75\x9b\x97\x29\xe7\x99\x2b\xf2\x92\x5a\xf3\xf0\xfa\x7b\xbb\x9e\x89\x0b\x4e\xdc\xed\xfa\x6f\x0d\xa2\x88\xb8\x24\x22\x10\x6e\x44\x9c\x27\x84\x0f\x23\x75\xbe\x65\x6a\x1e\x5b\x22\xc2\x25\x7e\xe0\x0c\x1e\xe0\x39\xdd\x06\xe2\x11\x54\xdd\x2a\x21\x93\x98\x5f\xdd\x57\x39\x85\x54\x63\xc8\x96\x49\x26\xa1\x89\x1b\x1d\x0c\xe8\xdc\x13\x75\x7a\xd0\x9c\x6f\x36\xc5\x60\x7a\x94\xa2\xd8\xf0\xb1\xe2\xb8\x17\xf9\x9a\x01\x70\x12\x54\xbe\xda\x6a\xb6\x1a\x70\x83\xa2\xb1\xd2\x68\x44\x73\xcf\x7d\x0d\x68\xbd\x6c\x56\x01\x1a\xd5\xb9\x65\x7d\xdd\xa5\x69\x36\x33\x89\x15\xb7\x4c\xdd\xe4\xff\x6f\x6e\x12\xf5\x57\xe1\xe3\xa0\xb9\x51\x83\x02\x42\xed\x5a\x7a\xf5\x92\x72\x25\x29\x46\x32\xb3\xee\x1e\x8a\x77\x9c\xf8\x16\x9d\x04\xf4\xb3\x7d\x94\x5d\xf4\xa4\x59\xee\x67\x1b\xaa\x22\x08\xc7\x61\x5b\x77\x2f\x26\xab\x14\x59\x81\x31\xc1\x27\x22\x06\x4d\x9b\xdd\x77\x77\xb2\x2d\xdc\x9d\x94\x11\x57\x28\x25\xe7\x05\x92\xad\x47\x2c\x68\x77\x49\x08\x1a\x2c\x58\x87\x21\x10\x43\xf7\x82\x43\x4b\xaa\xf3\xab\x7f\x7f\xb9\x44\xac\x20\x57\x0b\x16\xd7\xab\xea\xbe\xf5\xba\x57\xf6\xf5\xb4\x9a\xfc\xa3\x74\x31\xc2\x20\x37\x7d\xcd\x93\x19\x0f\x21\xdf\x91\xf6\x07\x14\x82\x4a\x21\x1a\x1f\x94\x42\x95\x11\x70\x81\xab\x90\xfa\xa2\x98\x92\x46\xc5\xb8\x28\xd1\xe2\x06\x23\x31\x1e\xa3\x83\x5c\x8e\xad\x08\x61\x15\xaf\x16\xb3\xd3\xd9\xc9\x55\x89\xf1\x02\xd1\x64\x03\x00\xc1\x2b\x32\xb4\x0f\x86\xbb\xb6\xc3\x29\x37\xc2\x61\x9a\x74\xc5\xfc\xe9\xb4\x6b\xd2\x56\x7a\x4f\xc1\x98\x86\xe7\x60\xb4\xcc\x06\xcd\x04\x43\xae\x17\x38\x68\x34\xea\x61\x52\x94\xef\x67\x53\x30\x46\xe2\xf4\xfa\xaa\xad\x1f\xe1\x5c\x07\xc2\xee\x39\x1d\xcc\xee\xdd\xb3\x30\xee\x94\x81\x59\x68\xd8\xbc\x6c\xcb\x06\xc5\x36\xd3\x8e\xcd\x7f\xd1\xe9\x82\x8e\xe0\x65\xc7\xa4\x07\x2e\x00\x9d\xc3\x9d\x27\xb6\xd5\xfe\xd3\x6a\x27\xed\x15\x9a\xf2\xa9\x42\xc3\x39\x2c\xd1\xd0\x75\x27\xf7\xe9\x36\x6e\x90\x61\xaf\x92\xae\x02\x49\xcc\xab\x1d\xa5\x15\xe5\x90\xc2\x8a\x7a\x2c\xc4\x85\xc2\x78\xa1\x02\xd5\xc6\x99\x13\x15\xbd\x28\x3e\x14\xd3\xf8\x80\x8a\xfc\x0f\x13\xf8\xe6\x33\xa8\xaa\x7c\x4a\xe5\x0d\x83\x3a\x3f\xc2\x92\xad\x62\x7d\x7c\xfa\xfa\xa8\x81\xbe\x7e\xd9\x44\x5f\xbf\x72\xe8\xab\xc1\xa5\x00\x2e\xf2\x66\x56\x94\xe8\x9d\x20\x70\x0c\xc5\xe9\x0c\x03\xb1\x6b\x9b\x3c\x43\xd1\xab\x2c\xe1\x9e\xff\x1a\xdb\xd3\x19\x75\x7e\xa8\xf0\x71\x75\xc7\x75\xea\xe0\x2f\x9c\xf6\x7a\xa2\xdf\x48\x61\xdb\x6b\x3b\xee\xd8\x1b\xa9\xcc\xe7\x47\x2c\xf4\x70\x9e\x79\x4b\xa4\x3d\x9f\x23\x19\xfe\x90\x97\x75\x10\x90\x93\xb2\x09\x7a\x00\xc1\xe9\x29\x3b\x9d\x0b\xf2\x39\x3d\xb5\xfa\xcc\x07\x75\xaa\x9f\x9c\x1f\x3e\x2c\xae\x38\x2c\x93\x50\xc2\x9b\xd8\x73\x70\xc6\x09\xb1\x83\x10\xed\xfb\xd4\xf6\x26\x42\xa9\x48\xc7\x51\xca\xeb\x1a\x3a\xb0\x46\x8f\x2f\x1f\xac\xb2\xec\xd2\x55\xcb\xd5\xbc\x17\x7c\x40\x7c\xc2\xf3\xfe\xb2\xde\xd0\x0e\xdf\x34\x88\x11\xd3\xd5\xa2\xb4\xa6\x37\x19\x1d\xe7\x93\xc4\xf2\x63\xf1\xd3\x10\xa1\xe0\xf5\xc0\xb8\x9f\xd1\x27\x23\x0e\x28\x9a\xa3\x8f\x39\x34\x5c\xa7\x20\x7c\x1a\x37\x3b\x9e\xe7\x02\xf6\x6d\x23\x1c\xeb\x73\x4a\xd2\xe5\xc2\xb0\x28\x36\x97\xac\x67\x71\x91\x4c\x36\x39\xa0\x88\xc2\x5c\xa8\xe9\x2d\x2e\x27\x79\xd2\x95\x2e\x18\xa8\xd8\xfa\xba\xf6\xc6\x6f\x92\x52\x6e\x9c\xc6\xa6\x72\xba\x10\xe9\xc2\x09\x42\xa1\x3b\x9c\x99\x42\xea\x04\xed\xe9\x13\xa9\x63\xba\x5f\xd7\xd5\x34\x9c\xd0\xbe\xde\x73\x1d\x59\x86\xd6\xe5\xb9\x86\x4e\x52\x6f\xe6\x4c\x3d\xf1\xd9\xf1\x8b\x93\xf9\x84\x29\x64\x82\x2f\xba\x5b\x98\xeb\x61\xd4\x88\x2d\x1a\x4f\x83\x69\xd3\xd6\x28\xa7\xc1\xa6\xaa\xe4\x34\xc4\x94\xa6\x21\xff\xa4\xa1\x83\x21\x9b\x7a\x9a\x86\x6c\x8b\xd3\x90\x4d\xa1\xe6\x21\xf3\xf6\x6c\x33\x64\x5b\xa3\x1c\xb2\x4d\xed\x56\xda\xfb\x95\xf7\xd0\xe3\x9e\x18\xb7\xa0\x32\x58\xdc\xa5\x33\x9c\x14\xa3\x34\xb4\x7a\x47\x76\xff\x70\x5e\x3f\x8e\x92\xa9\xde\x24\x31\x30\xb3\x81\x52\x0f\xa1\x62\xc0\x01\xca\x7a\x2b\x52\x5f\x46\xac\x79\xa1\xf8\x27\x63\x48\xdc\x50\x02\xd8\x37\x67\x9a\x6f\x45\xba\xc5\x64\x6a\xce\x35\x72\xd7\xe1\xac\x90\x52\xfb\x82\x62\x6b\x4a\x60\x2e\xd5\x23\xc5\x36\x5e\x5f\xcc\xae\x4a\x61\xb5\xa1\xea\xb9\x5c\x9c\x6f\xf1\x1b\x5b\xa9\x45\xfa\x25\x1a\xb2\x30\xc1\xd5\xdc\xf2\xb3\xe9\xe9\x2c\x3b\xfc\x32\x4d\xbe\xcd\xd6\xb6\x7b\x5b\xbd\x2d\x75\xfc\x6b\x39\x0a\x05\xcc\xcc\xe7\x8a\xe4\xea\xaa\x82\x1e\x71\x86\xe2\xdd\x55\xdd\x19\xfc\xb9\xb9\x59\x92\xe9\x06\x59\xa0\x66\x49\x92\xa2\x71\xe7\x76\x4a\xc6\x45\x7b\x1f\xd4\xc1\x59\x82\x33\x09\x6a\xc0\x4f\x15\x6e\x48\xcc\x28\x15\xfa\x9f\xcd\x47\x17\xdb\x1d\x1e\x19\x0d\x24\xd6\xc8\x20\x30\x7e\xbd\xff\x0d\x2d\x25\xed\x6b\x05\xf9\xed\x7d\xb0\x5b\x03\xe0\x4c\x1f\x5e\xde\x7b\x1c\x9d\x63\xdc\x16\x1d\x63\xaa\x07\x17\x97\x6a\xf9\x96\x7c\x10\xa6\x46\x22\xa1\x3f\x76\xe9\xd8\xc3\xef\x13\xfd\xfb\x90\x2a\xa1\x4b\x24\xac\xf8\xb3\x27\xb0\xce\x70\xbc\xc2\x9f\x0a\x89\x07\x75\xe6\xe6\x86\x3b\x95\x65\x5b\xdd\x65\x30\x0c\xca\xec\x56\xa1\x71\xef\x37\x0f\x68\x80\xdf\x26\xc6\xa9\x09\xe5\x57\xfe\xfc\x3d\x0a\xe7\x8f\x67\xcd\x9b\x0f\x78\x69\x8a\x4c\xc2\x19\x69\x18\xec\xea\xc3\xa7\xdd\x64\x14\x53\x45\x81\xcb\x9c\x7c\x1d\x4d\x67\xb3\xcb\xf4\x74\x4a\x1f\xdc\xad\xce\x97\x29\xff\xfa\x92\x7a\xf6\x39\xe7\x0f\x4f\xd9\x70\x12\x21\x82\x97\x3f\x5d\x5f\xba\xd3\x15\x14\xf2\x31\xb7\x13\x0a\xa5\xc2\xe9\x43\x8a\xa2\x67\x8e\x8f\xf1\xbe\x3d\xcf\x91\xaa\xf6\x99\xb8\x3a\x13\x6b\x60\xd5\x14\x68\x30\xf5\xd3\x9f\x6f\x0d\xc6\x2d\x13\x20\x7d\xdc\x06\x2f\xbb\xdd\x60\x3a\xbe\xfe\x48\xec\x39\xf9\xd4\x68\xf3\x27\x8d\x36\x7f\xfa\x43\xa1\xcd\x9f\x3e\x31\xda\x88\x93\x28\xc0\x9b\x7a\x14\x69\xc6\x8b\x5b\xa2\x82\xbb\xc0\x87\xa0\x1a\x70\xf4\xd1\x44\x72\xf5\x02\x6f\xeb\x05\xde\xfe\xfc\x0b\xdc\x72\x88\xb4\x18\xa8\x6a\x45\x8c\xc4\x1d\xc6\xaa\x87\xf7\xb5\x1e\xde\xd7\x3c\x3c\x7f\xfc\x8f\x34\xc0\xa3\xcf\x3f\x7e\xf7\xe4\xe8\x46\x59\x3e\xcb\xa6\x35\xcb\x53\x85\x0c\x55\x8a\x56\x51\x9e\xaa\xae\xa6\xc5\x3f\x73\xd5\x59\x5d\x59\x5c\x8e\xaa\xab\xe0\x4f\x8d\xbd\xe8\x87\xc6\x30\x95\xf4\x49\x81\xf2\x43\x96\xfa\x6d\x7e\x2d\xfc\xfb\x18\xa3\x75\xb6\x1a\x57\xd3\xf1\xd0\x30\xdd\x14\xe3\xbe\x8e\xf9\x0f\x38\x7e\x1b\xbe\xe9\xef\xdc\xb1\x9f\x7b\x8f\x1f\x80\x37\xfa\x81\xac\x10\x80\x1f\xdb\x6a\x4c\xb7\x7b\xc9\x86\x65\xe3\xfb\x11\x80\xc4\x61\xf9\x65\x7a\x4a\x5b\x8c\x06\xee\x31\xc2\xe2\x14\xf1\x7a\x1c\xe4\x18\xfc\xa5\x8a\xcc\xc1\xd4\x77\xef\x02\xa9\x7b\xe0\xd7\x5e\xaf\xcf\x74\x75\xc1\xa4\xd9\x8d\x42\x3c\xb4\x5b\xa1\xf5\x90\xbd\xe2\x92\x7e\x73\x73\x78\x34\xd0\x2e\x03\x39\xd5\x5e\xdb\x80\x97\x17\xb7\x55\xac\x00\xd2\x52\xd3\x2f\x73\x75\x77\xdb\x87\x2b\x68\xc9\x9e\x0f\x59\x50\x01\xf1\xf2\xf0\x57\x77\xe9\xc2\x4a\x77\xb0\x4b\x3a\x55\xf1\xaf\x41\x4d\x3d\x16\x75\x2d\x5b\xd1\x92\x19\x16\xed\x40\xec\xbe\x75\x02\xe8\x16\x74\x10\x21\x20\x3e\x7a\x86\x7a\xff\x89\x1a\x42\xdd\xd4\x9e\x15\x7d\x29\x3c\x4a\x87\xf4\xb8\x20\xe5\x2e\x8e\x30\x43\x4a\x30\x48\xb8\x42\x05\x5e\x70\x7a\x47\x3b\xc2\x14\x79\xfb\x8a\x2a\x60\x4e\x65\x77\x64\xec\xea\x6d\xf1\x9e\x7a\xe9\xdf\xb7\x63\x02\x98\x5a\xa9\x8b\xec\x28\xdc\xbb\x59\xb0\x69\x85\x2b\x5d\xf9\x30\x21\xae\x9f\xbc\x3c\x87\x26\xe9\xc8\x38\x97\xae\x58\x9c\x14\x0c\x22\x3e\xfa\x10\xce\xce\x04\x4b\x21\x62\xd3\xc0\x57\xff\x5b\x48\xa6\xe8\xc2\x62\x73\xa8\x06\x21\xe8\xb8\x1b\x8d\x32\xe2\x32\xf2\xff\xf1\xb1\xa4\xca\x2e\x3e\xac\x14\x42\xdf\xd3\x72\x2b\x6e\x03\x96\x44\xaf\x31\x77\xe6\xb1\xc6\xdc\x53\x75\x76\x58\x7a\x32\x3b\xfe\xc5\x25\xca\x8a\x4c\x77\xdc\x1e\x2a\x10\x21\x1b\xe9\x43\x89\xaa\x8b\x74\x8c\xc4\x82\xb0\xfa\x72\xe1\x2d\x66\xc0\xf2\xc0\x4d\x0f\x34\xef\x42\x17\xc3\x6d\x50\xd1\x9c\x10\xe1\xaa\x0c\x08\x1b\x41\xb4\xee\x20\x23\xf7\xc9\x47\x99\x0e\xc5\x45\xe5\x02\xda\xc1\x9b\x95\x78\x4a\x40\xb9\xe9\x40\xdc\xe9\xec\xbf\xf8\x10\xf2\xf1\x33\x38\x92\x33\xfd\x20\x77\xb8\x75\xd4\x73\x72\xd2\x26\xc4\xa3\x43\x46\x8a\xbf\x88\xb1\xa3\x41\x32\xdc\xcd\x0d\xbe\x1d\x9e\x18\x02\xc7\xde\x84\x8d\x00\x0c\xe2\x97\x61\xb9\xf5\x75\xb7\x53\xc8\x88\x44\x37\x29\xac\xa2\xd9\x95\xa6\xbc\x46\x1f\x2e\xbf\x99\x6d\x57\xd1\xd2\x1a\xa5\x8c\x6f\x76\xa7\x58\xd7\xce\xdc\x0b\xc3\x7a\xb8\x73\xa7\xe5\xdf\x3c\x6b\xbc\xa9\xfa\x46\x96\xde\x30\x33\xe9\xec\xf4\x14\x1e\x79\xe8\xfb\xf1\x76\x7f\xab\x71\x86\x5b\xd0\x3c\x3d\xcf\x72\x3e\x1d\x9d\x09\x67\x74\x42\x57\xc2\xf1\x39\xec\x46\xec\x43\x3e\x6d\x93\xba\x5a\x41\x74\x64\x22\x9e\x84\xd8\xd3\xfc\xfd\xbe\xbf\x4d\x79\x2e\x4b\x7f\x32\xf3\x12\xfb\x18\xa3\xbe\x9a\xee\x58\x71\xf7\x16\x38\x30\x15\xdf\xd6\xf1\xb4\x6c\x92\x69\x6c\x1c\x2f\x1c\x38\x88\xbf\x57\x47\x84\xfd\x25\x55\xec\x80\x75\x2c\x6d\x5e\xc1\x71\x7e\xe1\x8c\xe7\xa9\xbd\xcb\x1b\x41\x94\x04\x12\x82\x6b\x1a\xa7\x25\xff\x7a\x8f\xd8\x69\xea\x6f\x6e\x37\xef\x32\x17\xf3\x75\xcd\x1b\x0a\xf5\x55\x26\xf4\x3c\x9f\xb8\x1b\x3a\x73\x21\xe3\x73\x54\x87\xf8\x1f\x3f\x76\x8b\x86\xce\xe0\xe1\xa1\x2d\x36\xfc\x43\xf0\xaa\x76\x9b\xcd\x14\xdf\x9a\x0a\x74\x34\xfe\xe5\xaa\x5c\x50\xc4\x6c\xff\x21\x0b\x25\x11\x72\x2f\x68\xe0\xcc\xee\x86\x6f\x37\xb7\x1f\x07\x7b\x43\x2d\xcf\x40\x10\x6e\x55\xc0\x7d\xc4\x31\xa3\x35\xcd\xe3\x0b\x0e\xb0\x42\x2d\x95\x3d\x7c\x25\x0e\x47\xed\xc3\x39\xa3\x9a\x35\x44\x28\xa9\x49\xbf\x82\x6d\x46\xa4\x1e\x94\x6b\x4d\x12\xe6\xc4\x6c\x4a\xa2\x50\x31\xcb\x92\x56\x7a\x1c\x42\x69\xb2\x85\x22\x55\xdc\x63\xea\xad\xdd\x85\x78\x9a\x11\x9f\x43\x01\xe2\xae\xfa\x57\x56\x73\xb6\x85\x7e\x65\xcc\xd2\x33\xa2\x62\x19\x7d\x7d\xff\x52\x3e\xbe\xaf\x52\xb7\xd5\xcf\x1c\xa2\xd1\x34\xf6\xe4\xb1\x5c\x6a\x55\xba\xaa\x8a\xbe\x70\x40\xf6\x26\x2e\xb7\x50\xe7\xb2\xea\xf2\x31\x59\xc3\x7c\xf6\xbe\xc4\x0b\x0e\xea\xca\xb0\x60\xc1\x50\x90\x3d\xf4\xc5\x63\x3e\xf7\x55\x45\xb0\xce\xe0\x0e\x5d\x35\x01\x65\x75\xb4\xa9\x09\xff\x8a\x29\x33\xad\x62\xce\xeb\x18\xf0\x2f\xf4\xa9\xa2\x38\x2b\xa0\x3b\xea\x7b\x7d\x5d\x73\xbe\xea\x03\x58\x38\x70\x01\xaf\x7f\x12\x7b\x07\xec\xe7\xa7\xa0\x0e\x31\xa5\xb0\x88\xcf\xee\x55\x2a\xcd\x9f\x4e\x81\xf1\x6e\x5b\xf2\x8f\xb4\xfd\x9a\xd4\x1f\xe3\x5b\x33\xb2\xdf\xea\xb6\xe6\x97\xad\xc2\xae\xdd\x76\xd3\x79\xfa\x94\x30\xbb\x75\xba\x94\xb8\xfb\x68\xd5\x6f\xa5\x4d\x69\x74\x49\x40\x60\x07\x6f\xe0\x8b\x45\x3e\x9f\xda\xdd\x78\x81\x74\xf4\x62\x04\x92\xbf\xd1\xc9\x49\x0e\xa2\x5f\x14\xf8\x01\x42\x80\xa6\x33\x7f\x96\xa3\x77\x39\x8b\xff\x46\xda\x13\x17\x7c\xa8\xc9\xe1\x96\xe0\xeb\x02\x9d\xa0\xf1\xc7\x74\xa6\x1a\x2f\xc6\xa4\xbb\x09\x09\x6a\x83\x13\x66\x9e\xe7\xc5\xd9\xf9\x02\x35\x3c\x55\xff\x21\x4a\x87\xfa\x3d\x29\x4a\x48\x12\xf2\x49\x75\x26\x83\x9f\xa7\xf7\xc5\x58\x31\x9a\x47\x2c\x23\x4c\x12\x56\xe6\xc4\xd9\x4a\x61\x5c\x44\x1c\x78\x68\xf4\xa1\x86\xc5\x3f\x46\x1f\xf0\xc7\x6d\x36\x57\x4d\x84\xe2\xdb\x6e\xaf\x98\x12\x9f\x56\xfe\xc3\x54\xd5\x1c\xce\xc8\x90\x66\xf4\x5f\x71\x63\xbd\x80\x71\x04\x1a\x73\x98\x4a\xfb\x09\x07\xb8\x43\x04\x7e\xf5\xbe\xf2\xb7\x20\x56\xc4\xae\xf3\x3b\x91\xba\xd2\xa5\x41\x8a\xd8\x1e\xc0\x4b\xcc\xf9\x6c\x42\x4e\xed\x84\xb8\x5b\x61\x05\xdf\x5f\x1c\xd1\xb7\x6a\x67\x3c\x9b\x4e\xae\x6b\x64\xde\x96\x15\x9f\x1b\x6f\x74\xe5\x65\x3e\x99\xa0\x8e\xac\x2b\x33\x5f\x14\x8b\x89\xde\x3b\x27\xa3\xcb\x62\x81\xb6\xd5\x66\x6f\xcd\xe7\xa4\x2d\x20\x7a\x48\xf8\xea\x89\xd0\x4d\x47\x29\xb7\xe5\xd1\x83\x1d\x7f\x75\xe5\x1e\x39\xb9\x38\x6c\xcc\x65\xa2\x99\x31\x5d\x55\xe4\x72\x54\x2e\x6e\x57\xe2\xe4\x96\x9d\x62\x02\x77\x8b\x12\x6f\xf3\xeb\x1f\x2f\x65\x89\x02\x0c\x23\x2e\xd5\x25\xf1\x87\xfc\x1a\x8d\x25\x40\x81\x6d\x24\xde\x1e\xd8\x86\xa2\xcf\x26\x14\xe9\xf1\xd5\xb1\x5a\x81\xd2\x28\x7e\xfb\xc5\xed\x02\xe4\xef\xf0\x6e\x4f\x2e\xb5\x2e\xa5\x29\x75\xef\x87\xbd\xff\x19\xee\xfd\xb4\xf7\xf2\x60\x9f\x3c\x6e\x91\x77\x48\x05\x75\x88\x85\x7a\xaa\x9b\xbb\x8a\xee\x1d\x0d\x1a\x46\x45\x8c\x09\x15\x75\x64\x00\x87\x94\x76\xc4\x1d\x80\x7b\x62\xb4\x82\xb8\xa6\x37\x1f\x09\x46\xcf\x9b\x18\x1d\xb8\xf5\x00\xb7\xf2\x32\x7f\x3f\x51\x44\x32\x18\x64\xa9\x76\x2c\xed\xbd\x8e\x9e\x28\xac\x8e\xb2\x07\x32\x9b\x2a\xda\x9c\x52\x4d\x0e\x1c\xc4\x64\x9e\x9e\xe4\x93\xe6\xea\xf1\x71\x75\x13\xdf\x56\xbd\xd2\x88\xd9\xcf\xa6\x8d\xc5\x11\x66\x13\x88\x6e\x58\x54\x6d\x8a\x16\x65\x67\x06\xe7\x74\x61\xb5\x5c\xaf\xa1\x3b\x8d\x85\x15\x50\xac\xd3\xea\xe0\x89\x63\x46\xb6\xdc\x7e\xd4\x4f\x9c\x69\x4f\xd2\x87\x7f\xea\x27\x34\x47\x49\x65\x95\x67\x44\x33\x58\x2b\xda\xee\x01\xe7\x96\x0a\x1c\x1c\xd9\x2b\xbe\xcd\x42\x4b\xbd\x54\x26\x27\x8c\xf0\x8e\x74\x9a\x72\x84\x1c\x54\x95\xc8\x32\x53\xc3\xcd\x0d\x7e\x27\x7a\x1e\x92\xf5\x75\x93\xc7\xe9\x3c\x74\xd5\x15\x52\x1a\xb3\xf3\xa2\x19\x06\x66\xa1\xfd\x7c\x31\x20\x04\x80\xd6\xa9\x08\xb7\x6a\xc7\x81\xcf\x05\xb6\xbb\xbc\x53\x41\x5e\x49\xbb\xaa\x5c\xcc\x2e\x41\x5b\x6f\x74\x36\x22\xb4\xaf\x6a\x5d\xaf\x8a\x25\x69\xe2\x0c\x90\xc9\x68\x88\x14\xdd\x1c\xf7\x79\xb5\x69\x43\x03\x53\xe1\x3b\x46\x65\x5b\x88\xf9\x7c\xe6\x57\x12\x33\x14\x28\xca\x61\x7e\x71\xb9\xb8\xfe\xa3\x9a\x09\x7c\x74\xe4\xe7\xd3\x8b\x90\x2d\x51\x69\x2b\x8d\x04\x22\x5c\xff\x2a\xa3\xc3\x18\x87\xf4\xa5\xe0\x90\x8a\xf2\xfb\xc9\xec\x78\x34\x89\x3a\x69\x94\x99\xb6\x73\x7b\xb0\x8c\xab\x2c\x01\x9e\xed\x0f\xbf\x7b\xf6\xf2\xc9\xb3\x97\xdf\x07\xc6\x00\x36\x2b\xf4\xaf\x97\xd6\x7a\x4a\x2a\xca\x3d\xc0\x89\x55\x76\x03\xe5\xa4\x38\xc9\xb3\xc3\xa3\x1e\xfe\x48\xb5\x4b\xf9\x5a\x15\x79\xe3\xaa\xc8\xd0\x2b\xc7\x9b\x4c\x67\x3e\x9b\x2d\x80\x3f\x3f\x17\x6a\x47\x6f\x75\x38\x31\x48\x5a\x5f\x47\x9d\x06\x9d\x06\xea\x87\x29\x7f\xa4\x45\xc9\x61\xb9\x06\x9c\x92\x41\x4d\x3d\x75\x83\x2a\x16\x9d\xa4\x97\xa4\xdb\xf0\x32\x02\x44\x43\x17\x8f\x04\x95\x83\x74\x90\x6b\xab\x8e\x64\x1a\xec\x90\x7f\xa8\xb2\xba\x89\x0c\x5c\x41\xa3\xe8\x76\x84\xda\x05\xba\xe4\x12\xbf\x93\x84\xc4\xdb\xf8\x41\x9d\xb8\x3a\x56\x78\xab\x1b\x60\xad\x84\x8d\x6d\x45\x76\x38\xf0\x17\x34\xd8\x37\xc3\xef\xe3\x1c\x98\xd6\xfa\xe6\x97\x50\x40\x72\x3c\x1e\x89\x99\x73\x9e\x0d\x50\x51\x93\x53\xd6\xd7\x1d\x25\x7f\x33\xf3\xe3\xd0\xad\x8f\xbf\x10\x44\x70\x61\xbc\xa4\x13\xaa\xa3\x5b\xf5\x4c\x70\xab\x58\xc4\xaf\xd1\x65\xb9\xc9\xfe\x08\xe8\x01\x57\x62\x38\xce\x1c\xba\xef\xd7\x27\x0b\x55\x4d\x05\xb0\x6d\x7e\x24\xb0\x10\x6e\x97\x7b\xd8\x49\x2f\x8d\xca\xb1\x7a\x3d\x2c\x62\xa4\xcc\xe0\xd2\x19\xb0\x2d\x38\xb0\x4d\x99\x09\xe8\x9a\x87\x4e\xe9\xeb\x7d\x7d\x1d\x00\xee\x65\x99\xec\xf4\xfa\xfa\xad\x07\x58\x39\x3a\x29\x66\x6d\xad\x93\xaa\xba\x85\x55\xfb\x58\x6d\xc3\x6c\x15\x12\x0c\x30\x68\x30\x82\x66\x19\x30\xb1\x37\x37\xe6\xd3\x0c\x06\x58\x46\x4c\x63\xbc\x5d\xc3\xf8\x0b\x94\x26\x03\x21\x8a\x8d\xbc\x3f\x3a\xcd\x29\x5e\x41\xd7\x94\xe6\x68\x88\xf4\x45\x2f\x9e\xd2\xa2\xb7\x67\xa2\x1f\x98\x12\xa2\x42\xb2\xb6\x09\xb4\xe5\x74\x65\x26\x7e\x1f\x7c\x3a\x66\xbe\x71\xd7\x5e\x66\x26\x1d\x2f\x63\xc6\x5a\x85\x42\x4a\x04\x33\x0a\x90\x63\x76\x4f\x76\x78\xe4\x59\x25\x53\x60\x53\x2c\x89\x39\x03\x1b\x4a\x7a\x2b\x9d\x64\x4e\x94\x8a\x41\xf1\xcd\x84\x62\x49\x63\x32\x67\x1e\x16\x47\x03\x0a\x35\x0e\x55\xc1\x17\xc7\x94\x03\xc6\xe8\xd9\x13\xb4\x04\x97\x7d\x20\x8d\x11\x77\x89\x9d\x11\x98\x01\x74\xb5\x3d\x49\x58\x1c\x01\x2d\xa2\xb9\x20\xce\x4c\x36\xb9\x67\xf3\xe7\x13\xfc\xbb\x99\xbe\xa0\x09\x77\x74\x2e\xd1\x25\x9c\x22\xd1\x75\x86\xf5\xce\x3c\x72\x04\x50\x0c\xeb\x81\xfc\x1b\x62\x4d\x73\xdc\x4f\x31\x9d\x10\xe8\xb3\x76\x42\xa1\x23\x08\x91\xc5\xa7\xf3\x5c\xe7\x7b\x56\xf6\xb1\xf2\xfc\x2b\x98\x52\x80\x89\x4d\x68\xe0\x17\xcf\x92\xf0\xd0\x93\x15\x51\x0d\x1c\xbe\x73\x54\x9b\xa1\x18\x8f\x78\x91\x60\x73\xe7\xf5\x4e\xf3\xbb\x87\x89\x53\x41\x72\x84\xef\xa0\xc8\x24\xe2\xfd\x40\x6d\xfe\x81\x7c\x16\x37\x2a\x74\x87\xbe\x32\xdd\xe6\xb6\x64\x86\x5c\xdf\x7c\x1d\x79\xc4\xf4\x8c\x26\x30\x7a\x07\xb1\xe4\xf4\xdc\x0c\x49\x98\xf7\xcb\xa0\x33\xc8\x4e\x90\x42\xa6\x69\x5d\x1d\xdf\x6a\x51\x90\x1b\x4a\xfe\xfd\x3f\x05\x31\xa2\x41\xf4\xd7\x76\x67\x57\x93\xb1\x62\x28\x16\x6b\xa0\x66\xb2\xa6\x19\xe6\xb5\xfb\xff\xfe\x9f\xf7\xd7\xd4\x6c\xd3\xeb\xf6\xda\xbf\xff\x67\x2f\x11\xef\x87\x3d\xe6\x34\x60\x0a\x82\xce\x57\x8b\xf3\xf9\xec\xfd\x9a\x89\x22\x81\xcc\x58\x47\x31\x8f\x1d\x9a\xb8\x43\xbc\x5e\x20\xc5\x85\x7e\x1f\x75\x5d\x17\x04\x91\xf5\xcd\x22\x69\x16\x21\xea\xfc\x9b\xfd\xc6\x58\xf1\x07\xc7\x01\x61\x3a\xa7\xb5\xa9\x9d\x59\x15\x2e\x22\xf8\x94\x95\x8b\x52\xeb\x31\xbb\xd6\x43\xb6\x20\x7e\x81\x33\x4c\xf2\x50\x04\xf1\xdc\xd1\x40\xc5\x66\xec\xcc\xcf\xca\xac\x66\x0c\xe4\x52\xee\xe9\xd4\xf7\xc8\x29\x87\xef\x55\xb5\xd2\x21\x15\xf6\x83\xeb\xed\x7a\x64\xa8\x9d\x5b\x4f\x33\x4c\xaf\x57\x18\xad\x1e\x50\x2f\x76\x5b\xe8\x2e\xa3\x3e\x1b\x57\x21\x62\x53\x04\x06\x85\x94\xb1\x3a\x19\x37\xf5\x7d\x04\xc4\x6c\xb5\x13\xec\x93\x58\x7e\xe2\xb3\x36\xf1\xf1\x82\x5b\xe9\xa6\x5a\x9c\xe9\xd5\xc5\x6b\x0b\x68\xcb\x30\xea\xa7\xad\x76\x87\xe4\x4b\x6d\x65\x87\xa4\xb6\xed\x10\x1a\x3e\x1c\x71\xb3\x14\x25\x7b\x19\x7d\x2c\xfa\xe7\x32\x20\xdb\xdd\xbe\x9b\x10\x7a\x53\x41\x5a\x66\x36\x9f\xd1\x23\x37\x40\x3a\x21\x3d\xb9\x9a\x83\x09\x1c\xeb\xae\x67\x3a\x9d\x1c\x5b\xc1\x2f\x1e\xcf\x63\xfd\xad\xee\x4f\x7d\xda\x57\x73\xc5\x3a\x7e\x00\x36\xf7\xe9\x0c\x9c\xf0\x89\x25\x49\xd0\x15\x5d\xaa\x4a\x62\xd7\x58\x27\x15\x47\xc5\xbf\x35\x65\x16\x73\x44\xda\x89\xb1\x65\x97\x01\x1b\x5d\xf0\x81\xd9\x71\xaf\x78\x45\x90\x61\x70\x52\x96\x15\xb2\x17\xb6\x23\x0e\x87\x61\xef\xc6\xea\x66\x5a\x2e\x04\x98\xe2\x31\x64\x3d\x87\x36\x87\xae\xba\x1d\x85\x2a\x7f\xea\x32\x37\x60\x33\x8f\x28\xac\xef\x7b\x8c\xb2\xe7\x2e\x3c\xd9\xaa\x5d\x3a\x49\xd0\x35\x35\x57\xd9\xd6\x40\xfd\xfd\xc6\xc1\xbb\xc1\xc6\x86\x4a\x63\x15\x7e\x81\x83\xc4\xd3\x99\xef\x43\x05\x44\x61\xcc\x88\x09\x82\x4f\xc3\xfc\xa0\x9e\x97\x83\x86\xde\x2d\xcf\x5d\xff\xd4\xab\x96\xae\x7e\x83\x18\x22\x73\x44\x73\x27\xa7\x3b\x08\x86\x1d\x05\x33\xee\x8b\x5c\x8c\xef\x2e\xeb\x1b\x5a\xd2\x9d\xd8\xed\x5e\xc5\x35\x35\xf4\x0f\x14\x0c\x2b\x8c\xdc\xec\xb7\xa5\xc3\x74\xc7\x7c\xfb\x12\xfd\x3d\x9d\x46\xb7\xb0\xe5\x0f\x11\xfb\x0a\xf6\x39\x0b\x1c\x42\x0c\x7b\x29\x96\x2e\xfe\xa9\xb9\x0c\xa5\x0e\x1f\x32\xd0\x35\xfa\xc8\x9e\x79\xda\x0a\x23\x38\x5e\x14\x39\x11\x58\x8a\xe8\x24\xbe\x01\xd5\x25\x12\x13\x11\x97\x29\x3e\x73\x2d\xf2\x24\x93\xad\xf7\x6b\x33\xf6\x38\xfb\x45\x7c\x68\x3c\x32\x23\x23\xa9\x08\xd7\x49\xf7\x6e\x27\xef\x0d\x5c\xdb\x4d\x3e\x5e\xd8\x71\x9b\xc9\x3a\x33\x6f\x7a\x88\x52\xea\x6a\xba\x55\x8b\x9d\x15\x8e\x4a\x2c\x33\x62\x18\xab\xe6\x21\x94\xa2\x07\x1f\xd1\x7f\x58\x2d\x7f\x33\xc4\xfa\xcd\x28\x6d\xc1\xfd\x9d\x5e\x55\x36\xcf\x8b\x12\xb7\x76\x3a\x65\xfe\xc1\x5b\x18\x28\x01\xc1\x29\xa1\x7f\x14\x54\x76\xf7\xbc\x98\x8c\x6d\xab\xad\x10\xa7\x3d\xde\xac\x22\x03\x77\x40\x1e\x30\xbc\xd3\x2b\x0a\x27\x4b\x16\xb6\xc1\x17\x6f\x58\x6e\xf5\x33\x58\xe4\xa0\x00\xad\x30\x4e\x8a\x66\x86\x5e\x69\x0d\x21\x67\xf1\x52\x67\xa9\x53\x3d\x6b\xe6\x87\x2a\x3e\x87\xe3\x6f\xde\xad\x0c\x19\xde\x3a\xba\x47\x44\xf8\xe6\x26\x4a\x9e\x8c\x55\xd2\x96\xa3\x95\x6a\x61\xe3\x48\xb9\x75\x94\x1a\x04\xb3\x00\x3d\x23\xf6\x91\x89\x88\x97\xa4\x75\x8e\xa2\x5c\x2d\x8e\x6a\x38\xb9\x01\x62\x23\xe9\x25\x95\x2b\xd9\x70\x38\xae\x40\xc0\x51\x33\x83\xdc\xcd\x06\x46\x61\xc3\xa9\xf7\xb0\x38\x6a\x9c\xda\x8a\x2f\x08\xc3\xf9\xe8\xfd\x53\x26\x85\xd9\xe9\xd4\xf5\x10\x67\x05\x68\x71\xc2\xae\x6f\xfb\xab\x68\xbb\x43\x61\x43\xfe\xaa\x99\xe7\x60\x7e\xae\x81\x81\x33\xfc\x91\x61\x84\xf4\x0f\x90\x8a\xfc\x26\x24\x3d\x24\xa8\x71\xb9\x48\xfd\xbe\x34\xe7\xa0\xbb\x31\x1b\xd0\xbd\x76\x6f\xd6\x13\x60\x39\x2f\x99\xe5\x70\x24\x61\x3e\x90\xe2\x1e\x4b\x1c\xdd\xe1\x34\x6d\x68\x4f\x86\x16\xd0\xde\x6b\x2d\x53\x6e\x43\x79\x1d\x92\x2b\x9c\x21\xb2\x27\x87\x12\x82\x41\x22\x76\x2d\x32\xff\xb1\x84\x32\x07\x0b\xc5\xa6\x1c\x28\x4e\x0d\x1f\x18\xf4\x53\xbe\xe7\xd8\xd0\x0f\xfc\x20\x73\x9b\x9c\xf5\x4b\xb8\x55\xc1\x21\x1c\x39\x86\x13\x10\xcb\x0d\xb5\x20\xe1\x6e\x11\x40\xa1\xe9\x29\xd5\x97\x52\x34\x3d\xab\x7e\xd4\xc3\x69\x83\x36\x96\xeb\xb7\xad\xf9\xf1\x96\x2b\x53\x4b\xc1\x0a\x40\xab\x9d\xbd\xad\x70\x54\xe7\x3a\x79\xab\x75\x43\x47\xc0\xaa\x73\xe0\xf6\xf9\xd2\x4b\xd6\xfa\xae\x2b\x1e\x8b\xa9\x5a\x1e\xd8\x2f\xbf\x5e\xe5\xf3\xeb\x98\x66\xa7\x8c\xeb\xa9\x67\xe3\xad\xa2\xdb\x77\x08\xaf\xf8\x47\x7c\x64\xfe\x04\xbe\xe8\xc6\x4e\xa0\xa5\xcf\x15\x36\xf1\xa3\x5f\xc3\x9b\x5e\xbc\x3f\xa1\x9f\x3b\xa4\x87\xc1\x13\x37\xa6\x46\x1f\xe5\xbf\x16\x8f\xf2\xb3\x21\x29\xf2\x05\x6f\xd9\x94\x7c\x0b\xbf\x76\x4d\x4e\xfd\x22\xc1\xc6\xb4\x93\xb8\xc0\xc3\x1d\x67\xc4\x3d\xf8\xa1\x8f\x3b\xf3\x72\xae\x36\x47\xe0\xd4\x2e\x88\x01\x99\x5f\xcc\xde\xe5\xaf\xa2\x0e\xf3\x30\x0c\xa4\x93\xdf\xac\x39\x00\xb8\x15\xaa\x0e\xe0\x9e\xfc\xce\x8f\xd4\x87\xb0\x26\x54\xdf\x2f\xff\x05\x9b\x7d\x65\x14\xaf\x98\x97\xc1\xaf\x3c\x2f\x83\xce\x91\x10\x8b\xb2\x08\xf8\xed\x87\x59\x04\xf2\xb1\x32\xda\xd7\xca\x80\x51\xdb\x7f\xfe\xa8\x80\x51\x58\xbc\x56\x0d\xa2\x3e\xaa\x26\x0e\x28\x0c\xab\x79\x5e\x1b\x3a\x12\x0b\x9c\x07\xb1\x23\x6b\xa2\x52\xc6\xe6\xeb\xec\xaa\x18\x3f\x9d\x85\x91\x1d\x39\x1d\x61\x80\x47\x7a\x75\x1a\x06\xf5\xc4\xe4\xd6\x2a\x2c\xf6\x75\x37\x00\xb3\x59\x56\xc6\x9a\x7f\x50\xcc\x7f\xc9\x86\x0f\x7c\x9f\x71\x8d\x5d\xf1\x76\xf3\xb7\x62\x71\x5e\x1b\xa0\x47\x38\xd9\x72\x35\x57\xb5\xc5\xda\x1c\x1c\x9d\xcd\x07\x42\x42\x2e\x74\x5a\x53\x23\x81\xed\x0e\x1c\x9d\x11\x84\xd1\x7c\xd2\x13\xa9\x3a\x22\xe1\x50\x39\xcd\x01\x85\x77\xba\x9e\xc8\x95\xd0\x88\x0b\xb5\xd0\x06\x15\x6c\xa7\x6b\xaa\x17\xa3\x22\xe1\x74\x8e\xfb\x5d\x4b\x63\xb1\x80\x97\x08\x8c\xaf\x5b\xaf\x16\x6c\xe7\xef\x8a\xd9\x55\xe9\x97\x95\x89\x03\x5b\x30\x63\xaf\x60\x71\xb7\xfd\x89\x05\xec\x27\x1b\x5e\x73\x5a\xc7\x7a\x49\xde\xd3\x76\x2d\xa8\xd7\x5c\x4a\x2a\xeb\x7e\x72\xa5\xfd\x39\x9e\xe5\xaa\x65\x08\xdc\x62\xab\xc8\xc4\x8c\xc0\xbd\xc6\x1b\xbc\x31\xaf\x5e\xc8\x2e\x92\x25\x30\xfd\x96\x5e\x24\x5f\xea\xbd\x39\x87\xeb\xa2\x15\x9f\xb1\x46\xc1\xd2\x96\xa2\x1a\xc1\xb8\x60\x92\xa4\x9c\x3d\x10\xae\x19\x09\xaa\xd2\xca\x28\x72\x65\x11\x15\x88\x8e\x2a\x04\xbe\x54\x68\x3d\xdb\xe0\xed\xd8\x91\xdd\x32\x9a\x44\x6e\xd1\x23\x39\x62\x43\xb2\x8d\x7a\x52\xea\x42\xab\xab\x39\x77\x52\xa0\x9a\xa9\x1b\xbb\xe2\x16\xa8\xc8\xaa\xda\x9b\xc4\x48\x3b\x02\xd1\x9d\xba\xab\x2a\x7d\x5f\x4c\x26\x4f\x72\xc5\x65\xcc\xae\xeb\xf5\xc9\x41\xee\x51\xb7\xa8\x1a\x36\x92\xd5\x1b\x53\xc5\xa8\x7d\x29\xde\x6c\xe0\x84\x32\xb7\x2f\x13\x86\xdf\x1b\x48\x5a\x9e\xc3\x7b\x2f\x5b\xc8\xa4\xde\x9a\xa7\x27\x20\xe2\xb2\xd7\xc9\x50\x1b\x8a\xde\x5e\x4e\xa7\xe6\xfb\x74\xaa\x1d\xf7\x98\x24\xfe\xf6\x1f\x54\xec\x7d\x35\xd5\x4c\x76\x5a\xd0\x9e\x77\x1f\x54\x60\xe4\x37\x37\xef\xd5\x70\x66\xef\x07\x31\xe1\x4e\x83\x14\xfe\x9a\xc5\xa6\x6a\x6e\x13\x8e\xda\xa2\xae\xb9\x40\xc8\x67\xa7\xa8\xdb\xdd\xb5\x32\xf4\x69\x59\x8c\x73\xf4\x14\xd2\x5d\x1a\x43\x40\xb1\x5a\xef\xd5\x64\xe4\xa8\x0a\xdb\x1b\xf2\x15\x95\xde\xee\x70\x60\x41\x7a\xa5\x78\x98\xde\x6c\x7a\x92\xb3\xf6\xac\x96\xc2\x24\x5d\xf2\xf5\xa7\xa9\x98\x7e\x59\x4a\xa3\xca\x48\x75\xc3\x12\x97\x67\x2c\xe5\xad\xdc\x63\xef\x5b\x6f\xd8\x3e\xfd\x3f\xe0\x36\x33\x0f\x1d\x1e\xbb\xcd\x69\x68\x70\x8c\x24\xf1\x44\xd7\xa6\xb0\x52\xdf\xa2\x4f\xa7\x46\xe9\x89\xd7\x5b\x64\x72\x4a\x65\x6e\xf0\x7a\xc8\xa1\xd7\xdc\xaa\x6b\x29\xc4\x3b\xed\x6c\x32\x1e\x8c\x4e\x83\x98\x57\x2a\x6f\x30\xfd\x46\x5c\x07\x7a\xd6\x6f\xc4\x7e\x84\xf0\x77\xc4\x98\x60\xad\x67\x60\x83\xef\x26\x49\xe3\xbb\x7c\x6e\xb9\x36\x22\xc7\x7e\xb0\xa2\x0e\x65\xf7\xb3\x8b\x92\x99\x97\x7e\xdd\xcb\x87\x3c\x97\x5d\x07\xc4\xf2\x9c\xec\x3b\xb2\x37\x62\x53\xd0\xa8\xcd\xa4\x9b\xa4\x4a\xea\x75\x14\xe5\xdf\x6c\xfc\xb3\xa5\x5d\x11\xcd\x86\xb8\x0f\x38\xa4\xa6\x80\x67\x1b\x4a\xc7\xf1\xf1\xc6\x14\x4a\xc5\x6a\x75\x9b\x24\xe9\xb1\xdd\x07\xbb\xa9\x04\xe1\xf3\xd5\x24\x7f\x05\xbb\x2a\xe1\xed\x64\x05\x9e\x66\x8b\x3d\x3b\x7d\x99\xe7\x63\xf0\x3e\x81\xc4\xdb\x93\xe7\x82\x50\x39\xa9\x13\xb9\xfa\x02\x61\xaf\xac\x21\x55\x48\x52\x02\xf2\x08\x52\xbc\x22\xdb\x1a\x14\xdf\x78\x59\x46\xe0\x5b\x2f\xec\x5d\xd1\x32\x88\x94\x37\xbc\x5a\x41\xdc\x6b\x3a\xa4\xa8\x7f\x8d\xcb\xbd\xd8\xbd\x62\x25\x61\x91\x5e\xfa\x4a\xe4\xec\xf1\xb4\x5b\x55\xac\xe6\x84\x68\x41\xfb\x8d\xb0\x7b\x76\xb5\xb8\xbc\x5a\xdc\x95\xd2\xd7\x89\xf6\xb5\x9a\x31\xe4\xad\xaf\x87\x87\x81\xce\xfb\x7d\x0e\x04\x1a\x73\x76\xa7\x95\x0a\xfd\xb7\x52\x6d\x82\x92\xae\x7e\x61\x35\xb5\x7a\xad\xdd\xf2\xbd\x75\x68\xdd\x01\xe3\x04\x7c\xce\x5d\xfe\x39\x77\x37\x6f\xa5\xcf\xb3\x2c\x62\x63\xc9\xf3\x47\x07\xa6\x64\x37\x66\x86\xc7\x46\x66\x61\x7e\xb5\x38\xbf\xce\x28\x69\x7d\x1d\x75\xab\xf1\x77\x9a\x14\xe5\x01\x66\x26\x46\x81\x01\x58\x1b\x82\x57\x73\x71\x3c\x9b\x4d\xf2\xd1\xd4\x06\x48\xa2\xac\x4a\xb8\xa2\x31\xa7\xb9\xf0\xa7\xad\x6b\xd7\x7e\x67\xd4\xb4\x6e\x49\x9d\xb1\x7b\xf7\x58\x8b\xd8\x0e\x26\x1a\xa1\x33\xe0\x40\x39\x78\x11\x09\xb5\x43\x6d\xac\xd6\x1a\x70\xfa\x45\xb9\x5e\x0b\xce\xea\xaf\x99\x57\x16\x4f\xdf\xcd\x3a\xe0\x67\x75\x1c\xaf\xab\x55\xa0\xb0\x6b\x5f\xc0\xa8\x1b\x53\x6d\x26\xa5\x9d\x60\x42\xc2\x91\x1f\x8c\x8a\x52\x2b\xed\xa1\x88\x03\xee\x41\xa2\x8e\xbe\xd0\x49\x36\x93\xae\x5a\xae\xcd\x6d\xe7\x29\x93\xa7\xc9\xbf\x63\xea\xd0\xb0\x1c\x8c\x8f\x7c\xf3\xe8\x49\xa0\xbb\x95\x1b\x2b\x30\xac\xc0\x40\xb0\x6d\x41\xff\x42\xe5\xb3\xbb\x2e\x19\x93\xce\xa9\xc7\xbb\xe2\x7a\x61\x05\xa1\x17\x22\x0c\x5e\xcd\x12\xc3\x0b\x09\xec\x63\x9e\x4a\x11\x0a\xcf\x76\xd2\xc4\xcd\x73\xc7\xc9\x6c\x8b\x55\xc3\xf6\xdf\x2b\x6d\x60\xda\x1a\xb4\xd3\x6c\xaf\xaf\xc3\x65\x8d\x3a\x7c\x9d\x2d\x3f\x5d\xeb\x6e\x0d\xa4\x62\x3e\xa8\xf6\xe9\x20\x06\xe2\xa8\xac\xa3\x0c\x55\xc8\x73\x65\x14\x5a\xd7\x38\xa3\x0e\x22\x43\x04\x17\x39\x32\x97\x25\xa1\x91\x40\x54\x27\xc4\xad\x9d\x05\xad\x5a\xa9\x27\xe0\x74\x2a\xc6\x2e\x3e\xf4\xb0\x45\x92\x19\xb1\x4a\x13\x1d\x76\xbe\x6e\x6e\x4c\xa0\xdf\x16\x43\x50\x3c\x33\xbc\xcb\xa5\x4d\xd4\xaf\x39\xf3\xd0\x52\x3d\x43\xa2\x8e\xc4\x2c\x78\xa1\x7e\x3f\xe9\x3c\x90\xee\xa1\xca\x70\x78\x6c\x48\x10\x77\x5f\xf5\xa5\xaf\x01\x82\xd7\xd1\xdd\x40\xa5\x15\xbe\xef\x35\xf0\x39\x35\x0c\x8e\xac\xa4\xe6\xc1\x59\x8e\x17\x31\xb5\xf1\xa0\x71\x6a\xec\xb6\xbf\xb7\xf1\x7d\xcd\xcc\xba\x8d\x94\x1c\xc6\x49\xd1\x5c\x88\xb8\xf6\x38\x77\x33\x2b\x73\x49\xe5\xae\xc0\x10\xcc\x83\xb8\x2f\xda\x2f\x1d\xcb\x36\x14\xbb\xe0\x21\x0e\x27\x3b\x4c\xa0\x9c\x79\xee\x0f\x8a\x15\x43\xcd\xd3\x47\x47\x03\x29\xc3\xb4\x19\x0f\x8f\xc8\xca\xc9\xa6\x90\xe9\x1b\x29\x92\xdb\x8e\x6e\x64\xc9\x5a\xb2\x41\x6c\xfa\xda\xa8\x54\xbf\x45\x7d\x48\xc9\x27\xb3\x13\xea\x8a\xbe\xad\xea\xe7\x19\xfb\x0c\xee\x83\xf4\x88\x8d\xf6\xe0\x98\xe3\x8a\x02\x1b\xb1\x6c\xbc\x94\x63\xf0\xc7\xce\xe8\x42\x4b\x2b\x31\x55\xa8\xcb\xe2\xeb\x07\x7a\x58\x6a\x14\xc4\x3d\x96\x30\xaa\x49\xa3\x97\x26\x60\xce\xc5\x9e\xfc\x21\xbf\xae\x13\x06\xea\xe2\xab\x86\x7f\x68\xab\x3a\xca\x74\xa1\x81\x3f\xb0\xc7\x16\x0a\x2f\x57\x78\x5f\xb7\x69\x55\xd0\xc6\xb9\x27\xce\xce\xa4\x68\xbb\x11\xda\x88\x15\x35\x0e\x8a\xad\x40\x71\x1b\x8c\x40\x46\x62\xa8\x5f\xe7\x20\x90\x6e\x2b\x32\x4a\xeb\xe3\xe3\x22\xd7\xe7\x34\x14\x39\xcb\x82\x1a\xf1\x58\x89\x1d\x50\xf6\xe7\x20\x26\x1b\x70\x34\x2d\x2c\xed\x97\x5b\xde\xa3\x09\x01\x09\x08\xce\x32\x1d\x49\xbd\x36\xea\x92\xec\x5f\x98\xa4\x0e\xa5\xe2\x54\x4c\x85\x67\xad\x12\x51\x64\xd5\x7c\xa1\x39\x3e\x5c\xcd\x23\x31\x6f\xfe\x60\xe2\xf6\x14\xb7\xaf\x45\x1e\x61\x36\x28\x7c\x9c\x9c\xb6\x93\xba\x4a\x6a\xca\x01\xe7\xf5\xfb\x07\x0a\xb2\x6b\x10\xa7\xb2\x55\xeb\x63\x60\xe0\x55\x0d\x8a\x63\x2d\x17\x42\x20\xcf\xbf\xd6\x2a\xb8\x71\xf2\x5d\x67\xa2\xe0\x02\xc7\x35\xc7\x33\x22\xc9\xd0\x06\x8a\x5f\xac\x17\xa0\xb0\x8e\xc4\x6e\xf1\xc1\x15\x6c\x6b\xb9\xc9\xb3\x71\xb6\xb1\x41\x36\xae\x57\x8a\xec\x11\xb0\x88\xb8\xa3\xce\x2d\x68\xf7\x30\xc1\xc4\x04\x8f\x23\x27\xff\x1e\x5a\xa8\x32\x9b\x03\x19\x6f\x90\xcf\x28\x33\xdc\x8b\x90\x90\x97\x1d\xd5\x7c\xea\x94\x22\xef\x16\xd4\x01\x29\x5c\x5e\x70\x44\x18\x04\xce\x92\xfb\x1b\xab\xad\x4d\x65\xa3\xbd\x5f\x66\xc5\xb4\xa3\xf0\xaa\xdb\xdd\xb8\x9f\xdc\xef\xea\x78\xbe\xee\x18\x2a\x3d\x9d\xa8\x40\x09\x2f\xda\x1d\x04\xe8\x6a\x07\xe6\x6c\x62\xc2\x10\x56\xe5\x05\x52\xf8\xed\x0e\x8f\x69\xac\x15\xfe\x4a\xcb\x91\x06\x0e\x4b\xcd\x42\xe4\xe8\xb2\x7e\xec\xd8\x2e\x3d\x81\x95\x4a\x1e\x7b\x87\x56\xdf\xe3\xbd\xbc\xca\xba\xa9\x31\xab\x7c\xc5\xb6\xcf\x5d\xc7\xc9\x60\x28\x00\x31\x59\x9d\x06\xf3\xe4\xa0\x1d\x52\x55\x98\xe4\x17\x24\x72\xfa\xa2\x93\x1c\xc2\x38\x36\x61\xbd\x61\x2e\x36\x93\x0d\x5a\xd7\x8d\x24\xbb\x6f\x7f\xdf\x3f\x32\x4e\x5d\xf3\x8b\x9b\x1b\xf8\xeb\x69\xd4\x4a\xf5\x89\x5b\x08\x46\xf9\xfe\xfa\x13\x4b\x7e\x26\xd7\x3b\xbe\xaf\xa8\x0e\x34\x86\x2e\xa4\xf4\x4b\x61\xa5\xb9\xaa\x7b\x7a\xb6\xd7\xd7\xef\xc9\x36\x8d\xed\xfe\xfa\xba\xd7\x72\x86\x02\x9f\x8f\x97\xf8\x08\xa3\x57\xd6\x4c\xbb\xb9\xd1\x09\xd3\x2b\xd8\x90\xd0\xa7\xa2\x7c\x39\x7a\x69\x9c\x4f\x9b\xfd\x01\x63\xd9\xb8\xdf\x6e\x7f\x50\x61\xdc\x0e\xe6\xcd\x04\xd3\xd6\xd7\x75\x7b\x8e\xd0\xc6\x6f\x81\x7e\x41\xe9\x0a\x5f\xef\xc5\x36\x4d\x6a\x16\x1e\xcb\xe9\xdf\xb0\x0d\x99\x44\xa2\x38\xd0\xe8\x22\x74\xa0\x1e\xbb\x61\xeb\xa8\xe0\x93\x1c\xc2\x38\xc2\x23\x64\x27\x10\x74\xe0\x35\x76\x13\x1a\x4f\x8e\xa4\x1d\x9e\xd5\x2c\xf8\x37\xb7\x5a\x43\x90\x34\x93\x10\x12\x25\xdd\xba\x20\x4c\x4b\x4b\x4d\xc1\xd1\x31\xbf\x2e\xe0\xad\x0a\x50\xcb\x12\x4d\x1a\x98\xe2\x1d\x91\x03\xb3\xcf\xd7\xa4\xeb\xad\x0e\x31\x64\xcd\xdc\x7a\x55\x3d\x29\xfb\x9c\xd0\x00\x46\x0f\xdc\x21\x08\xe8\x95\x00\xf9\x4b\xb3\x8e\x16\x21\x31\xcf\xf2\x67\xf0\xb5\xca\xcd\x80\x16\x6b\x90\x24\xd5\xed\x3f\xde\xcd\xb0\xfa\x94\xfa\x67\xba\x66\xbc\x17\xca\x44\x60\xe3\xae\x77\x75\x4e\xb7\x72\x09\xa9\x33\xc9\xda\xb5\x87\x5a\x72\x4b\x58\x59\xbf\x91\x7d\x7c\x4f\x68\x99\x5c\xea\x45\x54\x57\xb7\x98\x19\xf1\x6f\x69\x02\xf8\x21\x8d\xd5\x35\x45\xa7\xd4\x2a\xe2\xeb\xf5\x17\x64\x5b\x50\x04\xb5\xf3\x1c\xe2\xd0\xad\xbf\x8f\x98\x2b\x70\xfc\x4a\x12\x7d\x1a\x88\xdd\x55\xaa\x98\x78\x5a\xe3\x5a\x16\x22\x97\xf4\x29\xe0\xa3\xd5\x00\xa9\xb3\xc5\xe3\xc7\xb5\x84\xda\xc2\x10\xb1\x96\xdf\x40\xb0\xfb\x5c\xf2\x36\x94\xdb\x5a\x11\xb8\x04\x4f\x5b\x90\xe9\xe5\x05\x07\xd9\xaa\x26\x2a\x8d\x29\x36\x0b\x05\xed\x3c\x78\x86\x1b\x8d\x29\xcf\xa6\x0f\x34\x78\xa6\x93\x58\x8a\x6e\x92\xc1\x33\x64\x55\x35\xaf\xec\x2a\x53\x08\x77\x10\x74\x4e\xdf\x72\x39\x34\xc1\x15\xe4\x95\xcf\x67\xd3\x55\x72\x25\x62\x43\x8c\xa8\xff\x5c\xfb\x67\xd0\x0a\x44\x25\x40\x99\x1a\x15\x81\x67\xd1\xd4\x41\xcc\xc7\x41\xc4\x0e\x7c\xe0\xb7\xaa\xed\xac\x8b\xa8\x92\xb9\x23\xf7\xca\x9c\x2f\x07\xce\x93\x90\x65\xde\xb7\x03\x6b\xe5\x3a\x99\xfd\xe9\x40\xe8\x9b\x5a\x56\xc4\xdb\xb2\x57\x99\x4c\x7e\x04\x63\xb3\x87\x4c\xe6\x7e\x36\x40\xda\xe3\x28\xab\xcb\x08\x4a\xf3\xa9\x23\x59\xe2\x36\xaa\xf4\x36\x48\x79\xa3\x36\x7d\x4c\xf7\xbd\x49\xc3\xbe\x95\x5e\x7c\x4c\xff\xbe\x46\xb3\x3c\xd2\xf3\x88\xc2\x7b\x10\x29\xdd\xf5\x4f\x1c\x84\x63\xff\x57\x50\x38\xff\x68\xbd\xee\x62\x0a\xf6\x23\xa1\xa7\x33\x4e\xff\x5c\xde\xce\x7c\x3d\xee\x2f\x85\x1e\xb7\xaf\x3b\xfe\x95\xd0\x1d\xaf\x57\x94\x8d\xeb\xc9\xda\x87\x97\x40\x2b\xdc\x66\x0d\xf4\x0b\x52\x10\xcb\xfc\xcf\x7e\x2c\xf3\x86\x48\xeb\x11\xc5\x70\x75\xba\x8e\xca\x4c\x57\xd0\xc3\x4f\xab\xaf\x66\x51\x4e\x78\xeb\xb0\x9c\x19\x9f\x19\x74\x5c\xf4\xc8\x8b\x99\xf9\xa9\xae\x07\x6f\xf0\x4d\xf8\x09\xba\x21\xd1\xf2\x33\xe4\xda\xf0\x70\x37\x5e\x9a\xe8\x44\xaa\x02\xf9\xc9\x20\xaa\xb7\xc0\x38\x11\x95\xac\xac\xba\xec\x0b\x89\xb6\x79\xd9\xe2\x0c\x3d\x50\xe2\xaa\x8c\x3c\x59\xa8\x96\x3a\xe2\x4c\xa9\xe3\x6a\xaa\x12\x5a\x8a\xe4\x69\x80\xb5\x01\x6d\x5b\x5e\x3b\x1e\xfb\x19\xc8\x6d\xbb\x37\x37\xb5\xba\xac\x30\xa8\x3e\x49\x48\x99\x6f\xf0\x2b\x77\x31\x81\x1e\x2f\x03\x93\x3f\x08\xdb\xa5\x9d\x19\x5d\x80\x29\xa9\x37\x1f\xaf\xb5\x93\x82\xcc\xab\x9e\xdc\x17\x74\xba\x6e\x0c\x62\x7c\xfa\x05\x29\xab\x4e\xbd\xfb\x14\x8a\x69\x73\x9a\x08\x5e\x4e\xfd\x29\x71\xdb\x37\xf7\x00\x27\x99\xb9\x26\xb7\x62\xff\xe1\x26\x98\x83\x34\xac\xc3\x93\x73\xf9\x3d\x0d\xaa\x70\x4b\x57\x2c\x7b\x09\xeb\x1d\xc4\x72\x8c\x47\x29\x38\x7a\x1c\x87\x0f\x31\x8f\x52\x00\xa4\x2e\xc4\xb8\xaa\x68\xb6\xdd\xc3\x9f\x9d\x07\x7f\x87\xfa\x3a\xbd\x6e\xa7\xf7\x1f\xdd\x2f\x1e\x90\x8b\x5d\xc8\x51\xbb\x57\x41\x01\xdf\x07\x00\x56\x9d\x35\xa1\x89\x42\x57\x51\x08\x78\xb8\x7d\xd4\x5b\xcc\x9e\xcf\xde\xe7\xf3\xdd\x51\x99\x77\xba\x1b\x94\xfc\xf0\x88\x1d\x47\x40\x3d\x47\x72\x08\x94\x42\x2e\x0b\xd0\xeb\x0a\xd7\xd7\x13\x8f\x75\x1a\xde\x52\x00\xf2\xe4\x04\x46\xbe\x0e\x82\xf1\x6e\x87\x98\xf4\xf8\x43\x7b\xab\x13\x94\xfc\xa7\x17\x18\x8b\x13\x94\x82\x65\xe9\xec\xac\x66\x61\x13\x17\x2e\x51\xf7\x03\xb7\xa0\xfb\x69\x94\xfa\x17\xbe\x86\xa1\x76\x4c\x6f\x07\x48\x09\x95\x87\x88\x6e\x7d\x41\x3f\x23\x84\x21\x52\xcc\x22\x1f\x84\xd3\xf1\x6a\x74\xe1\xbd\x01\x54\xba\x1f\xc6\xbf\xa3\xe9\xb0\xd6\x8f\x42\x59\xa8\xc5\x6a\x37\x0f\x0f\x0a\x1b\xc0\x9f\xec\x20\xa4\xe6\xa7\x3d\xbb\x84\x93\x8f\xa7\xf3\xd9\xc5\x5f\x0f\x5e\x3c\x67\xa0\x8e\x7d\xb3\xc4\xd1\x99\x49\xd3\x42\x94\x70\x5b\x64\xce\x97\x5e\x06\x47\x89\xb1\xed\x43\x84\xe0\x1c\x07\x9e\x78\x9a\x14\x5b\x8c\x12\x8a\x47\xf9\xec\xac\xd7\x38\xd6\xf5\x8f\xcd\x36\x7c\xec\x38\x3f\xbe\x6a\x36\x08\x8d\xb1\xb0\x94\x36\x99\x41\x9c\x9d\xbb\x71\xa7\xbf\x05\x0b\xf9\x9b\xb0\x80\xcf\x71\x12\x56\x71\x7e\x4d\x3e\x6c\xeb\x6d\xa2\xbe\xba\xa5\x49\xd4\x57\x51\x4e\x6f\x34\x74\xbd\xca\x5a\x3e\x4b\x2d\xe0\x5f\x1d\x77\x4e\xe4\xa9\x90\x0b\xc4\x9d\x39\x85\x4f\xe6\x31\x67\x4d\x84\x1a\x19\x4d\x8e\x3a\x2f\xcf\x48\x24\x87\xf6\xff\xaa\xd6\xd9\xfb\xd7\xf3\xe2\xa2\x58\x14\xef\x54\x12\x3e\x17\x0a\x0f\x09\x83\xe2\x1b\xcf\xf7\x23\x6a\xca\xb2\x31\x96\xeb\x3e\x32\xf4\xf9\x78\x73\x73\xcf\x6b\xe0\xb6\xfa\x3e\xaa\xce\x9b\x1b\xdc\x80\x2d\x24\x4b\xec\x86\xd2\x13\x2f\x85\xba\x88\xae\xa4\xf0\x2a\x74\xe5\x83\xe2\x27\xe9\xa0\x35\x6a\x77\xbf\x52\x86\x6d\x55\x76\x83\x9a\x4c\x67\x55\x26\xad\x0f\x8b\x65\xe9\x83\x57\x48\xc8\x7a\x91\x36\x9c\xe5\xd1\x17\x2f\x7d\x00\x39\x2f\xd7\xd6\x60\xee\xc0\xcb\xe6\x1d\xd3\xf1\x8a\x01\x81\xa2\x36\x1c\x89\x8a\xc1\xcb\xcc\xfc\x72\xee\xed\x6e\xc7\x32\xf7\xb3\x0d\xd5\xa3\x48\xaa\x77\xb4\x82\xbf\xf3\x1d\xbd\x75\x40\xa0\xe0\xc2\xdd\x60\x6e\xae\x7b\x63\x19\xd8\x52\xfc\x6e\x04\x43\xa3\xf8\x61\x03\x30\xc7\x4a\x71\x8d\xe7\x6d\x4d\x97\xd7\xed\x0c\xe7\xd1\x43\x7c\xd4\xb0\x5d\x8a\x2a\x6a\x44\x11\x35\xb6\xf7\x81\x75\x3c\xc0\x5d\xcc\xe6\x97\xe7\xff\x52\x52\x8a\x3f\x8a\x59\xfc\x47\x1f\x95\x3f\xb0\xe3\xe6\x1f\xee\x62\x13\x7f\x17\xb9\xc8\xa3\x06\xb9\xc8\x97\x0d\x36\xf5\x5f\x39\xc1\xa9\x6a\x65\x16\x11\x9f\xf0\xfc\x4a\x12\x88\x4b\x38\x9d\x6b\xd4\x9b\x29\x8c\xcf\x03\x22\x13\x2f\x1f\xcb\xa0\xe6\xb5\xcd\x58\x25\x3a\xc1\x49\x0a\x2d\xc8\x01\x7f\x7c\x50\xd8\xa2\x81\x65\x7d\x60\x3b\xdf\xc2\xbe\x7e\x36\x0d\x6d\xea\x67\xd3\x55\x06\xda\x5f\x46\xd9\x91\xa8\x38\x09\x10\xd5\x95\x27\x8d\xc6\xe3\xb8\x3d\x3f\x88\xb3\x44\xe6\x4a\xfb\xff\xaf\xe3\xf6\xff\xaa\x8a\xef\x72\xc5\x75\x34\x94\x0a\x40\x44\x5b\xab\xca\xc6\xa0\xc8\xfe\xfe\x85\x26\x54\x81\xa9\x7e\xcf\xe6\x79\xa0\xa1\x95\xbd\x0b\x6e\x8c\xe0\xe0\x61\x0f\x81\x5d\xd4\xd6\x17\x16\x5b\x22\x8d\xda\x85\xbb\xf7\x6f\x11\xbb\xcf\xbf\x98\x0f\xb4\x12\x27\x20\x3e\x5c\x8d\x9d\x7c\xdf\xc8\xdc\x8b\x8c\xea\xcb\x59\x92\x6e\x83\xc1\x34\x1d\x3e\xd6\x4c\x7a\x58\x94\x3f\x15\xf3\xc5\xd5\x68\xd2\x47\xcd\xe1\xc0\x6c\x3a\xd6\x56\x42\xe2\x22\x01\xe5\x7e\x6a\xdb\xea\x9a\xb2\xc3\x9c\xa7\x15\xb5\x7e\xb5\xc5\x35\x07\x8c\x62\xd5\x59\xbd\xc8\x65\x27\x1a\xfa\x47\xdf\x58\x1d\xe3\x6a\x9e\x40\x34\xc5\x61\x2a\x62\xef\xb6\x69\x62\x9a\x45\xae\x72\x7f\x76\x35\x3f\xc9\xd5\x4c\xcc\xa6\xf9\xdf\x30\xec\x30\x17\x87\x89\x9c\x02\x73\x25\xaa\xae\x20\x2e\x90\x6e\x7b\x38\x72\x29\x8c\xd3\x09\x11\x9b\xbd\xc5\x80\x56\xf4\xb8\x5d\x3f\xf1\x92\x5d\x99\x37\x6e\xc7\xf4\xb9\x4a\x87\xf0\x06\x33\x5f\x20\x85\x7b\x5e\xbc\x15\xf1\x90\xb8\x9d\xee\xb2\x4a\x6b\xba\x2a\x60\xd5\x25\xe0\x78\x74\xf2\x56\x3f\x81\xba\x3b\xd1\x5f\x14\xf4\x27\x99\x0c\xf9\xfb\x6f\xc5\x64\x42\x61\x9c\x12\x78\xf4\x73\x5e\x50\x1b\x0b\x9a\xf0\x4f\xaa\x9c\xee\x80\xbd\xcf\x77\x07\x01\x41\xb9\x45\x3f\x04\xc9\x6b\xdd\x89\xca\x15\x92\xf6\x5d\x82\x91\xba\xa2\x19\x3f\xd7\xb3\xdd\xb4\x53\x8b\x9a\x18\xa4\x94\x45\xe6\x6d\x72\x01\x45\xa6\x74\xf1\x20\x28\x00\xa7\x30\x0d\xe1\x4e\x8b\x48\x48\x46\xb6\x23\x02\x8b\x08\x5b\x42\x0b\x28\xad\x5d\x13\xb2\xb1\xca\xe0\xc4\xeb\xd0\x1d\xcc\xd5\x82\x26\xd1\xca\x44\xe1\x24\x2b\x0f\x95\x1d\xda\x22\x91\xba\xd2\x48\x05\x26\x64\x89\x8e\xd0\x5c\x15\x26\x34\x33\xbb\xf7\x9d\x82\xa7\x31\x49\x04\x4b\x67\x4c\x72\xef\x61\x74\x2a\x1d\xa9\x02\x84\xe4\xe9\x38\x74\x09\x00\xcf\xfa\xce\xde\x70\xec\x81\xbc\x3d\x2d\x26\x38\xd8\xee\x14\xd7\xc9\x4d\x04\xd7\x6e\x4e\x82\xf0\x1d\x20\xf6\xa5\xe3\x46\x60\xa8\x70\xd0\xe0\xc8\x2e\x44\xde\x53\xbd\xd4\x27\x8e\x3a\xf1\xd4\xbd\x66\xaa\x08\x34\xc6\xe4\x33\x70\xfd\x78\x44\x56\x31\x4e\x08\x10\x59\x31\x27\xf2\x6c\xfa\x04\x2e\x73\x56\xd1\xe2\xb4\xbb\x3c\xed\xb0\x99\x3c\xda\x5f\xe6\x63\xf4\x28\xe4\xb3\x8a\x32\xcf\x25\x18\x1f\x62\xd1\x3e\xca\x7c\x72\x9a\xf9\x77\x7c\xbf\xce\xd6\xda\x24\xc6\xfb\x87\x70\xfa\x4c\x89\x97\x5a\xc3\x9c\xc3\xe4\x69\x8d\x7f\x56\xe2\x76\x7c\x98\xc8\x27\x28\xe9\x4f\x44\x91\xce\x9f\xe2\x6f\x4b\x08\x65\x07\x10\x55\x68\xf1\x60\x7c\x95\x7b\xdb\x37\xbd\x13\xf1\x83\xce\x63\x6d\x15\xc2\x23\x04\x35\x0f\xff\x6c\xb0\x59\x48\xb0\x83\x0c\x77\x0c\x18\x27\x10\x3c\x60\xec\x4e\xf2\xd1\xfc\x0d\xdb\x73\x3a\x07\xe6\xe4\x54\x60\xa2\x5a\x78\xb1\xb0\xd6\x73\x75\xb6\x0c\x48\x64\xe0\x4c\x83\x08\xb7\xdf\xab\x2a\xf5\xc9\x64\x50\xb0\xd5\x44\xc4\x47\xab\xed\x51\x77\x9d\x51\x8b\x56\xb1\x98\xe8\xf4\x0f\x4e\x46\x7d\x9f\xea\x2b\x76\x3a\x28\xcb\x69\xd9\x72\x20\xd1\xf7\x30\x26\x8d\x60\x48\x2a\xb1\x15\x82\x36\xfa\x03\x8e\xd2\x29\x73\x3e\x33\x99\x92\x89\xc1\x9c\x11\xb1\x5a\xbe\xb7\x73\x91\xc4\xe7\x48\x91\x63\x33\x2d\x49\x74\xb6\x12\x85\x27\x69\x6c\xb9\x6f\xdf\xcb\x48\x2d\x9f\xba\xa3\x91\x5d\xd4\x77\x82\xec\xc7\x78\x84\xb6\x6b\x96\xca\xd1\xd8\xae\x85\xec\xc3\x9d\x2a\xb4\x51\x3f\xf5\x7c\x37\x8d\xa4\x96\xf1\x6a\x8d\x80\x91\x71\x44\xd8\xb1\xdb\x56\xe7\x8e\x02\x76\x55\x2b\x3c\x91\xdc\x8a\x04\xd0\x3b\xf8\x39\xa9\xdd\x9d\x69\xdb\xbb\xa9\x30\x99\x36\x52\x73\xb9\xaf\x62\x91\x0b\x8c\x27\x52\x79\x30\x0c\x84\x0f\x02\x3c\xe0\x22\x12\x73\xa7\x13\x56\x62\xee\x1c\x4a\x0a\xbf\xc9\xd7\xc1\xce\xa2\x53\xd8\x07\x2b\x97\xcf\x99\x45\x6c\x96\x8e\xec\xa1\xd6\x68\xfe\x07\xf3\x19\xa3\x53\xfe\x35\xd3\x9c\xbe\x83\x7a\x23\x7f\xf2\x19\xef\xae\x8b\x3c\x1d\x20\xea\x15\x7e\x7b\x27\x8c\xee\x41\x07\xc3\xba\xc7\xf8\x2a\x71\x3a\x44\x8e\x33\xed\x7a\xc9\x2c\x7f\xd3\x61\x42\xd7\x26\xdd\x21\xd2\xf1\x15\xb1\x43\xe1\xfe\x16\xd5\x60\x61\xb3\x0f\xc7\x22\x07\x65\xd2\xad\xed\x1b\x5d\x3b\xc4\xa8\x1d\xa3\x67\xae\xf8\xf0\x68\xe0\x1b\xf8\x88\xfa\x36\x12\x78\xd7\x27\xbd\x8e\x81\xab\xbd\x8c\x3f\xe9\xf1\xa2\x8a\x61\x87\xb4\x7d\x33\x8f\xcd\x91\x41\x6c\xc7\xb4\x71\xb8\xde\xa8\xe1\x1a\xe9\xde\xca\x16\xed\xfd\x52\x0b\xe3\xb0\xa6\xc0\x82\xe6\x13\xd8\x22\x59\x8f\x1f\xeb\xeb\xae\xe7\x8b\x33\xe2\x48\xde\xcc\xde\x97\x7e\x96\xa7\xe6\x01\xb7\x64\xc1\xbf\x84\xf6\x1a\x3d\x83\xab\x31\x6b\x25\xfb\x10\xc0\xba\xda\xaa\x78\x42\x62\x56\xc1\xa5\x6a\x06\x3c\x11\x46\x4b\xf2\xb1\xc4\x88\x84\xf4\x0f\xe7\x29\x45\xf2\xcd\xe2\xb7\xeb\x85\xd8\xa0\x71\x66\x7f\xb6\x79\x66\x99\xcc\x4e\xec\x2b\x4b\xed\xb3\x49\x1b\x39\x7d\x93\x7c\x1a\x7c\x65\x7b\x25\x14\xdb\x76\x32\xa8\x79\x25\x17\xaf\x9f\x27\xbc\x39\xcb\x85\xf5\x18\xa1\x52\xf1\xbb\x6a\x33\xc0\xcb\xd1\x7c\x51\x8c\x26\x2d\xde\xcf\x7d\xaf\xc5\xed\xf5\x35\xc5\x83\xcf\x6f\x1d\x9b\xbe\xdd\x23\x79\xe8\x38\x16\xdf\xc8\x31\x79\x85\x88\xf8\x51\x54\x42\x7c\xec\xbb\x59\x35\x5e\x56\x57\x2d\x29\xaf\x87\x8c\xe0\xf4\xb9\x9c\x3e\xb4\x55\xf7\xd0\x28\x22\x29\x8c\x8e\x69\x60\xdc\xac\x0b\x0b\xcb\xe0\xf2\x7a\x3a\x7d\x25\x87\xc0\xf5\x91\x21\x6e\xd4\xe2\x9f\x03\x68\xbd\xb2\x96\x7b\x40\x63\x5e\x53\x39\xf9\x74\xad\xeb\x11\xc0\x55\xbd\xcf\x06\x39\x9b\xe4\xb4\x41\x5b\xe9\x32\xed\x8a\xb5\xe2\x2c\x81\x73\x34\xae\x76\x71\x2a\x3c\xae\xac\xac\x1a\xa7\x06\x52\x00\xaa\xcc\xd0\x9f\x0a\x1b\xb3\x3c\x50\xec\x97\x22\xc7\x0b\xc8\xc9\x0c\xc8\xa1\xf9\x25\x02\xb0\x35\xe6\x66\xc9\x30\xd9\xd0\x15\x35\x68\x7c\xa6\xa0\x60\x3a\x2f\x81\x06\xd0\x49\x6d\xeb\x22\x83\x2a\xe8\x90\x61\xf4\x50\x2e\xa5\xbf\x9e\xce\x10\x6b\x3a\x5e\x0d\x5d\xc5\xc5\x68\xfd\x75\x13\x09\xf8\x9e\x2e\xb4\xbe\x1e\xad\x83\xbc\xc1\x04\xae\xed\x6f\x6e\xc2\xba\xea\xb8\x3a\x39\xb4\xaa\x1d\x41\x2c\xcf\x47\x73\x78\xbc\x3d\xfc\x28\xc5\x9f\x26\x9a\xd4\xf0\xde\x14\x10\x93\x55\xe4\xc2\x84\xe4\x5c\x9c\x97\x9d\x98\x41\x99\xde\xf5\x61\xa4\x2f\x90\xad\xd8\x64\xfc\x0a\xf9\x79\x2f\xa2\xa9\x47\x5b\x6c\xc8\x0f\x63\x7a\x12\x9a\x85\xa1\x72\x89\xd0\x4c\x71\x18\x6e\x11\xc6\x75\xd1\x6a\x79\xf4\x42\xdf\x45\xf7\xe1\x2e\x87\xcf\x6f\xed\x5c\x7d\xd5\x43\xf2\x2a\x84\x30\x6e\x12\x63\x07\x48\x5b\x8a\x6f\x26\xd9\x57\xef\x63\x92\x1b\x37\x86\x6c\xb5\x7e\x6c\x9a\x13\xdb\x5f\xa1\x9e\x4a\x33\x2f\xf1\x19\xf5\xf2\x56\xae\x7a\xcd\x82\x46\xd6\xbf\x8d\x66\x80\x6b\x31\xe5\xf3\x21\xae\x05\xd5\x5d\xd8\x11\x4f\x7b\x6e\x15\x0e\x5d\x39\x11\x72\x02\x77\x43\xed\xf4\xe7\xac\x62\x7a\x70\xbe\x08\xcf\x67\x34\x0b\xd6\x69\xc1\xd5\x22\x55\x77\x04\x73\x1d\x8a\x5d\x26\xbf\x7d\x68\x11\xd9\x75\xba\x40\x52\x85\xf3\x88\xdd\x99\x70\x72\x66\x7c\xad\xe9\xcb\x93\x17\x29\x14\xbc\x17\xb2\x7f\x10\x1d\xc1\x45\x5d\x5a\xea\x22\x8f\xfa\x9a\xd7\x6e\x87\xf4\xf6\x51\x55\x56\x9a\x71\xbb\xa5\x93\x26\x98\x8d\xa8\x1c\xd4\x70\x41\x62\x79\x5a\xed\x40\x52\x2e\x6a\xa0\x9e\xde\x35\x87\x9d\x4b\x7e\x8a\x08\x2a\xa8\x8d\xd5\x2a\xcc\x88\xd4\x26\x6b\xa1\x42\xb6\x22\x2a\xc9\x9d\x2e\x6c\x7f\x38\xc5\xaa\x4f\x73\x14\xbd\xc2\xe5\xfc\x5c\x31\x3e\x6c\xf8\xcc\x40\x65\xc9\x66\x21\x64\x24\xd4\x44\x44\x63\x29\x50\x1b\xf9\x93\x0c\xac\x51\x1b\x01\xe3\xcf\xb1\x00\x18\xf5\x5a\xca\x7f\xb9\xa5\x96\xf2\x5f\xa2\x54\x16\xa7\x97\x63\x24\xac\xd2\x6b\x7a\xfe\xea\x6f\x7b\x6f\x76\x77\xf6\xf7\x86\x3b\xc3\xff\x95\x3d\xf8\xfb\xe1\x68\xf3\x9f\x47\x0f\xd2\x9f\x9e\xed\xfd\x6d\xf8\xfa\xcd\xde\xd3\x67\xff\xad\x12\x01\xf1\x7f\xee\x3d\xf0\xa2\xf0\x6a\xb7\x13\x40\x1f\x77\x67\x11\x57\x3a\xa1\xa9\x92\x8e\xae\x1e\x86\x5b\x6f\xb6\x8b\x01\x10\xb2\x3f\x71\x02\x88\xbe\x63\x67\x6d\xc6\x5c\x25\x12\x37\x95\x4d\x68\x58\x2c\xa6\x41\x37\x12\xee\xbe\x3a\x6e\xb0\x96\x81\xd3\x8c\xcc\x4e\xf6\x0f\xde\xa8\xda\x92\xd0\x16\x46\xa6\xd8\x1e\x92\x85\x4c\xcc\x9a\x27\x29\xc6\xba\xda\x2e\x1b\x77\x14\xe3\x88\x9d\x88\x9e\x4c\x86\xe0\x32\xd6\xd0\x5a\xb7\x07\xa5\x63\xbd\xb3\x65\xfc\x1e\xda\x1c\x0a\x06\x2b\x2c\x17\xc5\x9e\xb4\x71\x14\xea\xcc\x3e\xac\x0c\x78\xc5\x82\xc7\x6d\xff\x50\x85\xaa\xc4\xb3\x7b\x59\x91\x73\x8a\x9c\xa2\xd5\x19\xe7\x35\xe9\xf8\xea\x92\xdc\x66\x59\x7b\xb4\x71\x77\x69\x4b\xf6\x72\x7a\xff\x7e\x36\xce\x38\x77\x00\x45\x50\x6e\xac\x4b\x2c\x46\x67\x4e\x11\x36\xe4\xc9\x74\xa6\x53\x82\xbb\xd1\x5d\xea\xfe\xf0\xff\xc2\x93\xc3\x40\xd4\x65\x1c\x44\x18\xc0\xb0\x7d\xe9\x11\xc2\xe9\x88\x29\x6c\xdc\x0f\x05\xf0\xb2\xd9\x78\xc5\xb2\x3c\xee\x94\xc6\x06\x32\x6b\xad\xd9\x6d\x04\x3c\x3c\x8a\x0e\xd3\xe4\x37\x65\x02\xc7\xa0\xee\xc3\x35\x9d\x14\x43\x8a\x8c\x69\xe4\xfb\xb3\x71\x66\x2c\xc8\x45\xb7\x07\x4e\x2d\x63\xf0\x28\x8d\x28\x68\x1c\xdd\x91\x85\x57\x85\x3b\xa9\xeb\x6d\x11\xe7\x13\x91\x41\xec\x6f\xe3\x07\x4a\x02\xc9\xe5\xa9\xb4\x7b\xa4\x7a\xc2\x75\xaf\xc1\xa2\x0f\x98\x26\x0c\x76\x58\x47\xb1\xc8\x6b\xcd\xec\x54\x90\x1b\xe1\x43\x87\x5f\x12\xa4\xb2\xc4\x15\x9e\x19\xdc\x3b\xd4\xb2\xb0\x25\x6d\xb8\x06\x76\xb1\x68\xeb\xc4\x87\x01\xa4\x58\x4d\xeb\x4a\x3e\xd8\x51\xa0\x08\x43\x6c\x06\x45\x15\x63\xb5\x38\x8d\x98\x72\x78\x7c\x24\x1c\x2b\x23\xb8\x1c\x5e\x4b\x37\x28\x50\x8e\x9d\x22\x36\xcf\x85\xef\x21\xc5\x9b\x90\x15\x3d\xa5\xe8\xa3\x31\xef\x30\x25\xf8\x87\x67\xb6\xd8\xc5\x3a\x24\x7f\xb6\x5e\xad\xb7\x10\xe9\x9c\x25\xa6\xb6\x6b\x4b\x87\x4f\xf0\x6d\x66\x50\x4b\xcd\x1d\x47\xcc\xa9\x93\x16\x06\x26\xd1\x20\x43\xec\x9b\xd1\x06\x98\x88\x78\xad\xd4\x0e\x8d\xc0\xc3\x88\xef\x8c\x07\x5f\x9b\x6e\x6e\xc4\xeb\x16\xb7\x26\xbc\x95\xeb\x05\x49\xe4\xa3\x4c\x0c\x40\x77\xa6\xe2\x8b\x98\x9d\x13\x79\x20\x86\x2f\x7f\xab\xa2\xa6\x4c\xf3\xf7\xc8\xa4\xad\x64\x58\x30\x96\x09\xa3\x9f\xeb\xbe\x9e\x1a\x22\xdd\x90\x3a\xc9\x33\x1f\xc2\xeb\xeb\x0e\x3b\xc5\xdb\x19\xea\x58\x5f\xbf\x27\x58\x2a\x91\xd1\x5d\x52\xcd\xd2\x29\x28\xf5\xb9\x81\x31\xb8\xf4\xfd\xae\x70\x77\x75\x49\xb9\x93\xb8\x7a\xce\xc2\x9d\x4e\x49\x5d\xd3\x50\xe4\x3e\x5c\x63\x97\xcd\x25\x2b\xb7\xa3\xd8\x75\xdf\x7a\x94\xc3\x3c\xd5\xd9\x8d\x1a\xe9\xb7\x1d\x16\x6b\x31\x92\x03\x78\xb7\x63\x03\x51\x73\x4f\x62\x73\x66\x78\x0a\xee\x0c\xda\x03\xeb\xd1\x92\x96\xd3\x63\xe7\xab\xd3\xed\x6b\xa4\x60\x43\xe6\x58\xdd\x10\x79\x05\x48\xb8\xac\x55\x58\xbb\xab\xe5\xac\xc9\x61\x24\x53\x00\xb2\x5a\xa7\x64\x3c\xc3\xb0\x09\x32\xdb\x31\xe4\xe5\x69\xaa\x04\x0e\x5a\x61\x99\x5b\xae\x51\xae\x56\x89\x29\x76\x82\x08\xf0\x90\x9c\x80\x22\x70\x93\x97\x0f\x98\x82\x63\x14\xbe\x2d\xcc\xc5\xe0\x9d\x49\xfb\xa4\x8e\x26\x1a\x24\x37\x51\x4c\xd5\x77\x9c\xa8\x53\xf0\xa8\xa4\x11\xef\xf6\x03\xe1\x2a\x8c\x2d\x9f\x09\x28\xe2\xd7\xc1\x79\x18\xb6\xc3\xce\xec\xcf\x36\x32\x90\xeb\x22\x9f\x8c\x5b\xbc\x79\xfa\x62\x8e\xdf\x45\x82\xec\xdf\xc5\x1f\xf2\x5d\x7c\x95\x18\x0f\x07\x19\xb3\x7c\xac\xf1\xf3\x61\x23\x80\xa8\xdd\x62\x95\x94\x27\xa3\xeb\xd9\xd5\x02\xae\x4e\xe0\x69\xaa\x68\x1b\x1f\x84\x8c\x37\x21\xcf\x56\x25\x4e\x20\x88\x77\x41\x85\xb0\x9b\x5e\x68\x83\xa6\x35\x9c\xcc\x46\xa8\x5e\x13\x79\xa0\x31\x1e\xfe\x87\x84\x9d\xad\x44\x4d\x6c\xe1\x37\x9f\xcf\x6a\x0d\x24\x27\xa3\x7f\x5e\x0f\xa1\xdd\xcf\xf1\xc2\xf0\x29\x6d\xc2\x77\xbd\x50\x09\x2b\x30\x2b\x22\x83\x89\xc8\x82\x10\x49\xf7\x60\x7e\x56\xd9\x88\xcf\xa6\xcf\xd5\x24\x05\xc2\x21\x4a\x5e\x29\x3c\xf7\x02\x8d\x8a\x28\x00\xb3\x85\x1a\xe4\xe8\x12\x24\xb1\x46\xfd\x2a\x07\xc2\x53\x66\xf7\xcb\x93\x79\x71\xb9\x38\x44\x9d\xda\x04\xb0\xef\xc1\x07\xb1\x3a\x6a\x29\xd6\x62\x10\xf3\xd1\x7b\x07\xea\xfe\x80\xe6\xa2\x63\x6a\x06\x39\x74\x17\x15\x47\x3a\xbe\xee\x17\xd6\xc7\xb7\x1d\xb6\x8b\xd0\x66\x61\x0a\x11\x32\xca\xc7\xab\x53\x27\x81\x56\x31\x18\x46\x4d\xcb\x8f\x99\x7d\x55\x94\xe6\xc3\x75\x47\xbc\x0f\x70\x6d\xa9\x4d\xea\xf6\x1d\x58\xff\x41\x41\x17\xf0\xd2\xed\x4b\x2d\x52\x61\xa7\x73\xe8\xb0\x4f\x67\x6f\xc2\x5b\x51\xd2\xbd\xb9\x71\x40\x8a\x31\x24\x25\x20\x09\x2f\xd4\x15\xb3\x00\x6f\x61\xe6\xb4\xe6\x26\x3b\x5c\xe2\x7c\x71\x31\xe9\x74\x91\x33\x22\x1d\x9f\x83\xbd\x17\xaf\x9f\xef\x1c\xec\xed\x1f\xca\x3e\x1c\xdd\x93\x97\xe2\xe5\xe2\x7c\x3e\x7b\x8f\xce\x3b\x2d\xa2\x75\xee\xeb\x97\x5d\x7c\x12\x1f\xaf\x25\xf7\x37\x64\x15\x1b\xf7\x93\xb5\xd1\x64\x9e\x8f\xc6\xd7\xfc\x0e\xdf\xbb\xdf\xad\x1a\x1b\xb5\xa1\xd1\xb9\xb7\xa4\x10\x87\x2a\xda\xd6\x3e\xc0\xe2\x5a\x77\x69\x7f\xf3\x52\x8f\x67\x27\x28\xf9\xef\x3a\x2f\xfb\xe4\xdb\xcf\xdb\x79\xf6\xc1\x81\x2e\x9d\x7e\x28\x90\x78\xc4\x92\xd4\xab\x45\x9d\xa3\xb8\x75\x3a\xac\x33\xb5\x23\x57\xc1\x60\xa5\x48\xed\x2e\xc5\x47\x0f\xec\xe3\x0a\x0e\x99\xb7\x84\x79\xec\x27\xe3\xd9\x85\x9e\xd9\x32\x49\x2d\x40\xdf\x8e\x5c\xd1\xde\x15\x95\xd4\x8c\x39\x49\x47\xa7\x0b\x88\x6f\x52\xdb\x48\x4d\x41\x30\x9f\xa8\x3b\xcd\x64\xb7\x6a\x8f\x04\x2d\xd8\xff\xec\x8a\x5a\x42\xc4\x1b\x46\x8f\xde\xae\xa1\x5f\xb0\x2d\xc0\x2f\xad\xa3\xa4\x05\xf8\x1e\x8d\xa1\x4b\xaa\x5b\x7e\x43\x3d\x5d\x49\xa6\x7f\xd8\x5d\xb6\xf7\xdf\x07\x7b\x2f\x9f\xa8\x3b\xce\xab\x83\x57\x07\xff\xf3\x7a\x6f\x1f\x2e\x52\xf3\x2b\xc5\x5e\xd5\xe4\xf7\xa8\xe2\xee\x92\xfe\xb7\x46\x09\xb6\x95\x88\x16\xbe\x1e\x05\xd9\xbe\xd5\x79\x70\xd1\x60\x4d\xcb\x45\xa7\x71\x4d\x30\xf8\x36\xef\xc2\xb5\xfc\x9a\x7b\x8a\x7f\xd4\x53\x55\x3e\x3f\xf3\x6b\xaf\x71\x0e\xd0\xe8\x7b\xd0\x79\xbc\x92\x19\xe5\x82\xb6\x47\x7b\x6f\x00\xbf\xa3\x1f\x9a\xdf\xc1\x49\xc0\x27\x7c\x82\x6f\x17\xbb\x3a\xce\x8f\x47\xf8\x21\xd7\x51\x80\x35\x86\x9e\xe7\xbf\x5e\x15\xf3\xfc\xc5\x0c\x54\xc1\x3b\x89\x59\x40\xb6\x13\x6c\xcf\x46\xdd\xd5\x19\x00\xe2\xec\xaa\x17\x35\xdf\x58\x3e\x12\x60\xbd\x9d\xbb\xc4\xe0\x69\xee\x2f\xf2\x69\x0e\x0d\x15\xf7\x11\xc7\xc3\xd8\xf9\x22\x93\x06\x55\x03\x57\x5a\x10\xd8\x04\x5c\x9d\x48\x6d\xb2\x2f\xdf\x8e\xdb\x97\x37\x68\x5f\x3d\x0c\x9e\xf5\x0c\x0d\x8f\x87\x19\x94\x4e\x9f\x6d\x70\x53\x27\x88\x29\x6b\xdf\x7b\x56\x74\xc6\x79\xb3\xfe\x41\xc9\xa6\x8a\xcc\xfc\x72\x0d\xec\x50\xf6\x22\x3f\x28\x9b\xf0\xcf\x8c\x55\xdb\x72\xe1\x44\x65\xc9\xe5\x3c\x67\x3b\x35\x4a\xbe\xba\x54\x7c\x5f\xfe\x6c\x4c\xa2\x7c\xb2\xcf\x14\x91\x0e\x6d\x2a\x85\xfb\x23\x47\xc7\xb1\x09\x90\xd6\x6c\x9e\x4d\x7b\x51\x92\xb1\x39\xfc\x8e\x1b\x86\x3a\x5d\xa1\x58\x89\x27\xa3\xe9\x49\x3e\xf1\x72\x22\x7d\xae\x4c\x70\x69\xdb\x6d\x1d\x53\x5a\xc8\x38\xd9\x40\x02\x65\x2c\x74\x68\x89\xc9\xb2\xa3\xe4\x59\x32\x36\x10\x49\x65\x74\x2a\x1c\x33\x37\x9d\x68\x4d\xdc\x7e\x10\xa6\x97\xe8\xd2\xdc\xb7\x12\xb1\x12\x72\xd7\x3f\xb8\x83\x03\x1c\x35\xc0\xc1\x1a\xcf\x7e\x81\x43\x27\xe8\x12\x6c\xf0\xee\xe0\x84\x8f\x25\x83\x68\xb8\x05\xd7\xf1\x34\x29\xe2\xc9\x52\x95\xd0\xc7\xc3\x80\x88\x6c\x5e\x74\x30\xfb\x0e\x71\xc1\x0e\x90\x70\x83\x2f\x44\x44\x5b\x93\x64\x40\xbf\x36\x32\x3b\xd1\x30\xbd\xf3\xc5\xc1\xe8\x0c\x8c\x95\x65\xae\xb6\x1b\x88\x95\x51\x59\x54\x42\x06\x9c\x24\xb8\xa8\xc5\x13\x3e\x6e\xe2\x7e\xc9\xdc\x7d\xa4\xb5\xab\x60\x26\x3c\xa3\x2a\xf2\x41\x8f\x97\x15\x06\xc8\x10\x29\x6e\x6e\xcc\xa7\xb8\xa4\x70\x5a\x92\x18\x79\xfc\x3d\x2e\x06\x2e\xd6\x16\x80\xb8\xb3\x53\x71\xd0\x74\x4d\x11\x13\x8d\x80\x42\x43\xc0\x8b\x0f\xf6\xcd\x00\xac\x8e\xb1\xa0\xcb\x06\x4b\x13\xce\x44\xf9\xbe\x00\x47\x95\x16\xb1\xd5\xf5\x63\x54\xe6\x82\x06\xf4\xf1\xdb\x62\x7b\xff\x58\x5d\xa3\xde\x0e\x30\xb5\x98\xd2\x32\x27\xfd\xe8\xa5\x2c\xd9\x9f\xa9\x43\xed\x5c\x0d\x67\xed\x7a\x76\xb5\x36\x2e\xc6\x6b\x6a\x70\xea\x76\xb6\x98\xa9\x4e\x29\x24\x3a\xc9\xd7\x46\xd3\xb5\xe5\x32\x37\x7d\xaf\xaa\xb5\x63\x34\x9f\x5b\x2b\x16\x6b\xef\x47\x25\xcc\x96\xda\x44\xaa\x4c\x31\x55\xa5\x16\xe7\xf9\xda\x93\x57\x2f\x7a\xe8\x6d\x40\x75\xe0\x7c\x54\x6a\xfb\xea\x3e\xf7\x48\x65\x27\x7d\x97\x06\xac\x30\xb9\x4a\x08\x50\xd5\x89\x43\x73\x8c\xc1\x53\xca\x0b\x8c\xa9\x22\x34\x91\x50\x11\xef\xb4\x0e\xc2\x2a\x0c\x54\xf7\x91\x69\x59\x40\xf9\x83\x99\xad\x8a\xe7\x5b\x10\x15\xfc\x5b\x55\x03\x3e\xdf\xc4\xb1\xd7\xb1\xe7\x59\x77\x80\xe7\x36\x15\x57\x14\x8c\xcf\xe2\x74\xe9\x07\x80\xee\xff\x50\x79\xb0\x38\x3b\x11\x40\xc7\xd1\x81\x95\xdb\x05\xc8\xaf\x2e\xe2\x24\x83\x03\xa5\xf0\x97\x6e\xae\xf1\x5d\x6f\x8d\xd1\x2a\x62\x64\x62\xf1\xcb\x33\xf7\xa4\x35\x6f\xc0\xb0\x39\xe6\x78\x69\x46\xdf\x9e\x14\x58\xd1\x96\x4f\xd2\x21\x0d\xa5\x4f\xff\x45\xa2\x9a\xd3\xa3\x9b\x17\x0c\x9d\xe2\x45\xfa\xd1\xc6\x11\xd4\x8f\x69\x8e\x89\x7e\x54\x73\xf3\x92\x67\x7f\x61\x38\x73\xfc\x6a\x43\xd4\xad\xaf\x02\xf8\x4c\xba\x96\xb6\xbb\x39\x90\xa4\x72\xbd\xc0\xeb\x02\x28\x12\xa6\x5d\xc1\x7f\x8a\x23\xc1\xb6\xe1\xb9\x99\xf8\xc8\x93\xe1\x76\xc1\xf9\x2d\x99\x0a\xb1\x53\x5b\xab\xd3\xbb\x08\xee\x86\x9e\x0f\xcd\x27\x77\x40\xf4\xe5\xf9\xc3\xa4\x5f\xf8\xfa\xd1\xf4\x9f\x59\x6f\x07\xab\x04\x5c\x80\x6d\xb0\x90\x5e\x0c\x39\xb1\x9e\x6e\x8e\x82\x3d\x89\xc1\x48\x94\xe4\xf6\x3d\xf4\x93\x3d\x75\x73\x54\x9d\x1e\xfe\x0a\x58\x2f\x87\xeb\x6e\x3e\xdd\x88\x29\x8a\x6c\x6f\x8e\xbe\x0c\x58\xe5\xcc\x82\x8d\x9f\x5c\x06\xf8\x93\xf8\x9d\xa3\xa7\x7c\x77\x5a\x64\x41\xfd\x20\x90\xe8\x99\xb2\x71\x3a\xfc\x9a\xa2\xa5\xf4\xc1\xa7\x0b\xfd\xab\x1c\xd4\x92\x6d\xe1\x34\x1d\x48\xaa\xb2\x0f\xff\xee\xd2\xc7\x27\xdc\x07\xba\xe3\x84\x37\x4d\xae\x0f\x61\x1b\x0f\x84\x40\x49\x12\xf7\x79\xc4\x9b\xd1\x7f\xb4\x8c\x1f\x14\x91\x44\xa7\x54\xec\xa6\x91\xc5\x12\x57\x8b\x98\x7c\x19\xca\xad\xdf\xfb\x6e\xe3\xf4\x32\xa2\xa6\xec\xea\x3b\x87\x42\xa4\xdf\x43\x74\xf3\xd9\x9e\x23\x63\xd2\x89\x88\x70\x63\x57\xcd\x7a\x70\x59\xff\x12\x1d\x0b\x52\x46\x5c\xb8\xf0\xa5\x14\x2e\x84\x9e\x09\x41\x0c\x62\xfd\x11\xfa\x32\x8e\x88\x18\xa4\x95\xd8\xc6\x5c\xff\xa7\xb3\x45\x71\x7a\xfd\xe2\x6a\x81\x32\xf1\xe7\x20\xc4\x9e\xa2\xfd\x3c\xde\x5b\x67\xc0\x83\xe2\x13\x7e\x52\x03\xc8\x6e\xbe\x15\xb7\xf6\x62\x34\x1d\x81\x5f\x61\xf6\x2d\xe1\xb3\x6a\xc8\x73\x11\xe7\xa9\xdf\x27\x06\xb5\x8d\xc3\x45\x15\xc7\xe8\x79\xb6\x02\x9e\xd5\xa9\x8a\xc1\x3a\x98\xd1\x54\x1f\x09\xf0\x57\xd4\x86\x40\xab\xeb\x02\x80\x55\x55\x21\x77\xbd\xb2\x26\xbe\x5b\x04\x73\x05\x22\x2f\x5c\x42\x5b\xe3\x80\x2c\x09\x05\x7f\xde\x11\x77\x9f\xae\xe3\xad\xa1\xc6\x53\x03\x1b\x6b\x3a\xfc\x6c\xc7\x32\xd1\x45\xf9\x84\xee\x4e\x28\x41\xd7\x9e\x35\x50\x37\xc2\x7a\x04\xca\x49\xb5\x43\xd5\xd4\x61\x47\x83\x24\x4a\x61\x96\x5a\x5e\xa9\x01\x00\xeb\x9d\xbe\x9b\xbd\x55\x1d\x55\xdc\x50\x59\xbc\xcb\x27\xd7\x9d\x18\x6a\x84\x92\x09\x45\xfc\xf8\xc6\x04\xaf\x28\x3c\xfc\x02\x9c\x09\xcb\xba\xd0\x65\x91\xeb\xc0\x4a\xdd\x25\x18\xcf\x70\x76\x21\xfa\x2d\x13\xf2\x1e\x5d\xb5\xe1\x29\x2f\x32\x9d\x74\x25\xbb\x53\xaf\x8d\xe8\xa4\x65\xa7\x03\xa7\x5b\x4d\x68\xa2\x10\x05\xdd\xc1\x35\x6c\x29\x44\xb7\xa4\xb1\x96\xca\x77\x71\x89\x54\xc5\xa8\x66\x7b\x62\x2e\x1d\xb3\x20\x81\x93\xda\xbd\xe9\x58\x3a\x92\xfa\x7e\x2a\xe5\xd1\xd9\xad\x91\xe0\x55\x29\xdd\x9b\xdf\xd4\xf0\xbd\x92\xc5\x88\x4a\x5b\x1c\xe1\xc9\x2b\xb5\xfd\xd5\x8a\x62\x06\xef\xf2\x16\x15\xef\x4e\x66\xa5\x2e\x35\xa8\x69\x50\x8b\x6a\x40\xd1\x12\xe7\x88\x97\xca\xbf\x35\xf1\x06\x10\x37\x69\xb1\x01\xc8\xa7\xcc\x95\xea\x15\xe8\xaa\x65\x1e\x16\xb2\x1b\x2e\xd8\x5d\xba\x44\x95\x8e\x67\x17\x4c\x4a\xfb\x96\xaa\xfa\xfc\x87\x70\x54\xda\xe8\x97\x54\x5e\x59\x6d\x56\x5d\x65\x91\xfb\x2e\x55\x4a\x4c\x8a\x0b\xa7\x4f\xb5\x95\xd5\xc7\x0a\xc7\x12\x03\xae\x07\xd9\x8a\x16\xbc\x4d\xec\x45\xcb\x22\x2d\x3f\x2a\xaf\x8c\x98\x10\x7b\x61\xcb\xa7\xaa\x8a\x39\x78\xb3\x1c\xc6\x8a\x00\x37\xa9\x50\xf9\xc2\x4b\x76\x7d\x72\xdf\x36\x1e\x43\xd4\x2f\xb7\xeb\x69\x3b\xf2\xaa\x67\xaa\x8a\x16\xb4\x6a\x93\xb7\x78\x27\x1c\xf9\xcf\x81\xaa\x97\xc3\xda\x9a\xca\xa6\xcc\xf7\x10\x0a\x66\xf8\x36\xf7\x67\xe5\xe4\x7c\xa4\x16\x2a\x0a\x8c\xd2\x87\x48\x46\xe8\xcf\x9d\xc2\xcf\xd7\x37\xde\xd6\x6d\x79\x3d\x67\xeb\x1b\xe5\x35\x3e\x9a\x4e\x8a\xe3\xf9\x68\x1e\x76\xc3\xf7\x32\x62\x52\x91\xb6\x87\xc9\xc7\x93\xd1\xf4\xed\xff\x8f\x9f\x41\x5d\x97\xd5\x9f\xc8\x57\xba\x48\xf0\x3b\xba\xed\xf7\xf4\xa1\xdf\xd3\x87\xc1\x5c\xfa\x3d\x7d\xe8\xf7\xf4\xa1\xdf\xd3\x87\x7e\x4f\x1f\xfa\x3d\x7d\xe8\xf7\xf4\xa1\xdf\xd3\x87\x7e\x4f\x1f\xf9\x3d\x7d\xe4\xf7\xf4\xd1\x27\xd2\xc8\x0c\x1f\x5a\x23\xcf\xc4\x96\xb6\x06\x96\x94\x36\x8b\x6e\x4d\x57\xc7\xa0\x93\x74\x9c\x07\x80\x26\x07\xe1\xae\xa6\xf5\x90\x22\x4f\x8b\x85\x22\x26\x9c\x98\xca\xb7\x38\xc5\xf0\xa8\xe3\xfa\xfb\xab\x22\x54\xd8\x93\x99\xe4\xb7\xf4\xc7\x67\x4f\x86\x3f\xec\xfd\x4f\x00\xa9\x33\x2c\x14\x5b\x2f\x46\x01\x29\x8f\xda\x57\x55\x3f\xf5\x9e\xc2\xb1\x69\x4a\xa7\x3b\xda\xde\xc1\xce\xf0\xc9\xde\xfe\x6e\x00\x65\x72\x68\xcd\x5e\xbc\x3e\xf8\x9f\x21\xa4\x05\x80\x36\x8b\x17\x6e\x31\x0a\x60\x20\x51\xdf\x6c\x5f\xc4\x00\x38\x5d\xdf\x70\xa3\x30\xa5\x80\x81\x0a\x03\x1b\x53\xdd\x92\x31\x2f\x8d\x85\xe6\xf9\xd2\x0b\xcd\x43\xa1\x48\x02\x10\x4a\x26\x88\xf9\xf5\x2e\x10\xfc\xa7\xc5\x74\x34\x99\x5c\x87\xa0\x6e\x3e\x9b\xcd\x86\xce\xf7\xb1\x65\x4a\xa7\x31\x8c\xde\xe6\x71\x28\x93\x43\xef\xfc\xa3\xe9\x33\xbc\x03\x04\x70\x26\x47\xf7\xb3\x06\xce\xe4\x68\xb8\x86\xa1\xc8\x51\xbc\x9f\x8f\x2e\x03\x18\x48\xc4\x5c\x34\xdd\x0f\xb2\x31\xd5\xe6\xef\x2f\x42\x04\xd4\x19\x4d\x3a\x1b\x5f\x45\x94\x64\x0d\x0f\x14\x2a\x86\x45\xc4\x0f\xc4\x2b\x07\x96\xcd\x94\x8c\x10\x9a\x6b\x0a\x60\x74\x06\x2f\xd3\x65\xa0\xa5\x71\xc1\x53\xc0\x51\xb2\x83\x7c\x4e\x27\x98\x62\xb2\xf0\xe8\x1d\x82\x60\x32\xa3\xe9\x38\xff\xe0\xe1\x20\x9a\x57\x53\xfa\xe0\xdf\xd0\x9c\x39\x0c\x21\x15\x89\xfb\xe0\x4b\x8e\x50\xc7\xe3\xcc\x10\xa4\x05\x5c\x41\x9f\x50\x89\x28\x9c\xc8\x77\x0d\xba\x0f\xae\x14\x97\x1c\x16\x71\xf3\x89\x47\x57\xd5\x04\x5b\x13\x81\x75\x0e\x2b\x32\x87\xba\x24\x1c\x2d\x62\x34\x1e\xeb\xfb\x62\x08\x23\x32\x99\x0a\x83\x0c\xa7\x1e\xde\xcd\xe7\xc3\xa0\x04\x90\xfa\x32\x1e\x40\xac\x50\xb9\xb2\x14\xeb\xdd\xa8\x94\xbd\x77\xfe\x09\x45\xf0\x3a\x8b\x95\x66\xca\x86\xba\x65\x2e\x6d\x4d\xa0\x38\x39\x95\x8f\xc0\x3b\xd9\x58\x60\xa2\x8b\xfb\x47\x02\xc2\xcb\x5c\x17\xfc\x49\x71\x7a\xda\x00\x0f\xd9\x6e\x81\x1f\xa7\x45\x6c\x6d\xdd\x7c\x2c\xa2\x9d\x64\xee\x47\xb4\x84\x7c\xc4\x0e\xa5\x32\x61\xb0\x91\x10\xc6\x29\x6a\x44\x23\xf5\x25\x0d\x08\xa1\xa8\xea\xdb\xbc\x18\xe7\xbb\x78\x39\x88\x04\x37\x71\xf2\x49\x08\x95\x9f\x15\xc6\x24\x96\xaa\x8a\x14\x8c\x41\x91\xf9\xf8\x74\xbc\xb2\x70\x08\x43\xe4\x0e\x7f\xbf\x36\x77\x8f\xb0\xa0\x0f\x81\xc5\x9e\xe4\xa4\xab\xed\x23\x05\xd0\x69\x9b\x87\xa0\x74\x27\xd6\x6d\x87\xe0\x6e\x7e\x54\x58\xbd\x2d\x75\xe9\xd4\x61\x13\xac\xfc\x57\x74\x08\xed\x33\xc8\xab\x39\x4a\xfa\x02\x30\x08\x9e\x62\xf3\x88\x93\xf1\xc8\x34\xc2\xbc\x60\x3a\xad\xfe\xaf\xa5\x7c\x0c\xe7\x53\x3e\xa0\x55\x35\x93\x19\xd1\xe7\x2b\xeb\xa1\xff\x1c\x42\xe3\xee\xfc\x21\xf7\xe6\xf0\x2f\x7a\xdf\xaa\x1c\x66\x46\xeb\x01\x6d\x1e\x1d\x32\x93\xab\xf2\xfc\x75\x8e\xb7\xc3\x08\xba\xc2\x0d\xa3\x17\xc2\x08\x02\x8a\x09\x7f\x43\xaa\x31\x0f\x8b\x86\x30\xf4\xd0\x00\x09\x2f\x67\xe3\x3c\x2c\x61\xb2\xf8\x0c\x9c\x16\xe5\x79\x6d\xc7\x44\xae\x9d\x9f\xe0\x0c\x79\x68\x08\x9b\x39\x44\x78\x16\xe2\xa0\x22\xd3\xd6\x9a\xf9\xd7\x2a\xaa\x91\x99\xb6\xbf\xf1\xc5\x3e\x84\xb2\x79\xb2\xe1\x10\x8e\x33\x78\x66\x6b\x80\x38\x83\x77\x15\x8a\xba\x43\x20\xce\x20\xba\x80\x92\x85\x1a\x0c\x7b\x18\x7d\x02\x22\x51\x43\x74\xb7\x3e\xa4\xb7\x20\x17\xa2\x5e\x2d\x15\xc1\x1d\xbd\xd4\x13\xc5\xdb\xe4\xfe\x39\x42\x60\x9c\xa3\xcf\xf1\x68\xec\x23\xb8\x9a\x06\xd1\x99\xb4\x14\x24\x38\x9f\x10\x5a\xe6\x0a\xac\xad\xaf\xfe\xd6\xc1\x9c\x74\xa7\x62\xd1\x98\xf8\x64\x5f\x55\x3a\x0e\xe7\x54\xb1\xba\x70\x8b\x96\xcb\xb6\x4d\x97\xd1\xb6\x1b\x8a\xbb\x05\x8f\xdd\xca\xa2\x0b\x13\xc2\x88\xe5\x59\x35\x61\xb5\xf1\xaf\x6a\x7c\x1c\x81\x08\xc3\x77\x72\x74\x11\x3c\x54\x22\xd4\x85\x79\xa9\x0c\x5f\x32\x11\x40\x3c\x65\xd2\xeb\xe4\x38\x84\xd1\x39\x84\x3e\x10\x55\x58\x5d\x40\xcf\x67\x11\x48\x91\xe9\x60\x73\x08\x39\x93\xe3\x2c\x2e\x2e\xf2\x71\xa1\xee\x23\xf1\x39\x02\xf8\x00\x24\xb2\x34\x61\xa9\xe3\x70\x4e\x63\x91\xe9\x1e\xfa\xa1\xe9\x6a\xdd\x3d\x21\x64\xe0\xef\x29\x70\xc2\x8b\x60\xe8\x85\x97\x78\x7c\x08\xee\x14\x02\x50\x7a\xf4\x1d\xf9\x61\xe4\xb8\x34\x82\xcc\xcc\x17\x4e\xb5\x70\x33\x0c\x22\x2b\xe9\x67\x78\x1a\x05\x98\xea\xec\xa2\xdc\x03\x29\x68\xe6\x0b\xb9\x7a\x9c\x41\xe4\x38\x0e\x92\x1b\x80\xa2\xfc\x0e\x84\xa6\x99\x2f\x19\x8b\xda\x7d\x3e\x73\x5f\x08\xd8\xf4\xc1\x4f\x5d\x56\x83\x18\xb4\x10\x74\x65\x42\xe6\x15\x05\xb5\xa2\x2d\x2b\xc8\x8a\x02\x4a\x29\x98\x94\x7a\x45\x81\x49\x0c\x46\x62\x2f\xea\x7a\x43\x97\xea\xfb\xe0\x48\xc4\x32\x47\x3c\x46\xf9\x46\x40\x66\x04\x62\x22\x9d\x45\x62\x52\x04\x46\xb9\x2c\x05\xe0\x5b\x3f\xa5\x99\x7b\xbf\x73\xcf\xc7\x3c\x94\xba\xbc\x9e\x4d\xae\xd5\xf5\x7c\xc2\x1e\x25\x7b\x5e\xa2\x5e\x09\x37\x19\x64\x02\x19\xc8\x05\x62\x79\x5a\x4e\xa0\xe5\x02\x51\x18\x92\x13\xb0\x5c\x20\x06\xa1\xe5\x04\x5a\x2e\xc0\xb6\x67\x28\x3b\xb1\x62\x14\x3d\x9d\x2c\xfd\xd3\xd2\x3e\x4a\xb5\xf2\x3e\x2b\xdf\xe3\x6a\xac\x84\x4f\x48\xf4\x28\x0f\x65\x7a\x28\xc3\xd3\x4b\x45\x12\x3a\x2d\xb5\xe3\xa5\xe5\xd4\xd2\x49\x35\x92\x3a\x23\x99\x33\x48\x82\xb2\x39\x2d\x8b\xa3\x54\x96\xc6\xb1\xf4\x8d\xd3\x3c\xf9\x9b\x2f\x6f\xe3\xfa\x58\xe2\xa6\x25\x6c\xdc\xba\x91\xb1\x59\x99\x1a\x23\x86\x91\xaa\x59\x29\x9a\x69\x8f\x73\xac\xdc\xcc\xe4\x88\x4e\xb8\xed\xa3\xac\x0c\x65\x63\xf4\x4d\xd2\x31\x92\x86\x89\x14\x90\x87\x19\xf9\x17\xa5\x3f\x97\x61\xb0\xed\x0c\xc3\xec\xda\x2f\x79\x7d\xf1\xe4\x34\x04\xe3\x49\x6a\x3c\xc1\x0c\xc1\x58\xd1\x8c\x96\xc4\xf0\xda\x7b\x92\x35\xef\x9b\xa1\x14\x11\x52\x17\x77\x1e\x8b\x10\xd1\x48\x89\x0c\xe5\x7a\x32\x19\x4f\x04\xc3\x7d\xf1\xa5\x30\xbe\xd0\x25\x0e\x56\xfa\x70\xa5\xc1\x3e\x2d\x68\xb1\x72\x15\xca\x71\x24\x2b\x8e\x20\x85\x57\xce\x11\xa5\xb8\x92\x13\x82\x70\x64\x27\x8e\xa8\xc4\xcb\x47\x61\x89\x2b\x1b\xf1\x20\x48\x3a\xe2\x09\x43\x78\xa8\x52\x1e\x22\x7e\x6b\xaa\x15\x4a\x40\x22\x02\x0f\x17\xd6\x8a\x3c\x42\x09\x07\x2f\xaa\x2b\xe3\xf0\x44\x1a\x04\x13\x15\x6a\x44\x65\x18\x04\x1f\x91\x62\x44\x84\x16\xbc\x0d\x7d\xb1\x45\x20\xa5\x20\x38\x21\xa7\x10\x62\x09\xca\xf3\x04\x13\x9e\x1c\xc2\x10\xa7\xcc\x9e\x50\x2c\x7a\x60\x49\x03\xa5\x09\x59\x83\x10\x2d\x30\xd9\x54\x7b\xfb\x85\xd9\xda\x9e\x34\xc1\x13\x1e\x98\x2d\x2b\x06\xe5\x7c\xd9\x1e\x09\x88\x32\x02\x61\x6e\xff\xe6\xaa\x4f\xe9\x42\x2e\x20\xc4\x00\x94\x17\x11\x04\x44\xee\xfd\x72\x9b\x3a\x37\xff\xc8\x45\x9f\x91\xd3\xde\xf5\xed\xd5\x9e\x9b\x94\x97\x7b\xe7\x2e\x2f\x86\x81\x64\xc7\xde\xc7\x9d\x81\x60\x9e\xbc\xad\x8b\x72\x54\xc6\xd0\x78\x73\x41\x17\xf7\x71\xa7\x2e\x5d\x8f\x19\x22\xa5\xea\x1b\xb7\x46\x18\xba\x73\xeb\x2b\x36\xa3\xad\x7f\xc9\xf6\x13\x18\x2e\xb8\x5b\x07\x57\x69\x46\x6d\x7d\x99\x36\x77\x67\x7d\xf2\xf0\xed\xd9\x5c\x96\x0d\x4d\x35\x0c\xbd\xbc\x1d\xf3\x46\x95\xd7\x30\xe7\x3a\x2c\x17\xd3\x54\xe0\xdd\x7f\x4d\x0b\xde\x95\x2c\xbc\xf0\xba\x64\xd7\xbf\xc1\xc5\x6f\xb8\x4d\x65\xca\x9a\x42\xa5\x57\x2a\x68\xa3\xa6\xf6\xb0\x5e\xbf\xc6\xc8\xb5\x35\x72\x4b\x95\xb3\xe6\x8d\x32\x7a\x2d\x65\xae\xdc\x5e\x4c\xc5\x3d\x54\xd7\xc5\xf7\x48\x73\x6d\xe4\x59\x17\x17\x47\x79\x4f\x74\xd7\xd5\xac\xa9\xc6\xf5\xe0\x6a\x18\xde\x04\x63\xe3\xf5\xc6\xaa\xf9\x20\xbc\x04\xd3\xa5\x98\x89\x18\xa6\xbc\x10\x29\x7c\x5b\xe3\xcb\x19\xd7\x0d\x17\x3c\xbc\xcf\xd1\xb7\xbe\x44\xea\x3b\xa3\xde\x97\xe2\xd6\xe8\x5c\x12\x79\x66\xd4\x25\x4f\xfd\x33\x67\xa1\xbe\xce\x99\x5f\x7e\x4e\xcf\xba\xb1\x98\x2b\xc6\x01\x52\xaf\xd9\x43\x47\x42\xde\x57\x7a\x3f\xed\xbd\xd9\x7f\xf6\xea\x65\xd7\x74\x01\x6f\x7e\x7c\xd1\xd3\x2c\xd1\x14\x18\x21\xf3\xad\xef\x76\xfa\x2a\xc7\xdb\x1e\xd3\x72\x91\xa2\x6f\x6f\xfc\xbf\x61\x64\x41\x23\x01\xff\xda\x09\x43\xde\x1b\x0d\xda\x8c\xaf\x88\xe1\x90\xdc\x27\xf1\x18\xe6\xd7\x5a\x6d\x6c\x0c\x41\x4b\x93\x23\xd0\x68\x75\xd4\xa1\x65\xae\xe3\x7c\x4b\x3a\x7d\xc0\xba\xe3\x8a\x69\x5a\xcd\xeb\x30\xae\xa1\xd3\xa4\x8a\x41\x17\x0c\x63\x62\x8c\x9f\xd6\xe4\x58\x5f\xa9\xd5\x3d\xef\x5d\x0e\xb6\x3b\x22\xe2\xaa\xfa\x61\xfc\x56\xc0\xc7\xfa\xfa\x53\xce\x13\xbe\x2e\x16\x33\x76\x7f\x81\x5e\xdd\xb1\x8c\xbe\xc4\x74\x92\xc3\x29\xd6\xbb\x76\xa2\x4e\x92\xa3\xa4\xfb\xed\xe6\x76\x65\xde\x5b\x65\xa3\x1d\xb7\x93\x70\xcf\xea\x3e\x0e\xd3\xfa\xb2\x6f\xc6\xfc\x39\xcb\xb2\x77\xb3\x62\xbc\xb6\x75\x73\xc3\x9f\xb0\x58\xd2\x23\x0e\x38\x0f\xc6\x7b\x13\xaa\x8f\x03\xe3\xf5\x8b\x09\x3f\x4d\xd2\x87\x7c\x9a\x2d\xb4\x63\xfc\x6f\xbf\xdd\x72\x9c\x7b\x4e\xef\x65\x59\xa2\x5b\x4e\xea\xeb\x55\xd7\x63\x0c\x87\x8d\xfd\xee\xa8\xca\xa8\x6e\x68\xe5\x52\x78\xf9\xdf\x3e\xf2\x22\xf6\x29\x48\x8a\xfe\x01\xd6\x2c\xe0\xa0\x14\x43\x0d\x42\x8c\x0f\x58\x0b\x1b\x36\xfa\x32\x5d\x40\xdc\x8f\x22\x05\x6b\x13\x6b\xc4\x5a\x39\xaf\xd4\x4d\xb3\xca\x30\xc1\xcc\x72\xfa\x1f\x7b\x76\xef\x34\x8d\xf5\xf3\x57\x39\xaf\xf2\x4d\xb3\xc6\x30\xc1\xac\x71\xba\x70\x26\x7d\xfc\x4b\x7a\x3a\x9f\x5d\x3c\x83\x0c\xec\x86\xf9\x32\xb6\x56\x32\x45\x98\x5b\xd9\xe4\x2d\x63\xd8\x64\xd2\xbe\xd9\x92\x00\x2f\xc0\xed\xe0\xc5\xe8\x43\x67\x8b\x62\x59\xd2\xb4\x6e\xd8\x86\x2b\x3b\x2d\x26\x31\xfd\x25\x13\xc0\x6a\xb2\x7e\x31\x53\x05\xe9\x80\x6a\x99\x3a\x9c\x7e\x31\xdb\xbd\xd0\x18\xa6\x77\x2c\x4b\x2e\x1a\xd1\x0b\x41\x42\xec\xc2\x64\x81\x5c\x53\x63\x55\x85\x2a\xcd\x05\x99\x75\xb2\x21\x15\x04\xdb\xe1\x40\x81\xb2\xc7\x30\x26\xb3\xcc\x26\xb0\xa5\x76\x60\xe0\x79\x29\x2e\xba\x50\x33\x58\xe7\xf1\xe0\xc8\x57\xa6\x1b\xc5\x8a\x1a\x2d\x70\x12\x8d\xf5\x1a\xe9\x65\x73\xd8\xa9\xca\xb3\x14\xb7\xe4\x7f\xff\xaf\xcf\x5e\x0c\xf7\xf6\xbf\x22\x47\xc9\x11\xda\xb5\x0c\xd3\x40\x6e\x54\x45\xc0\xf5\xa6\xf4\x8b\x78\xe2\xa4\x68\x51\x9a\xf0\xa0\xa4\x14\x32\xc5\xca\x69\x8c\xf6\x0b\x7a\xb2\x27\x37\x7a\xa0\x16\x7d\xc9\x34\x5f\xe4\xe5\xe4\x39\xa2\x2e\x99\xe3\x37\x13\x3f\xf0\x8c\x1a\xec\x27\xb7\x36\xab\xd7\xca\x0e\xb5\x90\x6b\xf4\x76\x7f\x6f\xeb\x33\x47\x95\xe9\x77\xb0\x46\x6b\x7a\xdf\x7f\xe4\x3e\xef\xb7\xd2\x50\xf4\xde\xf5\xbf\x12\xcf\xfa\x75\x0f\x8c\x5f\x47\xde\x17\x1b\x1e\x0c\xbf\x8e\xbf\x17\x36\xbe\xd9\x7d\x5d\xf7\x64\xb7\xc2\xf9\x0f\x8b\xfc\x5e\x7d\xaf\x2f\x0f\xfb\x14\x0b\xe0\xe6\xe6\xde\x3d\x16\xc6\xbd\xfc\xc9\xc9\xd7\x0f\x62\xdf\x3f\x7f\xf5\xdd\xce\xf3\xec\xc1\xdf\x3b\x87\x3b\x9b\xff\xeb\x8b\xa3\x9b\xce\xe1\xd6\xe6\x5f\x8e\xe8\xa3\xdb\x15\x31\x2c\x42\x7f\xd7\x9a\x74\x9b\x6a\x84\x9f\x66\xeb\x68\x8f\xe5\x8a\x54\xb8\xc4\x33\xcb\x29\x0d\x76\xd2\x61\xdd\x8f\x99\x77\x27\x27\x7b\xa6\x50\x25\xdf\x9c\xac\xcf\xeb\x19\x46\x5a\x86\xc3\xe7\x35\x56\x4d\x86\x3a\x63\xc5\x0e\x23\x80\x3a\xee\xdf\x8f\xd9\x89\xce\x10\xa0\x32\x0d\xca\x69\x8b\x59\x46\x75\x0c\xbc\x92\x2c\xa2\xd1\x66\x44\xdd\x6a\xa0\xc3\x0d\x38\x01\xe1\x2f\xaf\x7d\xb3\x19\x48\x43\xde\x8c\xe1\x3b\xba\xa1\xd4\xf6\xc2\x46\xfc\x1d\xd2\xf5\xa8\x8b\x55\xe9\x2f\x72\xd4\xcf\xb3\x04\x19\x15\x8e\xd0\x75\x7f\xae\xc7\x8a\xa3\x42\x3f\x45\x8e\xd7\x8c\xc5\x2c\x0e\xae\x06\x1c\x02\x53\xb3\xa1\xc1\x93\xe8\x8e\x5f\x3b\x71\xe2\xfe\xe0\x75\x01\x51\xfa\x71\x72\x48\x3f\x8e\x92\x7e\xa2\x1d\x07\x27\xce\xf5\xef\x9b\x64\x83\xb7\x28\x71\x72\x1b\xc9\xb7\x9d\x64\xc3\x0e\x6f\x23\x59\xdb\xfc\x76\x4d\xa7\x2c\x66\x1b\x49\x37\xd9\xa0\x4a\xd1\x59\xfc\x54\x2d\x99\xc3\x1b\xb1\x6b\x7d\x5e\xea\xcc\xd6\x94\xd2\x62\x67\xba\xa6\x01\x51\x0f\xc4\x4d\xc6\xa5\x08\xd6\x1a\xf4\x72\x43\x9a\xcb\x2c\x11\xb7\x1c\x92\x6c\xb8\xef\x81\x89\xed\x6d\x96\xda\xaf\x83\x1b\xb6\x35\x2c\x66\x22\x5c\x38\x95\x45\xc7\x99\x07\xb3\xfd\x6b\x75\x6b\x0a\x97\x63\x5c\x94\xf5\xd3\xb0\x78\x3f\x83\x35\x71\x3a\xe1\x87\x34\xc7\x6e\x88\x59\x6a\x18\x0c\x55\xa7\x23\xad\x47\x6a\x60\x4c\x6f\x35\x14\x8a\x5b\xe2\x8c\xc5\x69\x51\x78\xb7\x57\xec\x78\xbe\x30\x96\x78\x6c\x10\x0a\x95\x70\x56\x8a\x5b\x1d\x5c\xbd\xcc\xee\x56\xfc\x78\x74\xf2\x16\xca\x3b\xb9\x2e\xcb\xad\xa8\x03\x7b\xd3\x97\x64\x22\xa4\x1c\xac\x64\xa3\xae\xeb\x0a\xbb\x9f\x14\xf3\x4c\x66\xc2\x61\x87\xab\x83\xa8\x21\xa0\xc8\x34\xd9\xda\xba\x96\xaa\xfd\x44\xcc\xe5\x10\x12\x52\x2c\xe9\xd4\x57\x32\x02\x43\xef\x28\x3e\x85\x6d\x58\x5d\x78\x70\x5c\xeb\xeb\x63\xfa\xc2\x49\x5a\x46\xcb\xf3\x04\xc2\x0c\xf8\x23\xd7\xae\xfd\xd9\x1d\x9f\x7b\xa0\x80\x9b\xf5\xe3\x5f\xac\x99\x6d\x3e\x56\xa7\x4f\xb0\xd6\x4e\x4c\xfb\x36\xf3\x67\x89\x78\x7c\xf6\xda\x6e\x71\xa7\x34\x9b\x68\xeb\xe9\xb7\x6d\x98\xa9\xd1\xd5\x92\xcf\x8d\x08\x35\xf0\xc8\xb8\x9a\x94\xee\x52\xbe\xbc\xa9\xa3\xeb\x0c\x42\xb7\xe8\x0d\xc0\x5e\x2a\xba\x69\xb2\xf9\x6d\x92\x9a\xaa\x71\x21\xab\xe0\x1c\x08\x09\x92\x29\xc1\x9e\x21\x7c\x36\x61\x25\x0d\x91\x5e\x21\x1a\xab\xef\x5a\x57\x17\xce\xc4\xd0\xce\x20\x62\x32\x33\xf3\xe2\x6c\xf9\xdb\x4e\xc5\x37\x9b\x2a\x71\x26\x26\x22\x3a\xaa\x55\xd4\x35\x32\x32\x87\xa1\x30\x84\x3b\x64\x2a\x6c\xd5\x33\x3b\x7a\x11\x2b\x18\x65\x9b\x56\x56\xaf\x38\x0d\x2c\x62\xe3\xbb\xbc\xcd\xaf\xe1\xe6\x4f\x89\x7c\x87\xf6\x6f\x87\x0a\x46\xdd\xf7\x16\xb3\x43\xf5\xe3\x08\x59\x0f\xfc\xa5\x1a\xf2\xab\xd7\xa1\xab\x96\xee\x41\x4f\x93\xbe\x8b\xc8\x9c\xf2\x35\x05\x99\x8b\x5d\x19\x33\x19\xb8\x12\x6c\x9e\xa2\x1f\x72\x92\x8c\xf3\xe9\xb0\x03\xed\x2b\x5d\xcc\x1a\xaa\xf4\x99\x06\xdc\x7c\xa7\x13\x88\x24\x55\x57\x3f\xc5\x63\xa1\xad\xe3\x35\x45\xb5\x75\xb0\x3c\x78\x25\xb1\xbe\xc4\x15\x00\xe3\x2b\xaf\x80\xf0\xc7\x6b\x78\x2c\xce\xeb\xf1\x31\xd8\x21\x9c\x12\x37\x41\x2b\x79\x36\x35\x73\x93\xad\xeb\x66\xf8\x86\x46\x5c\x91\xb7\xcc\xf1\x05\xdd\xce\x25\xb5\x4e\xdc\x5d\x73\x5d\xd5\xc6\xa5\x1f\x73\x5b\x8d\x5d\x49\x63\xe6\xbd\x8e\x81\xeb\xef\xed\x2b\xff\xa3\xaf\x97\x0d\xe6\x27\x0f\xe3\xd6\x27\x81\xf9\xd9\x23\x69\x7e\x86\x4a\x2f\xbe\x91\xdd\x23\x6d\xed\xa6\x8d\xec\x62\x56\x3d\x5f\x7a\x56\x3d\x51\xcd\xec\xaf\x5a\x6a\x70\x7f\x15\x2a\x70\x43\x17\xe1\x2a\x0c\xff\xa7\xef\x47\x73\xad\x06\x06\x3f\xd3\xa7\xcf\xde\xec\x1f\x60\xbf\xe1\xf6\xf7\xf7\x9f\x7b\x47\x1b\xf2\xbe\x77\x5a\xcc\xcb\x85\xaa\xc8\xbd\xeb\x5d\x92\x30\x10\x7c\x15\x9a\xf2\xdd\xc3\xad\x23\x8a\xef\x45\xcf\xc1\xff\x75\x95\x5f\x41\xd4\x5a\x51\x57\xf0\x58\x4c\x8e\x39\x64\x01\x16\xbc\xa9\x93\x66\xcb\x61\x12\x7e\xc5\xda\x24\xe4\x20\x68\x87\xa6\x90\xc4\x6d\x08\x6f\x71\xf3\xd7\xee\xf2\x57\xd5\x3f\xb8\xb9\x77\x7e\x3d\xdc\x3e\x02\xbf\x15\x30\xfc\x4e\xa2\x9f\x7a\xc1\xf5\xa1\x91\x8c\xae\x9d\xe1\xbe\x4b\x09\xcb\x40\x45\x5a\x6d\xf1\x52\x1b\xc6\x70\x6e\x09\x8e\x13\x8f\x73\x90\x53\x5c\x5d\xae\x1d\x5f\xa3\x3b\x44\x70\x5c\x8e\x3f\x14\xfb\x06\xe1\x8f\x2e\xd5\x8d\x99\x06\x9e\x8f\xd3\x35\x55\xfa\xe4\x2d\xe0\x00\x98\x06\xce\xd4\x9e\xab\x1b\xba\x43\x49\xda\xbd\xbb\x9b\x69\x56\x63\x94\x8f\xec\x48\xd3\xd4\xa6\xc5\x40\xfb\xd3\xd9\x38\x27\xe9\xa1\x4a\xbd\xb9\x49\x38\x3a\xec\x3d\x13\xbb\x49\x08\x63\x71\xde\x2f\x32\xc6\x1e\x24\x70\x58\xbe\xcc\x2e\x7a\x27\xa2\x01\x0c\xf3\x7b\x2f\x38\xef\x12\x07\x06\x02\x90\x44\x0b\x67\xcb\x8a\x62\x06\x41\xe6\x21\xf7\xf3\x88\x81\xcd\xb7\x5a\xdf\xca\x4d\x21\x91\x29\x8e\x67\xa0\xb1\xdd\x19\xea\x85\xe3\xe6\xdf\x57\x3d\xf8\xd8\x59\x51\x29\x87\x7a\x63\xa3\x9c\xf7\x62\x7d\xbd\xcd\x1c\x88\x4a\x78\x3a\xd6\xd7\x23\xd3\x89\x79\xeb\xeb\xd1\x49\xc9\xdc\x54\x2f\xc6\x3b\x66\x06\x01\xde\x75\x95\x24\x71\xa7\xf1\x12\x24\x44\x17\x3c\xc9\x3b\x45\xba\xad\x1d\x6e\x56\x95\xa5\x1f\xb5\x33\x6a\x14\x35\x3a\xe4\xb2\x17\x80\x48\xb6\xed\xba\xf2\xcd\xe8\x3f\x96\xa8\x28\xa0\x4c\xfd\xe3\x2f\xed\xea\x80\x62\x89\xca\x97\x09\x06\xa0\x74\x8a\x34\xaa\x2b\x5d\x9c\xa3\x96\xa4\xe1\x95\x75\x25\x46\x4c\x41\x01\x72\xa9\xd9\xde\x3b\xeb\x26\x56\x66\xe3\xbd\xdb\x41\x07\x99\x9b\x9a\xce\x92\x94\xbe\xf2\x3d\x16\xaf\xaf\xcb\x2f\x1a\x96\x62\x8d\xff\x13\xc2\x8d\x24\xdc\x11\x6e\x99\x22\x86\x9a\xd9\xb2\xef\xa1\x26\x49\xbc\x89\x9a\xd9\x85\x88\x35\xdf\x33\x57\x0d\x7c\xa3\xc6\xcd\x2e\xd3\x5f\x3b\x51\xe6\x5c\x0a\x11\x32\x87\x68\x51\xf0\x97\x5a\xe0\x97\x96\xa0\x06\x05\xea\xf6\x5f\x48\xe4\x74\xfb\xda\x9a\xe4\x24\x13\xb5\xc2\x37\xa2\x21\x36\x07\x5f\xea\x62\xa9\xfe\xf6\x86\xa8\x7c\x02\x2a\x7e\xd8\x71\x66\x8e\xb1\x0c\xe6\x98\x63\xc4\x26\x11\x2b\x2c\xc2\xdd\xd9\x0e\x9a\xe7\x10\xd9\xa1\x2a\x9c\x51\x9a\xf1\x2c\xe2\xa6\x7a\x18\xe0\x97\x5e\x40\x8b\x3c\xa4\x58\xcf\xcf\x55\x43\x0f\x7b\x64\x2d\x72\x69\x0c\x9e\x78\x6e\xf5\x10\xb2\x1a\x44\xfa\xa8\xb5\x83\x62\xbd\xac\xeb\x0c\x21\x25\xdf\xac\xb5\xac\x25\xa0\x65\x3e\xce\x7a\x5b\x0c\x85\x2b\x55\xb4\x4f\x28\xa4\x0c\x2f\xf8\x6a\x44\xc4\xa8\x9b\x9d\x4e\xee\x55\xe1\x0f\x9e\x05\xb4\x17\xc5\xbe\x4c\x4d\x64\x4f\xf8\x01\x6b\x8e\xc9\x26\x8c\x59\x79\x08\x7f\x8f\xbe\x81\xa3\xdd\x84\xf2\x54\xcd\xe0\xa9\x4c\x82\x5d\xf3\xf2\xb5\x88\x76\x55\x01\x66\x9e\x24\x93\xe7\x2a\x5d\x00\x9b\x86\x54\xa8\x9c\x9f\x50\xdf\x06\x41\x0f\x07\xa2\x1b\x99\xec\xd3\xcd\xcd\x56\x77\x63\x7b\x60\x26\xdd\xac\x7c\x44\xe1\xd5\x0a\xaf\x91\xac\x40\x92\x62\x2d\x14\x4a\xf1\x2f\xfd\xa4\x49\xee\xc3\x31\x71\xfb\x68\x00\x7b\xcc\x65\xa6\x06\xc6\xab\x3c\x05\xf6\x87\x8d\xa2\x9f\x55\xb7\xbb\xd6\x01\xa6\xae\x57\xd5\x28\xb9\x05\x3c\xff\x0e\xf1\x5e\x85\x43\xe0\xce\x6a\x2e\x62\x4b\xbb\xac\x24\xff\x90\xf3\x93\x4c\xd7\x83\x5d\x11\xcd\x6e\xa5\x5b\x9b\x1d\xdd\x4f\xdb\x01\x1d\x21\x94\x33\x2a\xaf\x76\xf2\xea\x04\x4b\x04\xfd\x26\xbf\xb3\xaa\x95\x6e\x74\xdd\x08\x67\x3f\x6e\xe9\x5c\x24\xfa\x76\x8b\x26\x98\x3f\x37\x37\xab\x8f\x58\xbb\x4f\xb8\x62\x9f\x6b\xa6\xd5\xcc\x39\x73\x1d\x9f\xe7\x93\xd9\x95\x3a\x72\xb7\xa2\x59\x90\x64\x57\xc0\x59\xb3\x25\x1b\xf9\x16\x3a\x02\xe5\x90\x3e\x90\x31\x42\xee\x8e\xbe\xd5\xb6\x0d\x81\x80\x81\x03\xb8\x8c\x3e\xcd\x81\x70\xcf\x72\x19\x32\xcb\xa3\x29\x88\xbf\xbc\xf4\x5d\xac\x87\x06\xb1\xb1\x61\xe3\xcc\xde\x76\x21\x06\x54\x8d\x37\x5f\xd1\x09\xe3\x69\x0d\xe7\xa5\x79\x4e\xfc\xb1\x42\x09\x8e\xcc\xc8\xea\x26\xdb\x77\xed\x76\xb8\xd0\x76\x52\x36\x37\x35\x6f\x48\xdf\x48\x49\x39\xd6\x32\xf7\x08\x33\x87\xd8\x2f\xfc\xc9\x07\x4e\xa7\x66\xfc\xef\xad\xc2\xb7\x99\x02\x72\xae\x55\x3b\x01\xd0\x05\x8d\x0e\x9e\xfc\x4b\x27\x5b\x8c\x89\x0b\xc1\x0c\xf1\x17\xd3\x28\xba\xa2\x7b\x10\xf0\x5d\x2e\x6b\xc9\x5c\xb3\x2d\x26\xa4\xe3\x30\x7b\xdb\xa9\xa9\xa7\x76\x43\xfc\x2d\x32\x7e\xcc\xe0\x40\xc1\xf9\xa5\xfa\xab\x27\xc4\xf4\x06\x59\xb2\x4b\x2b\x58\x56\xdf\x1b\x89\x0e\xc6\x7b\x87\x3e\xdb\xb6\x36\x6c\xa7\x8d\xab\x65\x48\x07\x7c\xa2\x0c\xe1\xc2\x8f\x09\x1d\xa3\x09\xf6\x07\xe3\x0b\x73\x4f\x06\xa2\x27\x0e\xdd\x5c\x51\x51\xc3\x74\x59\x9d\xff\xdf\x70\xb6\xac\xdb\xc9\x7f\x99\xc9\x1a\x87\xf3\x14\x4c\x4b\x4b\xde\x93\xd8\x3e\xb8\x8a\x3a\xf7\x97\x08\x17\xd8\x74\x85\x19\x38\x97\x23\xf5\xdf\x20\x26\x25\x88\xf3\x90\xc4\xf7\x3a\x17\x86\xf6\x97\x21\xe7\x2e\xf4\x1b\x53\x14\xb3\x0a\x0e\x41\xa1\xdf\x46\x9f\x90\xb9\xa4\xdb\xe3\x61\x9c\xd0\x08\xc1\x99\x35\x56\xb0\x4c\xb5\x27\x38\x48\x79\x36\xac\x10\xc0\x99\x0c\xf3\x53\xcf\xe0\x3d\x66\x54\xa4\x4c\x86\xcb\x65\xce\x7f\xc8\xd4\x93\x4c\x1a\xb7\x06\xa7\xda\x19\xc1\xc1\x57\xae\xaa\x55\xbd\xb1\x85\x84\x6a\x67\xd9\x21\x4b\x44\xcc\x3b\xea\xa4\xd9\xc6\x8b\xe1\x6f\xa8\x7d\x75\x37\xff\x97\x77\xf4\xd3\xd8\x10\xe2\xae\xc1\x71\x65\xd4\xdf\x65\xbd\x57\x45\xed\x82\xf1\x8f\xa0\x22\xe6\xb8\x9d\xfa\x4c\x4e\x15\x7f\x37\x35\xb4\x66\x87\x74\xd1\x17\x81\x2f\xfd\x17\x81\x36\x8a\x6a\xab\x1d\xc9\xb5\x71\x47\xd7\xe4\xe4\x2c\xe2\x13\x2d\xe2\xe4\xec\x6b\xd7\xc9\x59\xe8\x82\xe4\x4f\x8e\xd3\x93\x98\x27\x93\x3f\x79\x8e\x4c\x1a\xdd\x8f\x44\x0c\xf6\x71\x3d\x43\x9f\x6e\x11\x83\xfd\x3a\xf7\x43\x5b\xb7\x73\x3f\xb4\x15\x77\x3f\xb4\xca\x69\xd4\xf6\x9d\x9d\x46\x6d\xd7\x3a\x8d\x8a\x39\x10\x88\x39\xb4\x8a\xb8\x2a\x40\x2f\x4d\xc2\x55\x81\xf3\x26\x34\x1a\xe2\x75\x24\x3b\x3c\xa2\x7b\x49\x3a\x1b\xba\xb6\xed\xe6\x54\xfb\xf1\xe5\x93\xbd\xa7\xcf\x5e\xee\x3d\xe9\x74\x97\x15\xeb\xd8\xab\xdb\xcb\xeb\xd1\x62\x91\xcf\xa7\xd9\x83\x9f\x7b\x1d\x4a\xb9\xf9\xf9\xf0\xe7\xa3\xee\x17\xe2\x25\x49\x9d\x94\x60\x1c\xf5\x24\xbf\x04\x2e\x0d\x0c\x95\x46\xc0\xc6\xfd\x00\xdc\x21\x9f\xf8\x65\xa6\x73\x0e\x29\x87\x2e\x92\x90\x83\xd7\xa9\x30\x1f\x2e\x9f\x46\x50\xa2\x33\x7d\x16\x81\x5b\xa9\xab\x42\x0f\xb6\x83\xed\x68\x11\x14\x7c\x58\x71\x37\x4f\x97\xea\x7c\x89\x82\x55\x23\xc2\x14\xa3\xc2\xa9\x4c\xa0\xfa\x44\x08\xca\x15\x9f\xf5\x84\x57\x01\x2e\x82\x25\x0a\x4a\x53\x47\xac\x8e\xf5\x11\x1a\x42\x8f\xa0\x8b\x20\x45\x1d\xcb\x62\xa9\x99\xb3\x62\xfc\x01\x34\xd5\x79\xee\xa0\x16\x7a\x80\xe1\xc2\x2c\xbe\x1d\x68\xf8\x2c\xe8\x3a\x29\xb5\x8f\x3f\xc0\x73\x41\x3e\xcd\xb8\x9c\x79\x32\x18\x7f\x20\x93\x86\xf1\x07\x78\x38\xa0\x5c\x0d\x74\xa8\x52\x51\xaa\x51\x66\x0d\xcb\x89\x00\xf6\xe9\xa6\xe3\x7c\xb2\xa4\x0d\x09\x00\x69\x2a\xd1\x38\xb0\x6b\x95\xff\x64\xf3\xbf\xa7\xce\x9b\xba\xcd\xed\x01\x53\xcf\xa6\xc9\xf3\xad\x46\xd1\x3e\x0a\xe2\xf3\x97\x68\x9b\xa2\x66\x68\x88\x2c\xc3\x70\x34\x2f\x14\x7b\x31\xc4\x6b\x8a\x1e\x06\xa9\xd6\x68\x93\x2c\xbe\x39\x18\x91\x7e\x06\xb5\xac\xaf\xc3\xdf\x9e\x49\x94\x21\xc1\x1f\xbb\x59\xe8\x69\x5f\x2b\xd4\xca\x65\x91\x15\x39\x19\x03\xab\x2e\xf6\x6a\x3a\xb9\x66\xb8\x0e\x02\xea\x44\xd9\x20\xa8\x37\x3b\x99\xdd\x9b\x1b\x12\x77\xfb\xd3\x20\xd4\x75\x41\x0a\xe5\x1d\x02\x3e\xb4\x78\xab\xa9\xad\x67\x50\x5b\xc8\x1f\xad\xbd\x3f\x35\x14\x61\xbd\xa7\x7c\xdc\x0e\x1c\xd9\x8f\x36\x90\x76\xf5\x0c\x27\x38\x7a\x8a\xda\x39\xfe\xea\x62\xb2\x9a\xdd\x50\x19\xb3\xa1\xfa\x77\x33\xc5\x23\x17\x93\x58\xdc\x69\x12\x13\xeb\xea\x3b\x58\x6d\xb7\xa9\x2e\xb3\xec\xa6\x2e\xb3\xac\x4b\x0f\x31\xcc\x0f\x0f\x19\x74\x7a\xdb\xee\xeb\xc3\x36\xf3\xb4\xa2\x46\xf3\xb3\x52\xdb\x02\xec\xcc\x85\xa6\xb9\x2e\xd0\x5d\x02\x08\xc9\x06\x4c\x5a\x35\x80\x44\x56\x48\x10\x0f\xb3\x46\x5d\x2a\x78\x9c\xf5\x59\xa0\x8e\xb5\x36\x2b\x8e\x52\x6a\x5c\x5f\xc6\x5d\xa4\xc2\x1e\xb6\x1c\x25\x22\x8b\x19\x02\x51\x4e\x45\xfc\xfc\x6e\x49\xcd\x0b\x7e\xce\x02\xd8\x9b\x1b\x3e\x69\x97\x36\x8d\xdc\xb6\xc8\xe6\x9b\xda\x8f\xc8\x44\x04\x29\x17\x82\x11\x83\x2d\x5a\xb2\x60\x76\x85\xbe\xfe\x1a\xd6\x5b\xde\x83\xf5\x9b\xa7\x7d\x50\x44\xa2\x79\xcf\x31\x78\x8b\x00\x88\x0d\x14\x3b\x73\xf0\xae\x1f\x9c\x39\x55\xed\x55\xff\x44\x5f\x71\x85\x30\x83\x10\xc0\xe6\x04\x18\x60\xb3\xd4\x8a\x87\xb7\xf4\xfa\x49\x85\x8b\x4b\x7c\x3a\xf9\x09\x2f\xc5\xc1\x62\xa7\x53\xdb\xca\x20\x9c\x6c\x9a\x1b\x77\x46\x31\x33\xb3\x73\xc6\xc6\x2e\x68\x2f\xe7\x4e\xa2\x13\x87\xd5\x30\x89\xdd\xf0\x31\x57\x33\x6b\x04\x7c\xcf\x0b\xfe\x26\xcd\xde\xe0\xfd\xd1\x1c\x45\xa4\xd4\x23\x07\x48\x2d\x7a\xe1\xe3\xbc\x95\x35\x1d\x61\x21\x88\x9b\x0b\x8f\x8c\x76\x4a\x78\x98\x52\x11\x83\xdf\xb9\x9d\x34\x67\xc4\xce\x5a\xd7\x20\x41\x15\x30\x80\x35\x18\xa5\x1f\xbf\x9b\x06\xed\xbe\x8f\xd6\x62\x45\x59\x83\x15\x5a\x41\x03\x6f\x77\x86\xe4\x7b\x88\x80\xc2\x02\xdb\x89\xd4\x47\x8b\xd4\xa2\x4c\x3a\x9b\x8c\xf7\xcd\x91\xe5\x6d\xd6\xf4\x7c\x34\xde\x05\x50\x8e\x58\x48\x41\x3f\x7d\x94\xc2\xd6\x14\x7d\x7b\x8e\x3b\x82\xb2\xa9\x40\xaa\x06\x69\xf1\x54\x1e\x02\x91\xd8\xb6\xf7\x77\x47\xd3\xe9\x6c\x01\x97\xf5\x35\x00\xdd\x9c\x29\x58\x73\xd1\x5a\x4b\xee\x6f\xf0\x14\x6c\xdc\x4f\xd6\x40\xdd\x13\x05\xa1\xfd\xb5\xfb\x1b\x7c\x41\x46\x84\xd7\x44\xd6\x1e\xc3\x20\x29\x5d\xcc\xaf\x51\x12\x67\xc9\x52\x13\x85\x11\x23\xf0\xf7\x88\x37\x21\x68\xd8\xe3\x0c\x9f\xd8\x30\x70\xf4\x74\x99\x8f\xb5\xcd\xfb\xe3\x58\xa2\xcf\xc0\xf5\x63\x5c\x1d\x9a\x9f\x3a\xf5\x67\xd9\x23\xdc\x66\x59\x14\xbd\xd8\x36\x55\x8c\xc0\xbe\x42\xfb\xf5\x3c\x5c\x59\x0f\x63\xb4\x7b\x75\x76\xd5\xae\x40\x95\x40\xb6\x36\x28\xad\x8a\x87\xa8\x68\x60\x65\xb4\xee\x14\xf2\x4a\xf0\x7c\x66\xb0\xa3\x1d\x0d\x2b\xd6\xd7\x23\x74\xd3\x02\x3b\x67\x07\x33\x44\x77\x19\x5e\xd5\xdd\x8d\x17\xb4\x1d\x10\x1b\x4b\xe3\x24\xb2\x90\xe8\xda\x2f\xda\x96\x26\x7c\x12\x1a\x57\xc5\xc6\x69\x85\xd9\xce\x30\xab\x53\x72\x3c\xb6\x0c\x36\x82\xd8\xe9\x2d\xa9\xd0\x22\x1f\xcd\xc7\xb3\xf7\xd3\x86\x03\x2a\x7a\x88\x33\x44\xa8\x33\xd4\xfa\x70\x8e\x9d\x6e\xfc\x4c\x1a\x61\x00\xf4\x70\x30\x36\xbd\x3d\xd5\xb5\x2c\x9a\xfd\x51\x18\x86\x30\xc2\x33\xc1\x83\x13\x32\x7d\x2c\x48\xa1\x1d\x61\xf5\xe3\xb1\xd2\x8c\x78\xc5\xd9\x65\x87\x3a\x68\x1c\x11\x9c\xd4\x7a\x22\x10\x04\x2e\xd1\xf3\xbc\xa6\x27\x5a\x5d\x79\x4f\x26\xa3\xb9\x4a\x79\x5f\x2c\xce\x67\x57\x8b\xb5\x91\x25\x78\xb6\x3a\x7a\x74\xb9\xa4\x67\xf7\xd8\xb5\xb0\xcb\x23\x82\xd7\xfd\x4b\xc3\x0b\xb3\xae\xff\xc9\x65\x8a\x59\xc6\x00\xf1\xd2\x5e\x32\xb5\x8b\x21\xab\xa5\x16\x57\x46\x13\x34\x5f\x9f\xa8\x48\xf9\x01\xb3\xf1\x97\x20\xa8\x47\xf6\x58\x6f\xe2\x22\x04\x02\xea\x5e\xb8\x87\x1e\xb5\xf0\xd6\xea\x24\x42\xfc\x3f\x5f\x0b\x4c\xec\xa5\xfa\x7d\x74\x44\xfa\x87\x8a\xdf\x33\x2d\x9d\x45\x5b\xb2\x5a\x53\x1f\x31\x1a\xdb\x88\xaf\x32\x23\xda\x11\x7d\xb3\x95\x0c\xa4\xa9\xad\xb8\x4b\x94\xf9\xe4\x34\xd5\xab\x0a\xf8\x5e\xda\x8e\x2e\x2b\xcf\x97\x85\x03\xd7\x93\x2e\x0f\x14\xf8\xa1\x93\xab\x18\xd5\x23\xb4\xfc\x09\x1b\x50\x59\x0e\xa7\x22\x64\x3a\xda\xf3\x0e\x6f\xad\x29\xee\xd9\xd1\xc9\x7c\x06\x4f\x78\x94\x78\x38\x45\xca\x65\x06\x2e\x6f\x3c\x76\x1b\xd6\x6e\x35\x63\x29\xcb\x4d\xc8\xe2\x61\x48\xdc\x35\x6c\x9c\x91\x1d\xa9\x09\xa1\xbb\x2b\x89\x72\x7b\x0d\x36\x60\x62\x82\xdb\x8c\x81\x43\x8f\x5b\x21\x77\x5d\xef\xc9\x68\x98\x2a\x41\xaf\x38\x0e\x15\x5a\xd1\xf5\x43\x77\xe5\xe9\xb5\xdc\x7c\x77\x51\xe9\xdd\x9b\x1e\x68\x23\xd8\xf3\x22\x4f\x96\xaf\x2a\x9d\xc3\x7e\x8d\x6a\x96\xa8\x69\x05\x36\x12\xc6\xaa\x48\x78\x62\x2d\xde\xee\x98\x98\xd9\x4e\xbd\xb0\x28\x83\x00\x83\x20\x64\xeb\x1e\xbd\x82\x35\x76\xe7\xde\xca\xca\xa3\x75\x4f\xf3\x15\xf5\xb2\xac\xfd\x96\xd5\x2e\x56\xf5\x36\x5e\x5d\xb4\xb6\xe3\xd9\x6c\xb2\xaa\xba\xdb\xd4\x87\x66\x1d\x35\x15\x2a\x9a\x7d\x96\x7f\xb8\x24\x74\x7e\x67\x8c\xff\xc2\x9a\x8d\x54\x80\x4e\x39\x4d\x7a\x13\x0a\x0a\x99\x3c\xa6\x7a\xc8\x53\x00\x51\xe8\x3e\x89\xec\x62\x3d\xca\x7f\xbd\x1a\xd5\x0d\x51\xd3\x77\xa1\x23\x1c\xf6\x06\x7c\x09\x21\x11\x8f\xd5\x7e\x56\xb7\x18\xad\xaa\xfe\xb6\xa9\xe2\x3a\xe4\x69\x57\x73\x43\x9f\x27\x1f\xd5\xe7\x6f\x9a\x2a\xfe\xa8\x3e\x7f\x53\xdb\x67\x8f\x68\x26\xa3\xe9\x58\x34\x24\xa8\x8c\xaf\x01\x22\xb3\x30\x7a\xba\xfe\x8c\x29\x82\xac\xaf\xdf\xb3\x00\x78\x42\x5a\x47\x62\xa4\x00\xad\xf1\x72\xde\xaa\x97\xf0\x54\xff\x19\x3a\x59\xd7\x47\xec\x55\xe5\x74\xb8\xcd\x4c\x5e\xff\xa6\x9d\xf4\xd2\x2b\x87\x7d\x5e\xdd\xdd\x93\xd9\x64\x02\xc6\x35\xf1\x2e\x6b\x7f\x66\x42\x7a\x7a\x97\xde\x93\x33\x2e\xa2\xcc\xfe\x38\xd0\xe7\x12\x5b\x0f\xa1\x78\x8d\x05\x2f\xae\x1c\xd7\x80\x3b\xee\x98\xd4\xf8\xcc\x19\x88\xee\x16\xef\x72\x06\xa6\x8e\xb2\xa9\xe5\x4f\x63\xb7\x8a\x32\xb6\xcd\xdc\x6b\x71\xcd\x56\x74\x8c\x29\x6a\x40\xe0\x44\x35\xe3\x61\x7b\xd5\x8f\x1a\xd0\x0a\xf2\x00\xed\x19\x67\x56\x4f\xf7\x76\x0e\x7e\x7c\xb3\xb7\x0f\xae\x13\xa7\x70\x47\x53\xe4\xe7\xd7\xab\x7c\x7e\xbd\x79\x39\x9a\x8f\x2e\xca\x4d\x75\x63\x49\xba\x96\xa7\xc2\x97\x81\x32\xf3\xfa\x5b\x39\xd9\xee\xc3\xc1\x67\x19\x81\x69\xa7\x23\x27\x8f\xdf\xdf\x0f\x66\xb2\x75\x4c\x7a\x2d\xed\x26\x43\x6e\x0e\x50\x40\x0d\xf4\xa7\x40\xf2\x52\x23\x9b\xdf\x8e\x75\xd0\x36\x54\x59\x9b\x65\xac\xe6\x1e\x6a\xb9\x3d\xd6\x9f\xfd\x78\x21\x77\x24\x97\xf3\xfc\x64\x04\x3e\x23\x76\xfe\x28\x18\x4e\x87\x4a\x4b\x84\x76\x34\xcf\x56\xba\xd3\x95\xd0\xa1\x53\x5d\x27\xd7\x77\xad\x5b\xab\xc3\x06\xba\x6a\xb7\x74\x98\xa9\x26\x27\x31\x77\xb9\x24\x33\x86\x87\xb8\x55\xd8\x8f\x02\xe8\x3a\xe0\x55\xed\x02\xeb\xc8\xb4\x2f\xd7\xc8\x17\xf9\x4c\xd4\xfa\x35\x22\x3f\xfa\x25\xa0\xc9\x29\x42\x26\x3d\x24\x38\x1f\x0c\xca\x05\x7b\x7b\x17\x99\xfd\x09\x5d\xc4\xbf\xd6\x6d\x2a\xdc\x06\x2f\x47\x27\x24\xeb\xd4\xfe\xb1\xd9\xf3\x43\xf8\x58\xc8\x4e\x58\x39\x04\x82\xf6\xc2\x9a\x25\xdb\xbd\x3f\xf5\xb6\x36\x8f\x41\x72\xb0\xbd\x71\x32\x9a\x8e\xe6\xd7\xbd\x47\xe3\x3f\x6f\xff\xf9\xeb\x3f\x8d\x12\x4b\x50\xf6\x5e\xfe\xd4\x5d\x1a\x81\xa5\x98\xce\x7b\xee\x74\x22\x9c\x29\x92\xe9\xb4\x15\x25\xbd\x42\x0c\x2f\x92\xd4\xea\x68\xdf\xcc\xd3\xd3\x42\x3b\x47\xa1\x0f\x78\x3d\x6b\x5e\x63\x74\xcd\xf5\xe4\xd9\xfe\xce\x77\xcf\xf7\x86\x6f\x76\x5e\x7e\xbf\x37\xdc\x79\xfd\x4c\x34\x19\x66\x92\x00\xb9\xae\x56\xd0\x2a\xc0\xa8\xe3\xd8\x73\xbd\x4a\x32\x15\x7a\x2c\xbf\x23\x2d\x34\xb4\x3e\x70\xa9\xb8\x00\xd5\x49\x38\xe8\x3a\x5a\x2f\xdc\xbd\xe6\x23\xb5\xf8\x2c\x10\xe4\x0f\x12\xe8\xba\x65\x0f\x39\xef\xc8\x59\x71\xf5\x0f\xfb\xb5\xf3\xfc\xf9\x50\x43\xba\xfc\x94\x91\x60\xcb\xaa\x33\x9c\xbc\x9b\x1b\x2f\x91\xdd\xa5\x79\xa9\xe1\x13\x95\x04\x30\x0d\x04\x7d\x7a\xf5\xfa\x40\xe1\xef\x4e\x53\xc7\x3c\xee\x54\xc7\x4c\xf8\xef\x83\xbd\x97\x10\x6c\xe4\xd5\xc1\xab\x83\xff\x79\xed\xcc\x6e\x90\x27\xbc\x9a\xd6\x95\x56\x17\x2f\x8b\x22\x06\xa7\x02\x30\xec\x95\xf5\xe9\xb3\x7f\xb0\xb3\xfb\xc3\xc1\x9b\x9d\x5d\x35\x92\x97\xc3\x27\x7b\xaf\xdf\xec\xed\xee\xc0\x88\x32\xd7\x99\x5c\x2d\x9c\x51\x23\x70\xbd\x57\x8a\xe2\x26\x89\x21\x1f\xe3\xdf\x7e\x4d\x07\x85\x83\x3b\x4d\x1b\xdc\x9e\xe8\x54\xb7\x36\x41\x7b\x7e\xa8\xd1\x50\x58\xb5\x39\x47\x65\xa9\x4e\x0b\x3d\x73\xf4\xc5\x6d\xff\x50\xbb\x03\xad\x93\x05\x5d\x50\xf8\x5e\x58\x55\x0c\x5d\x36\xeb\x72\xf8\xd1\xb2\xe0\xfc\x6a\xfa\x6c\xfa\x44\x96\xb6\x29\xad\xdb\x26\x16\x20\xb7\xed\x73\xc2\x6d\x2b\x78\x8a\xa2\xf3\x48\xa2\x5d\x87\x61\x4a\xf2\x75\xe1\xef\x59\x13\xd2\x2b\x88\xd6\xb3\x35\xb8\x83\xd7\xea\x50\xa5\xfb\x30\xee\xdd\xa4\x8d\x86\x74\x93\x76\xb1\x1f\xc0\x77\x7b\x45\x00\xdf\x6d\xcf\xd5\x47\x2c\x3c\xef\xb6\x08\xcf\x2b\x5c\xe0\x06\xd5\xd8\x20\xbf\x64\xc3\xef\xbb\xd8\x66\xd3\x7e\xd2\xc4\x45\x85\xdf\xa5\xe3\xcb\x9a\xde\x72\x27\x13\xf0\xe8\x84\xd6\x0c\xa0\x66\xa2\xd7\x01\x9c\x78\x29\xe8\xc7\xfc\xbf\x7d\xe3\x0b\x4a\xf4\x9b\xb3\xab\x34\x70\xf3\xbc\xb2\x61\x2e\xf1\x58\xfc\x6e\xea\xc0\x6a\x10\xd5\x09\xcf\x1b\xf0\xea\x3e\x60\x81\xc7\xf6\x67\x63\x0f\x56\x41\x54\x69\xd4\x6d\x73\x3e\xc9\x81\x1f\xa6\x4c\xa7\x79\x06\x7f\x2c\x7e\xdb\xea\xdd\x62\xfd\x15\xf9\xdc\x76\x5e\xd6\xb4\x5e\x9a\x86\x75\x82\x3c\xf3\x1e\x1f\x1e\xf5\x11\x7b\x00\x0d\x3a\x1a\xc2\xee\x97\x62\x91\x5b\x57\x49\x04\xa8\xdd\xb0\x43\x1b\x98\xad\xd8\xf2\x14\x1d\x1d\xfe\xe2\x78\x25\xc4\x5d\x48\x10\x4b\xb3\x19\x32\xb7\x0e\x01\x03\x34\x9a\x40\xb2\x6c\x13\x5f\xdc\x10\xdd\xe1\xd2\x4e\xad\x54\xa9\xf6\x43\xf8\x69\xda\xb9\x27\xdb\xd1\x7e\x32\x20\x23\xdd\x46\xcf\x78\xf3\xfc\x72\xa2\x98\xdb\xa0\xa1\xf1\x87\x74\x74\xb1\x48\x49\xc7\xa0\x14\x6f\x16\x87\x47\xc0\x0f\x2a\x1a\xd8\xd1\x79\xe9\xc9\xf9\xd5\xf4\x2d\x3e\x85\x1d\x1e\xa5\x65\xf1\xcf\x3c\xfb\x3a\xff\x32\x2d\x17\x23\x75\xc0\x40\x45\x6a\xc3\x97\x19\xd4\x86\x06\x9f\x83\xf7\xe7\xc5\x24\xc7\xd7\x3a\xbe\x42\xc1\xfd\x18\x6c\x7e\x01\xee\x5b\x28\xff\x18\xfe\xf4\xe1\x13\x35\x54\x8c\x99\x28\x9b\x06\x57\xd8\x20\xbd\x45\xf2\x90\xb6\xb0\xdd\xee\x80\x72\x0e\xb1\x6d\x6a\xce\x74\x17\xb3\xba\x03\xcc\xda\xc8\x00\x7c\x00\x2d\x6c\x66\xd4\xab\x39\x06\x69\x5b\x68\x68\xaa\x97\x5f\x13\x68\x4e\xa8\x02\xe7\x55\x28\x6d\x3b\x7d\x05\xaf\x4e\x8f\x0b\x18\x6c\x73\x52\x3b\x7e\x39\xd7\x9b\x04\x2e\xb6\x5e\xb1\x9a\x96\xfe\xad\x82\xad\xa2\x36\x72\x49\xee\xee\xbc\x9e\x6d\xa7\xf8\xdf\x43\x8d\x44\x16\x10\xc4\x55\xd4\x02\x93\x22\x5d\xc0\x5a\xff\xd1\xbe\xc1\xc1\x44\x10\xef\xa1\xde\x8b\xdd\x6f\x61\xad\x64\xdd\x84\xe0\x3a\xbb\xb2\x4f\x38\x12\xa8\xaa\xea\x4e\x49\x6c\xac\xee\x94\x24\x5b\xa4\xc3\x5a\x73\xa7\x8f\x3d\x1d\x23\x16\x24\xdb\xae\x05\x09\x76\x01\x2e\xe3\x6a\x73\x24\x63\xd6\xc7\x85\x77\xeb\x34\x51\x34\x35\x87\x0b\xa4\xfa\x39\x51\x5d\x7f\x79\x85\x97\xc3\x34\x51\x57\xca\x72\x74\x06\xc9\x53\xca\x9d\xea\x1c\x85\x9e\x27\x6f\x13\xe1\x70\x4a\xbc\x9f\xb3\xc7\xc2\x0b\x75\x9d\x85\x6f\xef\xc5\x4f\x3f\xbf\x01\x17\x8f\xd9\x27\xa3\x4b\x60\xf0\xf7\xa1\xc6\x83\x39\x22\x5d\x4d\x06\xd5\xc1\x7c\x28\x80\x08\x47\xf8\xa0\x28\x8e\x5a\xe1\x76\x98\x42\x57\x1c\x9e\x55\xa1\xf0\xa1\xcd\x45\x25\xf1\xa3\x4c\x75\x33\x48\x64\xa6\x88\x7a\x61\xf5\x98\xd9\x74\xc1\x4b\xee\x36\x32\x4d\x14\xdc\xa0\x06\x27\xd8\xd2\x6c\xa5\xfd\xdd\x2a\x53\xb9\x4f\x61\x7b\xf6\xd1\x76\x5d\x81\x7d\xd6\xc3\x95\xf6\x59\x0f\x7d\xfb\x2c\x11\x98\xcf\x87\x13\x81\xfa\x90\xc6\x63\x58\x3e\x1f\x88\xc2\xf4\x99\x7c\x08\xd2\x17\x05\x81\xa0\x7d\x35\x9b\xe6\x91\xbb\x69\x02\x73\x1d\xc7\x98\xe7\xd5\xcb\xdd\xbd\x6c\x3b\xdd\xff\x71\xff\xb5\xba\x3e\xed\x3d\xc9\x1e\x0a\xef\xdd\xce\x69\xc7\xce\x6e\x2f\x30\x64\x90\x3c\x1a\x37\xb7\x85\x5e\x00\x51\x59\x42\xdb\xcd\x47\x83\xe2\x5b\xc0\xe9\x4d\x50\x24\x83\x8b\x27\x56\xa1\x0e\x64\x84\x3a\x2c\x8e\x50\xc3\x03\xa2\x11\x99\xa4\x8d\xed\x23\xa0\x68\x50\x6f\xa1\x3d\x4c\x19\x12\xa6\x52\x85\xa9\x0c\xfe\x57\x6a\x95\x12\x44\xc5\x7a\x5d\xa1\x14\xee\x75\xdd\x94\x0b\x91\x0f\x32\x10\x11\x99\xf8\x77\xac\xed\x6b\xbe\xb5\xa7\xb1\x8b\x88\x89\x50\x62\xa0\x40\xe4\xec\x95\xe3\x3d\xe6\xd5\x5e\x71\xcb\x99\x9b\x7e\x68\xba\x8d\x82\x0a\x06\x02\xe7\x60\x0e\x98\xdf\x01\x3b\x58\xc5\x70\xac\xaa\xb8\x3e\x87\xfd\x4a\x08\xef\x31\x5c\x59\x9b\x5a\x0f\x8d\x2a\x14\xc3\xda\xa5\x71\x83\x0a\xba\xcb\x93\xce\x16\xe7\xf9\x7c\x47\xb7\x53\xa3\x04\x24\x9b\x67\x35\x20\x53\xa9\xff\xed\xcd\xa1\x1d\x03\xeb\xf6\x09\xe4\xa4\x9c\x28\x7a\xe2\xe6\x25\xfc\x64\x30\x50\xa7\x67\xf4\x34\x29\x0a\x3d\xd1\x51\x69\x29\x92\x1e\xea\xee\x52\xe8\x13\xc3\xcf\x8a\x71\x7a\x9b\xc7\x2e\xf5\x33\xc1\xa1\xca\x02\xec\x41\x40\x96\xa2\x76\x7d\x2b\xec\xe6\x70\x8e\xe1\x8a\x40\x24\xc8\xdf\x70\x41\xd2\xb1\x6a\x8f\xeb\x06\xbe\xe7\x5f\x72\x7d\x98\xb3\x37\x5e\x03\xda\x2d\xd4\x40\x0c\xbd\x61\x39\x79\x0f\x09\xe0\xf8\xfa\x46\x02\x7a\x4a\xab\x41\x1d\x4a\xd4\x5b\x5b\xb7\x49\xc5\x70\xb3\x8a\x29\x25\xac\xaf\x5b\x4d\x42\x2b\x95\xd1\x0e\xcf\x79\x6e\xe9\x73\xc0\x73\x8f\xef\xb6\x78\xac\xf0\xa2\xd6\x92\xe1\xe8\xa4\x8f\xa2\xf3\xcd\x4b\x86\x21\x97\xb0\x8f\xf8\x7d\x93\xc1\xe1\x14\x5f\x0b\x46\x9d\xd1\xca\x45\x00\xd1\x53\x64\x8c\x70\x51\x1e\x17\xe3\x1d\x3b\x71\x6a\xff\x05\x69\x9d\x9a\x89\xec\xba\x7b\xb0\x2e\x04\xad\x67\x9d\xd8\x66\x89\x3e\xc5\xea\x98\x66\x87\x5e\xbb\x91\x13\xfc\x53\xae\x62\x9c\xaa\x79\x2b\xc5\xb7\x48\x01\x97\x3e\x5a\xb5\x4a\x6f\x9c\x61\x98\x85\x72\x93\x1b\xd6\x8a\x4c\x7d\x70\xcc\xcd\x53\x42\x97\xc0\x3f\xcc\x91\xe4\x77\x56\xd0\x3d\x49\xf0\xe0\x48\x30\x6b\xee\xc5\x24\x6e\x24\x07\x5a\xee\xf4\x47\x24\x09\xf1\x6d\xaf\x87\x2d\x72\x14\x79\xbf\xc9\x0c\xfb\x6a\x27\x42\x71\xdb\x68\x43\x68\xdf\x9e\x79\xb4\x1c\x6a\x8d\x46\x54\x49\xb3\x2c\x74\xfc\x36\x27\x27\x8b\x6d\xdb\x5e\xcf\xfe\x2f\xdb\xb8\xd5\x17\xd2\x9c\x7e\x87\xbb\x91\x9a\xea\x5d\x67\xbd\xab\x42\x4f\xd7\xad\x6b\xe9\xce\x6c\xf9\x99\x57\xd6\x68\xf6\xdb\xa3\x5c\xa3\x20\xf4\x08\x3e\x2d\x92\xe9\x05\x2d\xd2\x89\x8e\x88\x96\x4e\x32\xdb\xd7\xd0\xa2\x51\x67\x09\x20\x88\x87\xb6\x12\x9f\x06\x16\xeb\x3e\x23\x4e\x0d\xfc\xd1\xd3\x71\x23\xe0\xbb\x03\x31\x19\x32\xb7\x94\x9a\xc1\x1f\x83\x91\xae\x6d\x60\xd0\x21\x7f\x46\xfd\x79\xf1\x0b\x88\xd9\x85\x2e\xab\xcf\xcf\x8a\xd6\x91\x50\xe9\x66\x94\x4e\x94\x73\x11\x30\xc4\x14\x75\xa8\xb0\x25\xb1\x2c\x05\xc5\xe0\x11\xf6\x0e\xa7\xe7\xc9\xe0\x08\x28\x83\x89\x7c\x09\x2d\x88\x34\x2e\x09\xcb\xce\x0c\x76\x49\x5d\xae\x85\x33\xbc\xa6\x38\xed\x76\xc7\xe6\x1c\xfc\xdd\xa3\xc1\xa4\xaf\x94\x9a\x23\xc1\xb8\xec\x42\x19\x45\x7c\x97\xc2\x89\x67\xea\xa3\x03\xd0\x56\xef\x57\x8d\x06\x23\xf6\xc8\xa9\xf1\xf9\x7b\xc7\xe3\xac\xfa\x7d\x38\xf8\x81\xa5\x63\x82\x11\x87\x77\x7a\x00\x5d\x37\xb8\x1a\xcb\x04\x2e\x52\x1b\x04\xb5\xe2\xc1\x70\x8c\x26\xec\x0f\xf5\x58\xc1\xe3\x33\x26\xab\x24\xdb\xa5\x11\x7c\x1b\x4f\xff\x52\x0b\x68\x3c\x8e\x54\xaf\x0e\xd9\x45\x63\xd6\x21\x65\x1d\x75\x38\x7e\x4a\x50\x4b\x53\x15\x94\xe6\x12\x0f\x57\x65\xd5\xd9\x92\x1a\x5f\x32\xf3\xcb\xe2\xea\xf9\xa8\xac\x39\x59\x3e\xf9\x0d\x5d\xeb\x98\x5b\x59\x87\x8b\x33\x2e\x21\x91\x1d\xcb\xe4\x47\xe4\x6a\x5b\x23\x09\x62\x3a\xf1\xf9\xb9\x3a\xb2\x5e\x71\xad\xf8\x63\xf4\xf9\x56\x7b\x61\x60\x08\xd3\xa1\x83\x0a\xae\xcd\x4c\xf4\xc6\x08\x32\x3e\xf9\x21\xc3\x97\xb0\x84\x9b\x2c\xcd\xa2\xd6\x25\xa9\x3a\x1b\x0f\xb7\xf8\x5c\xaf\x33\x41\x49\xb7\x00\x6c\xe0\x98\x93\x52\x93\xaa\x27\x74\x9a\x1b\x8f\x03\xf8\x56\xef\x86\x3c\xc9\x66\xd3\x88\xb3\x38\xc3\x0c\xb9\x9f\x75\x22\xe8\xd0\x85\xda\xe1\x4a\x1f\x6a\x31\x27\x6e\x77\x11\x41\xaf\x14\x39\x87\xae\xa7\x22\x72\xe7\x26\x4f\x5b\x11\x7f\x4d\x5a\x53\xc0\x2b\xa6\x5f\x93\xd2\xef\x50\xb9\x66\xef\xbf\x5f\xef\xbc\x44\xfd\x96\x07\x7f\xef\x74\x1e\xf7\x31\x58\xc7\x7f\xfc\xdc\xeb\xfe\x47\xf7\xe7\x65\xa7\xa7\xfe\x56\x5f\x3c\xa8\x13\xfc\x1b\x4c\x09\x9c\x4d\x5c\x92\xef\x26\xc1\x61\x92\x62\x83\x3a\x02\xd3\xcb\xb9\x5a\x9f\x0f\x29\x20\x00\xbb\xb9\x05\x50\x1b\x67\x7b\x0d\x63\x6b\xd7\x99\x2c\x7e\x07\xef\x23\xdc\x60\x3e\x16\x1a\xdc\x8a\x4f\x42\x6b\x6d\xa0\xec\x23\x75\x9c\xa3\x8e\x60\x99\xae\x25\x1b\x49\xde\x3b\xeb\xad\xfd\x43\xcd\xfc\xbc\xb7\x44\xe7\xb9\x48\xcd\xd7\x26\x23\xfa\x55\xfd\x63\xad\x3c\x9f\x5d\x4d\xc6\x10\x78\x23\x00\xb3\x50\x09\x92\x7c\x1c\x44\xe6\xcd\x5e\x2f\xff\x90\x9f\xe8\xa1\x74\xc1\x22\x16\xc6\x98\x21\x2c\xb8\x7d\x86\xc1\xf2\xd7\x43\x13\x54\x04\x79\x0c\xbc\xea\x2e\x3a\x0a\xb5\xba\x16\xa5\xca\xab\x53\x55\x1c\x8c\xf2\x68\xfa\x3a\x54\xdf\x06\xa7\x57\xda\x01\xa3\xc9\xe6\x86\xab\xaa\x06\xfd\x15\x45\x68\xc0\xfd\x36\x61\x7c\x3e\x35\xde\xfb\xde\xf1\xb6\x85\x77\xbc\x88\x67\xba\x87\xd6\x33\xdd\x2a\x64\x74\x0d\xd6\x1c\xd7\xf3\xcb\xca\x35\x2a\xb4\xfe\x53\xd2\x22\xdb\x8e\x59\xe1\x82\x55\xfa\xfa\x3a\xb5\xdc\x91\x01\xbb\xc1\xfe\x27\x21\x95\x1f\x75\xaa\x2b\xee\xa5\xa6\x62\xf0\xbd\xad\xa9\x3d\xb8\x77\x8a\x5b\x43\xda\x80\xdf\xf5\x36\x91\xe8\x65\xbc\xc9\x24\xb2\x66\xed\x8b\xa9\x9a\x77\xec\xcc\x08\xf9\xc5\x5b\x3c\xc3\x7d\x16\x62\xb7\x8a\xce\xa9\x4b\xc3\x2e\xec\x94\x86\x07\x32\x99\x4f\xca\x4a\x57\xc7\xf0\xcc\x7b\x0c\xe7\xff\xa1\x36\x0e\x5e\x52\xb4\xef\xcb\xd9\xe5\xd5\x64\xb4\xc8\x2d\x87\x60\x46\x33\x35\xc7\xbf\xbd\x48\x80\xca\x84\xa9\x6d\xe0\xdf\xa8\x4c\x33\xc1\x65\xca\xe6\x49\x30\x0e\xd8\x6d\x53\x7a\x68\xa5\x46\x46\x6a\x53\x7a\x9a\xb1\xef\x37\x78\x82\x0b\x58\x76\xcc\x5b\x91\x41\x32\x1b\x80\x1a\x70\x7d\x64\x9a\x04\x1a\x2f\x44\x0b\x0a\xac\x44\xf3\xf9\x69\x16\xd5\x41\x7e\xaf\xe8\xee\xec\xfd\x63\xfa\xaf\x07\x70\xe0\xdb\x7e\x7a\x92\x83\xa6\x6d\x9f\xa7\xf0\x54\xe1\xad\xca\xe9\x4d\x67\xef\x6f\x6e\xf0\xd7\xc5\xec\x9f\x2f\xcd\xc7\xfb\xfc\xf8\x6d\xb1\xb0\xdf\x17\xa5\xfd\x3d\x53\x3f\xcd\xd9\x3e\x7d\x7c\x3a\xc5\x40\x69\x1d\xc8\xeb\xf6\x03\xc5\xc9\x0d\x74\xa1\xa5\x16\xab\xaa\x3a\x5d\xf9\xc4\xa8\x51\x98\x2c\x63\x2f\x47\xd7\x93\xd9\xc8\x0a\x30\x74\x10\x38\x7f\x2d\xc5\xb4\xa5\x30\x2d\x48\xd0\xd9\x05\x08\xeb\x8f\x1e\xbc\xf9\x71\x17\xf4\x68\x51\x27\xf4\xe9\xb3\xe7\xea\x0e\xa0\x21\x33\x28\xb8\x91\xf4\xd7\xc0\x9b\x33\x36\xc8\x0b\x32\x50\x67\x4c\x39\x9b\xe4\x3d\x80\xec\x68\x70\xba\x10\x88\x5b\xa4\xed\x47\x80\x82\xb4\xf4\x95\xbc\x67\xfa\xae\x92\x32\xf7\xde\xaf\x47\xd8\xdc\x75\xd9\xb1\x3d\x35\xcd\xb6\x6f\x82\x4e\xc0\x1c\x1d\xe7\x6a\x9d\x49\xd7\x18\x51\x5e\x77\x83\xc4\x31\xa1\x2c\xc2\x4a\x68\xfc\x0e\xdb\x1d\xa0\x73\x2c\x08\x60\xbf\x6c\x09\x22\x05\xe9\xcc\x1e\x65\xd0\x82\xe2\x44\x76\xf5\xba\x5a\xcf\x00\xd1\x29\x90\xde\x02\x14\x1d\xc0\x1e\xe6\xe0\x0d\x1c\x0b\x67\xfc\x3f\x6a\x8a\xeb\x75\xcb\x3f\x9c\xe4\xa8\x03\x92\xe5\xf5\x92\x93\xbb\x8d\xcf\x8c\x67\x74\xaa\xce\xe0\xd8\x70\x52\x6f\x0a\x70\xdd\xef\xb2\x86\x42\xc2\x22\x29\xa0\x11\xb3\x98\xe9\xa8\x13\xb8\xd8\x7d\x94\xd9\x9f\x52\x7a\xc8\x94\xc7\xf0\x6f\xda\x33\x38\xd2\x10\x8c\x9e\xa1\xd9\x35\x66\x5b\x7a\x09\x39\x2d\x27\x23\xde\xd0\x41\x19\x16\x0a\x66\xd2\x84\x2c\xd0\xf4\x11\x13\xd4\x81\xfa\x1f\x09\xe0\x3e\x10\x48\x24\x85\x89\x62\x47\x81\x1f\x4d\x8c\xe2\x95\xc9\x62\x4f\xe9\xd4\x2c\xa5\xff\x32\x2b\xa6\x9d\x44\x15\x48\xd0\x62\x50\xa7\x6f\x24\x1d\x95\xa6\x58\xd9\xc7\x89\x77\x56\x64\x4b\x1e\x4d\x5f\x8f\x17\x0b\xf4\x81\x08\xbd\xc9\xcf\xf6\x3e\x5c\x76\x92\xbf\x27\x1b\x5c\xcb\x17\x6a\xa8\xec\xe2\x87\xfe\xab\x06\xf2\x3c\xf0\x68\xb7\x76\x74\xb5\xac\x34\xf5\xb3\x79\x9e\x10\x8c\x93\xed\xb1\x61\x57\xe4\x6a\x6a\xd7\x44\xd4\x6d\xd5\x2a\x6e\x71\x40\x39\xc7\x10\x07\xed\x92\x75\xb2\x3a\x45\x55\xc9\x4a\x3c\x0d\x45\x33\x28\x67\x08\xa2\x97\x99\xf8\x2d\x5f\xb6\xc0\x22\x4b\x9e\x91\xf8\xcc\x1b\xad\x0c\x61\x33\xfc\x5b\xc7\xd0\x94\xc3\xe3\xc9\x68\xfa\xb6\x05\x27\x23\xdd\x59\xff\x2e\xcc\x4c\xcc\xbb\xae\x77\x59\x5b\xc5\xcf\x16\xe5\x77\x30\x5a\x1d\xa8\xc9\xf1\x6a\x00\x69\x37\x37\x56\xfc\x27\xcc\xe1\xd7\xd7\x49\xcd\x1a\xbc\x7a\x3e\xf8\x79\xff\x41\x97\xbd\xd3\xd7\xb2\x89\x66\xaa\x3e\xc6\x4d\xfa\x27\x76\x14\xfe\x59\x9d\x70\x47\x3c\x1a\x3f\x72\x6b\x10\x6b\x60\xe7\xdb\x73\xd2\x40\x4b\x00\x73\x6d\x0f\x70\xba\x31\xd0\x92\x38\x8e\x78\xfc\xb5\x22\x42\xa2\xd6\x4a\x33\xf8\x09\x7b\xb2\x80\xd5\xda\xc2\x93\x9a\xdc\x62\x44\xcc\x1d\x3a\x1c\xe3\x1e\x01\x20\x22\xa4\xc9\x1d\xf7\xd6\x5e\x4f\xf2\x91\x9a\x2f\x98\x33\x6d\x38\xb7\x47\x70\x8a\xee\xe7\xea\x44\x4c\x52\x4e\x71\xd4\xfa\xd8\x09\x07\xfe\xad\x43\x4c\x2e\xe7\x45\x98\x25\x34\x8f\xe5\x89\x2a\xeb\x51\x8f\x90\x26\x8e\x79\x1f\xab\x31\xba\x12\x51\xc4\x32\x9b\x25\x15\x7a\xf3\xbc\x71\x70\x91\xa5\x16\x3b\x07\x5c\x9c\xe6\x4d\xab\x03\xf9\x2d\x16\xe7\x25\x82\x89\xb5\x81\x04\x77\x69\xb0\x25\xf8\x53\xbf\x30\x2f\xbd\x5c\xae\x98\x73\x6a\x66\x7f\x52\x1c\xcf\x47\xf3\x98\x48\xec\x8e\xe2\xaf\xc6\xb5\x68\x10\x62\x45\xb6\xef\x2a\x21\x96\x36\x75\xf1\xf3\xa5\xa9\x8b\x19\x9f\x7f\x29\x1a\xda\x1c\x96\xfc\x02\xc6\x3d\x2f\x8e\xe9\x35\x6c\x4b\x13\x90\xe7\x08\x76\xed\x5f\x1b\x5d\x2f\x47\xb6\x32\xc7\xc5\x91\x3a\x74\x6d\x0e\xf8\xe1\x84\xb2\x80\x50\x58\x05\xe3\x98\x03\x01\x5e\x40\x45\x65\xda\xf5\x81\xdb\x7a\xfa\x4e\x1d\xa1\xea\x83\x5e\x6e\x6d\x1f\xf5\x95\x52\x54\x80\x7c\xc9\x12\xd2\xfb\xb2\x64\x9f\xff\x07\xaf\x44\xb1\xf6\xfe\x3f\xf6\xde\xbd\xbd\xad\xdb\x48\x18\xff\x7f\x3f\x85\xc4\xdd\x47\xe1\x59\x1d\xd3\x96\x9d\x6e\xb7\x64\x4f\xf2\x73\x6c\x25\xf1\xc6\xb7\x95\x95\xf6\xdd\x57\x55\x59\x5a\xa4\x6c\xc6\x14\xc9\xf0\x50\xbe\xac\x74\xbe\xfb\x0f\x73\x03\x06\xb7\x43\xca\x76\x92\xf6\x7d\xda\x3e\xb1\x78\x80\xc1\x6d\x00\x0c\x06\x83\xb9\x3c\x20\x54\xc4\x03\xbf\x41\xd3\xcc\x3c\x68\xac\xee\xef\x97\x77\xca\xed\x7b\x33\x9e\x1c\x25\xc7\x2f\x17\xbd\x97\x55\xd8\x01\x7a\xe9\x7b\x59\xc4\xdd\x10\x01\xa3\xcb\x29\x01\x10\xec\x2e\x74\x93\x10\x62\x46\x7b\xc8\x12\x01\xa6\x08\xed\x54\x71\x0b\x05\xf5\x38\x69\x9c\xf9\xc2\x69\x86\xea\x7b\x82\x2d\x72\x34\x14\x4c\x37\x5c\x72\x33\x9b\xd9\xc1\x64\x76\x2d\xc6\xbf\xdf\xe2\xb0\xb6\x82\xed\xdf\x84\xff\xc9\x88\xb7\xef\x66\x08\x30\xdf\x7d\x9e\xe0\xe3\x85\x9a\x69\x4e\x7f\x66\x4e\x48\x33\xf0\xe3\xc5\x03\xfa\x76\x97\x61\xb6\x51\xef\x31\xa0\xbd\x45\x99\x12\x55\x12\xc2\x2a\xb3\xf2\x81\xcc\xc9\xbb\x81\x59\xab\xaa\x46\x0a\xf2\x13\x11\xea\x41\x78\x65\x9f\x79\x67\xfa\xd7\x2e\x95\x24\x10\x7d\x38\x44\x06\x4a\xcb\xc8\x35\xce\x6f\x74\xa4\xeb\xed\x3b\xee\xd3\xc3\xd5\x04\x4c\x17\xe9\x2a\xf4\xa8\x00\xfa\x03\x5d\xb6\x37\x9e\x9a\x7d\x30\x42\xc9\x61\xd5\x91\x3b\x66\x67\x1f\xba\x66\x05\x49\x0a\xde\xb7\x24\xf6\x09\x27\x5b\x4b\x44\xb6\x81\x70\x01\x0b\x9f\x7e\x3a\xe5\x8e\xb9\x8e\x51\x6f\xbb\x5c\x10\xe4\xd4\x4a\x43\x1b\x2d\x5f\x9f\x2f\x66\x1f\xce\xa7\xf0\x46\x39\xa9\xe1\xf5\x8a\x00\x91\xc6\x40\x4a\x71\x05\x1e\x53\xd3\x4f\x02\x54\x01\xde\xe8\x47\xd3\xd9\x64\x0c\x02\x1b\xdb\x12\xde\x89\xbb\xb8\x09\xd0\x2f\xc4\xb1\xb9\x4d\x2f\x2e\xd7\xda\xf5\x19\xd5\x8a\x20\x4d\x79\x27\x50\x9d\xd5\x7b\x12\x26\xa3\xef\x2f\xd1\x8e\x49\xea\x18\xfe\x8f\x6d\x58\x31\x12\x7a\x08\x02\x69\x1a\x06\x5b\x0a\x81\x68\x9b\x2a\xa8\xe9\xfc\x7c\x11\x02\x41\x9a\x86\x41\x1b\xde\x10\x08\x13\x01\x6a\x43\x61\x42\x5b\x58\x9a\x52\x01\xce\x9f\x97\xdc\xb5\xe1\x62\xb4\xcc\x3e\x27\x6c\x17\x2a\xc9\xda\xcd\xfe\x82\x46\x1f\x63\x1d\xbf\x66\x03\x5d\x0b\x63\xf3\x1c\xa8\xd8\x3c\xa9\xb8\x3a\x77\x83\xb8\x3a\x29\xf3\xdb\x7b\x81\xf9\x6d\xc2\x1e\xe3\x4b\x67\x8f\xa1\xc8\x21\x07\xdc\xa2\x70\x6e\x97\xeb\xe5\xa5\xe7\x60\x11\x30\x0d\xaa\x2b\x08\x42\x1a\x22\xa1\x0d\x00\x80\x98\x53\x99\xca\xe2\xcb\xc2\x29\xbe\x6d\xe3\x2f\x2b\x51\xa2\xec\xc6\x6b\xf8\xc9\x68\xd9\x5d\xac\xa6\xaf\x40\x94\x04\xee\x64\x9e\x29\x59\x10\x86\x9c\x90\xcc\x1e\x7c\x51\x70\xb0\x82\x9c\xac\x80\x47\x1d\xe8\xb9\x00\x50\x62\x31\xb0\xb5\xf4\x6c\xcc\x0a\x95\xc6\x45\xe9\x8f\x4a\xe7\x7b\x95\xad\x8d\xf9\x2b\xe7\x95\x86\xe0\x5c\xef\x9f\xad\xc6\x93\xd5\x64\xfc\x02\x65\x0e\x14\x2c\xc0\x70\xdc\xab\x6e\xd1\xb8\x1c\xc6\x75\xc2\x76\x1f\xc8\x8b\x83\x6b\x06\xaa\x8c\x33\x91\xba\xc2\x1a\xfb\x1e\x15\x31\xed\x2c\x41\x6e\x31\x3f\x9b\xbc\x20\x47\x98\x98\x36\x23\xd5\x37\xb4\x56\xf5\x6c\x65\x09\x95\xb0\x74\x2a\x5e\x3f\x14\x0f\x5f\x57\x12\xd6\x8a\x82\xda\xca\xd6\x0b\xc7\x09\x94\x25\x67\x56\x16\xca\xaa\xdc\xa8\xb4\x13\x80\x3b\x25\xa7\x29\x33\xab\x80\x06\x0d\x8a\x89\xeb\x67\xef\x1c\xbb\xc7\x8d\x3a\xe1\xb6\x49\xe5\x99\x19\x43\xa1\x52\x3c\xf6\x62\x0e\x3e\x04\xdb\x67\x52\xdf\x54\x96\xef\x9a\xf1\x23\xc2\x8e\xed\x81\xba\x92\x37\xa5\xd9\x18\x9f\x3c\x42\xeb\x1e\x2b\xc6\x79\xc2\x26\xfd\x7c\x5e\x82\x23\x53\xf7\x2a\x41\xf5\xad\x17\x78\x70\x76\x0b\x4f\x78\xf7\x53\xa5\x7a\x6c\x2e\x14\x3f\xd1\x05\xe2\x9c\x4f\x54\xf4\x88\x3a\x23\x2d\x3c\x18\x3d\x57\xd2\x3a\x7a\xb1\xdb\x29\x61\x37\xf6\x83\x43\xbc\xe6\x50\xdc\x6e\x79\x83\xa7\x6c\x6f\x05\xe3\x26\x0e\x51\x80\x0e\xb5\x7b\xa9\xd1\x88\x9c\x13\x9e\x22\x1d\x0d\x03\x32\xc2\xbb\x03\x37\x7d\xb4\x05\x25\x16\x3a\x6f\x7f\xeb\xf2\xc6\x14\xac\xcc\x7f\x83\x27\xe0\x0a\xa0\x6d\xb3\x1a\x80\x06\xa1\xd4\xf6\x24\x34\xf6\xef\x94\xe6\x7e\xd0\xd7\x9e\xa3\x94\x9b\xc9\x5a\x85\x76\xae\x4b\x6f\x21\xbc\x51\xee\x26\x29\x9f\x56\x6e\x63\x26\xd4\xaf\x4f\xbb\xbf\xc7\xf1\xd9\x91\x96\x5b\x35\x82\xb4\x13\x62\x95\xbf\xa1\x90\xf8\xae\x2d\x22\x84\x03\xeb\xcb\x4a\x44\x43\x18\x62\x48\x2f\xef\xc4\x06\x7e\xe3\x05\xc0\xba\x61\x97\xc4\xad\x71\x64\x4f\x06\x50\x1c\xf1\x8a\x95\x70\xa8\x00\xef\x73\xdd\xf9\x6d\xba\x3d\xd8\xe0\xb8\xc6\xdf\xb1\x9f\x30\x77\xc9\x71\x24\xf6\xab\x7d\x4e\x74\xbb\x76\x23\xfe\x68\x02\xe5\x72\x18\xf7\x36\xee\x9a\xff\xa8\x85\xfb\xda\xae\x23\xc6\x1e\x3a\x37\x08\x37\xad\x75\x8e\x46\x47\x33\x22\x97\x97\x7f\x11\x6c\x38\xf0\x8f\xf8\x90\xd8\x56\x08\x71\x44\xea\x67\x4f\xc4\xa5\x86\x0a\xde\xca\xbc\x2d\x39\x25\x62\x48\x2f\xb1\xf1\x6b\x8b\x36\xa2\xad\x1d\xb8\x8f\xa5\xaf\xe8\xc6\x9d\x4b\x75\xc6\x9b\x6e\xd9\xc3\xb8\x89\x75\x63\x91\x45\xb2\xb7\xc9\x8b\x2c\xb8\xef\x4c\xdb\x4e\x85\x59\x05\x1c\x24\x01\x86\x6e\xbe\xec\x72\x97\x1c\xdb\x75\xaf\x21\xa8\xce\x61\x0e\xdd\x65\x3b\x13\x10\x0f\x83\x11\x4e\xa9\x05\x4c\x86\x0d\x01\xf3\xac\xb3\xed\x3a\xf5\x50\x9e\xc7\x03\x32\x59\x09\x2a\x98\x5a\x13\x1a\xed\x57\xba\xfe\x7e\xd4\xcb\xa6\x08\x5c\xdc\x39\x1a\xad\xc8\xb5\x07\x21\xc4\x39\x48\x53\x8d\x56\xfe\x67\xee\xfa\x30\x59\xbd\xba\xb9\x67\xbb\x4d\x4f\x26\x58\xab\x63\x5e\x2f\x97\x63\xb3\x7a\x94\xde\xb7\xf0\xcd\x36\x03\xae\x99\xfc\x91\x61\xa0\x9d\x59\x1f\xd7\xca\xbc\x34\x97\x62\x7e\x5a\xd8\x69\x86\xc9\x5e\x9a\xa6\xef\xa7\xdb\x28\xe2\x30\x76\x6e\x74\x5d\xda\x70\xdb\xda\x14\x4b\x36\x9b\xe1\xc2\xe8\x7a\xc9\xfc\x28\x1f\xa4\x2e\x5e\x9a\xbb\xe3\xdb\x49\xa4\x50\x69\x43\xce\xfe\xbf\x11\x45\xf6\x33\xf8\x12\x58\x05\x91\x3a\x13\x9a\x9c\xa1\x3f\xa8\x7b\xca\x1f\xd4\x36\x97\xcd\x94\xcf\xa8\x7b\x81\xcf\xa8\xf6\x0b\x69\xee\xea\xfb\xbb\xe0\xea\x7b\x11\xba\x46\xf8\xdd\x46\xd7\x08\xbf\x0b\x5d\x23\x40\x50\x9a\x08\x02\x12\x19\x17\x6f\x26\xc8\x6f\xc6\xcd\x48\x4e\xc6\x6d\xc2\xef\x3c\xb7\x09\xad\x11\x62\xff\x63\xeb\xb8\xaf\xbf\xbf\x51\xd8\xd7\xdf\xa7\xa3\xbe\x46\x0e\x45\x83\xa5\x19\x79\x1c\xc5\x52\xdf\xd0\xc6\x0b\x03\xd6\xf6\x38\x9d\xb0\x00\xfe\x91\x68\x27\xc6\xf1\x67\x55\xe6\x80\x14\x24\xc9\xcf\x51\x0e\xde\xcf\x97\xfa\xbf\x41\xdd\x96\xd6\x56\x7c\x10\xd5\xd6\xa6\xb2\x29\x28\x69\xd7\xaa\x7f\x47\x61\x6e\xb5\x6d\xad\x6b\x2b\x0f\xef\xe7\x63\x91\xa3\xc3\xff\xfe\xf1\xd1\xd1\xe1\xc3\x72\x34\x84\xcd\x67\xfe\x33\xbf\x64\xab\xf1\x5f\x93\x22\x1b\x4b\x5e\xa3\x36\x85\xbc\xf5\x7c\x6a\x68\xb5\x1b\x33\xab\xdf\xfa\xb7\x33\x73\x90\xa8\x98\x59\xc3\xe1\x7c\xf2\x7e\xfd\x02\xe0\x24\xfe\x92\x04\x2e\x74\x39\xf8\x48\x89\x6e\x93\x94\x1f\x1a\x00\xd5\xce\x68\xa2\x42\xa8\x6f\x9f\x8a\xab\x81\x67\x14\xc6\x11\xd5\x91\xe6\x2f\x22\x5f\x19\xd0\xe0\x45\x8f\xa0\xd1\xde\x61\xc5\xf2\x07\x9b\xea\xc5\xd3\xbd\x88\xbc\x64\x10\x50\xa7\x08\x0a\xd9\x08\xba\x50\x5f\xb2\x87\xd3\xf9\x74\xfd\x04\x80\xbb\x58\x84\xa2\x6c\xb0\x4b\x60\x30\x18\x71\x0e\xad\xbe\xba\x53\x5c\x21\x8c\x54\x8e\xf3\x6a\x45\xd5\xea\x25\xe7\x3d\x56\xf0\x1e\x9f\x62\x41\x0b\x12\x9c\x9e\x42\x11\xcb\x6a\xbd\x27\xf9\x3f\xa4\xe1\xf5\x19\x73\x07\x54\xb9\x8a\xc5\xf1\x5e\x38\x3b\xcc\x69\xec\x00\xe8\x53\x3d\x38\xb3\xdc\x55\x3d\x39\x67\x2c\xbb\x48\x9f\x43\x0a\x88\x1b\x4c\x4c\x35\x1f\xdf\x2c\x16\xb3\xc9\x68\x2e\x9f\x24\x11\x93\x2f\x72\x73\x24\x5f\x48\x24\xe5\x03\x74\x2d\xe5\x37\xb9\xd0\xc5\xf1\x3d\x78\xf6\xf4\xf8\xd1\xd3\x1f\x0f\x51\xd8\xe8\xad\x08\xa5\x5a\xed\x56\x48\x79\x41\x38\x92\x73\x02\x5f\x39\x20\x29\x81\x47\xef\x42\x44\xe5\x2c\x38\xc5\x50\xa6\x2b\x90\x20\x5c\xba\xd2\x84\x10\x15\x26\x78\x78\x56\x33\xe0\xdd\x30\x08\xeb\x5a\xbc\x09\x3e\xc5\x26\x73\x78\x8e\x7f\x12\x8c\x8a\xf2\x20\x01\xb5\xad\xe5\xce\x57\xbe\x1c\xd5\xee\x31\xca\x40\xd4\x03\xfe\xcb\x02\xcb\x13\x57\xf0\xf4\xfa\x1a\xa0\x75\xca\x80\xdd\xcb\x7b\x60\xc8\x55\x62\x15\xfc\xf7\x6b\xfe\x2b\x4e\xcf\xe2\x12\xfd\x28\xc9\xea\x4a\x52\x51\x37\xc8\x57\x53\x88\x6c\x25\x67\x13\xee\x76\x0a\x27\x0d\xb7\x10\x91\xd1\xcb\xe8\xc0\x4d\x16\x5b\x01\x22\x39\xb2\x47\x8d\x15\x06\x50\x6c\x20\xcf\x71\xad\x07\x89\x51\x92\xd9\x7d\xbf\x9f\xe1\x7d\x5d\x5f\xa3\xb5\x94\x03\x46\x9a\x11\x80\xec\x76\xbd\x04\xbd\x8a\xc2\xb3\xb0\x08\x63\x08\x7c\x68\xe4\x87\x23\x21\x92\x52\x58\x2d\x7d\x8a\x45\x0c\x6c\x45\xd7\x4b\x2a\xbd\x86\x31\xc9\x5e\xd2\x6c\x03\x1e\x8a\x69\x3f\x12\x7a\x39\x68\x95\xd8\xe1\x65\x70\x4b\x25\x60\xdc\x0e\x0b\x09\xc4\x12\x58\xa5\xb0\xdf\xe8\x74\xf5\x1b\x35\x53\x2c\x32\x1d\xfd\x70\x5a\xde\x0a\xd8\x85\xfa\xc1\x4f\x59\x3e\x88\x0a\xee\xb7\x86\x56\xef\x74\x70\xaa\x3c\x50\x3b\xc7\xb7\xb2\x70\x42\x0c\x1e\x37\x8d\x18\x36\x02\x5d\x8e\xd5\x40\xfc\x0e\x5b\x10\xa4\xbd\x29\xf2\x67\x21\x78\x63\xd8\x31\x84\x19\x5d\x1d\x25\x50\xc6\x29\x8c\xa1\x6a\x28\x00\xcf\xc0\x4b\xae\x8f\x82\x27\xc0\xb3\x7f\xb6\xc1\xef\xaa\xd1\x7b\x9e\xe9\x51\xb9\x68\xf2\xee\x1b\x93\x5d\xd1\x7d\xf6\xaa\x29\x1d\x30\x08\xc7\x84\x67\x60\x8f\xc8\xe1\xed\xd6\xf9\xc8\xdf\xc5\x9f\x9b\x6e\xb6\x52\x56\xf5\x98\xae\xb5\x28\x8e\x97\x93\xca\x42\x98\xa2\xba\x0f\xf8\xb0\xc0\x1d\xe6\xbb\x71\x6a\x7b\x2c\x85\xb0\x52\x74\x02\x3b\xa0\xf2\x4a\xac\x9a\xfc\x3a\x2c\x68\x43\xe1\x12\x6d\x83\x85\x00\x42\x44\xc1\x25\x5a\x5d\x28\x36\x4a\xc5\x2c\x00\x18\x2f\x74\xfe\x53\xb0\x70\x00\xed\x68\x17\xb3\x0e\xba\xa1\xe6\x10\xc9\x24\x6e\x4e\xd9\xc3\x4c\x5d\x4b\x98\x09\x73\x48\xd6\x2e\xf8\x9b\x26\x4e\x8e\xdc\x7a\xc1\xe1\x84\x9d\xdc\xdb\x73\x1b\x3e\x3e\xdf\xa4\x00\x11\x9d\x2b\x8e\x84\xd4\x46\xc4\xf5\x82\x63\x2a\xd3\x28\x92\x42\xf2\x63\x4d\xbd\xfd\x90\xb9\x18\x80\x94\xc6\x65\xb8\xa5\xa1\xf7\x14\x23\xe3\x7d\x83\x41\x83\xee\x5c\x5f\x9b\x1f\xa0\x99\x70\x96\xdc\xff\x1d\x9b\x7f\x11\x6c\x8e\x8e\x0c\xa4\x8d\x7a\x04\xd8\xe7\x1d\x64\x79\x46\xc1\x79\xd4\x49\xc9\x90\x5e\x7a\x6d\x45\xdb\x74\x43\x2b\x76\x81\xbf\xe5\xc5\xed\x26\x40\xaf\xe1\x64\x2d\x09\xe4\xbb\x00\xd0\x7a\x02\x38\xec\x9f\x2f\xa8\x42\x0e\x44\xd8\xa9\xf2\xc2\x5f\x78\xd2\x9e\x98\xe8\x23\xa7\x4b\x8c\x09\xf4\x22\x5c\x97\xa5\x7f\xb5\xa0\xbb\xcd\x0f\x10\xd6\xf2\x8d\xc4\xc8\x64\x69\xbd\xed\x2b\x59\x2a\xfb\x32\x7c\x49\x0e\x0c\x95\xa9\x8b\x91\x66\x39\x71\xc3\x94\x09\x0a\xfd\xd8\xbd\x2a\x62\x17\x4b\xc7\xed\x11\x44\x55\xc9\xe2\xf7\x0d\xf2\x31\x37\x88\x1d\x8d\xec\x97\x9c\x16\xbd\x77\xd3\xd9\xec\x89\xc5\x5d\x71\x95\x48\xe4\x5a\x1a\x9f\xc5\x4a\xf3\x7c\xb9\x65\x9d\xe0\x00\x07\x82\xe9\xf6\x0a\xa3\x7d\x90\xaa\xea\x9c\x9e\x04\x24\x12\x11\xcb\x21\xf1\x67\x3a\x00\x91\x45\x12\x3e\x3a\xe0\x03\x2e\x0a\x98\x37\x10\x35\xe2\x19\x61\x01\x6e\x43\xd9\xec\x0c\x44\x37\x35\x89\xb2\x01\x77\x35\xc4\xb8\x0d\xbb\x41\xf0\xf2\xe9\xae\x7b\xfa\xd2\x05\x13\x1a\xac\xf6\xde\xa6\x35\x6f\x6f\x06\xbd\x21\x07\x24\x2d\xae\xec\xbd\x9b\x89\x80\x97\x5d\xba\x15\x8f\x5a\x46\xb0\x76\x1f\xbd\x18\x7e\xf3\xe8\xe9\xc3\x47\x4f\xbf\xab\x6e\xff\xb5\xb7\xcf\x02\x92\x7f\xbb\xed\xb6\xc9\xd8\x2c\xfd\xb3\x35\x67\x04\xe7\xf9\x05\xce\x8a\xab\x83\x4c\xf7\x68\x3e\xf0\x8c\xa7\x52\x66\xbd\xf7\xe4\x27\x9d\xeb\xfc\x61\x50\x15\x43\x6c\xb8\x12\x0b\x18\x22\x3a\x51\xda\x32\xb6\x2e\xad\x68\xe4\x57\x9a\xd2\x98\x69\x9e\xbb\x31\x12\xd3\x72\x91\x1d\x01\x8e\x9f\x3f\xca\xf5\x02\xf7\x9d\x1d\x8f\x5a\xb6\xd1\x20\x2b\xaf\x17\xaa\x5c\x71\xb5\x5e\x80\xc2\x07\x3f\x4a\xdf\x29\x6f\xfd\xbe\x50\xd9\xfa\x14\xfd\x46\x4a\x04\x75\xb2\x8a\xc9\x40\x3e\xd7\x8b\xee\x7a\xc1\x4c\x83\x80\xc2\x95\x5c\xe6\x71\xbd\xb0\x76\x81\x8d\xab\x02\xd1\x40\x71\x81\x85\x0f\x93\x06\x9a\xc6\x9f\x21\xcf\x54\x6c\x5a\xbf\x7e\x3e\x32\x7b\x79\x34\x13\xdc\x25\x51\x4a\xf7\x1b\x51\x26\xb0\x77\x07\x70\x0c\xe2\x6a\x5b\xcc\x66\x8b\x77\x18\x09\x09\x0b\xc1\xe2\x0f\xf6\x00\x3b\xe7\x99\x41\x08\x22\xbc\x59\xf5\x88\x37\x77\x11\xac\xdd\xfd\x81\xa0\x0c\x5f\xc9\xc4\x9b\xbf\xe5\x04\xf3\x53\x07\x50\xa6\xf2\x0a\xba\xdd\xda\xf3\xd2\xe1\xa8\x30\xb0\x41\x2a\x9d\x67\x21\x2b\x81\x90\xc1\x99\x87\x7a\x46\xd2\x06\xe1\x01\xe1\xfa\x38\x5e\x04\xe9\x87\xcb\x94\x9e\x53\x44\xd8\x57\xdf\x0f\x7d\x59\xc1\xba\x94\xc7\x85\x67\x2b\xc9\x43\x13\xb4\x1a\x62\x3c\x51\xf9\x27\xca\x77\x1d\x99\xad\xc5\x65\x4e\xa4\x8c\x35\x40\xab\x43\x07\x4a\x69\xe3\x35\xdd\x04\xb1\xb4\x6c\xc8\x46\xb1\xc7\xf1\x79\xd0\x8b\xf4\x8a\xee\xc1\x6f\x3a\x24\x89\xee\x3a\x79\x5b\xa5\x2f\x77\xee\x76\x04\x40\xd2\xad\xf6\x66\x00\xb2\xec\x88\x0b\x0e\x6e\xb4\x26\x01\xeb\x70\xd8\x29\x53\x02\xd7\x62\xf0\xf1\x35\xbb\x3a\x3f\xa5\x36\xeb\x2a\x44\x2a\xb3\x38\x6a\xb2\x1e\x01\x63\x74\x7e\xe4\xca\x6a\xc1\x56\x24\xda\xde\x6e\x70\xdb\x34\xc2\xd5\x7f\xbe\x8a\x15\x0e\x95\x7c\x3c\xbe\xdb\x22\xe7\x84\x84\x8c\x4e\xe6\x25\x91\xbc\x82\xdf\xba\x0d\x1d\x00\x27\x0a\x56\x55\xa7\xf4\x24\xc2\x85\x3a\x36\x71\x8f\xa3\xf6\xc4\xc9\x29\x10\xda\xe4\x2d\x6d\x90\xe2\x7f\x7d\xb9\xb3\xcf\x19\xf0\x50\xeb\x22\xb0\x7b\x24\xdd\x92\x60\xa3\xc2\x95\x04\x32\xd8\xc6\xd4\xdd\x60\xc0\xf2\xf5\xcc\x5c\xa7\xcc\xb5\x65\x37\xad\x21\x12\xb0\x5b\x8a\x66\xbe\x71\x24\x50\x31\xf6\x42\x8c\xd5\x65\x4f\x15\xa7\x00\x0b\x90\x4f\x37\x40\x7d\xd8\xe1\x29\xc0\x6e\x76\xf0\x58\x80\x30\x56\x5b\x9c\x0f\x44\xc7\xa5\x08\x92\x68\xee\x96\x4d\x23\xda\xea\x7a\x66\xc9\xf3\xde\xde\xdb\x38\x0a\x95\xed\xed\x56\x04\x8b\x63\xe9\xb5\x33\x4e\x03\xff\xb1\xcb\xe6\x3b\xfa\x6f\x80\xd0\x6a\xde\x2e\xb3\xd4\x41\xdb\xa4\xce\xd0\x0b\x59\xa9\x1b\xc3\x77\x83\xd9\x6a\xb0\xb8\x49\xe6\x0f\x42\x13\xef\x80\xd6\xca\x0c\xea\x4e\x93\x53\x37\x20\xd1\xbf\xd3\xbb\xc1\xea\x9d\x79\xa0\x7d\x9d\x08\x02\x02\x34\x4f\x44\x54\x2d\xca\x6a\x4e\x6a\x8d\x36\x02\xbc\x05\xe8\xf7\xe2\xdd\x1c\x8c\x71\xec\x9a\xc5\xd4\x66\x40\x75\x0c\xe9\x99\xd3\x8d\x8e\xd3\x31\x81\x91\x58\xc5\x3a\x8f\x1b\x90\x25\xfe\xba\x13\x38\xc3\x27\x1f\x69\xdd\x9b\xab\xca\xfb\xe2\xd0\x58\xa3\xf9\x87\x1f\xe7\x66\x74\x67\x93\xba\xe6\x4b\x52\xcd\xc2\x2a\xaa\x22\xd6\xeb\x6b\x29\x88\x12\x26\x7c\x48\xc6\x57\xb1\x41\x84\x68\x7c\x8f\xf1\x2c\x20\x10\x9a\xef\x66\x8c\xed\x00\xfb\x03\x3f\xbb\xb7\x9a\x98\xb9\x98\x87\xa6\x62\x74\xed\x5e\x5f\x2c\x31\x30\x1a\x69\x44\xba\xd0\xb1\xb4\x56\xf4\x88\x0c\x97\x1a\x3d\x09\x05\xc5\xe4\xc6\x1d\x26\xe3\x37\x3f\x53\x9d\xe0\x5f\xc7\xa0\xed\xaa\x4c\x7e\x00\x14\xc8\xd3\x46\x3c\xcc\x84\x2e\x6c\x78\x39\x55\x0a\x1c\xa2\x94\x90\xd3\x4d\x1b\x4d\x02\x1d\xd0\x50\xfc\x08\x1a\x8e\xf3\x60\x03\xa1\x22\xda\x5e\x74\x58\x2a\x80\xd7\x51\xba\xe2\xb3\xf3\xba\x8b\x65\x88\x14\x93\xa4\x51\x72\xe1\x1e\xcf\xc4\x3b\xf3\xc5\x52\xf9\x39\xc0\x28\x6a\xc1\x04\xd1\x92\xf7\x17\x75\x7a\xc5\x9e\x40\xf9\x53\xde\xe7\xe9\x7a\xd2\x7b\xa4\xb5\x3a\xde\x02\x76\xdb\x0f\x89\x06\x76\xcf\x2e\x57\x4f\x68\x95\xa0\x03\x36\xfa\x5d\x4f\x26\xf3\x84\x1e\xa0\xc0\xe2\x0d\x08\x60\x82\x37\x2f\x52\x80\x74\x19\xb4\xf4\x41\x5c\xc7\x05\x81\xd5\x71\xcd\xf8\x21\x00\xed\x7a\xad\x2b\x01\x97\x69\x9f\x2d\xce\x58\x4c\xf3\xb5\x27\xca\xe9\xdf\xe1\x20\x40\xb7\x6e\x19\x10\x0a\x17\x73\xde\x95\x91\xb1\x60\xc7\xe4\x9c\xc6\x83\x6b\x8b\x33\x1d\x60\x9c\xaa\x0b\x70\x0d\xab\x5a\x23\x9d\x4a\x92\x2d\x43\xfe\x15\x56\xba\x86\xcf\xd0\x40\x5e\x41\x7a\x4c\x2f\xd4\xbe\xe3\x3e\x46\xc4\xc5\xde\x9e\x7e\xa3\x96\x1d\x24\x5e\x06\x79\x84\x32\x3d\xa8\x20\x79\xea\x8f\x25\x5c\x3e\x2c\x6f\x08\x09\xc5\x8a\xb5\xaa\x1d\xe5\x47\x7a\x6a\xe5\x13\x19\xb2\x6b\x89\x2e\x3c\x70\xab\xb5\x05\xec\x0b\x3c\x80\xd3\x38\x78\x39\xe9\x35\xe3\x1e\x51\xed\xea\x69\x52\x99\x76\x05\x85\x64\x49\xee\x19\x56\x62\xa7\x69\x51\x22\x5c\xb6\x8b\x94\x9d\x61\x9a\xc0\x81\x15\x5e\xaa\x69\x41\x64\x44\x41\x49\x21\x0e\xaf\x52\xfd\x18\xef\x30\xf0\x9e\x46\x0f\x16\xa2\xc1\x54\x20\x97\x19\xcc\x03\xa6\x5d\x35\x58\x06\xfe\xb2\x7b\x47\xaa\x0e\x55\x79\x71\xd9\x60\x95\xe1\x30\x49\xda\x4a\x1c\x63\x7e\x90\x4e\xfc\xe6\x39\x80\x1d\xe8\x0d\x97\x38\x7b\x37\x2f\x50\xe5\xb2\x76\xd7\x5f\xa8\x9e\xeb\x48\xee\xac\x40\x38\xad\x04\x5e\xcc\xf6\x81\x29\x9e\x71\xdb\x7b\xa6\xd6\x5e\xff\x85\x7f\xc5\x65\xac\x74\x9b\x24\xbd\x2d\xd6\x6e\xf7\x68\xf2\xf3\xe5\x74\x35\x19\xef\xd8\xe7\xd9\x4e\xa3\xa5\xd1\x94\xeb\x98\x24\xa9\x34\xf0\x00\x42\x60\x95\xfc\x70\x35\x10\x4f\xec\x44\x21\x72\x08\xda\x84\xca\xfd\x6c\x10\x58\xf1\x59\xc1\x80\xdc\xcd\x07\xe0\x9e\x88\x85\xa2\xab\x5a\xa9\x27\x47\xed\xfa\x9e\xfd\x5d\x05\x95\xfa\xad\x3c\x69\x32\x2f\xbd\xb5\x3f\xcd\x81\x95\x5c\x88\xbe\xd3\x9f\xc9\x7d\xb0\x7d\x54\xb7\xc8\x47\x47\x38\x57\x24\xaa\x50\x9e\x71\xb0\xdc\x90\x84\x1f\xad\x5e\x39\x9d\x15\x2a\x54\xb9\xeb\x5b\x9f\x52\x4f\x2d\x27\x60\x3a\xd6\x5e\xe5\x41\xd1\x50\xbe\xef\x08\x08\xec\xe3\x3d\x61\xca\xfe\xfe\x14\xe3\x07\xfb\x5e\x23\x87\x56\x92\x12\x0f\x18\xef\x09\xf9\x8e\x06\x96\xa1\x3d\x36\x0d\xa5\x0f\x41\x3f\xfa\x93\x32\x8b\x93\x69\xf1\xce\x68\xc7\xd5\x80\x37\x8b\x5e\x7c\x0f\x27\x21\x50\xde\x3b\xa9\x28\xaf\xc9\x0f\xe5\x4c\xe2\xe2\x62\x32\x9e\xaa\x5b\x7b\xe4\xa0\x3b\xe4\xd4\x02\xcf\xdc\xab\x57\x9a\x09\x73\xca\xc5\x5c\x5d\x3a\xdc\x98\xef\xef\x29\xec\x42\x15\xa5\xb8\xfe\xbe\xf4\x64\x19\xff\x5c\xaa\xbf\xc9\x52\xf5\x27\xe1\xe6\x0b\x56\xa4\x53\x1b\x96\xad\xdf\x4c\xe5\x7f\x7a\x4a\xfd\xea\xf1\xc4\xfd\xf4\xd5\xfe\xdd\xed\x27\xa3\xee\xee\xb4\xc1\x7d\x8d\x77\x74\x89\x1e\x2b\x8f\xa7\x34\xdc\x3f\xaf\xe6\x78\x9b\xde\x36\x76\x2a\x32\x00\xc6\x54\xcc\xbf\x9c\xa7\x21\x38\x3d\xa9\xb1\x7d\x57\x69\x6c\x7b\x8e\x97\x43\x95\x6c\xcf\x11\x73\x9b\xa6\xeb\xbd\x9b\x29\xba\xde\x4b\xeb\xb9\x46\x0e\xf8\xc3\x32\x91\x43\xfe\x44\xa9\x4d\x85\xb0\xcc\xfd\x6f\x8f\x0f\x8f\x86\xcf\xbe\x79\x71\x78\x04\x01\xb5\xab\x4e\xff\xec\xf5\x68\xfe\x6a\x42\x38\xff\xe6\xf0\xdb\x67\x47\x87\x5e\x36\x2d\xc9\x8e\xb2\x85\x46\x78\xf2\x65\x6f\xdf\xb2\x79\x7d\xf3\xf7\x7e\xd0\x4a\x13\xd0\xb6\xf6\xc2\x61\x27\x3c\x9d\x11\x4b\x16\xe1\xc6\x81\x9b\x3f\x8c\xc8\x13\x46\x57\xd2\xfd\xc5\x02\x45\x18\x67\x02\xd7\x8b\xab\xd0\xd9\xc3\xc1\xb5\x37\x88\x1c\x64\xb7\xaa\xd6\xda\x8e\xf8\x0b\xeb\xdc\x9c\x28\x6d\xe8\x1f\x54\x72\x75\xd7\x10\xb2\x48\x9e\x69\xb8\x42\xf5\x47\xa8\x57\xb0\x19\x29\xbc\x29\xfc\x41\x46\x1e\xf6\x37\xa3\x2a\x87\x99\x40\x67\x3d\x50\x51\xd7\x13\xe8\x4b\xea\xb7\x9f\x46\xbd\x72\x3e\x7d\x1a\x03\x8d\xf7\x58\x39\xde\x5d\xfd\x78\x17\x25\xfa\x1d\x77\x5b\xf9\xd9\xb6\xce\x06\xe3\x00\x3f\x7a\x28\x89\x91\xb8\x4a\xbc\x5e\xa7\x3b\x52\xa5\x93\xe3\xfe\x7f\x96\x9e\x47\x0b\xf6\x46\x3d\x8f\xfa\xbc\x2d\xb6\x6b\xf7\xbc\x97\xed\x35\x1a\x93\x90\xf3\x7b\xab\x52\x4e\x25\x14\xba\x9d\x6d\x74\x36\x3e\x4f\xb6\x85\x2d\x26\xa3\xce\xcc\x46\x9d\x9f\x8e\x4f\x1b\x9a\x9a\x8f\xcf\x3e\xb4\x78\x50\x89\xe1\xf8\x0c\xcb\x96\x64\x2f\x5a\xff\x45\x0b\x4f\x84\xc4\x2f\x4e\x0a\x49\xe0\xb6\x64\x65\x3b\x42\xb8\x99\xd8\xb4\x13\xc2\x60\x8f\xa6\x12\x37\xb0\x68\xe4\xb3\xe5\x64\xb3\x19\xe1\x27\xf1\x63\xad\x8e\xe1\x13\x76\x66\x07\x81\x9d\x99\x8b\x52\x12\x72\x59\x2e\x6a\x49\xe6\xd1\x46\xf0\x00\x06\xad\xce\x61\x88\x4b\x8c\x3c\x86\xb8\x2c\x65\x87\x6b\x08\xb7\xbb\xd6\x40\x9b\x93\x55\xc9\x7c\x44\x18\x58\x64\xe1\x2a\x20\x11\xbc\x4a\xb0\x4f\xb6\xb5\x9f\x05\x82\x29\xa8\xf3\x3b\x2d\x34\xa6\x24\x7c\x63\x7d\x81\xa1\x66\x6c\x35\x27\x0e\xfa\x94\x5c\xe2\xa1\xe0\x87\x00\x21\x0e\x50\x12\xb2\xe2\x8a\x20\x82\x2d\xfa\xe2\xa0\x6f\xa7\x12\x38\x75\xa1\xf1\xd5\x3b\x21\x25\xd9\x9e\xb2\x7f\x39\xaa\xb7\xef\xa3\xa2\x1f\xa1\xa4\xef\x82\xe9\xd8\xed\xd9\x3f\x39\x6d\x8a\x5b\x07\x83\x7f\x09\xda\x27\x43\xab\xf0\xd6\x6b\xee\x5c\x90\xac\x42\x3c\x35\x83\xf4\x1c\x9d\xcf\x4c\xcf\x42\xb9\x60\x16\xe1\xd3\xd2\xdc\xf7\xec\x7c\x30\xfe\x07\x7a\x29\xb8\x28\x65\x93\xb9\x1a\xbf\xe7\xc2\x1f\x2f\x8b\x91\x4c\x00\x5f\xa0\xa9\x46\x9b\xd6\xe3\x16\x50\x98\x0b\xbf\x7a\xd3\xfa\xe1\xc4\x6c\x84\xc5\x07\x73\x23\xba\xbe\x0e\x13\xbd\x27\x5a\x17\xd5\x89\x11\x6e\x6b\x75\xf8\x3d\x09\xb3\x04\xaf\x2e\xc5\xf9\x2a\x6f\x72\x48\xc4\xb1\x57\xa1\x9b\x1b\xbd\xa6\xc5\xcd\x8d\xc3\xac\x99\xcf\x0c\x95\x71\x76\xca\xbf\x91\xa7\x4f\x94\x55\x70\x27\x24\x3e\x00\xbf\x41\xb2\xb3\x21\xb6\x78\x85\xb7\x16\xfc\x85\x82\x60\x7e\xbf\xba\x1a\xf5\x0f\x9a\xd2\xfc\x4b\x9a\x55\xfd\xbb\x66\x9c\xbd\x91\xb9\xde\xdf\x35\x73\x43\xb5\x90\x87\x5d\xd8\x7d\x94\x20\xee\xb6\x0e\x9f\xfe\xa9\xf7\xe2\xf8\xc7\x6f\xcc\xf5\xe2\xbf\x0e\x1f\x1c\x0f\x1f\x1c\x1d\xde\x3f\x3e\xa4\x35\xf9\x83\xc6\x6f\x33\x88\x5c\x2c\xb0\xd6\x7c\x5d\x5c\xfd\xa0\xa4\x99\x26\x19\xf4\x2a\x50\xaa\xf9\xc3\xc0\x69\xcd\x86\x30\xa1\x55\x40\x0c\xa6\x34\xed\xd9\x8e\x9d\x55\x07\x6c\xf5\x8d\xae\x54\xcc\x0c\xe5\xd5\x9c\x3b\x6c\x96\xea\x8b\xe9\x05\xba\xb9\x1f\x57\xf6\x21\x2a\xb0\x86\x65\x24\x27\x8c\x60\xcf\x46\xf3\xa3\x89\x97\x0e\x1e\x16\x4d\xea\x43\x0f\xf6\xd9\xfc\xe1\xb3\x27\xa4\x6d\xa1\x93\xc9\x3d\x5c\xa0\x6e\x70\xd5\x94\x9d\x51\xa7\xbc\xf2\x5c\xc0\x18\x0c\x37\xd6\x2b\x5c\x11\x14\x71\xd3\x17\x56\x9f\xec\x5e\x4c\x5c\x7e\x82\x45\x95\xd0\x7a\xc0\x7e\x98\xed\x7b\x3e\x7d\x75\x89\x6e\x4a\xfb\x80\xa1\xd2\x79\x58\xa5\xef\xb0\xa7\xbe\xb7\x19\xec\xfa\x27\xd4\xfe\x6e\x35\x5d\xbb\x2f\x5a\xc2\x38\x51\x5a\x09\xa2\x37\x82\xb7\x45\x48\xed\x82\xab\x92\x14\xfa\x3d\x72\x10\xa3\x7d\xbc\x38\x43\x11\x1b\x6f\xa5\xc3\xd9\x04\x03\x37\x74\xc6\xd3\xb7\x9d\xa2\xec\x8c\xe3\x0a\x3b\xf0\x7c\xe7\x79\x83\xb1\xf3\xe3\x3f\xc2\x75\x51\x06\xb8\x9b\x9c\x8c\xf4\x5c\xda\x97\xf3\xf4\x50\xa2\x42\xde\xae\x93\xe3\x0b\xf4\x55\xd8\xe7\x7a\xfd\x74\x31\x9e\x28\x41\x24\x7c\x2a\xa7\x8f\x86\x5a\x20\x44\x15\xbc\x5e\x42\x1a\xdb\x5c\x50\x7e\xc6\x0d\xb4\x0a\xe4\x37\x37\x60\xc7\xb0\xdf\x4c\xfe\x1c\x0d\x38\xe3\xfc\xa7\xe4\x4c\x56\x5c\x7e\x37\x68\xc6\x00\xf5\x6b\xf7\xc5\xee\x40\x45\x3d\x52\xda\xda\xda\xe0\x29\xb9\x29\x63\x04\x80\x3a\xb5\xd0\xce\x00\xb8\x0a\x36\xb4\x05\x7b\x3d\xaa\x25\xf1\xfe\x19\x28\x73\x2c\x56\xb5\x7d\x8a\xdc\xcd\xd4\x56\x5c\xb5\x97\x27\x05\x92\x5c\x57\x5a\x66\x10\xda\x44\x1c\xbc\x22\xb6\x28\x8d\x9a\x26\x57\x75\x4c\xe1\xac\xfb\x51\x20\xef\x4f\xee\x3f\x7d\x78\xff\xf8\xd9\xd1\xff\x0c\x5f\x1c\x1e\x1f\x1f\x1e\xed\xed\xed\xb6\x8e\x43\x74\x5d\x52\x65\x69\x8c\x1e\x87\xef\x59\x92\x7b\x02\x58\x7b\xa0\xc9\x8f\xdc\xe9\xbb\xca\x05\x80\x6a\x8b\x01\xb4\xd9\xcd\x88\xd8\x45\x0e\xdd\xa5\x60\x3b\x67\xf1\x36\x8b\x1d\x45\xfe\x16\x4e\x41\x3e\x99\x9d\x48\x7a\xb5\xb8\x1b\x7a\xb5\x88\x3c\x63\xdc\xd5\x9e\x31\xec\x0c\x86\xa2\x54\xc9\x40\x28\x73\x97\x5b\xad\xa6\xe3\xc9\x83\xd7\x23\x78\x32\x0e\x7d\x75\xf8\xd9\xe2\xbc\x3a\xf6\xd7\xc1\xae\x2c\x43\x37\x97\xff\xa1\xdc\x5c\x6a\x3f\x05\x1c\xf3\xc2\x27\x9e\x55\x66\x8b\x10\x46\xc2\xc5\x9c\x5f\xe7\xee\x0a\xe6\x1e\x66\xe1\x9c\xd3\xcb\x5b\xb9\xde\x08\x5c\x6d\x84\xb5\x0d\xbf\xfd\xf1\xe9\x83\x63\x08\x66\xc7\x1e\xe4\xb2\xf9\x76\x81\xb1\x8d\x24\x71\x82\x0f\x0f\xbf\xbd\xff\xe3\xe3\xe3\xe1\x77\xc9\xda\x72\xb9\x6e\x08\x69\x80\xae\xe7\xeb\x3b\x54\x2c\x83\x75\x01\xfc\xb3\x8a\xb9\xea\xec\x73\x25\xd6\x24\x6b\x9a\xa2\x1b\x61\xed\xea\x6b\x03\xc9\x2e\xc7\x23\xb0\xcd\x37\x35\x28\xfd\xdd\x72\xf2\xde\xb0\xfd\xe6\xb8\x00\x64\x96\xf2\x04\xe3\x6c\x0a\x76\x11\xde\xb3\xbd\x42\x63\x09\x52\xfe\x75\xc6\xdb\x03\x5d\x4f\xe5\x1b\x75\xd3\xfd\x51\xea\xa6\x4c\xf9\xb2\xf9\x5f\x61\x20\x7f\x5d\x4b\xce\x94\x52\xc3\xf4\xd6\xe6\x42\x32\x5e\xbc\xf3\xe8\x7b\x21\x5a\xae\xb9\x1a\x48\xdf\x15\x95\x64\xfd\x4e\x52\x9a\x29\x1d\x53\x6f\xe9\x30\x9e\x14\xd1\x0e\xf0\x90\xfd\x91\xcc\x97\xb3\xa1\x60\x8d\x39\xef\x48\x72\xb9\xce\xc4\xa2\x4e\x64\x3b\xdd\x63\xe0\x78\xec\x58\xcd\xd4\x6f\x1a\x97\x5e\x5b\x0e\x21\x50\xf0\x73\x8c\x18\x78\xd7\xec\x0e\x44\x56\x37\xb7\x61\xec\xac\xa6\xd0\x02\xfd\x6b\xc4\xff\x9a\x9d\xd5\x8d\x1d\x66\x16\xc6\x60\x44\xcd\xab\x47\x31\x3d\x70\xdc\x04\xac\x86\xd6\x1b\x4f\xc7\x0f\x03\x0e\x25\x99\xec\xd5\xc0\xc6\xe3\x39\x81\x5d\x3b\x03\xa5\x76\x38\x87\x8d\xd0\x6d\x98\x91\x96\x2e\x9e\x04\x98\xbd\x98\x5b\xda\x0f\xe0\xe6\x2e\x2e\x07\xd4\x14\x2e\x87\xed\x9c\x48\x4c\x48\xe2\x36\xda\xa7\x1c\x19\x16\xff\xbe\xc2\xb4\x55\x75\x05\xbd\x42\x72\xe5\xd4\x65\x41\x53\x78\xf5\xd1\x85\xc4\xe7\x6a\x58\xb6\x80\x9b\x5c\x80\xd4\x00\x5b\x55\x94\xd2\xce\x1b\x39\x1e\xe6\x26\x22\xd0\xac\x1c\xf5\x97\x7f\xad\x4e\x72\x1f\x07\x21\xf7\xb1\x8d\x4c\xd5\x85\x6d\x8f\xc0\x5c\xd6\xd6\xd2\x57\xef\xa5\xfb\xc7\x39\x38\x08\x08\x81\xfd\x6c\xbf\xc4\xc3\xe9\x79\x1c\xff\xd3\xcb\x45\x78\x25\xb3\x6a\x0b\xe3\x83\x46\x8e\x9e\x14\xfc\x85\x38\xbf\x55\xd2\xe0\x50\x58\x9b\xca\x37\x75\x1a\x92\x61\xd8\xff\x3b\x6e\x8b\xca\xd2\xf9\xf3\x74\x36\x7b\x80\x0f\x23\xde\xd1\x94\xd4\xfa\x73\x47\x23\xe8\xfd\x25\x8e\x46\x34\xa8\x97\xeb\x9d\x78\x50\x45\x19\x0c\x15\xc1\x9f\x25\xd9\xe7\xc1\x77\x70\xf4\xc2\x39\xee\xe8\x1c\xeb\x85\x92\x8c\xc8\xd4\x50\x55\x4a\xe3\x56\x8e\x4e\x32\x4d\x41\x23\x6a\x1a\x05\x99\xff\xa9\x04\xff\xc4\x15\x6c\x83\x79\x5f\x9d\x1e\x3b\x98\x80\x9c\x21\x6d\xcd\xe7\xcf\x17\xeb\xe9\xf9\x87\xd4\xbb\x9b\x6d\x29\xc2\xf4\xc3\xe9\xf8\xef\x08\xd1\x9b\x71\x3a\x96\xfe\x32\x4a\xc7\xc9\xfe\x37\x7a\xd2\xf6\xf6\x38\x79\xd7\x75\xcb\xd6\xee\xa1\x3e\x89\x0c\x87\xf9\x4c\xb6\x58\xbf\x10\xfa\x33\x88\x07\x84\xfe\xf9\xd1\xe3\xc7\xe6\xf0\x3e\x7c\x5a\x3e\x7c\xf4\x10\x7f\x78\x87\x53\x76\x09\x98\xbc\x1f\xc8\x13\xce\xc8\xba\xa6\xd7\x12\x6e\x3b\x18\xa2\x28\x93\x79\xe5\x5a\x5a\x2f\x96\xd5\x2e\xa4\xa1\xa0\x65\xb1\x84\xc0\x0d\x1a\x00\x9f\x2c\xd6\x93\xd5\xc3\xc9\xb2\xee\xc6\xdb\xaf\x54\xed\x43\x41\xea\x84\xad\xcb\x55\x43\xd2\xbe\xf4\x70\x7c\xbc\xdd\x7c\x34\x82\xad\xdc\x60\x24\x3f\x39\x16\xdb\xf8\x86\xa1\xd8\x4a\x82\x91\xd8\x0a\xf9\xc5\x35\x59\x4b\x6c\x96\xb0\x60\xd7\xeb\xbb\xca\x24\x41\x19\x21\x98\x5b\x92\x67\xae\x70\x42\x55\x9e\x16\x34\xf6\x41\x9c\xe3\x4c\x76\x4c\x82\xbd\x3c\x2c\xc1\xf6\xc5\x7c\xc2\x3f\xb0\x43\x96\xb5\xc0\x13\x2b\xbb\x54\x86\xb8\xac\xe5\x4c\x89\x72\x87\xa9\x12\x2e\xa4\xd4\x76\x93\x77\x63\x43\xa6\x69\x57\xca\xbb\x89\x84\x21\xe1\x45\xee\x99\xe9\x6e\xa0\x53\x28\x3b\xea\xc6\x96\xfa\x58\x8c\xf4\xff\x56\x75\xa7\x00\x0a\xe1\x25\x59\x4a\x51\x78\x4b\x04\x84\x77\x60\x6f\x9f\x86\x95\x68\xfa\x27\xa7\x14\x8e\xd5\xc6\x26\xc5\x62\x91\xb2\x28\xa6\x42\x6c\x29\x45\xaa\xa9\x86\xa2\x71\x65\x29\xc5\x2f\x0c\x0f\x17\x89\xe3\x8b\x40\x41\xb9\x51\x7e\xed\x1f\x9c\x16\x11\xb2\x72\xa4\xa5\xbe\x5c\x82\xbf\xf8\xfa\x90\xfa\xc0\xa8\x03\xd4\xfc\xaa\xd8\xf3\xbb\xf1\x35\x6c\x91\xfe\x4d\x31\xea\x28\xb5\x20\x14\xa3\x68\xfa\xe3\xe3\x9e\x6d\x8f\xea\x87\x41\xad\x2d\x98\x6e\xbb\xa2\x14\x57\xed\xf3\x40\x96\x4a\x4a\x67\xe2\x95\xf5\x51\xf2\x81\x0a\xd4\xc8\x69\x13\x4b\xb3\xbf\xef\x40\x27\x56\xd7\x35\x01\x78\xeb\x16\xbf\xbf\xe0\xd7\x1f\xc1\x58\x28\x62\xae\xec\x9b\xa9\x62\xa8\xe8\x41\xb6\x1b\xac\x23\x53\xb9\x52\xab\x3d\x7b\xe9\x42\x39\xa7\xfb\x3b\x70\xcc\x28\x40\xc7\x3d\x2d\xe3\x30\xc1\x9b\x79\x8c\x8d\x34\xdd\xbe\xab\x56\xa2\x2e\x68\x55\x14\xdd\x4b\x76\x39\x06\xc6\x54\x21\x47\xc7\x80\x8e\x71\x04\x5e\xff\xf5\x8c\x39\xc5\x81\x01\x54\x54\x79\xfc\xae\x53\xa7\xf1\x5f\xcf\x8b\x81\x7b\x0c\xf6\x41\x4e\x54\xdd\xa7\xd8\x35\xbe\x4e\x6f\x55\x40\x4f\x53\x1b\x93\xf0\x51\x98\x63\xdd\x4f\x37\x8a\x1c\xd2\x16\xdb\xa1\xcb\xbf\x4a\x64\x51\x75\xb3\xe1\x7b\x22\xf6\x88\x48\x56\x71\xd2\x20\x55\xc2\x6e\xce\x2a\x4a\xf1\xe0\x03\xe1\x6e\x20\xcc\xf5\xf5\x94\xe2\x7d\x51\xa5\x12\xfd\x28\x9c\xd1\x46\xa9\xe2\x24\xaf\x44\xb8\x39\xab\x30\x61\xd3\x55\xfa\x55\xac\x4a\xb4\xe5\x43\xc3\x27\xc5\xac\xbb\xc9\xf5\xf9\x33\x4a\xf8\x33\x91\xee\x12\x57\x51\x91\xc0\xdf\x44\x4e\xce\x7e\x8c\xbe\x7b\xfc\xec\x9b\xfb\x8f\x87\xcf\xef\x1f\x7f\x5f\xdd\xfe\x6b\xf7\xe4\xfe\xad\xff\xfb\x6f\xa7\xd7\xdd\x93\x3b\xb7\xfe\x70\x4a\x1f\x45\xd1\xfb\xf7\x93\xbf\xf4\x4e\x6f\x63\x91\xef\xef\xbf\x18\x1e\x7f\xff\xe8\x45\xd5\x41\x1d\x0d\x1a\xf4\xb7\x8f\x8e\x5e\x1c\xe3\x80\xa0\x8a\xbf\x1a\xe0\xfd\xe2\xb6\x7d\x2f\x70\xce\x2d\x39\x24\xad\xde\xe9\xea\xae\xd4\xd1\x6f\x8c\x0d\xeb\x1b\x41\xe6\xde\x9e\xbc\x47\x7a\xfe\x6b\xd1\x1f\x03\x16\xb6\x9a\x0b\xc0\xb4\x12\xf9\xa8\x44\x78\x29\xf6\x9d\xa6\xf1\xe7\xa3\xf5\xeb\xf8\x3e\x82\x82\x69\xff\x8e\x67\x59\x42\x96\x96\xfb\x57\x34\x89\xf7\x1f\x3b\x41\x60\x08\xf1\x95\x8e\xc1\xcc\xcd\x75\x0b\x42\x0e\xb5\x76\x83\x2b\xb3\x50\xf2\xa4\xe8\x43\x89\x87\xbd\x58\x00\xab\xba\x9a\xb8\x90\xb2\x1b\xe4\x84\x68\xd6\x3e\xda\x56\x5a\x20\x0a\xdd\x81\x34\x6f\x68\xf2\xa2\x1c\x78\x10\xde\x95\x09\x94\xa0\x61\x06\x32\xed\x6d\xb8\x77\x39\x7f\x33\x5f\x38\x5e\x4d\x4f\x76\x98\xe7\xe4\xb5\xca\x8e\xb0\x71\xb1\x19\x49\x6e\x68\x29\x5c\xf4\x00\x0a\xab\x0e\xf6\x44\x3b\xb4\x39\xfa\x01\xd0\x16\xd1\xc7\x13\xbb\x3e\x3b\xbe\x5c\xce\x26\x5d\xd6\x98\x24\x5d\x50\x58\x32\x86\xeb\x3c\x36\xab\x1f\x4d\x62\xec\x64\xcb\xce\xc0\x40\xcb\xe5\xb4\xfe\x6e\xb6\x78\x39\x9a\x55\xbb\x0c\xbc\xb7\xe7\xef\x36\xf2\xfa\x45\x2a\x99\x66\xb8\x78\x4b\xa2\x86\xae\xaf\xa5\x70\x41\x09\xdc\xc5\xd9\x62\xf1\xe6\x72\xc9\xd1\x45\xa0\xca\xc2\x46\xbd\x67\x1f\x58\xbf\xa3\x8b\x1c\x15\xaa\xbc\x62\xe4\xbc\x04\x61\x29\x82\xb7\xdd\xb3\x68\x72\xc5\x65\x60\xcd\xf1\x68\xe1\x3a\x33\x08\x1b\x30\x89\xcc\x84\xee\x1f\x88\x9f\x8d\xf5\xeb\xeb\x6b\x04\x71\xa1\xb1\x8a\x74\x58\x45\x58\xf8\xa0\x96\x63\x4e\x7f\xc3\x3b\x52\x1c\xea\x8e\x48\x63\x4f\x14\x96\x4f\xdd\x54\xd8\x0d\xb3\x5a\x2c\x12\x53\x80\xee\x64\xea\x72\x0d\xf3\x04\x3e\x08\xca\x19\x5d\x8b\x01\x9a\x49\xc0\xde\x9e\x37\x4d\xb0\x27\x2b\x6f\x4f\xc2\xa0\x35\xaa\xa8\x95\x66\xf3\x24\x93\x73\x72\xd3\xd2\xf5\xb5\xcc\xc8\x15\xf6\xa4\x0a\x16\x90\xeb\xfb\x00\x3b\x86\x40\x80\x76\xc4\x2f\x7d\x1d\x98\x49\x80\x1f\x82\xc6\x3b\x0d\x0e\x8d\xb1\xbf\x9c\x4d\xd7\xd8\xf5\x01\xe8\x0a\x62\x8e\xdc\x06\x9c\xd7\x05\xa8\x7b\x97\xc7\x1c\x78\x60\xc0\x66\x61\xa0\xdc\x95\x15\x7b\x61\x20\x96\x5e\x30\xb6\xb7\x07\xff\xfa\x2a\x82\x8c\x24\xf5\x76\x24\x7b\xd2\x80\x36\x9a\xb6\xeb\xf8\x30\xd8\xcc\x9b\x30\x38\x0d\xce\x1c\x7b\xc1\x9c\x38\x20\x17\x20\xca\x57\x0c\x4d\x85\xb2\xf1\x3c\xda\x6a\xe6\xc2\xef\x40\xe5\x7f\xe6\x74\x77\x5f\x05\x41\x68\x84\x70\xf8\x51\xb2\xf5\x5c\x06\x53\xeb\x41\xca\x5a\xad\xe4\xc7\x26\x7e\x26\xa1\x1a\x7d\xb3\xe0\xf8\x49\x9d\x8a\x6d\x94\x27\xe2\x68\x2c\x9f\x95\x43\xfa\xd5\x75\x26\x2c\xe6\x03\x86\x4a\x66\x22\xcf\x76\xdd\x0b\xd9\xae\x04\x67\x1e\x2a\x46\x24\x38\x75\x5d\xd2\x71\xe8\xb9\x82\x8e\x63\x4f\xa8\x34\x86\xfa\x15\x09\x85\x88\x0c\x6b\x98\x08\x33\xf2\xd1\x2c\x61\x96\x1b\xbc\x6d\x95\x3d\xec\xe6\xaf\x7d\x56\x85\x3d\x31\xad\x17\xb3\xc9\x6a\x34\x5f\xeb\xb8\xc4\xac\x9e\xc6\xec\x9c\x3c\x2d\x73\xb9\x41\x8e\x9f\xf3\xfc\x79\xd4\x31\x07\x15\x36\xf8\x91\x7c\xdd\xd4\xdc\xf6\x90\x0f\x29\xcf\x2e\xcd\xbd\x71\x4e\x24\xe7\x63\x59\xbd\x6d\xfa\xc9\x55\xef\x7a\x64\x0f\xb9\xbf\x24\x4a\x1d\x0f\x98\xd1\xf6\x5b\x60\xd8\x05\x3a\x01\xb0\xc4\xae\xd7\x69\xef\xd9\xbb\xaa\xde\x26\x9c\x84\x5b\x1c\x54\xdb\x72\x7c\xe4\xcb\x9b\x4b\xe5\xd9\x3f\x33\xa0\x1f\x43\x0e\x30\x9d\xde\x4d\x8c\x99\xbc\x36\xb7\x73\xb9\x09\xd6\xb8\xb8\xd2\x33\xd9\xc2\x03\x7b\x60\x21\x33\x2c\x98\xd4\x40\x49\x31\xa7\x66\xd7\x53\xaa\x12\xa4\xfa\xad\x9b\xf2\xa6\x27\x42\xed\xf5\x35\xac\x7c\x4b\x35\x1e\xd5\x87\xf6\x79\xdc\xb2\xc8\xa9\xa7\x76\xbb\x6a\xd0\xe1\x97\x5e\x3a\x49\x05\x0d\xd6\x52\x8c\x35\x23\x28\xa3\xfd\x91\x2c\x5f\xce\x3f\xab\xb7\xe7\xde\x81\xb4\xd4\xdb\x70\xef\xb5\x65\x8d\x6b\xcd\xbd\xd7\x21\xc7\x18\xd1\x23\x7e\x07\xf0\x68\x8e\xe2\x72\x89\x9b\x1d\xd5\xeb\x47\x6a\x73\x1b\x86\xd7\xb1\xc3\x66\xde\xb8\xdc\xd7\x62\x99\xa2\xca\xdf\x29\x15\x3f\x7c\x4b\x66\xca\x31\xce\x85\xf8\x07\x85\xa7\x38\xb8\x46\x77\x1c\x83\x16\xf0\xba\xfa\x1a\x6c\x1f\x16\x35\xa7\x9d\x89\x60\x2e\xab\x01\x90\x61\x83\x98\xff\xcf\xe2\x72\x67\x09\x41\xb8\xc7\x3b\xa3\x39\xb1\xdf\xe8\x67\xa1\x43\xcd\x40\xab\x44\xab\x2d\xa2\x58\xea\x46\xce\xb7\x52\x0d\x7d\x91\x6c\x88\x28\x07\xda\x06\x00\xcb\xdf\xf9\x62\x1f\xfe\xee\x7f\xd1\xd9\x39\x5b\x5c\xce\xc6\x3b\x7c\x01\x38\x5f\x98\xc5\xbf\xb3\x00\x0b\xf9\x1a\xee\xbc\xc4\x72\xf6\xbe\x70\xfe\x63\x6a\xc5\x25\x6a\x92\x60\xe7\x7a\xbd\x02\x0b\x9f\x70\xaa\x35\x0d\x8e\x97\x01\x0a\xb1\x35\xdf\x46\x95\x54\xf4\xc7\xe3\xe8\x78\x29\x66\xf8\xb8\xd5\xe5\x7c\x68\xae\x0c\x51\xb8\xf2\x2d\x65\x52\xc9\xb8\x7b\x31\xf3\xf6\x6b\x47\x2b\xdf\x8a\xdf\x8a\xa3\xa1\xdd\xf5\xa2\xa1\x6d\x13\x45\x2e\x29\x76\x0c\x39\xa6\xa4\x18\x12\xa5\xc0\xb1\xf8\x31\x2c\x9b\x10\x47\xba\x67\x90\xf9\x37\x50\xb3\x50\x63\xb3\x62\x2e\xe7\x3d\xfe\x38\xba\x9c\x3f\x36\xd3\x2a\xf4\x5e\xbd\x9d\xcc\x0f\xe7\x63\x29\x52\x42\xc8\xab\x64\x39\xc8\x40\x16\xe4\x9b\xd1\xd9\x9b\x97\x66\x1d\xa2\xe5\x24\x7a\x1e\x7a\xb2\x18\x5f\x1a\xe2\xdd\x79\x69\x73\x3a\x45\xcf\x81\x11\x5e\x5c\x29\x74\x3e\x6d\x3f\xbb\x27\x9d\xfa\xc3\xfc\xcc\x2c\x8a\x11\xf6\x07\x96\x07\x6f\x1b\xb3\x3c\xae\x20\xaf\xcf\x2f\x27\xfd\x14\xde\xca\xd1\xf9\x7a\xb2\xea\xc7\x68\x69\xe4\x9a\xf6\xdf\x97\x93\xcb\x49\xdf\x55\xcf\x58\xea\xf3\xdf\x12\x11\xd0\xc7\x7f\xe1\x37\x90\x80\x63\xbc\xb6\xf7\x71\xd5\x48\x1a\x79\x2b\xea\x77\x16\x73\xba\x55\x34\x05\xf1\x8c\x5e\x2c\x33\x32\xd2\x41\x5f\xf1\x90\x46\xbf\x72\x17\x35\x83\x65\x65\x28\x7b\xa9\xbc\x62\x92\xcf\x1a\x87\xb3\xd2\xfd\xec\x19\x40\xed\xc8\x06\xa6\xea\xa7\xc5\x54\xf9\x62\x0c\x6c\x6a\x91\x0a\x46\xf3\x19\x34\x45\x23\x0d\xaa\xb6\x4e\x30\xd3\xbe\xd8\x30\x72\xd8\xe5\xbc\x7e\x3d\x3d\x37\xd7\x78\x41\x2f\x7b\x11\xed\x42\x5d\xd0\x6c\x0d\x3e\x5f\xcc\xf2\xa0\xb8\x63\xcd\x00\xd2\xe0\xed\x29\xdb\xdf\x0d\xad\xc6\x0a\xc2\xde\x40\xa4\x59\x40\x09\x36\x29\x31\x6c\x92\xb5\x15\x60\xd2\x87\x3d\x72\xcb\xd3\xfd\x1c\xa4\xb6\x01\x9a\x75\x99\xf4\x9f\x61\x55\xd5\x0a\x9a\x52\x80\xa0\xd7\x54\x25\x2c\x2e\x6d\x04\xa4\x40\x31\xaf\xcb\xd8\x98\x68\x64\x78\x60\x26\x47\x80\x04\x8d\x0e\x12\x9b\x0b\x0d\xa8\x0d\xd4\xd9\x9b\xfb\x97\xeb\xc5\x11\x2c\xa7\x41\xdb\x3a\xd2\x13\x63\x3d\x81\x42\x53\xaf\x47\xf5\x0b\xce\x1b\x1f\x4f\x2f\xe0\x81\x29\xc6\xb6\xaa\x08\xc4\x44\x08\x26\x7d\x3d\x03\xd5\xe2\x59\x5c\x54\x95\xd1\x20\x76\x88\x66\xab\x6b\x70\x8c\x62\xe1\x4a\xd0\x3c\x3c\x62\xcd\x65\xbf\x36\x3f\x8f\xe7\x06\x2b\x74\xcf\xa9\xd8\x06\x58\xa5\xac\xb2\x4b\x6f\x8b\xdd\x87\x15\x44\x28\x33\x4b\x6c\x92\xad\x35\x98\x93\x8f\xdc\x55\x5b\xf4\x4d\x66\xf4\x99\xe9\x8d\xde\x6e\x3a\xfd\x66\xeb\xe7\x23\x1a\xf5\xf0\x02\x87\x46\x68\xfe\xb7\x69\xec\x68\x29\x7d\xb0\x55\xdb\x76\x32\x6a\x6f\xe5\xa9\x99\x80\x05\x96\x5a\xb3\x04\xc8\xf9\x54\x76\x3c\x79\x69\x58\xb7\xb3\x54\xf8\xfc\xb6\x3e\x48\xb1\x68\xec\xc0\x5a\xae\xd7\xb3\x9b\xd6\x27\xc5\xbc\xfa\x94\x2a\x80\x9e\x9f\x2c\x6d\x6f\xf0\x58\x18\x8e\xc6\x63\x3c\xfc\x5c\x17\xc0\x36\x82\x4e\x4c\x2c\xec\xc5\x09\x72\x54\xad\x44\x5b\x0c\x11\x28\xdb\x64\x94\xd8\x9a\xab\x40\xae\x14\xd5\xbb\x7f\x50\xde\xa1\x0a\x9a\x9c\x81\xb3\xe1\x3e\x87\x79\x33\xab\x2d\x0d\xa5\x3e\x41\x75\xb8\x8d\x53\x8c\xde\x73\x43\x35\xdf\x10\x20\x69\x26\x74\x97\xcd\x84\x36\x85\xe0\x86\x6b\x9d\xd3\xeb\xc0\x28\xf7\x86\x9c\xbe\x46\x9d\x15\x5f\xe7\x43\xad\xa2\xd0\x56\x99\x4a\xd0\x13\xca\xeb\x4c\xf8\x32\xb8\x34\x60\xf5\xf0\x8d\x6d\x90\x0d\x33\x4d\x92\xbd\x59\xcc\xce\x73\x73\xc6\xcc\xfe\x66\xc1\x6e\xda\xfa\xcd\xde\x0b\xfe\x2e\xde\xaa\x93\x96\x64\x77\x43\x4b\xb2\x44\xb4\xe7\xbb\x7e\xb4\xe7\x6d\x62\x46\x7f\xf7\xe3\xa3\x87\xc3\xe7\x47\x87\xdf\x3e\xfa\x3f\x15\xa1\x84\x3a\xba\x18\x8e\xb7\x37\x16\x0b\x42\xe4\x62\x1a\x99\xbb\x3e\x30\xed\x00\xff\x49\xcb\x10\x45\x90\x94\xc4\xd6\x5a\x97\xa0\xba\x78\xe7\xa3\xc4\xa6\xd8\x73\x10\x2d\x4b\x7c\x84\xce\xfe\xce\x3e\xba\x07\x95\x2e\x20\xc4\xc3\xc3\x17\x0f\xaa\x2b\x6b\xb9\x43\x26\x0e\x9e\x15\x04\x25\x45\x66\x10\x64\xde\x43\x9e\xda\xd5\x9b\x8b\xa1\x82\xa6\x7e\x70\xbe\xc1\x46\xfd\x06\x1d\xef\x25\xe8\x13\xfe\xa6\x3f\x95\xc2\x2c\x7b\x76\x5b\x57\x94\xb5\x0f\xa3\xde\xdf\x1f\xd0\xb3\xb9\x68\xdf\x9c\xc8\x80\x4e\xed\x43\xba\x9f\x0a\x2f\xb2\x28\x16\xb0\xe3\x22\xb1\x12\x64\x0c\xc2\xf9\xc2\xce\x49\xd9\xd2\x96\xf0\xfd\xc4\xfa\xef\x30\x6e\x64\x95\xfe\x50\x83\x57\x2a\xa6\x57\xf6\xcd\xdf\x89\x51\xc5\x81\xac\x4b\xe9\x0c\x7c\xd5\x00\x81\xc0\x8f\x8e\xa0\x85\x4c\x17\xc0\x4c\xda\x09\x2f\x07\xf5\xbb\x29\xbc\x99\x42\x0a\x58\xee\xd7\x13\x31\xa0\xee\xa3\x7b\x66\xb7\xba\x40\xe5\xe7\xd4\x06\x2d\x4e\x65\x82\xed\x75\x67\x1f\x2a\x75\x63\x1f\x60\x95\x2c\x14\xc7\x2a\xd5\xea\x8c\xab\x0c\x33\x41\x9e\xde\x91\x79\x0c\x6b\x7d\x49\x71\x7c\xb1\x5a\x7e\x6e\xff\xba\xd3\x45\x21\x48\xa7\xdf\xe9\x92\xd6\x76\x67\xc0\x9b\xbe\x1f\x4e\x7f\xa1\xcc\xbe\x6d\xa2\x43\x24\x59\x7a\x5b\x54\xf2\xa7\xc2\x34\xc6\xbd\xb4\xf9\xf4\xd5\xc1\x98\xd2\xbc\xc1\xfd\xf5\xf7\x2b\xad\x3b\xad\x56\xe0\xad\x3b\x36\x6b\xd1\x66\x2c\xf8\x7c\x10\x6c\x5c\xb4\x55\xba\xe9\xbe\xf5\x9e\xa0\x6c\x1c\x15\xa0\xf9\xc3\x21\x2d\x3f\x78\x78\xd5\xfd\x77\xc6\xe1\x5b\x18\x90\xab\xb8\x11\x36\xc4\x36\xea\xe8\x48\x90\x15\xf2\xaa\x62\xed\x17\x24\xe1\x4c\x48\xa0\xfb\x82\x0a\x6c\x4a\xbd\xb8\x5c\x9d\xa1\x50\xbc\x81\x74\x1d\x66\x02\x6b\xa6\xa8\x12\xa0\x4f\x4d\xbf\xa4\x01\xfa\x72\x4e\x79\xf0\x13\xab\x57\x3f\xa1\x46\xfa\xa4\x66\xe2\x70\x15\x12\x3e\x8b\x0b\xa1\xf6\x9a\xfa\x2d\xca\xba\x7d\x27\xea\xe6\xdf\xd8\x4f\x46\x3d\x3e\x51\x64\x70\x5b\x5c\xf9\xc3\xea\x0d\x87\x10\x2d\xc8\xf0\x53\xcf\x67\xa6\x01\x5a\xd2\xc3\x21\x69\x9e\x07\xa0\xeb\xc5\x7f\xbd\xd0\xc6\xbf\xc0\x4e\xe2\xc9\xfa\xe4\xf9\xf1\xff\x0c\x61\xb2\xc9\x77\x3b\x4c\x08\xae\xe6\xf4\xab\x80\x03\xef\xd9\x40\x38\x3a\xa4\x23\x4d\xa7\xb5\xf8\x74\x8e\xe1\xbd\xe7\x2d\xa8\x5b\x40\x2a\x8e\xe6\x5d\xb8\x95\x7e\x7d\xed\x9a\x71\x61\xd5\xe1\x47\x1e\x35\xc9\x0d\x25\x0d\x96\x76\x67\x20\x57\xe4\x46\x2a\xaf\x42\xf1\x40\xc1\x4f\xb8\x1b\xa1\xd7\x7b\xdc\xc0\x90\x8f\x8b\xaa\xa7\x82\xea\xf8\x7e\x37\x00\x84\xd6\xca\x2e\x5b\xc8\x7c\xc6\x21\x78\x21\xe2\x5d\x6f\xbc\x74\x4a\xa2\x5c\xbb\x99\x3c\x00\x6b\x27\x85\x30\x76\x7f\xd9\x0f\xd9\x5e\x6e\x28\xf8\xe2\xb9\x09\x63\x5e\x1b\x12\x6c\x34\xc2\x61\x32\xb0\x3d\x44\x58\x90\x55\xb4\xb4\xcf\x6f\xe8\x25\xd9\xda\x65\x63\xa6\x1f\xc2\x06\x33\x4f\xa4\xc0\x69\xa8\x6f\x81\xe3\xe0\xbf\x03\xcd\xa7\x47\x6d\x89\x58\x3e\xd1\x22\x29\xa0\x04\x2d\x71\xa4\xd9\xac\xb2\x07\xb7\x51\xd5\x61\xe3\x50\x8d\x7d\x75\x45\xa1\xbf\xbf\x69\x82\xc6\x6d\xa6\xff\xc0\x30\x88\xa3\xb6\xa5\x62\x41\xd9\x77\x23\xf0\xc6\x45\xa7\x10\x8d\xc3\xb3\x9a\x53\x41\x93\x5d\x5f\x22\xad\x9a\x54\xf1\xea\x4a\x0e\x09\x5a\x25\xc3\x61\x1f\xa8\xb0\xdd\x0a\x14\xdc\x37\x84\xd1\xdb\xe2\xa6\x0d\xda\x25\xc6\xd1\x98\xd2\x2d\xe0\x59\x40\x98\x7c\xdb\xae\x94\x23\xd3\x51\xc9\x0f\x37\x53\x18\x1e\x1c\xbe\x4a\x1b\xc0\x4b\x59\x1b\x63\xda\x9f\x0d\xc8\xd2\x3a\x0e\x37\x8d\x00\x28\xb9\x59\x1b\x0e\x41\x5e\x82\x01\x74\x07\x61\x82\x8b\x08\x86\x7b\x5a\x39\x35\xc7\xe6\x94\x10\x25\x55\x52\xc7\xcd\xd0\xbd\xe8\xbd\xc3\xbf\xe3\x6f\xb9\x8b\x48\xf4\x07\x6d\x10\x16\x6f\x23\x33\x0b\x1f\x0c\xda\xd0\xbf\x36\xaf\x23\xaf\x60\xc2\x49\x7c\xc6\x79\x7c\x7b\x39\xeb\xab\xbb\xd5\x93\x77\xba\x0e\x1b\xcf\xcd\x2f\x6c\x93\x9d\x57\x4e\x57\xd8\x9b\x6b\x18\x3d\xc6\xbf\x77\x77\x4b\x64\xf7\x94\xff\xfa\x9a\xa2\xa0\x2f\x6c\xe8\x0a\x7c\x0d\x79\x8e\xde\x2d\x21\x72\x92\x53\x6c\x70\xc5\x41\xbf\xc1\xae\xda\x4e\x71\xe5\xca\x30\x07\x79\x6b\x75\x39\x07\xe1\xd4\x6d\xe2\x1a\xf8\xfa\xec\x9e\x9b\x87\xc3\xd9\x62\x04\x9e\xef\x56\x93\x57\x66\x30\xab\x0f\x27\xae\x8a\x53\x7e\x73\xa6\x96\x22\x78\x7c\xb2\xe9\x3a\xf0\x42\x5d\x8e\x1b\x51\x4c\xc1\xe8\xeb\x40\x91\x1e\xcd\xd7\x06\xcf\xa3\x59\x1c\x79\x06\xab\xef\xf1\xf0\xf7\xf6\xbc\x4f\xc4\x86\x1f\xf3\x46\xba\xce\xe0\xee\x77\xcf\x05\xa9\x09\x8a\xd8\x0b\xcb\xb3\x73\x7b\xfc\x76\x08\x13\xac\x86\x11\x35\x01\xbd\xa6\xc5\xb8\xdb\xa6\xe9\xeb\x97\xf3\x46\xe6\xa8\xae\x0d\x70\xef\xdf\xc6\xe0\xe0\x46\xf4\xa4\xf4\xfa\x4e\x6c\xfc\x01\x8d\x89\xaf\xcd\x3f\x7d\xbc\xd5\xf8\x84\x44\x5a\xa8\xec\x2f\x25\xe9\x1b\xcd\x1f\xcd\xdf\x2e\xde\x90\x62\xc2\x45\x14\x70\x63\x77\xb7\x8b\xaa\x2b\xee\x42\x77\xe2\x80\xe0\xa2\xd1\x09\x9c\xe0\xcb\xd3\x72\xb2\x56\x12\xa2\xa2\x26\x47\xae\x5d\x27\xbd\x34\xa0\x5f\x23\x01\x7a\xb1\x5e\x25\xeb\xe9\x67\x72\x03\x73\x11\xdb\x99\xca\xfe\x22\xc1\xc6\x64\x32\xae\xd9\x7a\xe9\x5b\x73\xcf\x0f\x04\xc8\x67\x0b\xb3\x37\xaa\x3b\x60\xe2\x84\x8e\xd5\x9a\x73\x02\xbd\xc2\x0c\x73\xeb\x52\x8f\xfa\xa4\x38\x10\x54\x78\x3c\x31\x57\x4b\xd3\x97\xc8\x7d\x1a\x56\x60\x16\xce\x41\xc3\x72\x7a\x65\xd2\x6f\x50\x13\x54\x83\x6e\xdd\xc4\x19\x80\x13\x39\xaf\x3e\xc0\xe1\x54\x62\xa7\xa6\xff\x0b\xc2\x5d\x31\xd5\x22\x82\x5f\x9b\x9d\x46\xb9\x47\xea\x37\xf6\x74\x10\x84\xf2\xbd\xbe\xc6\x08\x6e\x30\x48\x2a\x57\x71\xed\x24\x7a\x75\x26\x5c\x8c\x00\x00\x54\x35\x57\xb6\x0f\x01\xbc\x1d\xb8\x6b\xba\x9a\xe0\xde\x77\x09\xa2\x84\xe1\x52\xec\x3e\x51\x2d\xa8\x2d\xf0\x35\x75\xb1\xaf\xb2\x59\x8d\xe6\xb3\xa0\xe9\x53\x71\xb3\x0d\x5e\x3e\x62\x80\xbc\x4a\x1e\x00\x46\x37\x2c\x15\x0d\x13\x23\x02\xe7\xe4\x57\x5f\x39\xbc\x12\x68\xc2\x19\xd2\xf6\xc4\x83\x2d\x09\xe8\x1f\x60\xad\x7d\x76\x3c\xff\xfa\xc8\xfd\x05\x17\xeb\xf1\xff\x3c\x3f\x1c\x3e\xb9\xff\x5c\xe4\xc3\xeb\xaa\xf3\x0d\x49\xd3\x76\x9e\xa2\x54\x6f\x87\xe2\x56\xed\x08\xc7\xb7\x83\x07\x13\xca\x7c\x77\x8e\x26\xaf\x0e\xdf\x2f\xd9\x15\x62\x47\x34\xf8\x77\x3a\xe8\xf5\xd7\xc5\x29\x5b\x97\xde\x83\x53\x71\x25\x8d\x9e\x74\x4e\x58\x8d\xaa\xb3\x3f\x47\x23\xc7\xd3\xce\x69\x05\xbf\x7a\xeb\xc5\xe3\xc5\x3b\x90\x29\xd6\x93\x6e\xc1\xba\x15\x36\x86\x16\x35\xe8\xc9\x28\x28\xc7\xb1\x65\x04\xe2\xce\x4f\xe6\x1b\xa6\xeb\xc9\x85\x63\xb5\x1d\xd7\x13\xb2\x65\x54\x7c\x7b\xbe\xac\xfe\x60\x58\xc8\x8b\xdb\xcc\x56\xdc\x8c\x31\xe3\xb6\x6e\xc8\x99\x01\xdb\x0f\xa3\xb1\x2c\x08\x7f\xb8\x29\x27\x94\xd0\x90\xfb\x16\xe5\x82\x2a\x9a\x1a\xcc\x3c\xbd\xbe\xee\xa8\x9e\x93\x5d\x94\x0e\xbe\x23\xc3\xa1\x9e\x32\xb7\xf6\x4c\x1c\x60\x22\xbb\x86\x15\xa1\xe4\xb6\x73\x36\x1b\xd5\x75\x47\x0b\x33\x7c\x5f\x9f\x34\x0b\xda\xe9\x18\xed\x7a\x12\x98\xa2\x32\xcd\x40\x0a\x7b\xcd\x46\xc5\x5c\x26\x15\x96\x3c\x57\x3e\x2c\x02\xcb\x96\x60\x21\x32\x74\x27\x29\x48\x30\xe0\x4b\xe1\x40\xaf\x3c\x49\xb9\x62\x3c\xd7\xec\x64\x94\xf8\x4f\x1b\xcb\xed\x04\xc5\xde\xb0\x8e\x25\x9c\xd1\xae\x1e\xbb\x13\x34\xef\x77\x3a\xb8\xff\xde\x4a\xe0\xba\xc0\x77\x83\x62\x32\xd3\xc1\xf4\xfc\x08\xe7\x6f\xa1\x2f\x32\xb5\x1d\xe5\xf4\x9a\x7b\x61\x7a\xfe\xb6\x08\x66\xf5\xad\xfb\xea\x16\x3b\x57\x3b\xbd\x5e\x6f\xa7\x41\x94\xd8\x28\x7d\xfb\x9d\xbe\xd9\x9a\x6f\xed\x23\x46\xe7\xaa\xb3\x0f\xf9\xa0\x4e\xd3\xed\x94\x66\xa7\xef\x77\x4c\x11\x2f\x7a\x16\x61\xaf\xe2\xbf\x2a\x9c\x08\xdd\x51\xcb\x8b\x92\xbd\x68\xcc\xaa\xd1\xde\xde\xc8\x0a\x1d\xcc\x4d\x63\x74\x7d\xbd\xeb\xae\x16\x17\x4c\x3d\x8a\x86\x9f\x26\x66\xf4\x2e\xb1\x73\xd0\x0f\x20\xca\xd1\xc9\x9d\xd3\x02\xdf\x02\x76\xee\x26\x33\xcd\x3f\x07\x02\x71\x2f\x0f\x61\xfe\xb9\x2b\x60\x5f\x6e\x00\x33\xff\xdc\x13\xd8\xdf\x6d\x03\x6b\xfe\xf9\xf2\xb4\xb0\xaf\x10\xb6\x84\x20\x66\x14\xf0\xc3\x2a\x4c\x71\x80\x45\x60\xa5\x6f\x80\xc8\xf5\xc9\xc5\x69\x37\x8f\x45\xcc\x4e\x61\xd0\x66\x24\xb1\xe7\xe7\x26\x31\x97\x00\x49\x62\x2d\x07\x97\xc6\x18\x40\xb7\x23\xcd\xe0\xa7\x92\x1f\x9e\xae\xab\x7d\xc2\x94\x1f\x71\x2e\x3f\xcd\xea\xc7\x44\x2f\x6e\x97\x7d\x29\xb1\xbf\xbc\x7c\x25\x15\x57\xa2\xe8\xa8\x06\xe8\x83\xb5\xc8\x09\xa5\x49\x28\x49\xf2\x52\x69\x0b\x33\x0d\x1a\x04\x97\x26\x8f\xc1\x09\x99\x4f\x6f\x6b\xd2\x1d\xb4\xe2\xbf\xbe\xdd\xba\xdc\xf3\x2a\xfb\x2b\x6c\x47\x35\xc1\x3f\x33\xba\x01\x28\x1b\x86\xa0\xa1\x9f\xc1\x63\xee\xdf\x85\x7e\x40\xbb\x1f\x5a\x9e\x9c\x30\x9f\x27\x6b\x7b\x4f\xb5\xda\x7f\xec\x47\x3d\xd0\x6f\xad\x42\xe0\x04\x94\x30\x53\x3f\x4c\x3e\xc4\x5e\x1c\x03\xbb\x75\x76\xa6\x45\xf2\x05\x3e\x06\xe3\xe3\x8f\x83\x09\x43\x05\xd7\xd7\xda\x0f\xaa\xf2\x28\x66\x5f\x0e\x3c\x77\x6b\xce\x67\xcd\x55\x94\x54\x1d\xa0\xa4\x27\x63\x73\x03\xee\x7b\xf0\x81\xcc\x37\xb9\x89\x92\xbb\xda\x12\x3d\x36\x2f\x0f\xac\x52\xae\x2e\x22\x0b\x12\x6d\xfd\x91\x7e\x85\x7d\xb3\x95\x9b\xcf\x8d\xd6\x2e\xe8\x0f\x72\x83\x2f\xde\xd2\xea\x23\xe7\x3c\xec\x6a\x7f\xa0\x74\x17\x8a\x11\xdb\x8d\x92\xae\xaf\xef\x14\xfb\x07\x3e\x49\x95\x45\x52\xc9\x0f\xb7\x7e\x38\x40\x4f\x7a\x05\xdd\x74\x31\xc4\xfd\xab\xaa\x83\xd4\x7a\xb8\xd3\xb6\x1e\xc6\xd3\xf1\x8f\xd4\xab\xc8\xef\x68\x90\x7e\xc3\x15\xf1\x8b\x4f\xb9\x76\x01\x7a\xf3\xe6\xfc\x77\xfb\xd0\xad\x2c\xbd\xd1\x9b\x7f\x91\x64\x63\x08\xfd\x68\x85\x37\x1f\xb1\xa8\x76\x52\xf3\xf6\x55\x6a\xd6\x6e\xdd\xf2\x57\x95\x5b\x3a\x95\xfb\xd9\x7a\xa0\xa0\x19\xcf\x16\x2e\x46\xe9\xfd\xfc\x97\x50\x06\x8c\xce\x81\x83\x0d\xe7\xc0\x81\x7f\x0e\xa0\x5f\x1a\x8c\x64\x10\x1e\x16\x36\x27\x3e\x09\x02\xff\x61\x12\x97\x6b\xc3\x1e\x83\x5b\x05\xfb\xfa\xaa\xdd\x4b\xb8\x4e\xc5\xb7\x6c\xdb\x2e\x3e\xdd\x93\x2d\x1d\x94\xf7\x9e\xa2\x71\x9d\x74\x8b\x5d\xe7\xad\xd1\x55\x82\x0f\xbe\x8b\x25\x09\xb6\x93\xd7\x29\xda\x73\xca\x4a\x14\xdf\x42\xf4\x21\xf3\x9c\xac\xcd\x7e\x95\x43\x86\x2f\xde\x51\x92\x39\x64\x02\xfc\x16\xe8\x3b\x89\xf3\x8b\x98\x84\x52\xb1\x6e\x94\x94\x25\xa1\x38\x4c\xfb\x2b\x22\xa2\x19\x14\x7d\x0a\x15\xa5\x2e\x46\x54\x94\x92\xef\xc4\x03\xa6\xd0\x67\xfe\x98\xc3\x1d\x8e\x85\xc3\x1d\x8e\x89\x99\x1d\x8e\xc3\x56\xbf\xdb\xf6\x38\x86\xb5\xbd\xc9\x0e\x4f\x73\x9d\x59\xe2\xf1\xeb\x5b\x9a\xb5\x93\x8c\xed\x1c\x11\xdb\x5b\x4b\x08\x65\x6f\x31\xdb\x91\x1f\x4f\xe3\x30\xf2\x6a\xac\x35\x10\x49\x40\x06\x8b\xe1\x81\x52\x40\x8a\xa8\x56\x0c\x42\x6a\xb0\x60\x63\xf1\x7c\x82\x82\xc9\x44\xd8\x05\x28\x19\x83\x60\x49\x7b\x24\x84\x8c\xb2\x65\x3d\x50\x87\x75\x9e\x85\x73\x59\xae\xbe\xc8\x69\xc2\x97\x7a\x47\xea\x1a\x93\x90\x2a\xaf\x85\x38\x4f\xeb\x1f\xe8\xa0\xeb\x7a\xe1\x14\xd3\x6e\x59\x02\xe2\x48\xf1\x0d\xed\xb6\x47\xb2\x38\xbc\x39\x5d\x44\x05\x30\xe9\x85\x94\x2f\x78\xa3\x0a\x8b\xa6\x9a\x51\x24\xcd\xd2\x1e\x9d\x1d\x53\x30\xa2\x5e\x7a\xd0\x7f\xe6\x5d\x6b\xbd\x83\x5e\xa5\xdd\x12\xf0\xcb\x7a\xce\xbe\xfd\xb4\xf8\xea\x8e\x2f\x45\xb2\x35\x57\xee\x27\xc5\x46\xf0\xd6\x4e\x95\x58\x48\x21\x61\xfd\x85\xd1\x1b\xf0\xc0\x11\x82\x43\xf2\x9e\x45\xb1\xc4\xc8\x96\x98\xd8\xce\x16\x70\x62\xc7\x91\xf6\xd7\xcc\x67\xf1\x85\x75\x05\x8a\x47\xbe\x50\x07\xe6\x60\xf7\xf6\x76\x13\xc2\x44\x01\x32\x03\x09\x55\xad\x91\x2f\xa6\xea\xf6\xf6\xe8\x6f\xc8\x0a\x58\x36\x80\xb3\x1d\x27\x10\xc4\xd9\xa4\x91\xf1\x5f\xdc\x46\x4f\x9f\x3d\x3c\x1c\xbe\x38\xbe\xff\xe0\x07\x94\x7e\x3a\x77\xc2\x68\xeb\xa9\xc6\x1a\xbb\xb8\x00\x47\xa3\xf8\x4f\x8d\xee\x77\xe0\x17\x8b\xfb\xd9\x83\x02\x29\xd4\x3a\x95\x31\xb4\xd2\x03\x30\xf2\x8e\xe0\x50\x34\xc7\xa8\x4f\xae\x2b\x24\xf8\xc4\xd4\xc1\xbb\xd7\x53\xc3\xa1\xab\x3c\x5a\x27\xe0\x85\x01\xab\xd2\xa5\x16\xcb\x6e\x31\x20\x07\xab\xf0\x6f\x6f\xe8\x37\xc1\xae\x79\x59\xb4\xcb\x29\x92\x97\x16\xef\xa6\xfa\x44\x7e\x7b\xc1\x44\x83\xcb\xf6\x86\xce\x5d\xb9\xc3\x02\x77\x61\x61\x51\xe2\xb2\x60\x31\x87\x24\x5b\x65\x97\x54\x52\x90\x8a\xc1\xab\xc2\x58\x01\x38\x3d\x15\xff\x8d\xce\xf2\xd5\xe2\x72\xed\x1d\xe2\xaf\x47\xf3\xf1\x6c\xf2\x72\xb4\x8a\xce\x70\x2d\x0b\xe2\x62\xb7\x27\xef\xd7\xca\xe2\x3c\x91\x09\x72\xed\xd5\x62\x36\x9b\xac\x92\xd9\x6f\xa7\x93\x77\x51\xc6\xeb\xc9\xcc\x60\xb6\xbe\x5d\xbf\x1e\xad\x26\xe3\x6c\xf6\x6c\x3a\x7f\x33\x5c\x2f\xa2\xfc\xd9\xe2\x6c\x04\x4b\xf3\xf6\x68\x39\xcd\x67\xce\x17\xf3\xc9\x50\xbe\xf2\x60\x60\x69\xb3\x0d\xd8\xb4\x5e\x2f\x56\x1f\xb6\x80\x1c\x5d\xae\x17\x79\x30\x7e\x96\x72\x58\x1b\x9e\x2f\x62\xcc\x31\xd4\xb8\x9e\xe5\xb2\xe0\x33\x81\x72\x9d\x9b\xc5\xab\xf9\x9c\x29\xa7\x4e\x61\xf6\x0a\x03\x6e\x66\xb3\xc9\xe2\xf1\xb7\xf2\xd9\xe4\xbe\x7f\x1f\x7c\xff\x67\xf0\xfd\x87\xe0\xfb\xe0\x4e\x98\x10\xf6\xf0\x20\xec\xe2\x41\xd8\xc7\x83\xb0\x93\x07\x61\x2f\x0f\xc2\x6e\x1e\x84\xfd\x3c\x08\x3b\x7a\xf0\x87\xed\x64\xa2\xdf\xdb\x8d\xbb\x49\x3a\x1a\x8b\x50\xef\xc6\x40\xab\x49\xbd\x98\xbd\xc5\x77\xcc\x3a\x8a\xa0\xa5\x33\x7d\xe8\xd5\xe8\xa2\x05\x1c\x72\xc5\x51\x3a\xc7\x5c\x79\x6c\x76\xf1\xf1\xe2\x7b\x5c\x3d\x55\x30\x81\xbd\x34\x18\x07\xd1\x68\x29\x37\x0b\xa1\xa1\xf8\x9f\x0c\xad\x89\x20\x25\xc3\x21\xe6\x31\xef\xcd\x2a\x58\x3d\x21\x82\x9e\x1a\x02\x92\x84\xfd\x43\x0c\xfb\xbd\xa1\x22\x49\x58\x58\x75\x11\x30\xd1\x92\x34\x7c\x62\x3a\xc1\x9c\x34\x0d\x9c\x98\x56\x47\x59\xa2\x48\x29\xc0\x8e\x7b\xd9\xde\x1d\xe4\x81\xcb\x19\x81\x02\xfc\x87\xb8\x70\x16\x34\x53\xd1\x36\x35\x60\xd1\x23\xa4\x66\x0f\x5f\x3c\xae\xc2\xdd\x16\x0e\x8f\x20\xab\x70\x0f\x26\xc1\xaa\x70\x63\x86\x50\x44\x08\x13\x4b\x0c\x36\x6d\x4f\xe7\x22\xf8\x33\x4c\x88\x56\x19\x02\xbb\x3c\xde\x2e\x40\x43\x53\x35\x27\x16\xda\x7d\x24\x9e\x29\x60\xb3\xd2\x7a\x3a\x97\x6c\xd3\x5b\xc1\x75\x2e\x3b\x33\xb2\x6b\xc7\x5b\xfe\x9c\xe9\x2d\x2e\xfd\xc1\xf9\xde\xca\xd6\x1f\x92\x1f\x2c\xe6\xe0\x9b\xa1\xbc\xbd\xa4\x3f\x9c\xbf\x25\xb5\x6a\xfd\x45\x2a\xae\x52\x73\xcb\x34\xbf\x2a\x73\x25\x13\x45\x18\xd6\x2d\x44\xfb\xcb\xcb\xe1\x64\x9d\x46\x49\x82\x6a\x21\x43\x96\xec\x50\x01\x9f\x42\x56\x3e\xbd\x0c\x41\x80\x20\x7b\x04\x38\x20\xff\xde\x92\xa8\xee\x47\x13\xae\x20\xd5\x92\x55\x2b\x34\x84\x22\x55\x18\x59\xaf\xdd\x8e\x70\x00\x7a\x15\x17\x1b\x4b\x09\x63\xa0\x57\x60\x31\xf8\x97\x4d\xc5\x84\x1b\xd1\xdb\x6d\x73\x63\x70\x00\xdc\x02\xde\x50\x9f\x04\xdb\x15\x3b\x36\xa5\xd2\xe7\x4e\x91\x33\x07\xc7\x6a\x73\xac\x75\xc4\x06\x7f\x8a\x6f\xcd\xd0\x7a\x5e\x65\xb9\x17\x84\xa1\x2f\x82\x13\x95\x27\xd7\x87\x3a\x60\xcb\x7f\x0d\x4e\xed\x73\x78\xd3\x8c\xa4\x52\xb9\x28\x9f\xf7\x54\x94\x4f\xf7\x7a\xf3\x23\xa0\x25\x14\x17\x45\x4f\xc7\xa3\x65\x15\x14\xe9\x5d\xb0\xfd\x80\xa3\x07\x4f\x40\xad\x3f\x72\x8a\x19\xe4\x0f\x82\x6f\xb3\xdc\xcc\xec\xcd\xbb\x57\xeb\xd5\x68\x5e\x4f\x01\xd1\xc7\x0b\xdc\xdd\xfd\x40\x45\x5a\x7b\x3e\x06\x1b\x91\x0e\x25\x74\x0a\x56\xc6\xae\xe8\xbb\x17\x55\x74\x7d\x9d\xc8\x51\xa1\x36\x4d\x59\xd1\xc4\x20\xc7\x21\xca\x4b\x45\xa9\xcb\xf4\x63\xaf\x17\x68\x98\x12\xb5\xd8\x53\xa6\x2c\xba\xb2\xd5\x64\x39\x1b\x9d\x4d\x3e\x69\x78\xba\x0e\x3b\x32\x4e\x04\x47\xba\xdb\x0e\x4c\x15\xc9\x8d\x4b\x37\x95\x19\x52\x53\x38\x35\xc1\x6f\x0f\xef\x1f\xff\x78\x74\xf8\xa2\x37\xad\x0f\xe7\xb0\x50\xc6\xdd\xce\xcf\x97\x93\xd5\x87\x5b\x4b\x24\xda\xb7\xe6\xe6\x5e\x5b\x14\x57\xb9\x15\x40\x4e\x8d\x26\x73\x20\x31\xce\x49\x44\xff\x84\x2a\x21\xc2\x6f\xf6\xa3\xfa\x22\xfb\xd1\x21\x6b\x93\x1a\xba\xf2\xdf\x2a\x8f\xec\x7a\x87\x0e\x9c\x7d\x68\x3d\xbc\x04\xf5\xb2\x17\x18\x28\xa8\x36\x83\x26\xcb\x53\xcf\xd1\x9c\xa6\x63\x41\x6f\x5b\x29\x5a\xce\xcf\x9c\x4d\xcf\x53\x93\x04\x05\x30\xa5\x36\xed\x7f\x76\xd8\xe4\xfc\x95\x0c\x3c\x1f\x29\xe6\x58\xc2\x73\xf2\xd8\x2e\xd0\x5a\xf9\x24\x2b\x5a\xc7\x42\x52\x88\x8c\x17\x93\x1b\x11\xe1\x48\x16\x02\x55\xd7\xb7\xdd\xbf\xbf\xc5\x93\x46\x48\x39\x0f\x5a\x28\xe7\x5d\x45\x39\xc3\x49\x49\x04\x79\xc0\xdd\x10\xb1\xbc\x20\x85\x77\x9c\x04\xfc\xb2\x0b\x7f\x3a\x9f\x7a\x11\x30\x6b\x4b\x03\x86\x74\xc2\xd7\x14\x26\x9f\xac\xe0\xd0\xae\xab\x6b\x76\xb0\xd9\x2f\xf3\xc9\xd9\x9a\x98\x14\x57\x9e\x8a\x90\x8d\xa4\x69\x85\x1c\x45\x62\xc9\x25\x49\x98\x1f\x4e\x6b\x2e\x0a\xcb\x00\xdc\x92\xe2\x53\x7a\x0b\xcc\x89\xab\x13\xfd\xac\x12\xe8\xeb\x51\x7d\xf8\xf3\xe5\xf4\xed\x68\x06\x5e\x52\x4d\x53\x51\xd3\x86\xb2\xc1\x38\x45\x1c\x2a\xe6\xaa\x8d\xbb\x48\xd4\x8a\xe0\xd9\xc1\x16\x30\xb4\xf5\x68\x3a\x47\xb6\x53\xb2\x6d\x9a\xc9\xa7\x65\x5d\xd9\xa4\xbd\x3d\xfb\x93\x7d\xc3\xcb\xd2\xef\x5f\x98\x54\x28\x81\x7c\xd9\x04\x4d\x76\xb0\x52\xe8\x59\xd9\xd1\xc9\x1d\x0e\x52\x4a\xbd\x28\xc3\xc1\x90\xef\x75\xa8\x73\x6f\x4f\x17\x03\x97\xa0\xc8\x8c\x0e\x19\x63\xc0\x5d\xbe\x9d\x20\x42\x34\x1c\xd5\xd2\x34\x65\x8c\xb8\x96\xc9\x43\x0f\x8a\x1c\x04\x19\xd7\x54\x8c\xaf\x5e\x67\xdf\x15\xb3\x26\xc1\xba\xd0\xde\x9e\xfe\xf2\x4c\xb6\xab\xea\x6d\x90\x14\x00\x43\x7b\x9d\xf5\xe4\x02\xd4\xb0\x26\xf8\xf4\xf3\x36\x91\x9c\x2a\x04\x53\x62\x28\x49\x50\xc6\xa6\x36\xe5\xd8\x2e\xb2\xfc\x1a\x26\xf3\xd8\xd6\xf5\xdb\x92\x09\xc6\xeb\x5b\xae\x6b\x72\x1b\x20\x8e\xcf\x04\xc5\x86\x3a\x4e\xeb\xd7\x7e\x29\xe8\x7a\x32\xa3\xef\x3b\x7a\xc3\x86\xb5\x8b\x7e\x9a\x99\xc1\xa6\xd5\x4f\xda\x76\xc9\xe1\xb4\x8c\x65\xd0\x86\x06\x7c\x3b\x10\xe5\x6c\x37\x68\x74\xfc\x9a\x46\x6a\x66\x27\xa0\x6f\x04\x74\xaf\xd4\xc6\xf6\xc3\x1a\xc8\x1e\x2e\xa1\x50\xf4\x53\x58\xff\x94\x67\xd6\xcc\x71\xc3\x62\xde\xe0\x1a\xd0\x2a\x21\x4e\x88\xfd\x5d\x12\x1c\x92\xa9\x64\x19\xde\x96\x52\xfc\x7f\x48\x81\xf0\x2f\x7a\x6f\xd9\xc6\xff\x54\x78\x0a\x27\xee\x2c\xe8\x70\x65\x39\x9b\x3c\x98\x4d\xcf\xde\x44\xb7\x12\x2f\xd7\xf5\x3b\x21\x2a\x4b\xc8\xc0\xda\x44\xcb\xbf\x8f\xc1\xdd\xe2\xf8\x2e\x18\xb6\x41\x77\xcf\xcb\x45\x78\x58\x39\x09\x51\x15\x48\xaa\x5c\xd6\x06\x09\x33\x4c\x54\x42\xc4\xac\x44\x24\x2d\xe0\xac\x23\xf0\x62\x74\x3e\x61\x5b\xa5\x50\x46\xe0\xb2\x48\xbc\x36\x24\x8f\xb1\x64\xfb\xec\x2c\x9a\xc8\x7d\xac\x53\xfb\x5f\xbd\xaa\xbb\x8b\x25\x52\x18\x16\x79\x10\x89\x17\x2f\x29\x27\x68\x06\xa2\x73\xac\x1d\x87\x4a\x6c\x44\x51\xa4\xae\xb8\xb2\x9e\xfc\xc5\x54\x76\xee\x7d\x50\x94\x10\x30\x3e\x82\xc1\x28\xf7\x4e\xc7\x4b\x7c\xa9\x7a\xc8\x92\x5e\xf6\xf8\xb4\x2a\xe5\x9b\x6e\x32\xe5\x15\x36\xd4\xc7\x7f\xb1\x95\x3e\xc6\xa6\x2f\xa8\x6f\x9e\xac\xe9\x4a\xe4\x29\x93\xf1\x7d\x3e\x26\xcc\xa1\xe4\xa9\xa5\xe7\x65\x53\x6c\x4b\x53\x57\x27\x9d\xd1\x0c\xc8\x0d\xba\xd0\x34\x7f\x81\xd4\x99\x3f\x67\xeb\xd5\x8c\x57\xd9\xf3\x67\x8f\x9e\x82\x96\xe3\xe1\x9f\x0e\x9f\x1e\x0f\xd1\x52\xea\xe8\xf0\xbb\xc3\xff\x53\xdd\xfe\xeb\x19\x2c\xf2\xeb\x8b\x85\xd9\xaa\xd7\xeb\xc5\xe5\xd9\xeb\xdb\xbc\x43\xee\xcf\x66\x8b\x77\x13\x8e\xe8\x6d\x09\x10\xba\xd4\x29\x47\x94\xf7\x83\x69\x5d\xc7\x85\x50\xc9\xa1\x61\x99\x01\xca\x75\x82\x62\x28\x61\xc5\x38\x47\xce\xf0\xda\xdb\x88\x04\xc1\x2a\x07\xba\xa5\x4e\x07\x9f\x8b\x55\x92\xd3\x47\x19\xcd\x3f\x74\x8a\xaf\xaa\x3b\xbe\xfd\x3b\x2e\x4b\x02\xa7\x93\xdd\x33\xe6\x03\x9c\x3a\x8a\x8b\x2a\x1f\xa6\x7a\x6c\xfd\x04\x2d\x86\x4c\x13\x9d\xd3\xbd\xbd\x54\x83\x00\xcd\x6e\x24\xa5\x01\xb2\xb2\x77\x3e\x07\x39\xbd\x19\xe8\xc9\xb4\x82\xb5\xfb\xce\x2d\x05\x36\xef\x96\xf6\xb3\x15\xea\x54\xd8\x2d\xa2\xa7\xc0\x89\xb1\x1f\x8d\xab\xfd\x7d\xba\x72\x83\x4b\xae\x74\x23\x76\xb5\x9d\x48\xa1\xd3\xea\xca\x46\x3c\xec\xcb\x7a\x76\x31\x10\x89\x0e\xad\x2c\x0f\xc3\x64\xeb\x28\xa8\x8f\xa7\x88\x7d\xf9\xe8\x05\x94\x58\x37\xb1\x2b\x03\xd9\x46\xe4\xb7\x89\x83\xfe\xec\x8a\x0f\x24\xea\x60\x90\xdb\x2d\x74\xc9\x97\x97\x2f\x5f\xce\x26\x75\x15\x14\xa9\xd7\x8b\x25\xc8\x0c\x46\xaf\x46\xc4\x80\x35\x4a\xa6\x62\xa9\x83\x04\xae\x32\x7b\xd8\xdc\x78\x56\x8e\x7e\xb8\x24\x45\x97\x5c\x88\x2e\x2e\x69\x58\x4d\xaa\xd0\xa3\xd9\x02\x83\xee\xeb\x3d\x78\xf9\xe2\x56\x78\x5d\x73\x1d\xaa\x94\x37\x3e\x70\xb5\xef\x94\xbe\x5d\x6f\x7c\x01\x78\xd7\xf5\xd8\xd2\xa8\x93\x70\x21\x9d\x0a\x9d\x3a\xe9\x3c\x7a\x68\x58\x0c\x24\x54\xaa\xa0\xa6\x88\x0d\x46\x17\x53\xfb\xdc\x35\xec\x6d\xf3\xeb\xeb\x24\x80\xb2\xc8\x53\x19\x61\x87\xc8\x15\x87\xa6\xef\x6d\xc0\xe0\x3d\x5c\xbb\x12\x8f\x96\x22\xd1\x25\xc2\x23\x84\xf6\x94\xf9\xc1\x8f\x48\xf2\xa5\x71\xa6\x4f\x1f\x6f\x5a\x14\x0e\x4f\x5b\x6b\x00\x2f\xdb\xe0\x80\x59\x70\x88\x17\x1c\xd3\xa7\x0e\x46\x62\x86\x10\xb8\x47\xfc\x22\xa0\x2e\x05\x7c\xd3\xde\x76\xc3\x2a\x82\xc2\x49\xca\xa7\xa4\x7e\x32\xe8\x86\x87\x29\xf7\xaa\xb2\x92\xba\x13\xfb\x4b\xa2\x5d\x1c\x9c\x96\xbc\x70\x0c\xd8\x30\xe5\xbb\xb8\x3c\x28\x0d\x91\x63\x16\xa6\x7e\x6d\x37\x0b\x7c\x94\x4e\x58\x5e\xe9\x65\xd4\x33\xd4\xf1\xdd\x62\x35\xae\xd5\xf3\x94\x7a\x81\xd3\x24\x08\x1d\xbb\x2e\xe6\xd7\xd7\x1d\x3c\x9f\x3a\x6a\x5f\xf6\xaf\xb8\x6b\x7d\xbc\x1b\x71\x03\x42\xb4\x08\xb0\xee\x4b\xf7\x1b\xbc\x2a\xf7\xbd\x6e\xe0\xed\x9e\x69\x05\xb5\xc4\x1f\xa5\x4f\x5c\x28\xcf\x4f\xe3\x6d\xdb\xbf\x0a\xda\x6d\x4a\x6f\x73\xf6\x3d\xa6\xc3\xec\x1e\xd8\x07\x66\x9f\x35\x03\xf1\x5a\x2b\x54\x83\xc6\xde\x53\x3b\x1e\x2f\x72\x03\x3f\xdd\xd2\x16\x5b\xd2\xaa\x2e\x3b\x5c\x26\x2b\x73\xd9\x8d\x77\x4a\xb4\x9c\x3e\x6a\xc5\xf0\x5e\x40\xff\xb9\x3d\x4d\xbd\x65\xf1\x81\x8a\xbd\x63\xf8\xba\x5f\x00\x82\x6f\xd1\xbd\x86\x67\xb5\xf3\xc5\xbe\x34\xba\xff\x45\xe7\x0b\x3f\x68\x87\xf7\xf6\xaa\x3f\x36\xde\x10\xad\x32\xd3\x2f\xf4\x3a\x74\x31\x59\xbd\x0a\x6b\x8a\x6e\x8f\xd2\xe6\xc5\xd2\x5c\x0d\xc6\xd1\x03\x12\xdf\x1c\x67\xa3\xff\xfd\x80\x46\xef\x39\x00\xf6\x19\x9a\xc9\x65\xdb\xea\x30\x17\xd8\x94\x6d\xae\xb1\x5a\xa0\x0a\x3d\x5d\xcc\xcd\x6a\xde\xf2\x1a\xdb\x7a\x5f\x6d\xd7\x9c\xfa\x7f\xe4\x36\xfb\xeb\xa8\x37\xfd\x66\x6f\x7d\xb8\xca\x37\xdd\x96\xc3\x0b\x75\x42\x3f\x44\xb6\x40\xa4\xc9\x24\x19\x24\xd8\x9a\x3f\x36\xbb\x20\x52\x29\xa2\x64\xba\xdf\x5f\xc4\x97\x60\x93\x16\x7a\xbd\xd8\xa4\x3e\x84\xd7\xa2\x4d\x6a\x43\x79\x21\x00\x4c\x75\x4e\x0a\xf0\x40\xb6\xd0\x46\xcd\xa1\x56\x25\xb3\xc4\xd3\x40\xe6\x6a\x0f\x8b\x28\xbc\xdb\xe7\xe4\x11\x29\xd5\x9d\x16\x39\x40\x5a\xd5\x2c\xab\xc8\x76\x90\xd4\x64\x0b\xe2\xc1\x04\x21\x72\x22\x2a\x43\x3c\x03\xf9\x53\x7e\x76\xfe\x80\x8f\x69\x08\x08\xb6\x34\xcb\xe4\x9b\x0f\x84\x30\x15\xb2\x82\xef\x1e\x72\x07\x79\x34\x3f\x5f\xd4\x22\x15\xf8\xb9\xba\x13\x78\x79\xd4\x50\x91\xb7\x47\x28\x60\xfe\xdb\xd7\x40\x27\xd3\xd3\x1e\xf8\x63\xa9\x95\x77\x81\x30\x9f\xbf\xcd\x19\xce\xbf\x8a\x97\xab\xc9\xe8\x4d\x73\xe3\xd7\x4d\xe9\xc0\x81\xb3\x23\xfb\x99\xbc\xd2\xa8\xc7\xc9\x4a\x3b\x1f\x31\xc8\x31\xd8\xef\x5e\x29\x9f\xb8\xe6\x68\x74\x16\x73\xb4\xbd\x54\xe9\xee\x8c\x35\x65\x4a\x20\x22\xcb\x87\x2a\xec\x2a\xa3\x8d\x28\xf3\x73\x77\xd1\x91\x12\xfa\xa6\xa3\x1e\x52\x79\xcb\x81\x34\xda\xd6\xdd\x89\xf2\x3b\x05\xf8\x75\x5c\xce\xa6\x93\x31\x0f\xe3\x0a\x99\x9d\x08\xb0\xb8\x42\xa2\xd3\xf5\xa1\xe3\x06\xad\x73\x54\xb5\x26\xa5\x6a\xbf\x2f\x7e\xa6\x7b\x01\x0a\xa0\xe8\x9c\xe2\x5c\x7d\x6b\xe2\x82\xe0\x9d\x81\xa6\xeb\xdb\x05\x6d\xae\x4a\x1e\x6f\x54\xe7\xc0\x98\xcc\xd6\x50\x94\x3f\x2f\x21\xb8\xaf\x2e\xd4\x33\x49\xaa\x9e\xc9\xd9\xe2\xd5\x1c\xbc\x19\x01\x3e\xbc\xb5\x3a\x99\x57\x06\x54\x2d\xd2\xc9\x7c\xb0\xbf\x3f\xa5\x49\xfa\x79\x09\x99\xe4\x92\x14\x03\x1f\xbc\x9d\x8e\x27\xe3\x63\xf0\xc9\xe2\x7c\x24\x23\x7e\x97\x3d\x09\x8b\xe0\x63\x54\xc2\x72\xfa\xa9\x27\x0c\x7f\x3a\xf0\xea\x8c\xb1\x4f\x8c\xab\x85\xe6\xdb\x49\xa6\x32\xcb\x8c\x9a\x84\xcb\xd5\xec\x07\x32\x03\xd8\xb6\x3f\x54\x62\xfb\x1e\x09\x7c\xb6\x4f\x0c\x00\xfb\x53\xd7\x89\x57\x42\xaf\x11\x62\xca\x09\xe3\x36\x24\xf0\x18\x25\xa0\xa1\x54\xd3\x66\xa3\x99\x4b\xb8\x87\xec\x3d\x9b\xa2\xd3\x45\xd9\xfa\xfe\xc1\x0e\x59\xa3\x16\x60\xb9\xfa\x9d\x20\xb1\x41\x90\x86\xfe\x70\x73\x0d\x14\xec\x11\xd6\x20\x01\x17\xa9\x39\xe8\x57\x53\x2c\xec\x48\x04\xb9\x85\x2d\x2d\x9e\xe0\x17\xca\xdd\xe8\xae\x6b\x2b\xa8\x39\x96\xe8\x79\x37\xa6\x24\x1c\x98\xd4\x20\x10\x00\xcd\x81\xa3\x1c\xf2\x24\xd6\xbe\x9a\x14\xdf\xd9\x6c\x02\xd6\x99\x8e\xe1\x08\xee\x9b\xab\x35\xe8\xa1\x98\xdf\x0f\x6d\x78\xb3\x88\xd8\xf1\x81\x20\x05\x1c\x49\xc3\x67\x45\x9b\xde\x29\x38\xda\x37\x7f\x9f\xd8\x5f\xee\xe6\xdb\x53\x2b\xcf\xca\xa8\x2c\x5c\xe3\xda\x70\x65\x49\xa6\x0c\x61\xc1\x5b\xea\xad\xae\xb4\x72\x4a\x1b\xe1\xa6\xd8\x86\x83\xa8\x69\xed\x08\xfa\xc8\x92\x2e\x73\x0e\x8b\x80\xc8\x39\x73\xca\x48\xbf\xb7\x11\x7a\xbb\xe3\xfd\x63\x05\xdd\x8d\xa7\x40\x1e\x28\x72\xfa\x4c\x94\x3d\xdf\xd6\xa3\x57\x78\xf1\xef\x8c\x3a\x12\xb7\xf7\xcf\xaf\x27\xa4\x7f\x53\xae\xa7\xeb\x19\x3b\x95\x5f\x4d\x66\xf4\x63\x84\x0f\xe9\x0f\xc0\x13\x17\x85\xba\x7b\x6b\x6e\x6b\x70\xc9\x02\x33\x39\x4a\xe5\xaf\x0e\xbc\x25\xe3\xa1\xcc\xe9\xf2\xd9\x29\x87\xd3\xfa\x21\x7f\xb0\x4a\x10\xab\x35\xf1\xd7\x68\x6d\x56\xfe\x4b\x83\xff\x6f\xc4\x7f\xfd\x49\xe7\xf5\x6a\x72\x6e\xae\x33\xd8\xa7\x0e\x1c\x3e\x33\x73\xa5\x41\x8f\x60\x30\x00\x05\x28\x9d\x72\xfd\x70\x2d\x9f\x96\x4e\xd6\x21\x22\x8e\x50\xd3\x43\x69\x74\xa4\x15\xac\xf0\x68\xb0\xf5\xa8\xe7\x62\x9b\xd6\x61\xbd\x10\x11\xcd\xe2\x95\x1e\x61\xa8\xf2\x29\xba\xc1\x81\x27\x6b\x9a\x52\xd2\x82\x1a\x47\xbd\x98\x2f\xd6\xd3\xf3\x0f\x7e\xbc\xc1\x6e\x74\xee\x9a\x6a\xcc\xbd\xe2\x72\x09\x8b\xe7\x19\xb9\x2b\x5e\xd5\xa1\x2a\x5b\xc4\x7d\x60\x03\x8a\xf3\x40\x95\x52\xb3\x2c\x90\x0a\x67\x09\xa9\x86\x42\x17\xe1\xc8\x14\xf8\xbb\x22\x2c\x5c\x94\x1c\x72\x15\xe1\x79\x67\x92\x7f\xf1\x69\x40\x65\x81\x4c\xe8\x26\xc0\xfa\xec\x73\x1c\x0f\x5e\xb7\x37\x9c\x12\xac\x66\x47\x92\x19\xc1\xe7\xd6\x27\x84\x9b\xe5\xd5\x84\x34\x4d\x8a\x06\xd8\x8f\x29\x38\x17\xf9\xa3\x30\x1d\xc0\x15\xdb\x78\xb8\xc8\x6e\x80\x35\x9d\xd9\x5f\x86\xb2\x93\x99\xaf\x25\xeb\x9f\x07\x01\xad\xa7\xd7\x67\x1e\xb8\xbf\xa8\x89\x2c\xc5\x7c\x2d\x82\x46\xc9\x19\xd6\x15\xef\x69\xe4\xc8\x3f\xc7\xb0\x3a\x3f\x77\xc0\x03\x31\x13\x7b\x65\x7d\xc8\xc7\xd6\x90\x85\xef\xcc\x2e\xc7\xf8\xbc\x39\xb5\xec\xca\x67\x64\x55\xa0\xde\xdf\x6a\x3e\xcc\xff\x28\x84\x1a\x49\xc3\x6f\x46\xfb\x18\x22\xa2\x37\x5d\xd2\x1d\x22\x9a\x2e\xd2\x87\x6e\x78\x61\x92\xe3\x48\xa8\x3f\x3c\xdc\x95\xce\xc7\x7f\x14\x75\x9d\x7b\x04\x8a\x2f\x1d\x75\x68\x74\x24\x94\xb1\xf6\x9d\xff\xb5\x23\xc4\xde\xc1\xd3\x29\xe8\x54\x69\x0a\x3e\xbc\x36\x77\x8f\xb4\xc5\xe8\x2d\xc3\xd5\x2a\xe7\x49\x11\xf8\x28\xb7\x2c\x90\xd6\x8c\xf3\xaf\x3d\xc8\xb8\x04\x99\xc4\x18\x39\x81\x7f\xc8\xd7\x1c\x80\x82\x5c\x74\xfd\xe2\x0a\xc2\xab\x97\x3a\xbb\x69\x67\xa9\x84\xeb\x6b\xc7\x20\x99\xbb\xd6\xc5\xe8\xfd\xf4\xe2\xf2\x42\x44\x00\xd5\x46\x99\x40\x57\xd5\xc5\x77\xbc\x9e\xfc\xb1\xec\xa3\x5c\xd6\xf1\xa2\xa6\x0a\x50\xbc\x6e\x19\xa4\x98\x3a\x07\x7d\x28\x74\xf7\x75\x67\xe5\x4d\x1c\xe7\x43\xae\x85\xf2\xcd\x2b\x94\x52\xcb\x13\x55\x87\x04\xc4\xb5\xed\x16\x1c\x68\x9f\x0a\xda\xf9\x73\x08\x55\x6c\x0d\x78\xec\x2e\xac\x57\xa5\xe8\xb8\xf5\x67\x8f\xd7\xc4\xe6\x25\xf5\x98\x00\x39\x96\x62\x72\x29\x24\xba\xa5\x19\xab\xa8\x5f\xaa\x1b\xac\x57\x19\xf5\xa2\x9b\xa8\x53\x99\x54\x14\xbd\x0d\x2a\x9a\x66\xcf\x30\xb3\xd2\xf7\x55\x11\xe4\xb1\x39\x56\x14\x88\xde\x97\x89\xd1\xc8\x3c\x2e\xb7\x8a\x72\x3c\xc9\xf6\x2d\x38\xc3\xd7\x8b\x5b\xf4\xc8\x72\xcb\xb2\x88\x80\x37\xf7\xae\x7c\x5f\x92\x13\x4a\xfb\x78\x07\x09\xc0\x44\x5b\xdf\x95\x33\xc4\x7e\x08\xf1\x09\x3b\xd9\x97\x6f\xba\xaf\xe5\x32\x65\xc4\x5b\x3f\x8a\x7b\x34\x46\x13\xb9\x90\xce\xe4\x88\x91\x58\xc7\xbd\x7a\x05\x61\x34\x46\xab\x79\xb7\x73\x6c\x60\x76\xd8\xb6\xc8\xec\x1f\x38\x11\x47\xe0\x7f\x96\x96\xf9\x0e\x17\xde\xa9\xd7\xe0\x6c\xf9\xe5\xe4\x6c\x04\xd2\xef\xd1\x7a\x67\x36\x19\xd5\xeb\x1d\x73\x45\xd8\x59\x9c\xef\x4c\xd7\xf5\x8e\x63\x10\x77\xcc\x50\x6b\x33\x82\xd9\x07\x78\x79\xdc\x19\xed\x00\xbb\x72\xdb\x52\x6a\xa2\xc1\x25\x04\xa4\x5f\xbf\x9e\x58\xc9\x09\x11\xc6\x9d\x39\x2a\x36\x42\x3f\x0c\xd8\x74\xdc\x73\x71\x66\x3f\x03\x09\x25\x27\x35\x56\x9d\x7e\xe0\xe1\x89\x2f\x16\x80\x27\x07\x52\x59\xf2\x65\xed\x2d\x7c\x62\x62\x6b\x97\x87\xe8\xa8\xa8\xb6\x2f\xc9\x96\x45\x0f\x30\xab\x59\xe5\x13\x4d\xb1\xda\xf3\x8a\xf5\xc2\xd2\xf9\xcb\x37\x0c\xcc\x10\xb4\x30\xe2\x6e\xd2\xb0\x40\x71\x01\x93\x91\x59\x1f\x3f\x2e\xc1\x3d\xf1\x8f\xab\x99\x32\xa2\x29\x4d\x17\xe1\x12\xe1\x03\xf4\x95\x47\x73\x0b\x09\x97\x30\xd6\xfe\xb5\x89\x96\x1e\x5f\x5f\xeb\x54\x53\xe9\x13\x2f\xdc\x31\xac\x5f\x28\xef\xb4\x84\xfe\x15\xd5\x90\xef\x14\x57\x90\x5c\x61\x9e\x1c\x7d\x6a\x45\xfc\x14\x4d\xbb\x20\x8b\xb6\x74\xaa\x4d\xd4\x8f\xc0\x91\x74\x44\x15\xfc\xa7\xba\x47\x29\x3f\x1e\x3d\xc6\x7e\x38\x2f\x54\xb9\x1a\xec\xda\x71\x55\x70\x92\xab\x43\x95\x25\xeb\x1e\x0a\x55\xd6\x04\x67\x77\x92\x34\xa3\x88\x31\x7f\x23\x13\x85\x81\x58\x3b\xa4\xf4\x65\x0d\x09\x19\x03\xca\x16\x40\xec\xe6\xca\x12\x17\xc8\x27\x30\xe1\x1d\x5f\xa6\x97\x4b\x65\x51\x4a\xbc\x43\x74\x28\xb8\x33\x03\x43\x6e\x4c\xd9\x2b\x84\xec\xe2\x13\x98\x20\xaf\x22\x73\xcc\x70\xa8\x60\x91\xd9\x76\x0a\x12\x57\x5e\x85\x12\x8f\x9c\xea\x4c\xd4\xf5\xbc\xe0\x23\x3e\x17\x57\x30\x93\x9a\x74\x6c\x3e\xa1\x8f\x04\xd4\x86\x4c\xda\x92\xf9\xe2\x45\x7b\xc7\x13\x80\x07\x24\x0c\x08\xe0\x98\x85\xdb\xa1\xf4\x1b\xcf\x25\x07\xe0\xb9\xa3\x13\xae\xaa\xda\x8a\xef\x52\x95\x0c\x12\xb2\x55\x01\x3d\x91\x1f\x4a\xfa\xc6\x49\x78\x0f\xb5\xb5\x98\x73\xda\xaf\x42\x69\xfe\x6b\x1e\x4f\x71\xe9\x2a\xb9\xa3\x46\x5d\x34\x0a\x03\xdb\xf4\x23\xc2\x52\xe5\x2a\x68\x9c\x3c\xff\x00\xe5\xf9\x3e\x70\x46\xb4\x8f\x8b\x28\xc4\x3e\xdd\xbc\x29\x4b\xfc\xdd\xb3\x32\x95\x24\x7a\xfa\x94\x3c\x35\x1f\xf3\x04\xe5\x75\x11\xf5\x67\x3d\xc9\xa4\x5b\x34\xda\xb4\x0e\xfc\x61\xfa\x1b\x86\x6b\x68\x67\x51\xbd\x2a\xe2\x37\x1e\x12\xe5\x25\xe4\xa2\xf9\xdd\xa1\x0f\x20\xcb\x97\x24\xa4\xa9\x14\x2a\x0c\x39\x9e\x96\x2e\xf6\x4e\x4e\x4d\xbf\x80\x82\x6e\x6e\xf9\x7b\x03\x15\x5e\xc5\x58\x6c\xd9\x01\x7f\x51\x9d\x91\xef\xc1\xf1\xe3\xf9\x08\x4f\x46\x9d\xe7\xc6\xa1\x43\x9d\xe2\x23\x96\x40\x2c\xc2\xde\x70\xc8\x37\x5a\x16\x9d\x61\x1c\x34\xbf\x91\xbb\x1e\xa8\x8e\xf7\xcd\xa9\xdb\x14\x03\x41\xae\x0d\x70\x11\x47\x8f\xef\x08\x0c\x69\x4f\x7d\x06\x36\xdd\x36\x2a\x46\x76\x29\x39\x2f\x73\xeb\xa7\xa2\xf1\xc5\x96\xa0\x76\x75\x68\x43\x79\x8e\xfa\xa1\xb5\xeb\x92\x4a\x73\xb7\x0e\x0a\xf7\xca\x98\x06\xb9\x03\x40\x65\xa4\x53\x67\xa9\x43\x7d\xe2\x9d\x9f\x86\x54\xa9\xe0\x0f\xff\xad\x9f\x2e\x50\x67\x2b\x96\x77\x71\x71\xf4\xe8\xd5\x20\x8c\x48\x29\x78\xf0\x95\x97\x08\x04\x14\x17\xa4\xf4\xe6\x7c\xce\x3e\xf9\x61\xfc\x20\x04\x97\x1a\x51\xfd\x9c\xe3\x48\x61\x26\xbc\xb0\x05\xca\xf7\x0a\x84\x8f\x57\xd2\x76\x13\x71\xab\x7e\x94\x4b\x89\x7a\x2b\xdb\xea\xc0\xf5\x27\x5e\x32\xa1\xee\x05\x3c\x03\x1d\xd6\x67\xa3\xa5\x59\x26\x9e\x28\x16\x6a\x2a\xed\xdb\x19\xf1\x05\xad\x15\xdb\x52\x4d\x43\xc8\x53\x7c\xd3\x56\x8a\x89\xf4\xc7\xe9\x86\x92\xec\x0d\x05\xf8\x71\xd2\xf5\xb5\x75\xcc\x60\xc3\x68\x5a\x4d\x10\x0e\xc4\x00\x6d\xc9\x82\x76\x43\xb9\x31\x51\xd8\xe4\xe9\x41\x97\x71\x7a\xab\x5a\x9e\xca\x90\xf6\x2d\x8a\x3b\xac\xd6\x24\x47\x92\xb7\xda\x0c\x9e\xd2\x28\xf1\x54\x3a\x09\x56\x83\x39\x5f\xf4\xa6\x4b\xfb\x99\x08\xa6\x87\x53\x33\x56\xe9\x5a\xfd\x30\x76\x2f\xe2\xbb\x82\x4b\xfa\x5c\xca\xf8\x58\xd2\x25\x3d\x5f\x4b\xfa\x63\xa3\x5a\xe3\x82\xbd\x77\x7c\x76\xad\xc6\x8d\x3a\x89\xbe\x9e\x20\x33\xde\x43\x4f\xf3\x4f\x69\x06\x12\x1c\xb4\x77\xb1\x58\x2d\x5f\x67\xe1\x42\x0d\xc2\xbf\x07\x25\xc0\xdf\x4c\xdb\x2e\xa1\xff\xf6\xa5\xaf\xff\xf6\x40\x10\x1f\x99\x88\x27\x34\xbb\x86\x4f\x04\xfd\x91\xda\x9d\xcb\x6a\x53\x2d\xfb\x7d\xac\x59\xf6\xcc\x39\xb8\xf1\xfa\x22\x0f\xb5\xae\x62\xcf\xca\x33\xe3\x18\xc7\xee\xdb\x85\x72\x46\xd3\xb5\xf1\x84\xbd\x67\x6b\x02\x79\x81\xd1\x69\xed\x01\x81\xed\xdb\x21\xa0\xe1\x85\x7c\xa0\x2c\xd2\x7e\x7d\x6b\x4e\x67\xb1\xcb\x90\xfa\xf7\xf6\xe4\x17\x5e\x43\x83\x4f\x43\x10\xe9\xdd\xe1\xe1\x08\xfd\x69\xca\x25\x57\x42\x48\xc8\x8f\xaa\x83\x22\xc8\xc6\x99\x9d\x47\xca\xe4\xee\xa2\x3a\xd0\xa3\x88\x01\xd9\xe5\xe6\xae\x86\xf2\xad\xa5\x4d\xaf\x8e\x17\x4b\x20\xc8\x7e\x4d\x51\x01\x78\x4c\x61\x0b\x71\xc3\x03\x0a\x76\x3c\x9e\x81\x9a\x84\xe7\x0c\xce\x25\x93\x7b\x41\x55\xd5\x41\xd5\xf8\xce\xbe\x64\x37\x16\xad\x95\x24\x7d\x1d\x5e\xc1\xd9\x15\x54\x57\x57\x54\xf4\xa3\x56\xb1\x96\xeb\x6b\xb5\x14\x62\xa4\xe1\x35\x4d\x0f\x4c\x7c\x16\xd1\x57\x31\xf0\x6a\xe5\xfb\x1c\xd4\x25\x7c\x4a\x67\x48\x86\x15\x1a\x37\xca\xee\xdd\xce\xe4\xb6\x47\x2d\xd3\xde\xd6\x93\xd6\x0e\xce\x1d\xb5\x7a\x1b\xe8\x75\x5e\xe9\x8f\x8d\x84\x5f\x7c\x44\x6d\x24\xfc\x14\x3f\xec\xb3\x1e\x06\xa1\xfe\xf9\x62\x1b\xdf\x9a\x37\xb7\x76\xfe\x7b\xa0\xfd\xa1\x02\xf8\x27\x9f\x05\x08\x44\x51\x1e\x37\x38\x88\x0c\x4f\x8d\x7b\x2d\xa7\xc6\x97\xea\xd4\x38\x33\xab\x13\x04\x1f\x91\x9d\xb2\x64\xdc\xc0\xed\xe0\x7f\x7c\xaa\xd7\xc1\x74\x05\x1b\x4c\x99\x7f\x7f\x13\x53\xe6\xff\xf4\x0f\xa5\x8c\x2b\x01\xe5\x3a\xda\xf9\x54\xc3\x6b\x98\x3c\x64\xd2\x75\xd2\x3f\x63\x58\xe6\x18\xda\x3b\xe9\xfb\xc8\x73\x7e\x30\xa8\xac\x7c\xf2\x9e\xf3\x38\xc2\x82\x35\x65\xe0\x84\x04\xa1\xb4\x77\x0a\xa4\x91\xcf\xa8\xc9\x81\x3b\x31\x84\x29\xbe\xbe\xf6\x3a\x57\x64\xcd\xa2\xd4\x89\x12\xba\x33\x49\x3f\x90\xe1\x0d\x4a\x7a\x7c\xd7\x1d\x67\x5e\x7b\x03\xef\xcb\xbd\x6e\x5b\x01\xb4\x1b\x73\x21\x97\x99\xc0\x9e\x31\x50\x09\xab\x4f\x9c\xa9\x58\x80\x70\x7e\xb0\x70\xa1\x89\xed\x46\xe9\x76\xfe\x67\x71\xb9\x73\x71\x59\xaf\x77\x96\x86\x92\xee\x8c\x76\xe4\xf4\x43\xbf\x13\xeb\x05\x4f\x6a\x87\x84\x75\x14\x2e\x93\x05\xde\xdd\xdb\x7f\xb9\x7d\xfb\x55\x09\x8e\xe6\x07\x80\xfa\x04\x5e\xf8\x54\xc3\x2b\x39\x21\x3c\x91\x2f\x2b\xa9\x08\x9c\x7c\xc6\x87\xa8\xcb\xbb\xbe\x9e\x0b\x03\xa2\x3c\x2a\xda\xd3\x54\xc9\xa6\x3b\xfb\x7e\x8d\x03\x65\xc4\x19\x54\x5a\x5c\x35\x2c\x14\x34\x0b\xf2\xc1\x0d\x0c\xe7\xec\x74\x7d\x75\x97\x16\xf7\x39\xef\xf7\xdc\x91\x1d\xf7\xd9\xa0\x27\x4b\x0c\xba\x6e\xd1\xfb\x63\x91\xe9\x2e\x06\xca\xcc\x8f\xdb\xb6\x17\xbc\x8b\xc5\x78\x32\xeb\x2b\x09\xba\x37\xb8\x7e\x98\x20\x32\x96\x30\xbd\xa1\x49\x36\x1c\xf2\x84\x8c\x27\xd9\x5f\xca\xe1\x6c\x72\x81\x56\x4c\xea\x82\xae\x36\x8f\xf5\x29\xd4\xf0\x2a\x54\x3d\x8d\xd6\xc3\x96\x68\xc9\xe2\x43\xe3\x01\x68\xb6\xf3\x4e\xd6\xbd\xca\x0c\x6b\x33\x42\x1a\x79\x78\x5a\x38\x0b\x65\xb5\xe5\xc8\xdd\xd0\x62\xcd\x3e\x94\x22\xdd\x1c\x54\xc6\xf1\xb7\x65\x1a\x53\xc8\x83\xe1\x64\x75\x4a\x7f\xa3\x27\xaa\x90\x9d\x0d\x68\x8d\x38\x3e\xdc\x03\x72\x22\x91\x3c\x8c\xde\x43\xd5\xd6\xae\x2c\x9b\xcb\xfb\xd3\x67\xf1\x24\x33\x9e\x23\x5d\x49\xc8\x17\xfa\x53\xeb\x36\x87\xb8\x63\xda\x95\xf5\xda\xe2\x8a\x69\xee\x5c\x30\x6d\xc9\x2c\x7e\x41\x24\x6a\xa7\xf3\x05\xc5\xf5\xfd\xa2\xf3\xc5\x20\xcb\x30\x2a\x09\xd3\x26\x36\x50\xcc\xe5\xb6\xf6\xad\xe6\x7b\xb9\xd9\xda\xf2\xf0\x2c\xeb\xdb\xf2\x46\xbe\x6f\x84\xf5\xfb\x2d\x58\xbb\x8f\xf5\xe0\x06\x0e\x2b\xc3\xdb\xbb\x38\xac\x4c\xdc\xd0\xef\xc5\x37\xf4\x9c\x4b\xcb\x2f\x13\x2e\x2d\xdb\xcc\xb5\x12\x77\x7a\x87\x5a\xd6\x65\xdd\xc2\x37\x78\x9e\xf1\xfa\x8f\x88\xf1\x52\x7c\x93\x7e\xf6\xf4\xde\x3a\xdd\xdd\xc6\x06\xaa\x1d\x2d\x69\x49\x7b\xea\xe1\x99\x42\x6e\x0d\x90\x6a\x2d\x05\x82\xd0\x3a\xa5\x9e\xf2\xff\xc9\xd4\x7f\x8f\xf5\xc9\x90\xa7\x37\xaa\xb6\x51\x10\x7d\x23\xef\x0c\x38\x09\x17\x79\x04\x8e\xd1\xd2\x32\x40\xef\x55\xb6\x8a\x66\x2c\x8b\x97\xc4\x63\xf9\x20\x83\xe0\xb1\x43\x22\x99\xff\x32\x1a\x49\x15\x74\xea\x54\x41\xb9\xfc\xe5\xfc\xdd\x6a\xb4\x14\x58\x8b\xd8\xc2\xc3\x2c\xbe\x60\x68\xeb\xb1\xb0\x14\xbf\xab\x2e\x39\x6c\x8c\x56\xd0\xd2\xe1\x7e\x40\xb8\x1c\x2c\xf3\x1e\x07\xc9\xa6\xaa\x8a\xb0\x5f\x20\xb1\xe0\x56\xf8\xb4\x29\xb0\xb9\xaf\xe1\x9f\xfd\x4e\x8f\xd2\xfa\x92\xe7\xf5\x1a\x5b\x6c\xf2\x94\xd3\x8f\x5e\xf1\x39\xe5\xa6\x7f\x17\x91\x59\x3f\x46\xd6\x98\xb9\x33\x5d\x11\x77\xa6\x3c\xe9\xe9\x05\x8d\x0a\x74\xc0\x55\x91\x53\x71\xce\xdb\xdb\x93\xf5\xea\xe7\x0f\xe2\x22\x24\x39\x22\xc7\x76\x5e\x86\x59\x89\xde\xb7\xc4\x4a\x4a\x95\x67\x0e\x92\x65\xf7\x09\x80\xc0\x4f\x2d\x31\x3e\x8f\x3c\xb8\xbe\x17\x8c\xbf\xf4\x2b\x61\x1d\x81\xb0\x87\x73\x74\xf3\xe7\xa7\x36\x41\x51\x70\xce\x54\xda\x50\x24\xfd\x77\xd3\xf9\x78\xf1\xae\x27\xdf\x25\xac\x28\x70\xe8\x1e\x59\x3c\x80\x52\x11\xbb\xc5\x14\xe0\xeb\x6b\xfc\x96\xcf\xa2\x07\x40\xf8\xea\xf7\x08\x94\x92\xaa\x48\x3f\x49\xfc\x46\x50\x36\x79\x18\xe2\xe7\xd1\x8e\x4f\x3e\x51\x7b\xe9\xf2\xa5\x59\x68\xae\x40\xb1\xdd\x06\xf2\x23\xad\x7c\xfe\x27\x88\xe4\x8e\xfd\xf4\x08\x31\x5b\x86\x9c\x89\x02\xd8\xfc\x3d\xc8\xa3\x7e\x3b\x2f\xdf\x50\x79\x32\x0a\x46\xc2\x03\x40\x5b\x84\x8d\x04\x13\x93\x8d\xde\x91\xf0\x97\x97\x8d\x0a\x12\x38\xcb\xcb\xd2\x34\x78\xfa\x9e\x11\x73\xf5\x02\xac\x01\xc4\x90\xcb\xdc\x5f\x7e\x3c\x7a\xdc\xef\xdc\xee\x94\x43\xda\xaa\xbc\x63\xdb\xb6\x30\x2f\x3a\xc9\xe0\xcf\x72\x18\x20\xa0\x1f\x7c\x1b\x00\x35\xe4\xbe\xfe\x28\x87\x7a\x84\x7d\xfd\x81\x14\xe3\xd9\x6a\xfa\x6a\x3a\x0f\x69\x86\xf4\xa8\xf2\xc9\x46\xb9\x40\xe8\x4a\xbe\x7b\xf4\x4d\xef\xf3\xf8\xb3\xb8\x0a\x41\xd0\xe3\xde\xd9\x62\xb6\xdf\xb9\x7d\xbb\xb3\x6f\x93\x5f\x2f\xea\xf5\x9c\x45\x13\x0e\xd6\x20\x58\x6a\xd8\xaf\xcc\x81\xbc\xef\x65\x35\xa2\x07\x42\x10\x0d\x0e\xe0\xc5\xe5\x12\xe7\x85\x51\x12\x8e\xc4\x2c\xea\xd5\xfd\x57\xe0\x2f\x81\x86\xc2\x98\x9d\x8f\xde\x4e\x5f\x8d\x4c\x81\x9e\x05\x80\x9e\xd8\x0f\x47\xfc\xee\xcf\xc7\xab\xc5\x74\xbc\x73\x17\x95\x6c\x6e\x1d\xec\xed\x25\x80\x9e\x2c\x5e\x4e\x67\x13\xf0\x44\x33\x5a\x4d\xdb\x00\x1f\xbc\x5e\x2d\x2e\x26\x9d\xc2\x23\xa1\xac\xfc\x4b\x1f\xbb\xbb\xe2\xc2\x98\x06\xb4\xb7\xd7\x01\x25\xa9\x17\xa0\xa2\xdc\x99\xb2\xf7\x73\xc9\x2c\x02\x1c\x98\x89\x27\xf3\x96\x10\x0d\x3c\x6e\x0f\x09\xe5\x78\x71\x86\x47\xd9\x13\x0c\x98\xcb\x98\x91\xc4\x9e\xce\xe5\x13\xb3\xb3\x98\x03\xb1\x3b\xc3\x26\xa0\x33\x5c\x68\x6f\xaf\xeb\xd5\xa5\x2c\x57\xae\xaf\x75\xce\x57\xbf\x87\x1e\xb3\x2c\x0d\x98\xdc\xbe\xc7\xac\x8b\xe1\x8d\x9d\x75\x91\xba\x51\xb2\x5d\xae\xdd\x62\x1f\xc1\x69\xf4\x47\xbc\xd5\x72\x9e\xe2\x29\x9b\x60\xfd\x36\x45\x21\x6e\xfd\x1a\x05\x7d\x41\xe3\x92\x3e\x60\x9e\x14\xe5\x80\x66\xec\xab\xfb\xeb\xee\x1d\xd4\xb8\xba\xdd\x21\xf3\x35\x2c\x6d\xbe\xf6\xe5\xa3\x51\xcc\x23\x7e\xbb\xd3\xd9\x23\x7c\x3d\x49\xc6\x7c\x54\x55\xc8\x0d\xc3\xf5\xab\x9e\x8c\x56\x67\xaf\xa9\x4a\x90\x19\x85\x63\xf2\x4a\xf1\x98\x0d\xc6\xec\x37\x36\xa3\x13\xa0\x03\x5d\x46\x26\x6f\xa3\x14\x9e\x18\x91\x95\x2d\xc7\x88\xef\x12\x33\x5d\x05\x0d\x92\x12\x51\xd0\x08\x29\xdb\x55\x61\x5f\x84\x5c\x12\x7b\xe1\xc5\xf4\xe4\x1c\xd6\x5a\x43\x5c\x41\xc5\xe6\x7a\xb5\xae\xad\x37\x2b\x66\x38\xee\x94\x77\x31\xb0\xe4\xbf\xc2\xc4\x58\xa8\x4a\x83\x1c\x14\xbd\x7a\x39\x9b\xae\x89\xab\xb1\x75\x56\x16\xda\x2a\x09\xf1\xac\xb3\x56\xab\xd9\xad\x15\xcf\xb8\x2b\x64\x7f\xb9\xda\x1b\xbc\x52\xb8\x9c\x01\x7d\xe3\xb0\xa5\xbb\xd4\x0e\x49\x4f\x69\x01\x19\x62\xf7\xaf\x9d\x7d\x97\xf7\xd3\xc2\x2c\x72\xe8\x21\xeb\x04\xe9\x4a\xe8\x37\xc0\xea\x55\xe6\x56\xd8\xc7\x4c\x1d\xe7\x97\xaf\xdd\xec\xab\x99\x73\x89\x5d\x9e\x06\x52\xa3\x75\xe9\x32\x7e\xae\x47\xc6\x66\xe5\x60\x00\x03\x1b\x86\x3c\x71\xda\xa4\x78\x37\xb9\xda\x61\x3b\xd9\xaf\xc6\x21\xc9\xa5\x79\xa3\xcf\xde\x2d\x9c\xe8\xdb\xdd\x25\x64\x4d\x5d\x69\x02\x51\x05\xb9\xa4\x77\xec\xc6\xc8\xcb\xce\xfc\x88\xce\x7c\x32\x6d\x29\xb3\xf7\x11\xef\x0c\x16\x1b\x35\x1f\xc9\xb2\x91\x69\xe1\xd9\xe4\xe0\x74\xeb\x9a\xab\xed\xe6\x39\x42\x4b\x33\xd5\x48\xa5\xa7\xca\x60\x24\xdb\xcd\x80\xad\x60\xe1\x75\x34\x5a\xf4\x59\x4a\x25\x14\x29\xef\xea\x46\x5c\xf0\xfa\x78\x28\xf6\x90\xc2\xd1\x30\x52\x7d\x42\x91\x1d\x07\xe7\x5d\x5f\xfb\xe9\x66\xb1\xec\xed\xd9\xaa\xe0\x1b\x49\x40\xcb\x48\x15\x8b\x74\xd3\x61\x72\x33\x66\x8c\x89\x7b\xeb\x27\xde\x29\x71\xc8\x61\x4f\xc8\xe3\xb9\x5f\xb0\xec\x44\x60\x1d\xf6\xdc\x90\xbc\xdd\x6e\x73\x01\x0b\x2e\x32\xbf\x48\x7c\x8d\x54\xcc\xf1\x0d\x0e\xe7\xda\xae\x6d\x9e\xe3\xb9\x9f\x90\x40\xfe\x23\x5c\xad\xda\xe4\xc3\x9f\x18\xe1\xe3\xd5\xe5\x74\x1c\x86\x0a\x04\xc1\x30\xa7\xb7\xba\x32\x4b\xdc\xa5\xf2\xf7\xb4\xc4\x65\xea\x27\x3c\xce\x3f\xe2\x1a\x95\x72\x39\xe5\xaf\xdf\x7e\x07\x56\x67\xec\xa5\xa2\x56\x5a\xe9\xb2\x70\x95\x19\xa1\x4d\x2c\xae\xaf\x83\xdb\x96\x61\x78\x36\xf0\x64\xe6\x6f\x0b\x5f\x69\x79\x1a\x75\xf8\x97\x75\x50\x84\xb8\xda\x57\x71\x27\x0b\x7c\x3e\x42\x56\x67\xa0\xc6\x30\xaa\xd7\x2f\xb0\x8a\x4e\xc9\x1c\xae\xb3\xb4\xda\xaa\x56\xe1\x98\xe1\xa8\x44\xb0\xf6\xda\x17\xf3\x1f\xc5\x18\xcc\x55\x0f\x92\xe0\x97\xa3\xb3\x37\xc4\x3b\x80\x11\x28\x69\x49\xcb\xf2\xaa\x78\x2d\x91\x72\xfe\x80\x66\xbd\x4b\xe8\x2d\xd0\xd1\xac\xbb\x25\xf4\x68\x9f\x4a\x0f\x6f\x75\xf6\xa1\xb0\x7e\x0e\xd4\xae\x74\x15\x47\x5e\x41\xbb\x3d\x9a\x02\x3a\x0a\x60\xbc\x90\xe8\x0d\xa4\x08\xa4\xfa\x4d\x9d\x82\xa2\xd8\x10\x03\x19\x18\x21\x10\x55\x7b\xcb\x73\x30\xec\xf1\x27\x0d\xec\x00\x45\xba\x65\xd0\x68\x3e\x9b\x52\xbd\xfe\x86\xcc\xd5\x16\x28\x39\x3f\xdf\x8c\x13\x7c\x56\xd8\x4c\xa3\x23\xb1\xd4\x2f\xe4\x80\xf4\x26\x24\xfa\xef\x88\x0a\xff\x66\x02\xad\xcf\x4c\x77\x13\xa4\x34\x41\x70\x97\x8b\x25\xda\x2e\x7f\x3b\x5d\x89\xab\x77\xea\xa8\xcf\x36\xa2\xf0\xa0\xf2\x85\x4a\x7b\x7b\x9d\x5a\x64\x0a\x7e\xce\x27\x11\x69\xaa\xe2\xa6\x74\xba\x8d\x4c\x2b\x02\xf6\x72\x54\x4f\x70\x3b\xf3\xfe\xc2\x04\x43\xf4\xc0\x7e\xa6\x4b\x9e\x91\x4c\x05\x1d\x70\x05\x04\xed\xe3\xb0\xd3\x9d\xb0\xfd\x7c\x15\x25\xb9\x2e\x88\x90\x45\x3c\x90\x20\x65\xc5\x4a\x89\xab\xb5\xa4\xa3\x2b\x07\x02\xd2\xaa\x02\xa8\xb6\x12\xff\xc5\xc7\x88\xbe\x92\x69\x13\xac\x05\x91\xb4\xd2\x8a\xdf\x52\x18\xa2\x1b\x5b\x24\xa5\x28\x19\x39\xaa\x8c\xa0\x0b\xee\xb9\xd4\x98\xdc\xcf\x94\x36\xd3\xbf\xdd\x2e\x0d\xc2\x06\x52\x9a\xff\x26\x20\xc4\x88\x1b\x2f\xc5\x92\xcd\xe0\x00\x60\xd3\xe4\x32\xd9\xe9\x7c\x44\x00\x3e\xda\x66\x20\xe0\xa8\x02\x81\x07\x4c\xec\xc0\x74\x60\xbf\x62\x01\x88\xbc\xf1\x01\x79\x4e\x9f\xbb\x58\x19\xae\x7d\x99\x20\x9a\xbd\x62\xe0\x04\x16\x6e\x12\xe9\xb8\x04\x59\x26\x96\xb9\xbe\xc6\x3f\x88\xe0\x5d\x39\x64\xc8\x36\x59\xe4\x71\x7c\x8e\xb4\x1d\xd2\xbf\x50\x17\xbc\xc5\x28\xbd\x90\xca\x13\x1c\x4b\x8a\x20\x7c\x9d\x58\xfb\x3d\x6c\xb0\xef\x09\x19\x11\xb8\x29\xed\xa8\xf3\x43\x44\x39\x45\x1f\x2f\xe4\x83\x54\xe5\x0e\x71\x08\x8f\xa7\x72\xa9\xc6\x9c\xe8\xa4\x88\x04\x75\x5f\x2a\x2c\x2d\xc1\xb3\x56\x93\xb7\xd3\xc5\x65\x6d\xc5\x1b\xb2\x0d\xed\xac\x7c\x62\xa7\x3d\x54\xff\x2a\xfd\xde\x82\x29\x8b\x79\x8e\xd2\xf1\x69\x09\x86\x4c\x0e\x8a\x4d\xec\x18\xc7\x34\xf3\xce\x95\xe2\xca\x3f\x66\xf0\x5e\x0c\x6e\x19\x35\x83\x66\xd8\x30\xfc\xd6\xe3\x72\x66\xc2\x96\xf1\xf2\xca\xb4\xf2\x5f\x9b\x68\x64\x1b\xb9\x03\x49\xfe\x6a\xc6\x02\xa7\xcf\x40\xfb\xac\x30\x43\x20\x4c\x8f\xcf\x5e\x77\x6f\xff\xf5\x2f\xb7\x6f\x17\x7b\x7b\x52\xb3\x4e\x2d\xae\x36\xd7\xca\x7b\x93\x01\xf6\xb9\x9a\xcf\xc5\x6f\xb6\x4f\xf9\x76\xdc\x66\xf0\x66\xf9\x69\x12\x81\x2c\x0f\xf9\x4b\x2b\x3a\x7c\xec\x6d\x3b\xc7\xae\xdd\xfb\x6c\x77\x5a\xc0\x2f\xdd\xc5\xfa\x9d\x14\xa3\x10\x99\x5e\x03\x68\x27\x7b\xcf\xac\x7d\xb8\x2d\x2f\x79\x48\x7d\xc8\x27\xc8\x03\x4e\xac\x24\xb7\x61\xb5\xcc\x78\x7f\x86\x6d\x41\xe2\x20\x51\x55\x97\xbc\xaa\xb4\x5f\xb3\xf0\x10\x6f\x59\x90\x19\x53\x90\x4f\xb9\xfa\xd8\xfb\xcd\x2f\xb9\xfa\xfe\xe5\xb3\x5c\x3b\xa6\x35\x06\x2f\x8b\xae\x1e\x9c\xae\xdd\x71\xab\x40\xfb\x79\x0d\x6a\xcf\x4c\x40\x39\x31\x68\xf1\x76\x12\x6a\x94\x07\x75\x78\xea\x70\x5e\x2f\x82\xe0\xff\x1a\x2e\x6f\x32\x92\x37\x11\x51\x3e\x68\x3f\x5a\x71\x1c\x89\x28\x43\x9b\x49\x27\xa5\xeb\x52\xcc\xd8\xd1\x59\x47\xc9\x0a\xe5\xb6\x1c\x55\x03\x16\xc1\xca\x8d\xdb\xde\x1e\xcf\x80\x24\x14\x5a\xb9\x19\x8d\xc9\x3b\xa4\x1f\xeb\x45\x4b\xc1\x3e\x84\x70\x4c\x0d\x43\x7d\x71\xca\x34\x27\xc4\xf4\xac\xd3\xa8\x4e\x65\xd5\xfd\xb1\x8b\xdf\x6e\x50\xc5\x57\x15\x15\x8e\x36\xd5\xdf\x31\x4e\xc7\x7d\x38\xe2\x4b\x71\x89\x10\x13\xa4\x4e\x57\xd0\x3f\xde\x09\x57\xc6\x7e\x47\x2d\xc3\xa2\x43\x0a\x7f\xdb\xd8\x28\xb8\xce\x8a\x5a\x55\xd7\x4e\x0e\x77\xdc\x7a\xcb\xe2\xef\xa6\x65\x39\x6c\xb1\x0e\x3e\xc5\xf8\x00\x2d\x1e\xb6\x1a\x17\xee\x60\x5e\x5c\xb1\x6a\xb9\xd4\x61\x25\x5c\x76\x1d\x76\x30\x2c\xc0\xd2\xb0\x0c\xbd\xc7\xcf\xbe\x1b\xde\x7f\x70\xfc\xe8\x4f\x87\xc3\xef\x0e\x9f\x1e\x1e\xdd\x3f\x7e\xf4\xec\x29\xdc\x96\xac\xac\x9f\x0b\x35\xed\xfb\x2b\xb1\xb1\x36\x91\xdc\x71\x3d\xcb\xd1\xd9\x6d\x08\xe7\x27\x89\x63\xec\xec\x3e\x7c\xf1\x98\x5d\x5c\x88\x6f\x28\x50\xe8\xc0\xb7\x79\x4c\x40\xc6\x6b\x52\x57\x27\xa7\xb9\x48\xe9\xa6\x86\x81\xf9\xcf\xc5\x7f\xac\xd0\x13\x0d\xd8\x6c\x06\xea\x7a\xe2\x2f\xc1\x9d\x8f\x10\xdc\x2f\xb0\xd8\x02\x23\xa7\xbd\x3d\x76\x90\x23\xb6\x4e\x7e\xa8\x31\x29\x2f\xcf\x8a\x62\x36\x00\x61\x7f\xd3\x35\x1e\x38\xb3\x29\x82\xf1\xeb\x97\x5b\x60\x87\xcd\x25\x9d\x87\x8a\xa5\xbc\x97\xa2\xaa\x01\xda\x07\xe1\x8b\xd3\x8b\xcb\x97\xf8\x3c\x54\xb3\x64\xe8\x06\xde\x4b\xcc\x3a\xad\x61\x0f\xce\xd7\xb7\x04\x4f\xe8\x99\x31\xac\x18\x9d\x1b\x22\xcd\xc2\x87\x2b\x41\x59\x12\x0c\x86\x14\x64\x10\x2d\x36\x6b\xac\x02\x13\x2d\x3b\xcd\xf4\x2e\xdf\x35\xe9\xca\xc1\x9f\x4e\x64\x23\x54\xba\xba\x75\x6e\x0f\x2f\xe7\x66\x71\x8d\x87\xe3\xcb\x8b\x8b\x0f\x43\xcc\x1c\x42\xd6\x10\x8b\x0c\x09\x31\xfb\x9d\xdb\x7d\x2a\xd7\xf0\x33\x9b\xed\x2d\xff\x22\x15\x68\xd3\x40\xd1\xd8\x7b\x7e\x57\x23\x99\xce\x06\x03\x60\xf7\x56\xd7\x86\x68\x6b\x29\x40\x9e\xd0\x6e\x80\x7d\x74\xf1\x74\x0b\x9f\x15\x4c\x1b\x88\x78\x67\x89\xc6\xea\x0b\x3d\xb8\x4f\x83\x13\x15\xc6\x0b\xf2\x62\x34\xce\x61\x88\x33\x9d\xf7\xa9\xa8\x6b\x48\x12\xe0\xb1\x71\x34\x4c\xff\x86\xba\x44\xd5\x8b\xa0\xc7\x7c\x33\x83\xad\xd2\xb9\xbe\xe6\x5f\xb7\xcd\x4f\x84\x3e\x59\x2a\xc5\x08\x70\x59\x6f\x32\x51\x0d\xa4\xc3\x1b\xdf\x6c\xed\xd9\xf4\x6c\xba\x26\x35\x11\x5c\x54\x7a\xff\x13\xfe\x4f\xa2\x0e\x9d\xa2\x40\xee\x72\x9d\xd9\xea\xac\x75\xe0\xb0\x64\x33\x6e\xb2\x63\x12\x73\xf6\xab\x4f\x8c\xac\xca\xf0\xc6\x68\x56\xec\x13\x26\x91\x1a\x5f\x03\xeb\xc4\xcc\x43\xac\x55\x8b\x80\x1e\xf2\x04\xd8\x6e\x75\x9c\x23\x2e\xdb\x08\x56\x57\x5c\xf9\x91\x70\x5c\x9b\x51\x1c\x1c\xdd\x25\x05\x27\xd1\x46\xb0\x3a\x73\x71\xaa\xe8\x3e\x2d\x00\x27\x77\x4e\x8b\xde\x7a\xe1\xbe\x0f\x4e\x4b\xfb\xfb\xee\x29\xea\x18\x0f\xfc\xe0\x0d\x48\x2c\xfc\xa9\x16\x0a\x6b\x2d\x62\x29\x4c\xcc\xc7\x91\x5a\x53\x10\x88\x01\x9d\x47\x7b\x7b\xee\x37\xba\xe3\xd2\x0e\x02\x69\xff\x3a\x80\x7d\xb3\x1b\xa8\x0e\x4c\x6b\xa3\x1b\x70\x6c\x81\xcd\x50\x46\x12\xa4\x88\xe7\x20\x26\x64\xc2\x30\x99\xdf\x79\x05\x00\x6d\x65\xf5\x2b\x79\x00\xa0\x2c\x03\x3c\x5c\x5a\x7b\xc5\xb0\x99\xb9\x39\x20\x57\xb0\xd7\x86\xfe\x5b\x14\x65\x4f\xeb\x21\xdd\x9e\xdb\x63\xe1\xa5\x1e\xb3\x32\xaa\x09\xc9\xc8\x76\xce\x60\x6d\x99\x35\x73\xfb\xa8\xf8\x79\x17\x60\xb7\x22\x91\xe6\x87\xec\xee\x6f\x7b\x1f\x08\x7f\x0f\x1a\x0e\xa1\x33\x03\x2f\x26\xda\x3f\x70\x34\xbb\x5f\xde\xa7\xc2\x2b\x6d\xa7\xbb\x51\x05\xc3\x6e\x84\x1f\x61\x19\x6f\x7a\x13\x9c\xd6\xa0\x6d\x16\x39\x40\xa0\x64\xb6\x1e\x4f\x44\xcb\xfb\xcf\x30\x5a\x1e\x90\xc4\x67\xe7\x51\x98\x77\x4a\x4e\x6a\xa3\xa4\xa2\xdc\xc5\xa1\xf0\x12\x08\x87\xcd\xb5\x31\x9e\x1d\xc6\x38\x99\x9e\x7f\x88\x02\xd9\xf5\x24\x87\x2e\x65\x41\x08\x3f\x84\xd8\x14\xc3\xef\x20\x61\x74\xc0\x11\x4a\x39\xf6\x5a\xb8\xf0\xe2\x95\xd0\xea\xb7\xe2\xa0\xc5\x71\xc5\x68\xc8\xf1\xbf\xab\x60\xa6\x7b\x9c\xce\x50\x2c\x40\x8e\xa0\x38\x1d\xa1\xc8\xb1\x68\x42\xf4\xe8\x8d\xa6\xbc\x9a\xbc\xf7\x9f\x67\x6f\xfc\x4e\xb7\x5e\xbc\x7a\x35\x53\x1e\x2f\x5d\x00\x04\xe7\x6a\x59\xb9\xa9\x60\x4f\x98\x98\x3c\x9e\xa0\xfb\x6d\x7a\x05\xc3\x94\xf5\x64\xb4\x1a\x2f\xde\xcd\xc1\x18\x1a\x23\x28\x98\x13\x32\x11\x90\xc1\x15\xa3\xb0\xba\x18\xbe\x86\x22\xf4\x28\x03\x6d\x4a\xf1\x2f\xe1\x94\x36\x24\x62\x5b\xf7\xb5\xc3\xd1\x87\xd3\x71\xa8\x32\x4f\x5a\x1a\xe3\xd2\xdc\x14\x47\xb3\xe7\xe4\xee\xbb\x5c\x4d\x2e\x16\x6f\xe1\x31\xe4\xa3\x9e\x34\xb1\x2a\x8e\x3c\x51\xc1\x9e\x90\x46\x0a\x71\xd1\x8f\x89\xd2\x48\x11\x85\x6a\xd3\x15\x64\x1c\xbb\x52\x84\x2b\x0f\xd2\xb0\x54\xd6\x7d\xb2\x08\x91\xb5\x4f\xc6\x92\xca\x14\xc2\x06\xbd\x72\x2e\x36\xc0\xbf\xef\xb9\x19\xfb\xeb\x27\x64\x14\x69\x1f\x1e\x31\x11\x3c\xbc\x6b\xff\xf6\x4d\x69\x18\x8b\x20\xd0\x57\x88\x56\xb6\x47\x45\x40\x6e\xde\x79\x8d\xfe\x48\xbc\x2a\xf3\xfb\x70\xc9\x11\x82\x6b\x25\x80\xd4\x81\xf4\xa8\x73\xf5\xc3\x4b\x38\xba\x5f\x5c\xd6\x66\xa3\xd6\xa0\x56\xf9\xf3\x12\x3c\x8c\xa9\x57\xa5\xe1\xcf\x4b\xba\xb7\x50\x4e\xc0\xe6\x62\x10\x3d\x48\xef\x6d\x88\xa5\x27\x30\x30\x23\x3f\x2f\xad\x97\x17\x2f\x60\xdd\xd2\xd9\x54\x93\x17\xf9\xda\x86\xd9\xe3\xc1\xec\xed\x79\x05\x38\x55\x42\xdb\xbd\x62\x83\x65\x46\x00\x47\xc7\x2b\x06\x54\x4d\xc5\xce\x89\x6f\x1a\x90\x0d\x87\x2e\x1d\x2e\xae\xb8\xb2\x65\x14\x3e\x4f\x35\x32\x9e\xa4\x9a\xa9\xdb\xdb\xa9\x5d\xe4\x37\x43\x5a\x07\xf6\xcb\x7c\x34\x0d\xc7\xda\x8b\x5b\x85\x77\x48\x09\x97\x62\x83\xc6\xf9\xae\x50\x93\x0b\xdf\x56\x61\xd7\xbe\x76\xda\x4e\x8e\x33\x80\x72\xec\xed\x05\x7b\x22\xe1\x46\x5f\x3c\x9e\xbb\xdc\xc6\x76\xa5\xe2\x39\x34\x09\xf4\x4d\x9f\x7a\x51\xf2\xce\x31\xeb\x50\x47\xe1\xc4\x57\xd6\x3a\x39\xa3\xa5\x54\x56\x6c\x51\x0f\xd9\x16\xa9\x4d\xc7\x3e\x97\xb1\x82\xbe\xed\xa7\x21\xa8\xf5\xd4\xec\x35\x97\xb2\x6b\x83\xeb\x95\x86\x36\xf5\x2d\xc2\xcc\x05\xf0\x46\x5b\x0a\xbd\x49\xfb\xc4\xa2\xa1\xf0\x63\x14\x4f\xb4\xc4\x78\x9c\x63\xc7\x0f\xf5\x4f\x28\x82\x18\x70\xb7\xee\xac\x20\x25\xcd\xde\x0f\x65\x94\xa0\x43\x10\x04\x37\x7c\x4f\xe4\xcf\x9e\x8c\xdc\xe5\x76\x35\xf0\xfd\x0a\xe7\x63\x19\x68\xa3\xdf\x29\x9c\x4d\xe6\xae\x3f\x35\x7d\x38\x4e\x36\x9d\x6f\x8e\xda\xc9\xd5\x90\x6f\x93\xa9\x6e\xde\xc4\xc9\x77\x8a\x4e\x24\x9a\x5c\x27\x97\x2a\xb8\xc3\x36\x5d\xf4\x30\x92\x0d\x0c\xa1\x3b\x67\x8e\xc7\xf1\x86\x9e\x01\x88\xf2\x87\xda\x4b\xd6\x82\xc6\x93\xf6\x0c\x66\x27\x06\xfa\x84\x48\xb8\x4a\x0a\x88\x3e\x39\x47\x71\x4d\x04\xef\x37\x21\xb8\xbc\x92\x29\x01\x3f\xaa\xd0\x23\x39\xd0\x3e\x92\xc2\x2a\x32\xcf\x0d\x89\x87\x82\x26\x68\x32\xf0\x12\xf3\x59\x99\x2e\x45\x29\xc8\x12\x40\xcc\x2f\x10\xb7\xae\xaf\xb5\x73\x54\xef\x25\x6b\x52\x63\xfb\x2f\x67\xc0\xcd\x7a\xba\x25\x7d\xbb\x19\x21\x31\x74\x3a\xd5\xef\x44\xb7\xf5\xb2\xd9\x9a\x46\x3a\x39\xee\xe6\x06\x54\x80\x1b\xf2\xc4\x73\xcc\x1c\x68\x6d\xf9\x24\x2f\xb5\xeb\xe3\x33\x01\x92\x6e\xa4\x7c\x39\x31\xfc\xc6\x04\x79\x30\x47\x01\x21\x68\x99\x9f\xb4\x32\xd4\x64\x05\x1e\xed\x25\x81\xab\x48\x70\xb7\xdc\x41\x36\xa0\xc1\x6a\xdc\xbe\x30\x45\x9a\x92\xbc\x67\x85\x7c\x5b\xb8\x13\x51\x3a\x47\x82\xaa\x7a\xf4\x8e\x8f\x55\x3a\xdd\x90\xeb\x71\xf8\xbd\xf9\x42\x57\x85\x7d\x56\x0c\x24\x61\x9d\xc2\x06\x3e\x90\xd0\xc3\x4b\xf6\x39\xce\xde\x57\x41\x70\xac\x5d\xff\x5f\x5f\xab\x2f\xf2\xc3\x0a\xa5\xbc\x48\xab\x30\x7a\x89\x81\x87\x43\x43\x57\xac\x56\xa7\xa7\xdb\xfb\xf7\x62\x38\x1d\xff\xdb\x6d\x91\xc5\x5f\xb0\x0c\x72\xe0\xf1\x43\x14\x8e\xd8\xe2\xa3\x92\xe0\x4f\x18\xd7\x62\x6f\xcf\x66\xa8\x57\xf7\xe5\x07\xc6\xb0\x53\x33\xda\xa5\xc7\x2e\x3f\x24\x0b\xbb\x66\x41\x11\xad\x39\x9b\x55\x0e\xa9\xf9\x24\x42\x8f\x3b\x13\x63\xe5\xe4\x8d\x67\xbc\xad\xf8\x49\xa6\x59\x08\x4c\xc1\xab\x64\xe0\x9c\xe8\x48\x9d\x8d\x26\xfc\x66\xa3\x8d\x31\x95\x9d\x5b\x51\x9c\xba\x52\x71\x86\xad\x0b\xec\x23\xe2\x4a\xb8\xb6\x71\xfd\x76\xe5\xa9\x90\x83\x66\xfb\x87\x42\xa1\x5b\xf3\x1c\x58\xa8\x1a\xe2\x7e\xd1\x3d\x87\x06\x16\x1e\xa6\xa0\xe7\xa7\xc3\x6d\xe1\xb7\x0b\xf0\x84\x9f\x88\x16\x3e\x08\x31\xc1\x3f\x02\x21\x25\x1b\x21\xc7\x3e\x1d\x07\xc1\x69\x06\xf6\x24\x77\x27\xa2\xfd\xc4\x4c\xfb\x90\x1c\x07\x10\xb2\x59\xb6\xa3\x57\xd0\xc5\x80\x8d\x52\x4c\x35\x62\x86\x2c\xe9\x72\xda\x05\xe4\x46\x47\x5c\x20\xe2\x59\xea\x4a\xd9\x05\x29\x9e\x87\x6c\x0e\xe2\xa6\xcb\x0b\xa5\x69\x40\xa1\x31\x5a\x29\x08\x5d\xea\xdd\xae\x83\x11\xfc\xf1\x40\xc7\x58\xa2\x46\xbd\x0d\x80\x1b\x77\x29\x91\x54\x4a\x92\xcc\x72\xa0\xf8\xdb\xb8\xbb\x7b\x86\x56\xaf\xe9\x11\xd2\xd0\x89\x20\x52\x10\x3c\xd0\x62\x11\x76\xd7\x02\xd8\xa4\x1e\x75\xa6\x63\x71\x1b\xb4\xb0\xe1\xea\x95\x27\x3e\xaf\xdf\xd6\x8b\x01\x42\x32\xe7\xa3\x9c\xf1\x79\x3c\x50\xfe\x5c\xbb\x62\x75\x12\x82\xd8\xdb\x63\x10\x3f\x6c\x64\x70\x81\x10\x5f\x7b\xea\x80\xf1\xb8\xa1\x60\xde\x87\xf5\x9b\xe9\xf2\x7e\x6d\x26\x62\xdd\xbe\x06\xe9\x79\x2d\xe7\x24\x54\x96\x42\x99\xf0\x90\x07\xda\x93\xe6\x4f\xc0\xc3\x31\x8d\x4d\x65\x35\x01\x2f\xd5\xa2\xb2\xc4\x6f\xc9\x4e\xbd\x89\x55\x1e\xca\x98\x7d\x0b\x06\xce\x4b\xa7\x75\xdb\x21\x4c\x85\xff\x32\xcb\x89\xbf\x25\xfe\x90\x6d\xb8\x55\x35\x45\xb5\xc6\xe7\x6e\x34\x0b\x8a\x55\xcf\x85\xa5\xf2\xb1\xac\x82\xb4\x29\x66\xfb\xeb\xc4\x4d\x81\xc2\xe0\xb9\x2b\x08\xde\xc7\xfc\x58\x62\x6a\xd7\x3f\xc6\xd6\x9e\xda\x89\x91\xa9\xb3\xc4\x86\x1d\x94\x26\x8f\x2d\xa2\x99\x51\xf4\xd9\xa0\x62\x1d\x35\x31\x53\xc3\x49\x50\xe4\xb4\xf1\xa2\xc3\xd8\xf5\xa4\xd8\x1b\xb8\x03\x69\x56\x2b\xb9\xc3\x78\xca\x15\x67\x46\x2a\xe4\xf3\x71\xb4\x3a\x3c\xbf\x55\x90\xf2\xdc\x90\x2f\x50\x8c\xa6\x47\x44\x5c\xba\xee\xf1\x70\x6f\x6f\x77\xd7\xe2\xc5\x87\xe0\xa7\x21\x03\x11\xbd\x4f\x62\x89\x79\x4c\xd0\x9b\xd4\x03\x66\xe8\xe8\x52\xa2\x57\x69\xb5\x81\x84\x03\x5b\xcf\x37\x26\x3e\x46\x22\x05\x4b\xb4\xea\x83\xb2\xcc\xd6\xa5\xd0\xc4\x23\x89\x8d\x3c\xc1\x43\x02\xe5\x13\x96\xf6\xf6\xe6\xee\x92\x26\xd0\x81\x6b\xdb\x24\x89\x69\x77\xb7\x6b\x7d\xcc\x5b\x59\x30\x3a\x91\xff\xfa\xad\x8d\xc2\x2f\xe9\x9d\xc2\x2e\xf3\x5d\x49\x33\xf3\x9e\x75\xfe\xa9\x9d\x86\x7a\x8e\x40\xf1\x90\x81\xfa\xcd\xfc\xb9\x8a\x54\x7c\x26\xb9\xe6\x06\x9a\x5c\x7f\x7a\x74\xf8\xe7\xe1\xe3\x67\xcf\x7e\xf8\xf1\xf9\x0b\xa5\xc4\x65\x67\xd6\x86\x1a\x63\xed\x4a\xa5\x98\x20\xcd\x38\x0d\x05\xc4\x0a\x9e\x20\xe8\x49\xd4\xba\x83\x26\x9c\x69\x45\x06\x1b\x76\x1f\xdd\xc2\xc3\xf2\x23\xd7\xcd\xb4\xe4\xc1\x58\x92\xe2\x11\x4c\xc6\xb2\x4f\x68\x4d\x18\x6e\xc5\xa4\x63\xed\xd8\x11\xdf\xa3\x28\x04\x3b\x3e\x23\x87\xa6\xe4\x6d\x3f\xed\x82\x61\xd7\x2e\xd7\x58\x69\xca\x3e\xb2\xa3\xd0\x0e\x2b\xd1\x2b\x48\x29\x4e\x0d\x82\x31\x38\xe0\xc6\xbd\x9e\x8b\x9b\xfe\x2a\x4e\xfa\x3a\x4e\x4a\xec\x0b\xf6\x86\x6b\x2f\x66\xa4\x62\x1f\x36\xed\x7d\x5e\x5f\x13\x32\x07\x8e\xcd\xc6\x2e\x68\x9a\x3b\xa4\xf5\xa4\xdc\xbe\xc6\xbd\x61\xaf\x23\xf6\xf3\x4a\x75\x34\x44\x74\x30\xa1\x70\x96\x67\x8c\x06\xd2\x6f\x2c\x5e\x42\xf0\x16\xe4\x95\x38\x5e\x2c\x1f\x4f\xde\x4e\x66\xd4\xa3\x6c\x56\x97\x7c\x06\x4b\x96\x8b\xbd\x50\x57\x5e\x19\x95\x71\x7d\x7d\x72\x3a\xb0\xcf\x5f\xdd\x04\x84\x7b\xde\x8e\x33\x61\xd3\x86\x69\x5d\xd2\x21\x47\x61\x71\xb6\xa7\x49\x00\xd5\xa8\x97\x9f\xda\x18\x4d\xf3\x11\x96\x6d\x47\x74\x58\x72\xc8\x2f\x1d\x74\x0e\xdc\xfa\xfd\xbc\x6c\x65\xfc\x6f\x28\xf2\xb2\x9a\xa9\x01\xc3\x60\x49\x4b\xab\x72\xb7\x66\xd4\x94\xd3\x8c\xac\x36\xb1\x56\x61\xdd\x0d\x8a\x7a\xfc\xb7\xcb\x7b\x0e\x7a\x98\x55\x00\x4b\xda\x99\x5d\x2f\x50\x5f\xf0\xa8\x81\xe5\x82\xb8\x7e\xd8\xac\x4a\xf1\x6e\xfb\x5e\x9c\x4f\xd5\x95\x9f\x97\xa0\x2e\x5a\x82\x62\x8d\xa1\x2b\xd1\x9b\x4e\x54\x41\xf4\xa8\x63\x21\x9e\x18\x02\x09\xee\xec\x55\x19\x78\xe4\x21\xfd\xb7\x08\x4c\x94\xe1\xfa\x60\xc8\x69\xb8\xa0\xa7\x7c\x25\x59\xe3\x8d\x84\x9f\xf0\xe8\xfb\xe0\xf4\xfa\x5a\x40\x4a\x7e\x6d\xfe\x53\xe2\xa1\x87\x70\x22\x90\xe4\xe7\xb5\xa2\x67\xfa\xae\x2e\x56\x78\x95\xbc\x90\xdb\xd5\x38\xff\x30\xa4\xe1\xb9\x6f\x58\xbb\x99\x21\x83\x36\x93\xdb\xf7\x20\xea\x30\xc5\xb5\x81\xc5\x30\x62\x29\xd7\xd3\xe7\xea\xa0\xdb\x7d\x3b\xca\xb3\xf5\x8a\xdc\xb6\x2b\x49\x2a\x3d\x54\xf8\x0d\xc5\x69\xaa\x29\xe2\x86\x61\x50\xcd\xc0\xcc\xef\x89\xd4\x7e\x5a\xc1\x17\x3f\x1c\xe1\xef\x50\x73\xbd\x4f\x51\x5b\x08\xf8\xe7\xe5\x00\xde\xf4\xf0\xb5\xe4\xe7\xa5\xdc\xda\xae\x4c\x5a\xdf\xfc\x07\x2b\xa7\x6f\xfe\x83\x8b\x6a\xe2\x01\x43\x2f\x50\x09\xb8\xf7\xc9\x9c\xbd\x0b\xcc\x28\x4b\xf9\x8a\x7c\xd0\xa4\x39\xfe\x1c\x97\x2f\x8e\x81\x03\x09\x9d\xe6\xf9\x97\x22\xbd\xb2\x4c\x38\xdf\x9a\xf1\xe2\x8b\x3c\xe7\xcf\x9e\x2c\xd7\xc2\xa9\x64\xe2\x26\x03\x03\x58\xbf\x6b\x98\x31\x90\x78\x84\x6c\xeb\xda\xd2\x10\x81\xe8\x36\x68\x2f\xdb\x37\x5b\xac\x57\x3d\xda\xee\xca\xab\xad\xe7\xf3\xd9\x52\x00\xf7\x2e\x8b\x94\x80\x3f\xcd\x4f\xb3\xc0\x63\xa2\x90\x7c\xe1\xc5\xd7\x5d\xd4\x5d\x8c\x1e\x27\x2b\x79\xa7\xb3\xf2\x4a\xf7\x74\xeb\xc9\x1e\xa1\xa3\x5d\x97\x67\xda\x2f\x94\x40\x12\x31\xc8\xcf\xa1\x8a\xc6\xc8\x0b\xa8\xe9\x80\x5a\xd7\xee\x41\x94\xe3\xb8\x16\xc1\xc3\x6a\xb3\xf4\x8a\xf3\x1d\xbb\xf5\xc5\x36\x7c\xae\xf5\x71\x59\x26\x4a\xba\x75\xee\xd5\xa0\x37\x2c\x18\xaa\xe0\xc8\xc3\x44\x60\x09\xc9\x6a\xc6\xce\xda\x7f\xbd\x78\xf6\xb4\x47\x6c\xe2\xf4\xfc\x83\xc8\x88\xc4\xff\xec\x3e\xe1\xb8\x4c\x8e\xe1\x53\x7b\xf2\x72\xb1\x98\x4d\x46\x73\xd7\x17\xc1\x6d\x07\x44\xbb\x9d\xaf\xe1\xdf\xbe\x7b\x3f\xd8\xc9\x54\x33\xbf\x04\x5e\xc1\xd5\xf2\x14\xbf\x79\x24\xb4\x48\x0c\xb5\x2e\x5a\xeb\x08\x90\x42\xdc\xc7\xfd\x2e\x22\xc7\xcc\x45\x3d\xe1\xea\xec\x04\x31\x5e\xcc\x66\x60\x75\x90\xe4\xc5\xd7\x1e\x1c\x22\x3d\x7f\x8a\x3a\xdb\xe8\xf5\xce\x7e\xb2\x3c\xf9\x1e\x3a\xc1\xc3\xa8\xb5\x57\xee\xf4\xb2\x65\xc4\x0b\x5f\x5c\x2c\xdc\xa7\x4a\xb7\xa2\xfc\x59\x6f\x3c\x47\xad\x07\x9e\x7c\x2b\xf3\x74\xc3\x1c\xd2\xc7\xa8\x7a\x28\xb5\x0a\xb3\xd9\xe8\x87\xde\xbc\x28\xba\x57\x1c\x03\x4d\x3c\xca\xeb\x03\x45\x0b\x8b\x41\xf1\x14\xc1\x0c\xbf\xe9\xc2\xe5\x64\xfc\xdf\xcf\x1f\xb8\xca\xf1\x7d\x80\x75\x00\x20\x70\xfd\x62\xce\xde\x2d\x39\x38\xfd\xf9\x74\xa5\x16\xef\xb1\x92\x3c\x97\xd9\xbc\x98\xd5\x57\x6f\xca\x3e\xa7\xd9\xd6\xbd\xa6\xbd\xf7\x60\x93\xa2\x43\x61\xd2\xcd\x04\x99\xda\x2e\x9f\x49\xe8\x30\x4f\x3d\x23\x54\x4a\x3e\xe4\x93\x7c\xef\xb5\x01\xe9\xb4\x4e\x48\x3c\x5a\x88\xd3\x3c\x9f\x28\x57\x89\x37\x0f\xa7\x66\xce\x45\x3c\x20\x43\xa7\x75\x88\x6f\x01\xa9\x2a\xef\x58\xe5\x46\x1b\x36\x34\x62\xa8\x26\x1c\xbc\xbd\x21\xaa\xf1\x73\x91\x18\x3b\xf6\xee\x8e\xc3\xa5\x7c\x2d\xae\xb6\x02\x08\xca\x4a\xde\x3b\x9c\x74\x4c\x2e\x22\xbe\xa7\x7a\xaf\x53\xdc\x84\xea\x75\x24\x58\xa0\xd3\x32\x2d\x59\x48\x6a\xca\x5b\x67\xec\x73\xc3\xbd\xeb\x8f\xaf\xf5\xc7\x16\x77\x6a\xc2\xc9\x96\x97\x6a\x49\xb6\xc2\x2c\x9b\x62\x91\x66\x91\x2b\x39\xa1\xa0\xc5\x71\x07\x5b\x49\x65\x06\x81\x72\x99\x0e\x82\xa3\x05\x86\x36\x83\x24\xfc\x68\x04\xf2\xc0\x93\x72\xc7\x25\x3d\x75\x82\x38\xdb\x9e\x01\x41\x65\x4a\x1a\xbe\x49\xe6\xed\xb5\x10\x54\x13\x45\x24\x4a\x09\xd9\xaf\xaf\x03\xd1\xae\x32\x47\x53\x45\x43\xe1\x4d\x70\x53\x55\xe2\xfe\x64\x7b\x5b\x5b\x1b\xc7\x0a\x19\xf9\xb8\x5e\x4b\x94\x32\xee\xfc\x4d\x55\xb7\xf3\x45\x6c\xa4\xfa\xc5\xdf\x76\x60\xa9\x9a\x3b\xfe\x64\xe7\x6f\x24\xe5\xfd\xdb\x0e\xe9\x71\x95\x3b\x2f\x2f\xd7\x66\xb3\xec\xd4\x97\x67\xaf\xd5\x98\xcc\xcf\xcb\xd9\x78\xe7\xe5\x64\xe7\x7c\x71\x39\x1f\xf7\x3a\xa4\x04\xc0\x82\x63\x75\xf6\xe8\xa8\x46\x2c\xdb\x8f\xa7\x59\x63\x47\x1e\x84\x08\xc8\x6d\xd8\x8d\x72\xbd\x2b\x8e\xae\xa9\xdd\x9c\x46\xab\xb9\xb8\x6a\x1c\x2b\x2e\x8c\x85\x16\x90\xe1\x06\xf6\xe3\x92\xf5\xe9\x73\xbd\x58\xce\x40\x6a\xd2\xc9\x04\x3b\x53\xb5\x79\x32\xc6\x54\x17\x60\x0a\x61\x13\xe2\x50\x3a\x5a\x92\x0a\xd2\x91\x3a\xca\xe9\x94\xe1\x2e\x27\x57\x50\x04\x35\x1c\x4f\x5e\x5e\xbe\x3a\xd6\xb5\x94\x9a\x4e\x14\x8d\x83\x5d\x31\x19\x4d\x40\xa9\x1a\xdd\x7c\x38\x18\xb5\xe4\x74\x58\x4e\x37\x43\x4a\x38\x4a\xc4\xd4\x93\x8e\xea\x59\x01\x24\xeb\x23\x02\x67\xc0\x3b\x20\xf3\x02\x42\x2c\x3b\x48\x4b\xd7\xac\x4d\x2f\x25\x1d\x33\x80\x92\x22\x96\x81\xa0\xd0\x5d\x23\x53\xc2\x2f\x36\x5b\x4b\x65\x81\x7d\xad\x55\x43\xef\x66\xc1\xca\x3b\xe6\xff\x27\x71\xc6\x29\xf8\x3c\xb2\xe2\xcc\x36\x59\x26\xc7\xc2\xb2\x8b\x16\x3c\xa3\x70\xcc\x35\x7d\xcb\x0b\xdf\xb0\x7b\x0a\xae\xe3\x9c\x0f\x67\x04\x99\xf9\x3c\xc3\x87\xfb\x13\x73\x16\x45\xec\xd2\x8b\x88\x7a\x3b\xc8\xd7\x67\xa7\x48\x12\xed\x24\x51\x49\x7c\xa3\xa0\x95\x64\x18\x36\x35\x08\x7d\x78\xb7\xd7\x71\x15\xda\xe4\x71\x68\x36\x17\x8a\x2e\xae\xa9\x65\xc1\xd0\x42\x49\x54\xda\x2a\x8f\x16\x39\xb4\x6d\x29\xaf\xaf\x46\x33\xa8\x4e\xd3\x09\x8a\x4e\x43\xd9\x5a\x28\xfe\x0b\x24\x7f\xe5\x14\x2e\xe6\x25\x91\xed\x8a\xaa\xf8\xba\x33\x1a\x8f\xa5\x21\x43\xc7\x48\xa5\xde\x26\x20\x03\xb9\xbd\x98\x0f\xb5\x89\x7c\xc9\x9e\x92\xe0\x9d\xdc\x39\x55\x27\xdb\x09\xf5\xe3\x14\x6f\x4d\x24\x85\xa2\x7f\x7b\xee\x06\x56\xe4\xe0\xf7\xf1\x56\x95\x2b\xd5\xe4\xec\xda\x91\xc3\xdc\xca\xb0\xef\xd7\x8a\xed\x9b\x0a\x0b\xe7\x81\xc7\x96\x7e\x19\xa3\x3d\x14\xab\x6d\xe7\x4f\x38\x6b\x2b\xf8\x19\x2d\xf5\x50\x27\x59\x75\x32\xe5\x28\x21\x11\xcb\xde\x8b\x4c\xdf\xea\xcb\x78\x8b\xf0\xf6\xff\xb4\xfa\xcb\x5a\xfd\xa9\x84\xcf\x14\xda\xe6\x97\x37\x03\x14\xbb\xaf\x60\x12\x3c\xbb\x2f\xda\xd9\xa2\x30\x11\x85\xd7\xf3\xb3\xf3\xe6\x7d\xbf\x0f\xcd\xfb\x70\x77\x85\x16\x80\xe1\xc0\x42\x0b\xbf\x3f\xdc\xcc\x3a\x31\x65\x10\x18\xd9\xe7\x1d\x6c\x63\x9f\x97\x40\xfa\x21\xed\xc7\xc8\xd8\x2f\x39\x8d\xe4\x26\xfd\xe1\x8b\xc7\x1b\xcd\xfe\x10\x1c\x4f\xed\x70\xd5\xf5\xf0\xed\xd0\xc2\x24\x9d\x62\x1f\x24\x0c\x32\x87\x4f\x64\x1f\xc7\xd5\xc2\xb4\xf8\xf9\xce\x8c\xcf\x5c\x95\x26\x3f\x5f\x4e\x51\xfb\xf7\x72\x36\x91\x88\xcb\xe6\xd8\x09\x1a\x70\xa2\xa0\x74\x89\xdb\x4e\x20\xd4\x29\x7a\x0e\x9a\xd6\x27\x08\xfa\x0c\x67\x47\x12\x3f\x6f\x59\xb6\x99\x23\x3e\x54\xf7\x88\xc4\x00\x74\xc8\xc9\x84\x35\x22\xcf\x5d\x79\x65\x43\x21\xb1\x7b\x6f\xed\x37\x35\x74\x21\xab\xa4\x53\xf6\xb9\xc4\x6c\xea\x4b\x78\x85\xe4\x74\x7e\x08\xd5\x19\x17\xa3\x25\x3f\xd4\xfe\xc0\x02\xae\xe1\xc8\xf2\x71\xb5\xd5\x29\x1f\xe2\x5d\x4b\xe6\x54\x0c\x13\xe1\x08\x36\x23\x9e\x38\xb0\x58\x2a\x36\x50\x1a\x1f\xa1\x50\xe1\xf8\xe8\xfe\xd3\x17\x8f\xc0\x5b\xcf\x8b\xe1\xa3\xa7\xc7\x87\x47\x4f\xef\x3f\x76\xa6\x74\xc4\x5d\xce\x16\xaf\x08\x45\xbd\xc7\x86\x5d\xc2\xf0\xc1\xe6\x66\xd3\x34\x20\xaa\x4e\xbe\x09\x47\x4e\xe1\x94\xfb\x6f\xeb\x44\xb2\x28\xeb\xf5\x68\x85\x12\xa8\xc0\x85\x53\x84\xc6\xed\x50\x97\xb6\x17\xd9\xe0\xaa\x36\xab\xcc\x63\x9d\x55\xe2\x2c\x4f\x47\x33\xdf\x95\xa3\x4b\xec\x58\xc7\x48\x36\x08\x55\x22\xf2\x81\xd5\x1b\x6b\xd4\x64\x12\x40\x37\xe8\x68\x91\x72\x34\xe5\x5f\x7e\xcb\x87\xfa\x5a\x9b\x05\xb7\x97\xe3\xd2\xd2\x0c\x59\xdf\x45\x31\x70\x31\xb2\x9c\xf7\xbd\x6e\xe8\x42\x6f\x76\xde\xb3\xfe\xf5\xc8\x51\x5e\xa1\xd4\xc4\x14\x6a\xaa\xaa\x63\xb5\x3a\x21\xb0\x85\xcb\xb1\xed\xd8\xa9\x47\x14\xb8\x6a\x1d\x2c\x6a\xeb\x8c\x53\x82\xe3\x29\x89\x5d\xc9\x73\x1f\x05\x1f\x25\xad\x17\x42\x27\x21\xfc\x31\x39\x2f\xc1\xbd\x2b\x1b\x64\xbe\x58\x4f\xcf\x3f\xc8\xf1\xc3\x61\x3d\x3a\x66\x24\xa0\x4f\x1c\xcb\xb7\xcd\x11\x0c\x4b\xbc\xec\x78\xfd\x70\x73\x1c\xec\x21\xb3\xa0\x83\x5d\x54\x5c\x79\x5b\xc5\xec\x9d\x6e\xc7\x55\x34\x19\x93\x50\xe7\x8b\xce\xbe\x22\x40\x3d\x72\x99\x82\xc1\x3b\x68\xa0\xfb\x9d\x2f\x40\x78\x93\xf5\x6d\xe8\x45\x50\x1a\x2f\x5c\x03\xe0\xc5\x9d\x8b\x18\x76\xda\xc0\x82\x6b\x99\xb4\xfd\x59\x6b\x2d\xba\x48\xe7\xc6\xd6\x65\x9a\x7a\x6c\xb0\x25\x4b\x5b\x5b\x0d\xe2\x89\x26\x2f\x65\x20\xb4\xd7\xb5\xb3\xe4\xfb\xfb\x40\x5a\xff\xd1\x53\xf5\x48\xf5\xf6\xd6\xfa\xa3\xe7\x2d\x63\xd2\xd6\x82\x70\x55\xc2\xc7\x77\xce\x65\x0e\xf8\x26\xd2\x98\x10\xb8\x76\xbc\xea\x1e\xd8\x8d\xe9\xdc\x3b\x93\x2b\xcc\x69\x4d\x82\x04\xd7\xa4\x33\x4b\xd8\xce\x2c\x4f\x6a\xd8\xd6\x26\xcf\xb7\x85\xd4\xc3\xe2\x0d\xb9\xc1\x36\xcf\x9c\xcd\x38\x25\x41\x8f\x93\xa6\x7e\x02\xcb\x20\x30\x59\xf5\x24\x77\x8e\xf7\x30\x13\x63\x8f\x85\xc2\xaf\xbe\xd2\xfc\x52\x4a\x97\x88\x20\x3a\xc0\xab\xe8\x34\x3f\xd1\xa0\x36\xcc\x2b\x01\xec\xed\xd1\x5f\x73\x67\x37\xad\x45\x12\x9d\x74\x73\x24\xda\xc1\x36\x27\xef\x0d\xed\x07\x3d\x9f\x4d\xad\x9a\xfd\x21\xb0\xc5\x95\xfc\x32\xad\x92\x57\x5e\xa5\xa2\x27\x92\x2a\x24\x8d\xa5\x85\x3c\x38\x55\xaf\x6c\x4e\xc8\xa2\x84\x4f\xc5\x95\x56\x50\xcb\x77\xa5\xd9\x90\x5f\x9d\xa0\xb4\x32\xd5\xc6\x29\x09\xa5\x16\x20\x53\xc8\x76\x39\x55\x10\xa6\xd2\x63\xa5\xb2\xa1\x25\x93\x0c\x43\x8b\xc7\x67\x92\xe7\xe1\x07\x28\xdc\xfa\xfa\x32\x66\xd5\x75\x3b\xce\xc7\xb1\xe9\x01\xb2\x3d\x00\x7f\x0b\x4f\x23\xb1\x7a\x4b\x1c\xe6\x2d\xc5\xa4\x3f\xe5\x15\x79\x58\x5c\x4f\x91\x54\xe0\x73\x3f\xea\xff\xca\xfb\x87\x39\xa0\xf9\xd0\x96\xca\xf6\xf6\xfc\x06\xfd\xb0\xdd\x8f\xbd\x00\x9b\xf1\x63\x88\xe3\x8b\xf7\x1d\xe3\x02\xed\x39\x2e\x60\xd7\x36\x19\x56\x5a\x58\xb6\xba\x4a\x85\x5d\x88\xc0\x9d\xa0\xd5\xaa\xda\x06\x8e\x8a\xa5\x70\x33\x68\xad\xd9\x8f\xa3\x43\xbe\xfe\xac\x1a\x30\xbd\x96\xd8\x19\x94\xbe\xf3\x84\xeb\xa7\x24\x17\xfe\xd1\x77\xdd\xad\x1e\xa1\x2c\x88\x8d\xf3\x10\xb8\x5f\x8c\x01\x40\x06\xca\x41\xf2\xf0\x34\xfb\x96\x81\x23\x3b\xae\xc9\x04\x4c\x4d\xf3\xbc\x2b\x73\x87\x48\xe5\xf2\x46\x50\xa4\xb9\x45\x9e\x5b\xb5\x73\xf6\x50\xa6\x1a\x28\x82\xe1\xc3\x99\xa7\xf6\xc5\x5c\x4a\xc2\xda\xc5\x1d\x1b\xe4\x8e\x7d\x32\x27\xb5\xa9\xc2\x8f\x65\xbf\x6a\x5c\x96\x75\xde\x2e\x0f\xee\xf4\x70\x15\x6c\x09\xa7\x48\xaa\xc7\xaa\x98\xdb\x2d\xbb\xe4\x22\xf6\xf8\xd7\xa2\xb4\x2f\xd3\x86\x6b\x75\xaf\x8e\xf4\xd8\x1b\x0c\x46\x08\x0c\x31\x09\xc1\x91\xa4\xf8\x7c\xa2\x36\xa3\x1a\xf7\xef\x44\xdd\x47\x69\x1a\xe4\x58\x97\xe5\xa0\x03\xd0\x79\xeb\xa3\x4b\xcc\xd1\x78\x61\xd9\xf8\x4a\xad\x18\x15\xa4\x02\x8f\x78\x6e\xb0\x68\xa4\x85\xcb\xb8\x14\x39\xeb\x66\x48\x0a\x01\x65\x79\x65\xd5\x4c\xd1\x78\xc1\x71\x5d\x8c\x09\x76\xfc\xb6\x38\xb2\x29\xc9\x1e\xb9\x02\x71\xaf\x56\x89\xa2\xed\xdd\x72\x8d\x81\xeb\x17\xaa\xc5\xe3\xe2\xab\xf0\x36\xa1\x70\xee\x43\x32\x00\xcc\xa4\xe6\xd2\x94\x99\x1f\xbd\xc3\x1a\x16\xc4\x54\x03\xff\x56\x28\x9c\x20\xb7\x76\x98\x3a\x80\x7f\xcd\xa1\x5a\xf1\xdf\xeb\xeb\xce\xed\x8e\x35\x76\x94\x54\x7d\xcd\xac\x95\xd6\xd0\xb3\xf9\xec\x03\xc7\x6c\xfc\x24\x33\x65\x7c\x21\x58\xd4\xe8\x38\xc3\x55\x7f\x7f\xf5\x8a\x3a\x00\xff\x38\x6f\x96\xa8\xda\x9f\x02\xde\xdb\x4b\x26\x87\xa6\x52\xfe\xd3\x87\xb8\xa5\xf5\xcd\x13\xe3\x51\xe2\x7e\x27\xc5\x09\x70\xc3\xa1\x9f\x56\x12\x7d\xf4\x54\x2b\xf1\xc5\x36\xaa\x91\xec\x77\xe2\xc8\x9d\x00\x1d\x29\x35\x3a\xe2\xe6\xe9\x05\x69\x0e\x30\xd4\x4e\xfd\xba\x2d\x33\xa1\x3d\xe4\xe9\x34\x25\x94\x8b\x70\xec\x9e\x0a\x50\xd2\x50\xfa\x14\x9f\xf2\x70\x59\xf5\x2e\xe7\x14\x03\x96\xde\x91\x49\x73\x8d\xc4\x40\x56\x06\x24\xc3\xb4\xd6\x7e\x25\xa9\x93\x22\x18\xe8\x93\x92\x20\xcd\x79\x5d\xd1\x5a\xe6\x6f\x32\x2a\xa0\xfa\x39\x2a\x98\x7c\x53\x24\x54\x09\x9d\xce\x97\x97\xac\x0f\xae\x1f\xa8\x0c\xe4\x29\xa9\xd4\x51\x5f\x40\xa7\xee\x0d\x2b\x86\xee\xfe\xbc\xcc\xa9\x4e\xfc\x38\x5f\x4d\xce\x16\xaf\xe6\xa0\x41\x4d\x3d\x23\xfd\xce\x9d\xce\xbe\x29\xbd\xdf\x81\x97\x30\xf4\x00\xb4\x33\xaa\x95\xbe\xf1\x8e\x5c\x13\xc0\x28\xdf\x8d\x36\x50\x82\xa5\xf7\xac\x94\x86\xa9\x1b\x44\xca\x2f\xd0\x86\x15\x5a\xa9\x16\x03\x3d\x68\x83\xb8\x8b\x69\xed\xe9\x1c\xcb\x73\x5b\xfa\xae\x03\xb2\x8e\xb0\x74\x6f\xfd\x7a\x62\x0e\x68\xf0\x51\xe3\x02\xa4\x00\xba\x68\xba\xf0\xe7\xf5\x35\xfd\x25\x75\x02\xa5\xcf\xe5\x52\x81\x33\xd1\xe8\x35\x24\x14\x91\x0e\x9b\x46\x74\x7d\x7c\x68\xb7\xe0\xef\xbf\x5c\xac\xd6\x28\xf2\x11\xc7\x11\x30\x79\x08\x2d\x5a\x9e\xf4\x51\x76\x70\x36\xfb\x3b\xa6\xef\x67\x93\xba\xa6\xe4\x7a\xe7\xdc\x0c\x85\xc5\xc9\xce\x16\x3d\x1a\x29\x28\x89\x7a\x8b\xda\xd1\xe2\xd9\x64\x74\x7e\xe4\xee\xa7\x36\xa2\x2b\xaf\xaf\x13\x2f\xff\x34\xb8\x84\xa7\x81\x1a\x72\x1f\x01\x96\x17\x25\xdb\x61\x04\x1b\x2c\x59\xac\xba\x62\x9d\xfb\x92\x75\xf0\x1b\x25\x94\xfc\xc9\xa3\x2a\x25\x62\xfb\xfb\x48\x17\xd1\x80\xf5\xec\x44\xac\x84\x50\xe0\x2e\xf6\xc7\x19\x29\x7f\x47\x15\x66\x1e\x8c\x35\x5c\x5c\x08\x0c\x43\x48\xdf\xdf\x76\xc7\x31\x1c\x5d\x0d\x2e\x7d\x2b\xca\x6d\xb4\xdb\x2d\x61\xc0\x57\x9d\x2e\xe1\x48\x54\x6a\x0b\x6b\xc7\xc0\x4b\x1f\xd4\xdd\x9d\xe6\x7b\xde\xb2\xc1\x30\x5a\x66\x16\xe0\x25\x41\x8b\xfe\xd4\x4d\xd9\x99\x14\x50\x44\xfe\x23\x92\x0a\x6c\x12\x1a\x8a\x1b\x64\x64\xcb\x8f\xa7\x17\x80\x29\xc3\x68\x48\x63\xcf\x80\xe1\xe0\xa7\x0b\xb7\x13\x6a\xbe\x74\x76\x50\x0f\x56\x57\xdb\x29\x33\x1d\x61\x9d\xd9\x9b\x75\xde\xfa\x44\xce\x1c\x41\x4e\xd2\xac\xdc\x85\x91\x14\xa5\x8b\x61\x13\xac\xc7\xf2\x96\x6e\xc5\xb8\x49\x19\xe0\xc5\x78\xc2\x68\x99\x3d\x2a\x9d\x85\x69\x72\x48\x46\x0e\x00\xe3\x31\x44\xf1\x42\x9e\x91\x15\x51\xc2\x21\x92\xbb\xf7\x90\x4b\x03\xd1\x62\xb2\x26\x66\x37\xb6\x2e\x1b\xb0\x26\x18\x56\x46\x7e\x0b\xa8\xfc\x19\x1e\x58\x70\x95\xb7\x26\x65\xf9\xe8\x24\x16\xc4\xdd\x5e\x43\xab\xb5\xad\x0c\xd6\x82\x42\xf6\x62\x9a\xb4\x4d\x0b\x2e\x99\x91\x6b\x01\xcf\x8c\x4d\x2b\xe7\x82\xf2\xb4\x93\xea\xf0\x43\x1a\x2e\x07\x43\xe1\xdf\x9a\x4b\xb2\x5b\x1f\x7a\xd9\xf8\xae\x9e\x7d\x1e\xaa\x8d\x29\xd2\xeb\xed\x5b\x50\x56\xe4\x08\x00\x8e\xaa\x25\x99\xa0\xc1\xf4\xab\xea\xce\xe0\xd6\xad\x69\xd4\x5e\xa8\x44\xcd\x54\x4c\xa5\x6a\xb5\xea\xdd\xb0\x79\xd2\x84\x73\x89\x4e\xe1\x3a\xea\x28\xaa\xdd\x9f\x29\x67\x3c\x36\x76\x18\x51\x3f\xbf\x23\xfb\x07\x56\x9f\xbb\x40\xa7\x38\x97\x4e\x2a\x49\x62\x1a\xcf\xf3\x9c\xd2\x80\xf4\x1c\xa2\x1a\xf6\x0c\xa4\x5c\x47\x24\x19\x09\xdc\xbb\xe4\x28\x85\xfa\xb0\x9a\x62\x29\x82\x99\xab\xa0\x29\xf1\x8c\xee\xfb\xbc\x45\x8e\x6a\x68\xc9\x70\xdc\x32\x29\x07\xae\x3e\x88\x76\x58\xb5\xf5\x12\xf3\xef\xcf\xe5\xd9\xeb\xe9\x6c\xac\x5a\xc4\x6f\x64\x57\xec\xe1\x08\x6c\xd7\xf8\x81\x85\x83\xa4\xa8\xb0\x84\x68\xa0\x2d\x16\xd7\xc1\xea\x77\xf9\xf7\x8b\x54\x21\xc2\x97\x70\x31\xde\xc4\xd2\xb3\x99\x1b\x3f\x2e\x38\x6c\xe2\xfb\x51\xfd\xcd\x64\x32\x7f\x48\x52\xb3\x6e\x8c\xba\x52\x7b\x6a\x67\x2f\xfc\xc5\xe6\xfe\x25\x4a\x05\xfd\xd3\xfb\x1f\x57\x1e\x66\xdf\x87\xeb\xec\x49\x07\x47\xb6\xf3\xce\x0c\x72\x02\xac\x35\xb0\x6c\x66\xbd\xd0\x04\xf7\x0d\xd3\x9d\x74\x46\x49\xc2\x65\xcb\x81\x12\xd3\x78\x61\x8a\x8e\x5e\x19\x8c\xda\xea\xc9\x66\xd1\xcf\x75\x2c\xa9\xa1\x16\x40\x50\x92\xd0\x94\xa7\xe4\x6c\x98\xec\x09\xe7\x52\xe5\xcc\x55\xde\x7b\xeb\xa1\xca\x1c\x9f\x5d\xda\x42\x66\xd1\xf3\xb9\xb4\x79\x7f\xfd\x86\x0b\x9e\xb7\xef\x0d\x97\xbc\x8b\xee\x20\x8b\x3e\xac\x67\xcb\x65\x1f\x15\x1b\x28\x3b\x11\x65\x93\x39\x7d\xbb\x10\xe6\x71\x37\x34\x61\x21\x4f\x9b\x9f\x6d\x5f\xd8\xb1\xdd\x70\x67\xa8\x88\x17\xbc\x2b\x74\x94\x86\x04\x5a\x95\xe5\x0c\x2f\x87\x11\xc8\xe4\x1d\x54\x39\x0f\x1f\xca\x54\x11\xe9\x3b\xa2\x11\x69\x06\xed\x1e\xbf\x91\x2a\x59\xb1\x93\x3b\x46\x31\x56\x4a\x2b\xbf\x8c\x1b\x7b\xca\x97\x36\x1d\xef\xe1\xeb\x4e\xa7\x9f\x04\x84\xb8\x0f\x9f\x18\x55\xc4\x0e\xad\xb2\x9d\xda\x4f\x0d\x72\xbf\xc3\x41\x42\x06\x99\x29\x0f\x51\xa5\x98\x2d\x49\x6a\x9a\x54\x6b\x9f\x5c\xa9\x1f\xa5\x23\x5d\x83\x9b\x65\x27\x88\xe7\x95\xe7\x7c\x30\xf9\xcf\xa2\xf6\xe9\x11\xcb\xee\xed\x75\x83\xf7\x21\xe5\xc8\x05\x21\xae\xaf\x03\x00\x2d\x76\x2f\xd4\x2b\x1c\xf3\xf7\x74\x9a\x7b\x7c\xd6\xf4\x95\x61\x7a\x27\xdf\x8e\xa6\xb3\x4b\x72\xe6\xa6\xbc\x02\xa1\x80\xad\x47\xa2\xa4\x22\x61\xe4\x66\x52\xbc\xe2\x4a\x87\x25\x25\xa1\x79\x30\x9a\x7f\xb1\x96\xae\xec\x90\x2b\x73\x78\x31\x9f\x93\x3d\xcb\xce\xcb\xc9\xd9\x08\xf4\x1c\x3f\x2c\x2e\x57\x60\x97\x60\xd8\xb7\x1a\x4a\x18\xac\x4e\x6b\xc3\x95\xa8\x5b\x3f\x9c\x34\xf8\xe0\x3e\x5d\xd7\x26\x7f\x55\xaf\x09\x85\xbd\x9d\xe3\x85\x6b\x61\x2e\x8d\xc0\x3b\xe4\x04\x1e\x27\x47\x6e\xd2\xea\x9d\x31\xda\x53\xee\x8c\x54\xbd\x25\x34\xbe\x63\xae\x27\x3b\xc0\xb4\xed\xfc\x0d\xfd\xbe\x76\x8b\xbf\x41\x0d\x68\x68\xe3\xe8\xc4\xdf\xd8\xfd\x99\xd8\xeb\x88\x29\x0e\xda\xcb\xdc\x56\x5e\x2f\x6f\x3b\x6f\x97\x7f\xdb\x79\x6d\xf8\xf8\x1a\x0c\x6f\xf0\x38\x85\xe9\xf8\xf3\xa8\x26\x0a\x78\x23\x16\x77\x7a\xeb\xd6\x66\x16\x57\x1e\x39\x32\x4c\xae\xbc\x56\x88\x57\xf9\xbd\xbd\x30\x45\x5e\x63\x12\xc0\x94\xc5\x47\x24\x67\xd2\xf2\xa9\x84\x8b\x0d\x87\xe7\x42\x6d\x59\x4a\xea\x0c\x85\x7d\x6e\x56\x1a\x6e\xc9\xe4\xa6\x51\xb8\x45\xe2\x2f\xe5\x39\x2f\x68\x7a\x6f\x6f\x37\x58\xa8\xe9\x15\xfa\x74\x61\x0e\x7b\xb3\x24\x68\x3c\x63\x9c\xd0\x68\x9d\xf6\x76\x1e\x9d\xe3\x32\x19\x4f\xc7\x0c\xa9\x00\x4b\x14\x1c\x11\xdb\x81\x0b\xe9\xe5\x64\x07\x97\xf5\x78\xe7\xe5\x87\x1d\xea\x22\x34\x01\xc8\x20\xd9\x96\x5b\xa6\x8c\x46\x10\xad\x8e\xd4\x9d\xac\xc4\x0a\xb0\x90\xeb\x8f\x59\x6e\x2f\x2f\x5f\x1a\x8a\x8b\x56\x5c\x76\xa3\x6b\xbd\x18\x22\x2a\xac\x70\xb0\x5c\x86\x86\x78\xab\x76\x13\x36\x2f\xfa\x0f\x6e\x7e\xaf\x0e\xcf\xc4\x75\xaa\x04\x54\x2d\x9a\x37\x14\xf8\xbd\x55\x41\x06\x1b\x32\xfd\xa0\xc2\x90\x01\xe1\xfd\xfd\x96\x71\x59\x28\x9d\xe1\xae\x97\x5d\x7a\x85\xc9\x8a\xaa\x05\x40\x45\xc1\xb6\xcd\xda\x13\xe8\xa3\xdb\x76\x35\xb4\x75\xc0\x41\x95\x53\xda\xb3\x09\x89\x7e\xd1\x68\x84\x91\xf7\x1d\xbc\xa5\x77\x99\x8f\x61\x1f\xe4\xa3\x65\x2e\xd4\xf6\xca\xbd\x1a\x0a\xef\x69\x0d\xa8\x56\xc2\x0d\x61\x08\xa6\x23\x9b\xbb\xed\xf1\x0e\x97\xce\x5b\x64\x7b\x7e\x0b\x69\x9b\xe2\xaf\x86\x90\x49\x1a\x75\x0f\x48\x75\x07\xcf\x9f\xaa\xe3\xd2\x29\x34\x03\x13\x05\x2e\xc5\xe4\xfb\xcf\x61\x61\xd6\x31\xfd\x61\x90\x00\x7c\x3c\x19\xbd\x9d\x08\x80\x3c\xee\x09\x16\x40\x3e\x2b\x85\xf4\x41\x58\xe9\x0f\x36\x1d\x4f\xa0\x97\xfe\x34\x44\xb2\x21\x58\x95\xaf\x8f\x8d\x4a\xa6\x91\x72\x10\x87\x1c\xf4\x58\x49\x1d\x83\xac\x54\x25\x94\xa4\x76\x30\xfd\x63\xd8\x79\x2b\xa6\x05\x8b\xf0\x30\x13\xac\x79\xf0\x4d\x11\x75\xe0\x1a\x3f\x7c\x16\xa5\x81\x46\x66\x54\x27\xde\x7c\xec\x2a\x91\x7c\x18\x49\x10\x1b\xd0\x67\x50\x9a\xd2\x6d\x58\xb7\xda\x7c\xa6\x80\x0c\x04\xcd\x3e\x3f\x51\xf1\x2f\x91\xd5\xae\x27\xf8\xc1\xc1\xd2\xba\xa3\x83\x72\x74\x37\x8e\x46\x31\x3a\x48\x08\xa6\xe1\xa9\xf0\xc0\x0c\xd6\x5c\x12\x46\x77\xcd\xdf\x36\x11\x89\xab\xf0\x60\x93\x81\xbd\x65\x74\x42\x0b\x7b\x54\x5b\x80\x7f\x9e\xa7\x82\x00\x96\x0b\xe2\x03\x29\x53\xbd\xec\x12\x2d\xc1\x3b\x71\x57\xc3\x70\xc3\xc4\x31\x25\x50\xa1\x61\x5d\xb3\x10\x82\x7d\x35\x19\xbd\x69\xbc\xaa\x98\x1d\x6b\xa0\x2d\x2d\x13\xb7\x51\xd7\x18\x0c\xdd\x5f\xa4\x3a\xa1\xdc\x9f\x98\x1a\x7e\x5a\x4c\xe7\x38\x28\xb8\x6a\xb5\x05\x02\x3f\xe2\x6d\x10\x5a\x6a\x91\x8d\x51\x60\x9b\x95\x88\x3e\xa6\x6c\xb5\x36\xc4\x29\xbb\x80\x8b\xc7\x8d\xe2\x97\x39\x25\xce\x9b\x19\x46\x71\xae\xe1\xff\xce\xde\x4c\xc6\x43\xdf\xe6\x2b\xb4\xbc\xba\x7c\xd9\x9a\x6f\x0f\xd3\x1c\x80\x47\x09\x32\x20\xd0\x00\x04\x94\x7b\x9f\x6d\x86\x46\xd2\x0e\x03\xc8\x1e\xb6\x0f\x79\x32\x3a\x7b\xdd\x5e\x09\xf0\xca\x6f\x27\x1b\x70\x92\x0f\x8e\xdf\x6e\xa8\x66\xd6\x90\xe1\x90\xb4\x2d\x9a\x9f\x3f\x1b\xfd\xef\x07\xbc\x79\x67\xa3\xce\x25\xbb\xc5\x99\xb4\x84\xe0\xbc\xca\x43\x2c\x3f\xb4\xe5\x3b\x73\xbc\x1c\xc4\xf9\x6a\x32\xf9\xdf\x36\x80\x05\x1a\x6c\xb6\x41\xe4\x22\xe7\xf9\x50\x59\x54\x71\xfe\xc5\xe5\x1a\xcd\x06\x37\x77\x59\x20\x5b\x71\x47\x17\x71\xe6\xf2\x87\xf5\xe5\x12\xe8\xc1\xd6\x16\x85\x7e\xf6\x92\xde\x66\x33\xeb\x8c\x81\x6a\x53\x7f\xb2\xd7\x62\x39\xc2\xbb\x22\xb2\xb1\x8c\xe0\x0c\x92\x2e\xcf\x26\x37\x07\x1c\x5e\x8c\xce\x56\x8b\x14\x25\xb2\x81\x25\x6c\x1f\x9c\x85\x7d\x0b\x30\xef\xd1\x2d\xa1\x5b\xc0\x0c\xd7\x73\x7b\x55\xbf\x8d\x23\x3c\x42\x46\x66\x87\x41\x96\x7d\xe1\xf9\xa7\xc5\xe5\x8d\x2c\x2e\x55\x42\xd8\xd1\x83\xb0\xa7\x77\xc3\x9e\xde\x8d\x70\x19\xf6\xf4\x6e\xd8\xd3\xbb\x61\x4f\xef\x86\x3d\xbd\x1b\xf6\xf4\x6e\xd8\xd3\xbb\x61\x4f\xef\x86\x3d\xbd\x17\xf6\xf4\x5e\xd8\xd3\x7b\xd1\xb4\x87\x3d\xbd\x17\xf6\xf4\x5e\xd8\xd3\x7b\x61\x4f\xef\x85\x3d\xbd\x17\xf6\xf4\x5e\xd8\xd3\x2f\xc3\x9e\x7e\x19\xf6\xf4\xcb\xb0\xa7\x5f\xde\x6b\xb5\x95\xfd\x97\xad\x8d\x65\xcd\x15\xe7\xe7\xcb\xd1\x2c\xb4\x94\xed\x71\x7a\x3a\x16\x64\xc2\x5a\x93\xf9\x97\xd0\x64\x76\x63\xc4\xc8\x44\x48\xc6\xa7\x56\x66\xbb\x21\x62\x66\xce\xea\xf4\xf7\x31\xe8\x31\xf1\x3a\xf7\x81\x9e\x6d\x32\x9e\x7d\x71\xf9\x32\x86\x4b\x58\xd0\x3e\xb0\xf2\xcd\x4d\xb6\xb3\xf7\x1d\x0f\xb4\x31\xa6\x26\x36\xfd\x1c\x8e\x8e\x8d\x96\xb4\x34\xf4\x04\x6c\x62\x7e\x1e\x18\xe6\x68\xcb\x00\x9a\xf0\x1c\x13\x23\x00\x2d\x69\x6d\x96\x05\x4c\xb4\x2e\x80\x98\xc5\x33\x0a\x4c\x55\xa2\xce\xc4\xa4\xbe\x08\xec\xae\x0f\x12\xb3\x89\x13\xff\x02\x0f\x82\x84\xf1\x72\x62\x4a\x1f\x32\x37\x51\x85\xb4\x2d\x04\x5c\xcc\xe1\x0d\xa7\x0a\x29\x5e\x8f\xd2\xc5\xb6\x1a\x7e\x7f\x0f\xd7\xfe\x18\x50\xe7\xba\xbe\xc6\x43\xbf\x9b\x98\xfa\x07\x96\x81\xab\x42\x82\x1a\x83\x12\x27\x57\x85\x84\x36\x6f\xe6\x5d\x85\x24\x38\x04\xfd\x56\x78\xbb\x2a\xa4\xcd\x3d\x9b\x45\x80\x47\xcf\xfe\xef\xe1\xd3\xe1\xe1\xd1\xd1\xb3\xa3\x04\xac\xca\xe5\x65\x2a\x2c\x61\x15\xd2\xf8\xed\x63\xb7\xde\x4d\x2c\x03\x99\xd5\x27\xc0\x52\x55\xe1\xe9\x10\x42\x3f\x21\x3e\x30\x87\x90\xc4\x62\xe0\x12\xf1\xe4\xdd\x4b\xec\xf1\x63\xe4\x20\x69\x00\x2f\x88\x7f\xac\xc2\xd3\x67\x1b\x53\xf8\x7b\x89\xd9\x66\x6d\x3f\xdc\x50\xf1\x60\xef\x25\xa6\xfd\x05\xb3\x97\x09\xe8\xc4\xcc\x23\x9b\xf7\x20\xe5\x7e\x00\xce\xbb\x9e\x97\xed\x88\x94\xa4\x24\x7d\x1c\x60\xc1\x24\x18\x6d\x22\xe4\x45\xd3\x4d\x82\x7b\x04\x3f\x9f\x6c\xeb\xbd\xa4\x74\xa3\x50\x34\x0d\x47\x36\xf3\x97\x17\x55\x78\x56\xf7\x4c\x22\x39\x56\x08\x11\x05\x99\x26\x91\x32\x47\xef\x13\x99\xa3\xf7\x03\x51\x89\x4c\x64\x2e\xa9\xcd\x68\x21\x60\xa3\x26\x55\xdc\x4c\x3c\x9c\x9e\x9f\x27\x20\x28\x43\x1a\xf8\xe6\x43\xb2\x89\x6f\x3e\x08\x40\x1a\x21\x0c\xe6\x61\xe1\x7c\x3a\x5b\x07\xbb\x0b\xe1\x28\x5d\x81\xa4\xda\x94\x1c\x05\x96\x6f\xd9\xcf\xc7\x22\x97\xf3\xe9\xcf\x31\x20\xa4\x4a\xf6\x22\x31\x0d\x98\xcc\xb6\xae\x2c\x47\x8a\x81\x6c\x96\x5e\xa2\xc9\xa8\xce\xf7\x12\xe4\x81\x0e\xc7\x5c\x81\xcc\xf1\x9f\x00\x05\x66\xae\xa7\x5c\x09\xfa\xa0\xf1\x7e\x0c\xe0\x11\x80\xd6\xfb\x8b\x3f\x3d\xaf\x42\xae\x50\x77\x82\xe4\xbe\xc2\x78\xf1\x5f\x9b\x6a\xf8\x2c\xf8\x87\xbf\x85\xcd\x13\xb6\x8e\x52\x91\xb1\x83\x7f\xf8\x9b\x28\x9d\x3b\xb1\x38\x59\x9d\x4b\xee\xa7\xcd\xe3\x83\x48\x7e\x70\xba\x4f\x80\xbc\x2f\x86\x70\xc7\x8d\x3b\x5d\x38\x47\x9f\x2f\xde\x71\x42\xf9\x3e\xdd\xf7\xbe\x18\x22\xa6\xf5\x51\x8a\x0f\x49\x23\xd7\x1f\x9c\x9f\x22\xeb\x89\x34\x86\x16\x82\xce\x7f\x39\x35\x26\xdf\x51\x0a\x43\xaa\xa3\xd2\xfd\xe4\x3c\x9f\x48\xfb\x34\x59\x4d\x5f\x44\x20\xd3\x44\x98\x4a\x04\x64\x38\xa0\xba\x04\x93\xa1\xbb\x2d\x64\xf6\xf0\xc2\xd6\xe8\xd6\x28\xd7\x28\x39\x40\x76\x2b\x20\xbd\x2a\x09\x28\xf0\x05\xe2\xc2\x25\x19\xba\x0b\x64\xd6\x4b\x42\xc7\xd9\x5e\x5d\x30\x2b\x35\x4d\x83\x4b\x64\xca\x2a\x84\xd4\xaf\xc2\xd0\x36\x22\x9f\x7e\xb2\x1d\x9e\x26\x9a\x0a\x84\x69\x27\x93\xca\x28\xc3\xd4\x6a\x09\x64\x94\x69\xeb\x0e\xc8\xa2\x02\x44\xea\x88\xc4\xd0\x4f\x34\x34\x91\x48\xa0\x4a\x76\x94\xd0\x11\x3e\xde\x7b\xc8\x19\x57\x21\x97\x6c\xd7\x18\xde\x02\xd4\xe5\x49\x96\xba\xbe\x23\xe9\x0f\xa9\x56\xee\x45\xf2\xc3\x92\x00\xb9\x07\xd9\x5f\x9c\xe3\x6e\x72\xf6\x97\x6c\x14\xb7\x33\xa3\x2d\xa9\x6e\x40\xee\xa7\xd7\x79\xca\x54\xbf\xa5\xa4\xc7\x3e\x7a\x5f\xb6\xaf\xf6\x1a\xe4\x7e\x4a\x9f\xec\xbd\xc7\x5d\x73\x5c\x0e\xb5\xe9\xee\x35\x32\x42\x77\xb3\x51\xbf\x05\x63\xe6\x2e\x63\xfe\x0b\xc8\x96\xa5\x58\x9c\xce\x77\x0e\xbe\x62\xf0\xc6\xd4\x97\x0c\xef\x4e\xe1\x6d\x75\x7b\x02\x05\xdf\x1e\xb6\x14\x58\x98\xa0\x66\x90\x21\x5a\xf2\x88\x74\x85\x47\x15\x13\x09\x38\xac\xe0\x9f\xd6\xc7\x94\xdc\x33\x8a\x7b\xfd\xd8\xe8\xea\x2e\xed\x26\x2e\x29\x01\xff\x1c\x22\xc0\x4f\x76\x46\x46\xf1\x3c\x22\xf1\x0a\x25\xb7\xdd\xfa\xee\xa5\x0e\xfb\x67\x47\x0f\x0f\x8f\x86\x0f\x0f\xbf\x7d\xf4\x14\x9d\x75\x30\x7d\x3d\x7c\xfa\xa7\x28\xeb\xfa\xfa\x44\x19\x9d\x97\x1d\x78\x2e\x37\x7f\xc4\x2f\x7e\x29\xae\xed\xcb\x8e\x95\xa8\x8a\x84\xdc\xbe\xa1\x90\xf1\x3c\xbe\x2f\x29\xd9\xea\x19\xbc\x13\x9b\xbf\xa0\x72\x61\x7a\x96\x99\x70\x65\xac\x80\x73\xdb\x7d\x5b\x92\xbb\xdb\xb7\x55\x55\x39\xc7\x97\x77\x1a\xc1\xd2\x81\xc4\x3e\x79\x5b\x58\xcc\xdd\x95\x34\x72\x53\xeb\x50\x45\xc6\x16\x58\xaa\xaa\x5c\x3f\xf7\xf6\x1c\x48\x6f\x3c\x59\x9b\x61\x74\xdf\x6a\xdf\x48\x4e\xad\xcd\x4b\xee\xe9\x4e\x8a\x1a\xed\xdd\x8d\x55\xbf\x4b\x57\x7d\x70\xeb\x5d\xb2\xf2\x77\xe5\xdb\xa2\x11\x23\xaa\xa5\x25\xd1\xd1\xd4\x0d\x9f\xdc\x7f\xfe\xfc\xd1\xd3\xef\x28\x04\x27\x81\x72\x94\xad\xd5\x58\x1c\x73\x45\xa5\x06\xdb\x55\x5a\x71\xdc\xb9\xe9\xf8\x3d\x3c\x3c\x93\x5f\xcd\xf1\x7b\x7e\x86\xc6\x06\xec\x83\xf1\xf8\xbd\xbc\x45\x8f\xdf\x17\x57\x5c\xff\x09\xc2\x9c\x98\xa4\xd3\xd3\xca\xfc\x2b\x31\xfe\xd3\xcd\xba\xe9\xc5\x48\xb4\x95\x54\x82\x49\x6e\x8b\xdc\x8d\x73\xef\x9e\x8a\x4b\x25\x2a\xfa\x47\x07\x27\x98\xbe\x75\xd0\x78\x20\x5f\xc5\x20\x3b\x07\x4d\xfd\x6e\x0a\xb1\x80\x11\xac\xb8\x3a\x1b\xd5\x13\xbb\x0b\xfa\xf8\xc5\x3b\xa1\x0f\x8b\xf3\x8f\xef\xfc\xca\xdf\x7e\xf5\x4e\x55\x25\x8b\x76\x80\xe5\x78\xe3\xf4\x45\xfe\x59\xbd\x45\xe7\x31\xb3\xc9\x03\x99\x70\xb6\x54\xb9\x58\xfe\xf1\x8e\x5f\x2d\xa4\x7d\x75\x27\x5b\x33\xed\x44\xac\xf8\xed\x63\x33\x2d\x6f\x65\x4a\x20\xe5\x1d\xa4\xbc\xd3\x29\xb3\xea\x09\x3c\x6a\x1b\xde\xa9\x0b\xe0\x25\x40\xb0\xe7\xaf\xea\xce\x40\x94\x2c\xe8\x81\x1e\xb4\xc2\xef\xec\xed\x4d\xff\x08\xfe\x92\x2a\xbb\xee\x41\x71\xee\x1d\xa8\x18\x80\x8a\x00\x3a\x7c\xd8\x55\xa1\x97\x76\x56\x88\x0b\x53\xed\x1f\xb1\x6e\x1f\x45\x26\xe5\x2b\x9d\x1c\x0d\xc7\x6e\xa2\xbe\xb7\x89\x93\xbb\xd5\xdf\xa1\x6a\x57\xfa\x55\x22\xf1\x21\x04\x3d\x35\x9c\xe4\x5b\xb0\xc7\x03\x6b\x29\xb6\xfa\x7f\x07\x89\xef\x54\x22\xf4\xd3\xa4\xfd\x11\x32\x82\xee\x9b\x94\xaf\x74\xb2\xee\x3e\xd3\xb3\xbe\xa5\x56\x4d\xeb\x19\x96\x7c\xb8\x6b\x39\xd3\xb6\x7e\xcc\xdb\xe0\x2e\x95\x1d\xb5\xce\x46\x6b\x70\x5a\x14\x24\x2f\xc4\x87\x6e\xc6\x69\xec\x6f\xf1\x54\xf6\xc9\xe7\x6a\x8b\x00\xe9\xee\x47\xcb\x8f\xee\xb6\x8b\x8f\xda\x5c\x66\xa6\x9e\x44\xd0\x8f\x4a\xe4\x44\x94\x92\x49\xee\xe6\x3c\x1e\x47\xbe\x44\x55\x9e\xc3\x4a\xec\xd5\x34\x21\x44\x1d\x0d\x13\xbe\x21\x17\x43\xee\x8e\x6a\x7e\x93\xbf\x48\x7b\x84\x27\xaf\x90\x12\xe5\x6e\x49\x8e\x39\xd2\x78\xd3\xc6\x24\xca\xdf\x16\x6a\x8b\x41\xf5\xce\xf9\x04\xcd\x18\x38\xef\x88\xfd\x57\x8b\xc3\x62\x6b\xca\xbc\x7b\xb6\xec\x0d\x5f\x8f\xea\x47\x4c\x58\xc0\x26\x96\x1a\xf1\x40\x51\xcd\x0a\x43\x14\x02\xbc\x20\x6d\xfd\xc3\xe4\x83\x0a\x50\xa8\x93\x8b\x2b\x85\x76\xaa\x50\x67\x6b\xf5\x35\x53\x23\xd8\xfd\xe2\x70\xc1\xf2\xd5\x29\x9f\xf9\x7d\x68\xc0\xd3\x1c\xaa\xa4\x09\x29\xb5\x03\x4d\x23\xa7\x69\xba\x16\x3d\x9e\x67\xb2\x26\x39\x0d\x64\xb5\x88\xb1\xe3\x64\x8e\xbb\x99\xb9\xb0\x90\xc5\x60\x43\x55\x3d\x76\x3e\x48\x6e\x0a\x62\x57\x6d\x7c\x09\xe9\x16\xcd\xc6\x9a\xd0\x53\x58\x50\x0f\x52\x48\xf0\x10\x62\xfe\xf4\xce\xcc\x49\xbc\xea\xda\x91\x62\xe2\xe6\x6a\xc7\xd3\x31\xa9\x49\xba\x5a\x0d\xdb\x5a\xbe\x99\xf0\x22\x61\x35\x5d\xb7\x86\x3d\x81\x49\xd7\x0b\x05\x0c\x7a\xd4\x03\x72\xcb\x41\x73\xc0\x67\xeb\x57\x07\xec\xc5\x84\x77\x94\xf5\x63\x42\x50\xe5\x9d\xf2\xd6\x81\x8d\x85\x92\x03\x32\x20\xe0\xba\xcc\x99\x66\x31\xfc\xae\x8b\x23\x9c\xd3\xcb\x46\x1c\xec\x48\x9f\x77\x04\x0b\x3b\xe3\x89\x61\xc1\xcd\x32\xda\x31\x8c\xcd\xeb\xc5\xe5\x1a\x74\xa9\xb9\xd6\x1d\x74\xc7\x4a\x4a\x9b\x66\x67\x42\x8d\xe9\xcd\xab\x23\xcc\x92\xf9\xc3\x19\x45\x39\x52\xbb\xf6\x6c\x49\x2a\xe6\xb2\x72\xcf\x96\xda\x9d\x79\xab\x40\x4a\xc3\xdd\x40\x2c\xb5\xf9\x70\x8d\x0e\xc8\x8d\x37\xc6\x8f\x73\x84\x9e\x3a\x5f\x5b\xdd\xac\xa3\x52\x50\x54\xe2\xfd\x72\x34\x1f\x0f\xb3\x1e\xd4\x33\x47\x73\xe6\xf8\xcf\x9c\xef\xdb\x3a\x51\x6f\xd7\xf7\x4b\x6a\x98\x65\x9c\xb7\xa7\xf5\xe1\xfe\xa9\x72\x23\x2a\x37\x9f\xcc\xdd\x4c\x86\xa1\x6b\xf2\xbb\x2d\xae\xc9\xef\x29\xd7\xe4\xaf\x2e\xa7\xe3\x6f\x03\x1e\x01\xb8\x0e\x4e\xa7\xd7\x22\x33\xab\x29\x18\x48\x6f\xe3\x35\x12\xba\x1a\xb2\xfc\x9d\xda\x7a\xe4\xe9\x3c\x06\xf1\x4a\x3e\xb4\x84\x3c\x57\xd0\x42\x10\x6a\x70\x4b\xb9\xa0\x9d\x9b\x34\x3f\x72\x3c\xd6\x7f\x26\x78\x2c\xd9\x8e\x75\x88\x1d\x00\xd6\x99\xcc\x82\xea\x08\x15\x11\xbc\x9f\x2d\x7d\xf9\x06\x2d\xa4\xda\x7a\xe4\x43\xa8\x96\x36\x14\x4d\x01\x59\x01\x53\x96\xe5\xfd\x03\xbe\x3e\x25\x98\x5d\x74\xea\x10\xe2\x01\xa0\x25\x23\xc7\xe3\xc2\xc6\xd2\x4c\x6e\xab\xa3\xf9\xc4\xda\xcf\xaa\xea\x24\x9d\xc9\xa7\xb5\x2b\x52\x1a\x30\xa1\x4f\xfc\x94\xea\x4b\xa4\x7c\x92\x58\xf2\xd3\x3a\x6e\xef\x4b\xd4\x98\x72\x9a\x31\x88\x23\xa8\x4c\x90\x65\xf7\x27\x26\x7c\xa7\x73\x5e\xe9\x9c\x23\x9c\x44\x97\x49\x93\xfa\x79\xd9\x7a\xdc\x45\x24\xc7\xc6\xe9\x7e\x3e\x5a\xaf\x27\xab\x79\x75\xfb\xaf\xdd\xde\xbf\x17\x7f\xe9\xfd\x7f\x90\xf9\x97\x1e\x7c\xdc\x46\xe0\xf1\xe2\x12\x9e\xce\x52\x45\x0c\x10\x17\x28\xae\xee\x96\xcd\x6d\xa7\x4e\xf0\x0d\x4e\xe3\xda\x42\xfe\xa5\xf7\x97\x93\xbf\x9c\xfe\xdb\xed\x81\x8a\x67\xb3\x16\x9e\x0d\x99\x7a\xf3\x17\x24\x6e\xff\x1f\xf0\xba\xce\x49\x87\x81\xb0\x1e\x93\x86\xba\x88\xb3\xfe\x7a\x28\x2c\x3a\x4e\x40\x6d\xf9\x77\x6b\xf8\x51\x1a\x4e\x66\xaa\xae\x0a\xe2\x53\xd7\xe3\xd4\xcb\xfa\xf2\xd5\x68\x45\x7e\x79\xc8\x73\xa4\x35\xa4\xb1\xbf\xe8\xe2\x62\x18\xab\xb3\x25\xfd\xd4\xb5\x56\xfa\x83\xb2\xbd\x2b\xc7\x37\x1f\xbe\x33\x44\xd8\xba\xa4\x5f\xab\x75\x1e\xe6\xd5\x18\xed\x72\x6c\x8d\x23\xa9\x59\x0a\x2a\xf3\xc8\x1c\xb9\xce\xff\xbd\x4a\x7c\xb0\x30\xc7\x72\x75\xc7\xe1\x05\x12\x65\xc6\x04\x29\x6c\x55\xe4\x6e\x3d\xd8\xbe\xc1\xce\x78\xf2\xbe\xd4\x5d\x62\x24\xf8\x70\x95\xff\x29\x38\x00\xd1\x1d\xfe\xcb\x09\xa6\xdd\x00\xb2\x47\xac\xee\xfd\x75\x17\xe1\x8a\x18\x05\x95\xfe\xa0\xec\x97\x3e\xc1\x03\x09\x36\x65\x2c\xe2\x24\x0e\x98\x24\x18\x6b\x32\x6b\x42\xdd\x96\xae\xe4\x5e\xa2\xfc\x2d\x4f\xde\x51\xc4\xed\xab\x68\x72\x7b\x02\x6d\x81\x4a\x34\xf7\x04\x4f\xd4\x61\x35\xbe\x33\x2d\xaf\x16\x01\xee\xa2\xaf\xe7\xf5\xe5\xd2\x86\x56\xea\xc7\x17\x52\x9a\x1a\xff\x7e\x9a\x5b\x56\x27\x7c\xc0\x07\xa5\x8b\xd3\x4a\x03\x0f\x82\x59\x31\xc7\x0d\xfe\xf0\xaf\xbc\x57\xce\x52\xad\xdf\xf1\x4b\xb8\x43\xbc\x53\xda\x2b\x58\x08\x64\x0f\xec\x0e\xfb\x31\xa0\x4d\xd3\x1b\x4e\xd5\x82\x84\xae\x9f\xe8\xbe\x9d\xf2\xe0\x10\x2d\xe1\xb2\xad\xbd\x6b\x7a\xb9\x6d\x8d\x8d\xb9\x7b\x4b\x3c\xb3\x1b\x22\x1a\x49\x7d\x50\x7b\xb5\x65\xbb\xd7\xd7\x27\xa7\x03\xed\xeb\xf9\x26\x13\xc6\x5b\x83\xbb\xbd\x01\x11\x61\x3f\x8a\x70\x86\xe9\x00\xf9\x85\x27\xd9\xac\x65\x22\x58\x5e\x3b\x75\x6c\x99\x59\xbe\x34\xdb\xdf\xbd\x66\xcc\xc6\x2f\x2c\xa1\xf3\xe9\x5e\x48\x06\xd1\x1d\xa6\x6f\xe7\x27\x55\x85\xa0\xba\x56\xde\x64\x11\x12\x13\x6b\x20\x89\x4d\xec\x66\x40\x02\xc5\xc5\xb5\xbf\xb1\xe5\x44\xf1\x16\x51\xc9\x3e\x3e\xa1\x48\xb0\xd8\x3a\x94\x05\x56\x75\x3e\x65\xae\xdd\xa5\xbd\xcb\xa6\x6b\x62\xa4\x69\xc6\x82\x86\xf8\xe4\x98\x1e\xae\xef\x7e\xf7\xc3\x9a\xd0\x1b\x1e\x8a\xbf\x82\xc6\x9d\xc7\x57\x33\x60\xa2\xfd\x3c\x23\x7e\x0d\xbc\xde\x91\xb5\xb8\xd9\x41\x92\x39\xe0\x82\xed\x39\x08\x7b\x7c\x82\xc5\x4f\xab\x20\xdd\x8e\x23\x9c\xa0\x32\x12\x11\x8a\x10\xcf\xe7\x83\x69\xa0\x0a\x86\x7c\xd2\x05\xcd\x04\x07\x4e\x31\xd0\xc2\xc0\xed\x6a\x90\x6f\x2b\xf4\xb3\x7f\x72\xfb\xf9\x13\x96\xa2\x3d\x19\x29\x50\x87\x77\x98\x6e\x35\x01\xa5\x3f\x60\x3b\x1a\x6c\x1d\x5f\x1f\x7d\x8e\xc0\x79\xd0\xb3\x89\x2c\x2a\x52\x42\x38\x7f\x46\xcb\xc5\xf9\xb9\x59\xb7\x25\x8c\x84\xfd\x3b\x63\x70\x4d\xfe\x32\x0c\x9f\xe6\xf7\x7b\x0f\x0f\x1f\x1f\x1e\x1f\xda\x96\x64\xde\xa3\x5a\x73\xed\x15\x57\xe1\x8c\x38\xc6\x00\x69\x48\xc0\x53\xb4\xaf\x00\xbb\x3e\x23\x38\xf9\x1e\x20\xaf\x13\xe6\x22\xfa\x6e\xb8\x66\x53\xd7\xb7\x78\xd1\xa5\x17\x40\x19\x2e\x5c\xff\xee\xb9\x75\x35\x6e\xf5\xd2\xff\xcb\xd6\xad\x9f\x3d\x48\x53\xcc\x64\x8a\xba\x00\xa1\xfb\x34\x1e\x75\xd0\x42\xa0\xa2\xa5\x61\xc3\xf5\xfa\xe9\xb9\x51\xf6\xf3\x6b\x6c\xc3\x56\x0c\xc9\x5a\xc8\xc8\xb6\x49\xac\x33\xf5\xf6\xf4\x2a\x72\xe7\xb3\xae\x21\xa2\x45\x01\xfa\xc2\x51\x34\x51\x37\x17\x9f\xab\x83\x96\x37\xf8\xa4\xfe\x71\x08\x92\xe0\xc8\xcb\xd0\xcb\xe8\xec\xbb\xda\x8e\x04\xe2\x22\xd4\x24\x28\xa2\x35\x14\x29\xe8\xec\xcd\xfd\xf1\x38\x47\xab\x71\x61\x9a\x8a\xf0\x6a\x46\xcb\xe3\x23\xa8\x31\xb9\xfc\xf2\x6e\x60\x1e\xa1\x1d\xd3\xd5\xaf\x1b\x34\xd7\x70\xff\x48\x74\xd0\xda\x45\x22\x0b\x63\xbc\x28\x7e\xc6\x6e\x3a\xef\xc4\xae\xb7\xd4\x94\xee\xb0\xd7\x38\x5f\xe9\x4f\x4e\x9b\x92\x7c\xb7\xa0\xd2\xc6\xa4\xf6\xbc\xcb\xd9\xda\xca\x91\x23\x22\x8a\xa5\x1a\xf9\x9c\xd4\xe0\x93\xce\x25\xf7\x8b\xf5\x47\x6e\x70\x4c\x69\x50\x52\x64\x41\x1d\x8b\x6c\xf1\xa3\xc3\xe3\xfb\x8f\x9e\x1a\x80\xa0\x53\xce\x27\x3c\xfd\x30\x10\xd8\xcb\x4a\xa9\x62\x6c\x71\x26\x0a\x2f\xca\x8c\xdd\x99\x9c\x4a\xee\x9e\xbe\x4f\xf5\x12\x91\xcf\x31\xff\x1b\xe8\xbb\x9e\xcf\xd2\x2c\x4e\xbb\xae\xe4\xc6\x67\x59\x72\xcf\x69\x0e\x17\x83\x95\x51\xf9\x62\x96\x9e\xca\x22\x89\x18\x39\x4b\x11\xa9\x34\x5c\x98\xaa\xcc\xad\x69\xe0\x91\x64\xb3\x4c\xab\xd6\x7b\x17\x4b\xf2\x3e\xe5\x7a\x17\xac\xc5\x1c\x7b\x8f\x70\xd6\xc1\xee\x98\x56\x87\xfd\xc6\x4f\xde\x1f\x54\xa2\xbc\x13\x16\xa1\x7d\x4d\xc2\x1d\x9b\xaa\x12\xbb\x41\xed\x52\x91\xb7\xdf\xec\x78\x91\xb5\x23\x38\x94\x22\xd2\xcf\x70\x2d\x45\x8c\xb9\xa2\x0d\xd4\xb4\x4f\x5e\xc2\x2e\x24\x7b\xaf\x1c\x18\xfb\xfc\x49\xed\x73\x42\xd1\xa5\xc0\x75\xf4\x34\x64\xe7\xb6\xe3\x9a\x52\xac\xba\x5f\xed\x4d\x19\xa8\xcd\x35\x3a\x5e\x0a\x34\xec\x5c\x4e\x95\xc4\xcd\xad\x83\x81\x03\x21\x67\xbe\xee\xdb\x6c\x29\x99\xb4\x2a\xc0\xf4\xbe\x83\x02\xba\x6c\xe1\xbe\xaa\xc4\xf7\x0a\xf9\x52\x69\x17\xc9\x49\xa9\x22\xcf\xb4\x06\x33\x46\xd7\x9a\x81\xdb\xa1\x78\x8e\x3e\xb0\x9f\x11\xc9\xf0\x97\x5e\x7c\x7f\xf6\x24\xb1\xbc\x0f\x73\xcb\x48\xc4\x44\x24\x49\x53\x54\xc3\xe9\x60\xa4\x2f\xe7\x98\xe3\x44\x70\xd4\x2b\x37\x86\x44\xb7\x9c\x4c\x18\xce\xd9\x8c\x04\xe4\x97\x21\x94\x08\x99\x22\x93\x36\xe3\x97\xa1\x8a\x2d\xf2\x08\xd5\xf9\x4f\x22\xa0\xbf\x18\xf1\x0c\x3b\xa8\xe6\x36\x27\x52\x08\x36\x05\x39\x10\xca\xd3\x33\xda\x75\xaa\x9d\x40\x98\xe2\xed\xda\xf3\x68\x1f\x45\xd4\x2d\xbc\x3b\x7a\x44\xe4\x23\xe4\x2f\x79\xfa\xb0\xb5\x50\xe6\x1f\x57\xd8\x72\x33\x72\xb4\x09\x55\x9b\xe9\x93\x5e\x6e\x3e\x51\xb2\x7b\xf4\x97\x25\x49\x4c\x86\xdd\xcc\x9a\x4b\x4a\xfb\xc9\x9c\xb8\xdd\xa4\xaf\x96\xfd\xd4\x25\x90\x18\xf1\xe8\xaa\x76\x15\x11\x22\x53\x86\xbc\x0b\x46\x2f\x57\x44\x69\xe4\x89\x2d\xca\xa8\x48\x2b\xac\x9f\x6c\xa8\x1f\x7c\x9b\xfc\x9f\xfa\xd0\xbd\xe5\x6a\xf2\x76\xba\xb8\xac\x11\x8b\x75\x1f\xbc\xf6\xef\xef\x27\xdf\xc7\xe2\xa7\x34\x6a\xb7\xe7\x57\x71\xc2\x03\x3e\xad\xd4\x93\x23\xe9\xf3\x95\xc9\x9b\xee\x8d\xd0\x65\x10\x73\xeb\x56\xfa\xf9\x0e\x39\x7d\xd2\xff\x9b\x5d\xd6\xaf\x39\x5c\x35\xc6\xc0\xd3\x09\x61\xf0\x3b\xef\x6d\x30\x1a\x22\xf4\xa7\x3c\x53\xcb\x0a\xb5\xfe\x39\x9c\x91\x06\x34\x97\x85\xca\xc3\x8d\x44\x20\x3a\xeb\x65\xe5\x6a\x2a\x8a\x09\x36\xec\xdd\xe7\x12\x05\xbd\x8b\x5d\xaa\x5e\xff\x08\xcb\xef\xe9\x33\xd2\x40\xc3\x3a\x7e\x4a\xd4\x34\xbd\xc9\x56\xd6\xa3\xe6\x6b\x98\xa9\xd2\x5f\x14\xe1\x26\xcf\x5f\x5f\x6e\xba\xeb\x79\x08\x5b\x6e\xfb\xf6\x6e\x7c\x34\xe9\xb9\x59\x27\x9a\xd4\x9b\xb4\xf6\x11\xde\x76\x4e\x8b\xf0\xe2\x19\x5e\x43\xd9\x41\x20\xd8\x78\x38\x8b\x03\xb2\x68\x18\xbd\xef\xde\xe1\x42\xfb\x74\x9d\xb5\xa1\x97\xa8\x80\xb0\xb9\x5c\x0a\x13\xb5\xb7\xdd\x1d\x6b\x19\xc1\xfe\x45\xfd\xa6\xf9\x8e\xac\x5c\xc9\x26\xaf\x58\xd3\xec\xc5\x2a\x6a\xc6\xe3\xf6\xb8\x4d\x6e\xc4\xb6\xb1\x89\x4f\xc6\xd6\xbc\x65\x2a\x1f\xb2\x4e\xa9\xfa\x60\x79\x12\xdd\x20\x45\x4c\x02\xbb\xc1\x7b\x3d\xca\xac\xf1\x53\x37\x5c\xe9\x0f\x3f\xdb\x66\x79\x24\x95\xa8\x98\xfe\xc0\xf8\x79\xa9\x8e\xfa\x89\x95\xff\xa9\x66\xc4\x0a\xbe\x02\x5c\x79\xea\x1d\x1e\xb6\x2e\x50\x89\xe3\x26\x8f\x5f\x17\xde\x13\x7f\xeb\x66\xc2\xda\xa3\x23\x7b\x9b\xeb\x4f\x3c\xad\xa6\xe3\x01\xff\xc9\xeb\x99\x1a\x89\x8f\x7a\xe5\x82\x1d\x23\x30\x07\x23\xe7\xc3\xc0\x29\xae\x2c\x21\x9e\x13\x7f\x75\xa9\x56\x24\xe7\x5b\xaa\xcf\x03\x3c\x56\x32\x6d\x87\x1c\x04\xf8\x5b\x2a\xb5\xef\x6e\x80\xaf\x82\x03\xec\x6c\x5b\x77\x43\xfd\x65\x85\x65\xd1\x4c\x37\x1b\x14\x55\x96\xe3\xe4\x96\x99\xba\x92\x8a\xfb\x01\xde\xfa\xfa\xa3\x09\x91\xaf\xd6\xe2\x72\xb4\x82\x66\x66\x1f\x8e\x44\xf7\x9f\xb9\x9d\x40\x7b\x00\xb5\xaa\x23\x2d\xa8\xde\xda\x1c\x9a\xbe\xc1\x41\xe0\xd2\x15\x0d\x9a\x50\x59\x5e\xf8\x0e\x0f\x7a\xa0\xf5\xef\x69\xc1\x88\xdd\x14\xea\xad\xb8\x8e\xa6\x4d\x00\xbc\x09\x4f\x2a\x41\x69\xc5\x7f\x15\x7b\x19\x6e\x2a\xfc\x77\x2b\x22\x81\x0a\x6c\x15\x2b\x9a\x4a\x4b\x05\x25\x0f\x12\x8a\x45\xb5\x52\x7d\x62\xb4\xdb\x14\xcf\x16\x41\x7f\x34\x9b\x07\xa9\xf5\x7d\x52\x8a\x3a\x0e\xdf\xa2\x98\xd7\x75\xfd\x2f\xa3\x91\x92\x1d\x19\xc0\xef\x56\x95\xb5\xae\x75\x16\x6b\xd8\x2b\x7d\xfa\x44\x03\x68\x50\x25\x21\xa3\x77\x54\xb2\x6b\x66\x2b\x66\xc1\x85\x24\xb9\x86\x37\xdc\xae\x93\x5a\x2e\x1d\xd7\x18\xeb\xe3\x76\xf5\x34\x27\xea\x6b\xfc\x4e\xa8\x71\x2b\x9d\xc5\xf6\x2e\x11\x52\x44\x2d\xb2\x15\xb6\xb4\x5a\x58\xed\xfd\x77\x8f\x4c\x9b\xba\x6f\xb8\x12\x6d\x8f\x70\x33\x87\x16\x1b\x76\x94\x6f\x49\x22\xc6\x50\xa4\xa5\xc6\x86\x21\xfc\x97\x63\xe8\x79\xc2\x17\xa5\xc0\x16\x89\x4c\xec\xfa\x1f\xca\xc9\xf8\x28\x07\xb1\x9a\x8c\xc6\x10\xe3\x55\x02\xf5\x21\x66\x41\xf1\xb3\x6b\x75\x47\x94\xa5\x52\x95\xb1\xab\xb2\x41\x83\x91\x76\xda\x22\x01\x35\x66\x85\x64\xce\xcc\xd5\x15\x0a\x9e\xe8\x28\xf2\x52\xca\x6d\x0f\x80\x32\x7b\x9e\x0d\xf0\x94\x51\x04\x3f\x3c\x0e\xe9\x5c\x1a\x67\x74\x01\x93\x4a\x4b\x5d\xdf\x45\xf9\xcd\xac\xc7\xe0\xc6\x9b\x3e\x22\xb0\x7b\x49\xca\xdf\xb4\xe8\x18\x05\xea\x44\xb2\x10\x7c\xe5\xc6\x2a\x35\xc8\xf8\xcd\x2e\x68\xa2\xaa\xd2\xb5\xe1\x20\x60\xc0\xb9\x55\x17\x2a\xed\xb1\x9e\xdb\xf6\x45\x36\x4c\xca\x16\xea\x7f\x5b\x69\xfe\x59\x26\xa3\x1d\x35\x21\x8b\xac\xb8\xd5\x10\x31\xad\xfd\x8e\xf4\x0c\x33\xd5\xf8\x53\xda\x44\x13\xb3\xa1\x19\x5f\x69\xb4\x55\x85\xb1\x69\x7c\x25\xa4\xc1\xdf\xd9\x72\x8e\x17\x25\x0a\x13\xe9\x0a\xee\xf6\xf4\xcd\xb8\x7e\x3b\xe6\x94\x8d\x69\x40\xef\x64\x40\x39\xd3\xcd\x81\xb5\x7b\xdb\x48\xa3\xb4\x62\x6f\x86\x2d\x49\x19\x6a\xb6\x99\x68\xda\x83\x87\xcd\x0f\x1e\x48\x3c\x45\xb1\x0e\x63\x1e\xcd\x06\xb3\x54\xa9\x1b\xbb\xa0\xc8\x68\xe5\x47\x30\xdd\xf5\xc5\x09\xac\xb9\xc3\x47\x99\x3e\xd7\x06\x3e\x60\x75\xa5\xe4\x1f\x7d\x61\xcb\x55\xda\xf5\x75\x30\x90\xd2\x5e\xae\x2c\xb8\x4d\x89\x80\x5d\xb0\x03\xaf\xd5\x26\x67\x77\xac\x46\x1a\x5c\x74\xaa\xe8\x9d\x3c\x5c\x16\xd0\xce\xee\x6e\x9a\x79\x85\x1a\x4e\x74\x81\xd3\x6d\xba\x30\xbd\x41\xfb\xd6\x16\x04\x81\xf3\xbd\xe0\xf3\x33\xdd\x29\x72\x1d\x82\xd7\xe0\x36\x30\x0a\x7f\xf2\x91\x57\x85\x88\xb7\x85\xc0\x19\x6d\xc4\x0b\x5b\xcb\x19\x6b\x10\xab\xa3\x2f\xab\xf6\x0a\x97\x36\xd7\x08\x2f\x69\xbc\x3e\x20\x79\x8b\x29\xc9\x19\x38\x3b\x3b\x5d\xbd\xd6\x7d\xf0\x64\x30\xd9\x2c\xb8\x1f\x50\x36\x0f\xd7\x6c\xd1\xeb\x94\x31\xf5\x5b\x8f\x0c\x24\x26\x65\x1b\x6c\xf8\x87\x69\x95\x79\xd0\x4c\x28\xa6\x4a\xd4\xe8\xfc\x71\x2c\x25\xf9\x35\x6b\x1b\x48\x54\xb0\xd8\x1a\x9a\xc2\xba\x84\xfd\xda\x62\xd4\x68\x79\x1e\x31\xd5\xf9\xb1\xab\x08\xcf\x5b\x74\x4b\x30\xb3\x99\x29\xfa\x08\x0c\x6d\x8f\x9d\xea\xe4\x74\x9b\x95\x65\xa5\x7a\xe1\xc3\x02\xdd\x68\xca\x16\x3b\xf8\xc2\xee\x4b\x8c\x91\x0a\x9b\xdc\xdc\xf1\xca\x0b\x88\xf2\x52\x6e\x5c\x40\x96\x2b\x81\x16\x5a\x18\x91\xac\x11\x5a\x52\xa8\x92\x09\x74\x66\x20\x27\xe3\x1d\xb4\x57\x13\x03\xd4\xe9\xa4\xde\x99\x2f\xd6\x3b\x1c\xf3\x61\x32\x86\x28\xae\x3e\x1f\x25\x12\x67\x1c\x51\x95\x30\x9d\xeb\x4d\xde\x4f\xce\xc2\x2e\x44\x23\xaf\xb0\xfc\xc9\x41\x52\xf9\x48\xec\xe4\x08\xe6\xee\x69\xc9\x9c\x50\x72\x57\x46\x7b\xd0\x70\x28\x41\xda\x16\x3b\xb7\x19\x84\xb6\xb4\x61\xc5\xdc\xa9\x44\x5f\x8a\x81\x9e\x73\x38\xb7\x13\xdb\x85\xe8\x5e\x1e\x90\x98\x54\xcb\x66\x6d\xb1\x3a\xb5\xc7\x0c\xaf\xde\xf5\x82\x34\x14\x8a\xa2\xd1\x5a\x46\x7a\xd1\xff\x63\xf8\x7c\xa0\x8d\xfa\x71\x4e\x1f\x28\x9a\x9b\x26\xfe\x10\xc9\x4d\x86\xfd\x59\x5a\xe4\xca\x49\xd2\xe5\xfb\x99\xd8\x20\x1f\xf9\x04\x47\x13\xad\x5e\x4a\x6f\xec\x32\xc2\xc6\x3d\xd9\xe8\x39\xe2\x62\xb2\x7a\xf5\xeb\x7a\x93\xd8\xe0\xe0\x29\x72\xc4\x90\xf1\x22\xf1\x8b\xc5\x92\xb9\x41\x34\xa6\x6c\xe0\xa8\x37\x1b\xc2\x5f\xfd\xd3\x8d\xc4\x67\x73\x23\x81\x0b\x38\x74\x23\x11\x02\x85\x9e\x26\xee\xb5\x78\x9a\xf8\x52\x79\x9a\x48\xd9\xc1\xff\x2e\xb0\x83\x4f\x79\xa3\xf8\x5d\xe0\x8d\x62\x7b\xc7\x56\x6d\x9e\x04\x12\x9e\x1f\x42\x83\xff\x84\xd3\xef\x9c\x73\x88\x3f\x24\x9c\x43\xd0\xbb\x6a\xca\xe1\x18\x7a\x3c\xf0\xb2\x37\xb9\x28\x83\x45\x92\xf2\x51\x96\x8d\xe8\x91\x98\xb7\x64\x98\x92\x94\xe3\x83\x37\x61\xf8\x96\x94\xe7\x83\x54\xfc\x96\x94\xf7\x83\xa4\x17\x82\x6d\x3c\x0e\xbc\x30\xbc\xb6\xf8\xce\xb5\x27\x74\x7d\x79\x11\x70\x7a\x9e\x93\x2c\x7b\x74\x7b\xd2\xbf\x2b\x7d\xc2\xf5\xef\x28\x31\x82\x73\x30\x75\x76\x76\x79\x71\x09\x31\xa3\x49\x1e\x12\xa9\x55\xe9\x0b\xb9\x6d\x34\x2c\xb5\x0f\xa5\x9a\x52\xcb\x35\x3e\x73\x0b\xb7\xb0\x85\xa6\xf0\x8e\x3b\xf1\x8c\x6d\xb1\x04\x5a\x10\x9f\x88\xa5\x5b\x8f\xe6\x10\x4f\x7a\xfd\xe1\xf3\x61\xeb\xff\x67\xef\xdd\xf7\xdb\x38\x8e\x44\xe1\xff\xf7\x29\xc8\x59\x2f\x85\x59\x0e\x21\x52\xb1\x63\x1b\xd0\x48\x4b\x4b\x74\xac\x9f\xad\xcb\x8a\x74\xb2\x59\x86\x8b\x05\x89\xa1\x88\x08\x02\x18\x0c\x28\x89\x21\xf1\x48\xdf\x4b\x7c\x4f\x76\xba\x2e\xdd\x5d\x7d\x9b\x01\x29\xca\x76\x72\x4e\x7e\xb1\x88\xe9\xae\xee\xae\xbe\x55\x57\x57\xd7\xc5\x28\x68\x44\x8b\xe7\x77\x33\x6e\xac\x42\xf9\xd0\x2f\x96\x1c\xd1\xa5\x3f\x9a\xda\x83\xb8\x1d\xcd\xb1\x7f\xbb\xb8\xf1\x68\x7e\xae\xc1\x1c\x27\x8a\xdf\xed\x60\x3e\xfa\x84\xc1\x64\x0f\xed\x62\x69\x9e\x7b\xa2\x79\x27\x06\xaf\xe6\x93\xaf\x62\x03\x65\x35\x23\x92\x18\x6b\x5f\xb9\x8a\x7c\x86\x41\x5e\x69\x68\xfa\x58\x0f\xa8\x29\x29\xde\x6b\x77\xd1\xb1\x75\xb1\x02\x18\x95\xf7\xfc\xcb\x25\xc6\x73\x05\x94\x86\xd2\xac\x3e\xd2\xdc\x8e\xd7\xd2\xd2\xf9\x8c\xaf\x2e\xcd\x23\x7b\x0b\x97\xfc\xdc\xcb\xb1\xfe\xee\xd2\x2d\xe8\x28\xe2\x4a\xd5\x0f\xf7\xae\x68\x26\x18\x04\xf1\xbe\x6e\x6d\x6e\x30\xf4\x27\x73\x33\x23\xd7\x2e\xdd\x6c\x53\xea\xe2\x9a\x29\xf6\xd1\x35\x3e\xf5\x79\xda\xcc\xd3\x2a\xa5\x7a\xd0\x32\x37\x7c\x6d\x25\x1f\xf9\x2b\xad\x2d\xab\xfa\xe1\xcf\x64\x7a\x27\x48\x15\x01\x6a\x8a\x35\x12\x59\x6f\x91\xa4\x18\x7c\xc2\x2e\xa3\xfb\x7c\xe5\xe5\x0b\x42\x83\xf5\xf5\xd4\xfa\x2d\xa8\xf9\x67\xac\x94\xd5\x82\x97\xb6\x02\x8c\x2d\x73\xd5\x0e\xde\xb2\xe8\xd7\x95\xb7\x2f\x44\x33\x4c\x53\xee\x68\x43\x20\x03\x70\xa3\x3e\x58\xdb\xc0\xa0\x1b\xd8\x01\x51\xdb\xa3\xad\x9d\x60\xcb\x89\x6c\xaf\x13\xb7\xde\x6b\x6e\x58\x07\x6f\x11\x36\x6c\xba\x82\x85\xaf\x72\xeb\xc5\xa4\x0a\x65\x59\x3e\x00\x6d\x89\x5b\x6c\x4e\xad\x39\x71\xf3\xa2\xaa\x51\x52\x48\xd1\x83\x14\xd9\x53\x37\xda\xe2\x61\x8c\x0b\x3b\xf7\x66\x37\x9b\xbc\xb0\xa4\x07\x13\x6e\x7a\x88\x7c\xd1\xb1\xf2\x99\x94\xbc\xb1\x0f\x99\x24\xf5\xfd\xe4\xcd\x3f\xd6\x9a\xd7\xa8\xbe\xfa\x29\x1b\xdd\xd1\x7f\xa7\xa3\x09\x04\x32\x89\xd6\xb4\x1a\x7c\x63\x76\xb9\x43\xb3\xbf\xb9\xd9\x08\xb6\x1c\x6a\x03\x61\xba\x3f\x70\xeb\x37\xdb\xdf\x83\x95\xba\x54\x88\xf1\x4a\xe0\xd4\x47\xed\xf6\xa0\x2b\xa8\xd8\x2e\x77\xb2\xc4\xd5\xdb\xc6\x79\x74\x1f\xb3\xb0\x08\xe3\xfe\x93\xb8\x48\x2e\x31\x1b\x3a\x05\x30\x37\x31\x53\xfe\xd6\xf7\x80\x4c\x28\x95\x30\x4a\x3b\x2f\x3d\xb5\x99\x9e\x8a\x2d\x02\x26\x32\xe2\x55\xc0\xae\x01\xeb\x0d\xd7\xbb\xf6\xc0\x39\x2a\x08\x9b\x11\x76\xad\xf6\xe8\xae\xb7\xb4\x6f\xd2\x85\xd4\x80\xf5\x6f\xfe\xf1\x76\x07\x40\xfc\x21\x5c\x4e\xa6\x77\x34\xca\xb1\xa1\x97\x23\xee\xc2\x9b\xba\xc4\x60\x4b\xed\xe7\xbc\x20\xcf\xfe\x2f\x4f\xbd\x47\xc7\xb2\x7d\x76\xb4\x0d\xc0\x6a\xeb\x7d\x5d\x2c\x77\xdd\xd3\x23\x32\xdb\xf4\x53\x61\x20\x99\x11\xf7\xb3\x0e\x9d\xde\x1d\xb9\xaa\x76\xab\x14\xd8\x86\x9a\x37\x37\x57\xab\x7b\x67\x63\x23\x35\x3c\x25\x06\x05\x8b\xe2\x98\x9b\xa0\xfe\x51\xa2\x73\x97\x4c\xc5\x3f\xea\x92\xd1\x35\x50\x41\xe8\xfb\xae\xba\x81\x0c\xe7\xf5\xb3\xe9\x8a\xcb\xe9\xf3\x2d\x0e\x87\x30\x37\xd4\xbd\x6d\xf4\xba\x56\x80\xef\x37\xf4\xb8\x7d\x25\x41\x87\x9b\x2a\x68\x43\x66\xf9\x19\x0f\x95\x58\x8c\x2d\x2b\xbc\xa2\xc0\x62\x1d\xf5\x77\x57\xf3\x32\xa0\xdc\xfb\x9d\xfe\x60\x35\x70\x97\x15\x5c\x47\x56\x30\xfe\x14\xc3\x35\xae\xcd\xab\xbf\x5d\x8c\xe7\x55\xbd\x56\x7d\x1c\x9e\x2c\x26\x97\x6b\x8b\x0f\x33\xab\x53\x45\x1d\xa8\xbb\x99\xdb\x43\xc3\xee\x26\xf1\x29\x3e\xe5\x1a\x0e\xb5\x5a\x45\x2e\xd9\x46\x8e\x8d\x38\x79\x76\x08\xd0\xda\x20\xbe\xd7\xd4\xcc\x42\x35\xa4\x75\x04\x85\x50\x87\x77\xa8\x9a\xa6\xf9\x4b\x91\x18\xe2\x89\x56\x9b\xf5\x4f\xa3\x40\x9f\xab\xcf\xdf\x61\x9f\xa1\xbe\xcf\xd0\x65\x5f\x9a\xe8\x85\xc1\x33\xcb\xf7\x78\x3c\x1d\xce\x2f\x49\x2c\x2b\x47\x64\x32\xfb\x50\x9c\x8d\xdf\x9c\xf1\xf5\x75\x3c\x2a\xd4\x7f\x30\x7e\xe0\x8e\xa7\x00\xfa\xf9\x5c\xa5\xc1\x5f\x48\x8c\xdd\x76\x1e\x7e\x99\x5f\x41\x0d\x31\x27\x2d\xcb\x18\xfc\xef\xf2\x2b\xd5\x2a\x51\x28\xf8\x51\x96\x84\x00\xf7\x4b\x25\x2d\x15\x0e\xa5\xfa\xbb\x89\x82\xb2\xd3\xc9\x4c\x6d\x97\x0e\x00\x6d\xa9\xc4\xfc\xfe\x83\xbc\xcf\x48\x92\x1f\x7a\xeb\xdb\x40\x25\xe7\xfd\x7f\x61\xac\xcb\x81\x26\xff\x0c\x9d\xf7\x75\x3f\x6c\x96\x61\xdd\x75\xa1\xb2\xd4\x40\x06\x23\x55\x5c\x0d\xba\xd6\x87\x83\x78\x48\xba\xc6\xc2\x14\x87\x7c\xf6\xdb\x52\x97\x5c\xd7\x43\x5d\xd3\xe3\xad\x9d\x1e\x46\x9f\x51\x99\xc2\xe8\x0d\xeb\x4b\x4d\x8c\x6a\x61\x73\x87\xa6\xc6\xa8\x24\xa8\xe2\x8f\x56\x2c\x0e\xf3\x0a\xa3\xb1\xb4\x7d\xb0\x8b\xc1\xed\x3d\xac\x4e\x21\xaf\xef\x92\x8d\x89\xd6\x08\xd3\x4b\xd5\x63\x54\xcd\x1d\x34\x43\x75\xad\xe9\x22\xcb\x4d\x5b\x4e\xed\x14\x02\x4b\xd4\x2f\x23\xf9\x75\xab\x8f\xaa\xec\xa8\x23\xf4\x1f\x21\xb0\x23\x96\xac\xe1\x6a\x0a\x5f\x4f\x2b\x94\xbf\xa2\x37\x39\xe4\x14\xd4\xc7\xf7\x53\xcc\xb2\xca\x0c\xa0\x5b\x62\x5f\xe0\xdd\x62\x9e\x0a\x17\x95\x2f\x6f\xc5\x22\x53\x48\x2e\xb7\xfa\xbe\x03\x21\x27\xa4\x94\x1f\xbc\xad\x03\xb4\xc3\xda\x6e\x84\x9e\x3c\xa0\x2e\xce\xf7\x9d\xda\xf9\x8a\x23\x9a\xbc\xb4\x0d\xd5\x82\x9e\xf9\x38\xe5\x32\xe9\xd2\xcb\x77\x79\x19\x2f\xef\xf0\xc8\x29\xba\x5b\x9f\x54\xe8\xb8\x33\x59\x48\x80\x5c\x2d\x0b\x88\x53\x36\xac\x4f\xfa\x31\xfe\x2b\xaa\xc0\x65\x96\x8a\x55\x78\x4e\x74\xd7\xde\xc0\xe2\x00\xb8\x0f\x30\x38\x5a\x3c\x9f\x44\x56\x2f\x4f\x3b\x59\x4f\xad\x75\x75\xb0\x83\xb0\x4a\x82\xa6\xca\xd5\x17\xc7\x14\x3b\xac\xb3\x0d\xfd\x53\x57\xb6\xfa\xa4\x1d\x56\x41\x6e\xee\xe4\xdd\xc5\xec\xa7\xd9\x87\x6a\xfe\x64\x58\x57\x1d\x68\x34\x1b\x55\xf5\x49\x16\x2c\xa5\x54\xe3\xd8\x16\xf8\xce\x59\xba\xf3\x44\x37\x46\x59\x26\xef\x47\x27\xe5\x50\xa6\x1e\x95\xa9\xb9\xf1\xf5\x91\x9c\x0d\x6c\x9a\x58\xba\x8d\x88\xc9\x91\xef\xaf\x9d\x0c\x85\x54\x19\xa9\x84\x92\x81\xb9\xbb\xae\xc1\xae\x45\x58\xbf\xa5\x40\x3a\xbe\x95\x4b\x0c\xb0\x88\x74\x87\x6c\x5f\x1a\xeb\xf7\xb4\xcb\x23\x9b\xcf\x8a\x7e\xf3\xe8\x90\xad\x16\x4f\x28\x88\x50\x14\xec\xd5\xf4\x08\xf5\x5b\xb0\x8a\x50\x36\x47\xe0\xb8\x8b\x47\xc9\x77\x4c\x75\x6b\xa2\xde\x98\xb4\xa6\x8b\x2a\x5a\x2b\x48\xbb\x4b\x35\xd4\x69\x75\x31\x59\xe0\x76\x06\x07\x04\x58\x49\xb9\xdd\x1f\x3f\x24\xcb\x3f\x17\x2d\xbe\x1d\xa8\xeb\xac\xb7\xa9\x22\xc0\x87\xe3\xa3\x3e\x55\x6e\x22\xda\xe9\xe3\x68\xd7\x5d\x70\x05\x63\xfd\x18\xb1\x76\xd7\x72\x4f\x97\xf9\xce\x2d\xa3\x8f\x73\x55\x3d\x05\xc5\xc3\x2d\xe4\x61\x91\xda\x20\xe6\xd6\x51\x9f\x3c\xa6\x3a\x7a\x5b\x3b\xff\x4e\xbf\x8c\x64\x76\x7b\xb9\xf2\x91\x11\x65\xf9\xcd\xe6\x92\x12\x1f\x3e\x15\x3f\x45\x68\x13\x0a\xf4\x13\xdc\x45\xf0\x0c\x37\xb6\x0f\x0d\x77\xf5\xf2\xc6\x51\x43\x3e\x5e\x8a\xad\x4a\xcd\xd4\x88\x8e\x66\x47\x9d\xad\xe5\xda\x9d\x7b\xc5\x4b\x54\x90\xe9\x5c\x31\xc3\xd2\x83\xf6\x97\x45\xba\x7c\xdf\x36\x54\x4a\xfe\x88\xad\x39\xbc\xda\x59\xff\x51\x94\xc1\xfa\x57\x1b\x54\x5b\x4a\x0f\xad\x79\xff\xe0\x87\x92\x46\xa6\x5f\x07\xc4\x6e\xd0\x8e\xd3\x61\x7c\x6b\xa3\x1d\xa6\x53\x3e\x5b\x50\xa5\x55\x23\x15\x11\x42\x71\xf5\x32\x8e\x53\x54\x73\x44\xf9\x88\x26\x99\xed\x98\xec\xd2\x2a\x01\x96\x7e\xd5\x90\x88\x37\xd5\x41\xfb\x64\xed\xb0\xdb\x86\x18\x6a\x52\xc3\x8a\x68\x16\xa1\x4c\x27\x54\x69\x8a\xe8\x16\xed\xf3\x9c\x52\xa0\xe9\x16\x65\x30\x3f\x2e\xb5\x37\x80\x7e\xdc\x6a\xa3\xe4\x14\xe8\x62\x41\xec\x9c\x13\xa9\x84\x95\x50\x48\xfb\x36\xc4\x61\x15\xbd\xa7\x79\x75\x3e\x81\x08\xe8\x3e\x0c\xa7\xa7\xc2\x27\xdb\x51\xd3\x37\x22\xaf\x43\x85\x33\x5a\x05\x8b\x00\x35\x48\x0f\x05\x5a\xea\x9a\xfc\xf6\xe2\xfc\x99\x9b\x23\x1d\x15\xa9\x5b\x97\xf3\x86\x88\xfc\x44\xe6\x56\xa5\xee\xec\x85\xbe\x4e\x3f\x61\x42\x69\x99\x82\xd1\xc7\xc0\x2d\x2b\x55\xe2\xf8\x70\x83\x0d\x4d\x0e\x41\xb0\xbc\x00\xf3\x72\x18\x9e\xda\x2b\xbd\xcc\x8d\x0d\x2f\x41\xb8\x30\x04\x2e\x9a\xa6\x58\xe3\xfd\x04\xc2\x54\xa3\x34\x75\x04\x1e\x15\x37\x36\x38\x9c\x31\x0a\xaf\x3d\x30\x3a\xcd\x63\xc3\xa5\x47\x89\x02\xf9\x3a\x85\xdc\x6b\xb7\xcd\x24\x74\x78\xcc\x0a\xbf\x90\x39\xc1\x29\x7f\x59\x78\x7d\x8a\x78\x94\xd2\x96\x24\xf5\x85\x22\xac\xda\xa4\x7b\x80\xb6\x40\xfb\x17\xc7\x16\x57\x70\x13\x55\x30\x63\x90\xaa\x0b\x30\xd3\x2e\x6a\x8c\x3b\x42\xed\x0d\xb8\x76\x6a\x2b\x75\xab\x32\x11\xc6\xc1\x4d\x31\x0f\x02\x61\x0d\x07\x33\x8e\x67\xe4\x95\x20\x27\x7b\x80\x0a\xdc\x69\x2c\x3a\xe2\xc6\x16\xad\x47\x5c\xd8\x64\x3e\x49\xd3\xdc\x14\xe7\xb3\xcb\xce\xaa\x3a\x6c\x6e\x80\x3b\xcf\x6b\xa3\xf0\x46\xc6\xf7\x7a\xa8\xb0\x63\x9f\x47\x3c\x0f\xa9\x91\x5c\xa2\x0f\x8d\xb6\xd9\xf3\x86\x1a\x1c\x21\xbf\x9b\x8d\xaa\x49\x4f\x93\xa2\x4e\x53\xd4\xcd\xbc\x18\x8c\xeb\x3f\x8e\xe7\x8b\x8b\xe1\xa4\x87\x9e\x43\x0a\xb9\xfe\xdc\xe9\x4e\x2c\x44\x52\xdc\x50\x64\x82\x83\x1f\x09\x7c\x0a\xe0\xa0\xa7\x0b\x9b\x60\xb6\xd6\x50\xb1\x12\x73\xb1\x7d\x4d\x1a\x6f\xdc\x4f\x59\x41\x8f\x90\x98\x38\x59\xde\xc2\xc1\xa0\xe3\x41\x79\x33\x3e\x4e\x2a\x38\x6d\xa1\xbe\x95\x99\xed\x7a\x2f\xdb\x8c\x50\x88\x75\xd3\x8d\xee\xd9\x10\x3c\x00\x50\xc1\x94\xc9\xc4\xbd\x27\xb3\x8b\xc9\x08\xad\x86\xd4\x26\x9c\x4d\xde\xeb\x87\x09\xd3\xca\x5a\x76\xcf\x6f\x67\xf3\x5e\x76\x8f\x3c\x5a\x90\xe5\x96\x9e\x3e\xc5\x94\x7a\x83\x2d\x86\xd7\xcf\xca\xb4\x4d\x8d\x5f\x04\xc0\x97\xee\xd0\xd9\x3e\x11\x5d\xfb\x7e\x08\xc1\xe8\x2f\x6d\xef\x34\xdb\x7a\xb5\x18\x2a\x2e\x78\xd1\xf3\x2b\x0d\x56\x41\x08\x41\x4b\x96\x29\x99\x62\x8f\xc3\xd9\x72\x67\xb0\x1f\x9d\xa9\xc2\x5b\x21\x74\x78\xc5\x08\x5c\xe0\xf6\xce\x5d\xa1\x9f\x46\xbf\xc4\x95\x54\x07\x6e\x89\x42\xf6\xf5\x72\x85\x50\xe9\xf2\x28\x09\x56\xeb\x91\x7b\x6a\x48\x58\x49\x92\xa2\xad\x94\xdb\xcb\x65\x01\x31\x7a\x9e\x12\x60\x48\x50\xa2\x07\x40\xdf\x21\x36\x70\x2f\x58\xe5\x06\xf0\xe9\xbc\x7f\xd4\x42\xc4\xb7\xa7\x01\x4e\xa5\x8d\x13\xf7\xe3\x91\x62\x9f\x07\xea\x14\x1b\x4d\x22\x16\x2e\x0c\x65\xf1\x1f\xf0\x5d\x6e\x80\x4b\x73\xa0\x6e\xc2\xc3\x1a\x98\xb8\x79\x75\x82\xae\xd8\x7f\x2b\xdc\xfd\x67\xe5\xde\xb1\x02\x12\xaa\xb7\x05\x29\x0f\x99\x67\xb0\xf1\x68\x61\x99\xbf\xf2\x59\xe6\x5d\x1c\xc6\x1f\x68\x92\x56\xe7\xdc\x99\x4d\x79\x0e\x53\xb5\x0b\x33\xf5\xd4\x4e\x54\x9b\x75\x87\xcf\xff\xe3\xbf\x9a\xa4\x39\xf8\x14\xab\x35\xa8\x58\xe8\x5a\xd0\x3a\x10\x91\x16\x4c\x19\x91\x1e\x19\x7a\x4a\x9f\x01\x71\xc4\xd4\x5a\x91\xd8\x8a\x7e\x12\x6d\x34\x45\x81\x6d\x3e\x31\x8f\xce\xd0\x76\x27\x43\x90\x0c\x55\x14\x10\x8b\x6a\xb4\xaf\x3a\x4c\x68\xd7\x52\xcd\x1b\xfe\xb8\xde\x09\x60\x9b\x1f\xda\x8c\xa3\xa5\x57\x49\xbc\xb4\xd1\x1d\xd2\xe6\x1b\xbe\xe5\xe2\x0e\x11\x10\x59\xb3\x17\xa5\xbc\xd6\x92\x07\x60\xa5\xdc\x89\x28\xc5\xba\x4b\xdc\x5a\x72\x47\x1d\x4b\x14\x15\x67\x44\x1c\x82\x66\xd9\xfb\x5e\x89\xb8\xb1\xb5\x5a\x8c\xc6\xad\x28\x34\x68\x31\x7f\xbb\x0d\x3d\x69\xda\xff\x4d\x57\xdb\x9d\xc4\xd5\x36\x65\x39\xe4\x19\x0e\x25\x6e\x9b\x91\x07\x38\x7f\xe2\x1a\x86\xfa\xfc\xd2\x3f\x35\x5a\xec\x18\x1b\x85\x3f\xde\xd1\x11\x50\xfa\xf3\x4b\x47\xee\xc3\x67\x92\x08\x8d\xfd\x4b\x90\xf7\x46\xf2\xdd\x14\xf0\x36\x24\x64\xf0\x40\xf9\xf2\x34\xa0\xe5\x94\x7c\x53\x72\xfe\x84\x87\xa7\x4d\x28\x13\x89\xdb\xfb\x95\x1b\xb6\x97\xdf\xb6\x02\xb9\x05\xa7\x8b\xa7\x63\x98\x12\x76\x55\x58\x9d\x17\x75\x55\x4d\x15\xc1\x3b\x07\x01\xe8\x15\x09\x40\x16\xc5\x64\x76\x02\x3e\x88\x81\x1d\xd2\x06\xd0\xeb\x65\xa9\x8d\xa3\x8f\xff\x7a\x7d\xad\xfe\x29\x4b\x74\x87\x96\xdb\xfb\x31\x79\x08\xaa\xce\x37\x36\x3a\xaa\x86\x52\x3f\xb7\x61\x13\xe0\x61\x3a\x57\xf7\xfa\xdc\xf8\xbf\x81\x26\x0f\x15\xdc\x91\x7e\xf6\x55\xa0\x00\x05\x8f\xbd\x64\x8a\x8a\xe4\xb3\x54\x69\x7c\x03\xcd\x75\x03\xa0\x7f\x70\x52\xaa\x4c\xcd\xe2\x7d\x38\x1b\x4f\xaa\xce\xd6\x96\x4a\xe6\x36\xb0\xe6\x92\x3a\xab\x3f\xc3\x1e\x2f\xcd\xcb\xbc\x9e\x89\x8d\x0d\xfd\x8b\x9f\xd1\x11\x27\x8b\x09\x56\x18\xd6\xa3\xab\x51\x20\xf2\x69\xe5\xa9\x9a\x1e\x2a\x8b\xbe\x54\xe0\xac\x83\x4a\xd4\x21\x75\xa0\x36\x49\x27\xb7\xbe\x46\xc0\x39\x9c\xf0\xf2\x0c\x8d\xa2\xa2\x0d\x80\xab\x4b\xce\x4b\x1b\x8a\x0e\x40\xf2\xfc\x84\x9d\x38\xf7\x29\x12\xaf\xf3\x46\xf9\x00\xc7\x70\x30\xc8\x2c\x14\x0c\xc1\x5b\x72\x9f\x55\x9d\x3f\x36\x6b\x00\xd3\xc2\x61\xe9\xe9\xac\xe5\xd2\x8c\x38\xe4\xd3\xa3\x23\x3a\x0b\x27\x48\x4a\x50\x95\x1b\xd5\x01\xf5\x67\x99\xa0\x5a\x66\x09\x3a\x2b\x10\xbb\x79\xd3\x55\xd6\x32\x5b\x16\xd8\xce\x97\x91\xc0\x7b\x1b\x00\x07\xe4\xf0\x88\x4e\x7e\xf9\x81\xc2\x87\x14\x0d\x05\x2e\xfb\x30\x4e\xbb\x9a\x68\xcd\xb8\xde\xfb\x9b\xba\x44\xda\xa1\xe0\x84\xce\xb0\x38\x26\xf5\xb3\x8d\x0d\xab\xe9\x50\x9a\xd1\x18\x76\x19\x50\x77\xcd\x24\x74\x8e\xc9\x54\xdf\x5f\x75\x1b\x1b\xc7\xd1\x85\x48\x85\xcd\x02\x54\x4d\x1c\xdb\x2f\xf3\x5a\x05\xc9\xae\x17\x46\x8d\x39\xff\x4d\x0e\x8d\x3a\x8e\xee\x9b\x0e\xb4\x5f\x4e\xc8\xa5\xc5\xc0\x3a\xf7\x48\xdd\x37\x6e\x7f\x3c\xdc\x3a\xa8\x7f\x53\xe4\xfa\x88\x81\x6f\x94\xf5\xfe\x9d\xcf\x7a\x6b\x83\x5c\xf2\x06\x6b\x5d\x66\x58\xeb\xdc\xef\xb9\x9f\xaf\x8c\xff\x31\x9d\x62\xc1\x61\xca\x49\xbc\xb4\xf7\x5f\x07\x7b\x2f\x9e\x0e\x5e\xbd\x7e\x79\xf0\xf2\xe0\xcf\xaf\xf6\xf6\x61\xd1\x28\x5e\xf8\xfa\x3a\x91\xdf\xd5\xb5\xe5\x57\x41\x4b\x49\xb7\x32\x40\xa0\x8c\xa4\x8b\xde\x9e\xed\x7e\xf7\xdd\x43\xc0\x09\x62\xf5\xdb\x97\xfd\xb0\x19\xf6\x80\x50\xfb\xcd\x0c\x47\xa3\x3f\x81\x35\x94\x70\xf3\x29\x23\x82\xe5\x57\x1f\x28\x57\xd3\xa1\x9a\xf5\xeb\x39\x59\xb1\xc9\xde\x43\xb5\xaf\xba\x46\xcf\xd3\x81\x1f\x15\x03\x76\x38\x46\x4f\x2e\x1e\x12\x5a\x90\x38\xc0\x95\x39\xd0\xd8\x0f\x06\x25\x37\xdc\x17\x92\xe5\xa6\xfe\x3e\x7b\xf7\xae\x1a\x8d\xd5\x56\x9c\x38\x23\xec\x48\x32\xca\x00\xe7\xf1\xc3\x09\x89\x2e\xf8\x3a\x50\x4a\x74\x1d\x3f\x6b\xba\x1d\xef\x0e\xb0\xc2\x4c\x50\x48\x90\x7f\xec\xf9\xa0\x3e\xdc\x60\x56\xa6\x7e\x7f\xab\xf7\xd0\x68\xd2\x52\xc3\x69\x75\x32\x56\xec\xef\x14\x16\x01\x95\x72\x5a\x4b\x1f\x1d\x40\x1f\xe7\xf5\xfb\xf3\x15\x68\xe3\x64\x06\xae\x74\x3f\xc7\x8d\x65\x25\xfa\xf7\x13\x36\xdf\x46\xf5\x5e\xef\xff\xf1\x55\xc9\x0a\xd0\xea\x9e\x7e\xa1\xd8\xb0\x0c\xfb\x47\xb7\xcd\x83\xaa\x5e\x14\xe0\xf1\x89\xf2\x48\xbe\x4b\x9d\x84\x54\xc5\xaf\xdc\x87\xbf\x59\x1f\xea\x51\x33\x82\x4f\xba\x4f\xa9\x05\x3b\x3b\x98\x8a\xe7\x23\xfe\x92\x07\xdb\x9e\xc9\x22\x7a\xc7\xb5\x12\xf3\x04\xad\x6f\x6c\x50\xc6\x60\x30\x99\x0d\x47\xea\xc7\xbc\x7a\xa3\xa6\x6e\x7e\x79\xe8\xa2\x75\x94\x5f\x01\xb8\xd7\x17\x17\x26\x17\xbd\x07\xce\x88\xea\x87\x7f\xbb\xc3\xd1\xf0\x7c\x01\x32\x43\xf9\xa5\x2e\x67\x27\xd5\xb9\xe8\x02\xb1\x7b\x24\xa5\xc6\x14\xcb\x80\x12\x96\x3c\x02\xf9\x95\xf3\xe9\x94\xa6\x79\xe9\x8a\x8c\xae\x1a\x0d\x30\xfe\x03\xc7\x61\x34\x8c\x6a\xd5\xd1\xdb\x78\x64\x58\xf3\xd4\xad\x12\x60\x1b\xd7\x2d\x31\x98\x8d\x2b\xd7\xf7\x2a\x43\x25\x56\x5f\xb8\xb7\x5d\xac\xa7\xef\x42\xf1\x9a\x4a\x23\x6a\x14\xe4\x7c\xa0\x88\x56\xea\x0e\xe1\xe7\xa8\x34\x3a\xcc\xd5\x6c\x83\x56\x4e\x00\xa0\x33\x38\x56\x57\x12\xce\x66\x11\xe4\xb0\x3e\xab\xe6\x51\x40\x9d\xc3\x86\x70\x6a\x89\xd6\x30\xa4\x01\xa0\xcd\x62\x0c\xcf\xc7\x8b\x61\x02\x47\x9d\x45\x90\xf0\x9e\x31\x3e\x0d\x04\x0d\x5d\x9d\x41\xaf\xf9\x38\x55\x96\xe9\xa0\xef\xbb\x61\x39\xa8\xae\xfc\xca\x6b\x03\x66\xa8\x0c\xdf\xcd\x54\x6a\x78\x74\xf9\x45\x3f\x44\x0a\x7e\xe8\xb0\x2f\x59\x1f\x18\x66\x3a\x04\x57\xa9\xed\xed\x98\x09\x0e\xcb\xeb\xac\x54\xab\x62\x75\x84\x85\x6d\x66\xb2\xb8\x59\x32\x91\xd2\x3a\x2f\x55\x58\xac\xa3\xb0\xb4\xcd\x4c\x15\x37\x4b\x26\xd2\x6b\xce\x4a\x16\xb5\xeb\x32\x36\x64\x3a\x93\x8b\xa7\x0f\x4a\xf2\x3b\x75\x23\x39\xd5\xa7\x4a\x95\xee\x50\x4a\x14\x11\xd8\x3c\x70\x05\x36\xe8\xe6\x87\x85\xaf\xf0\x1b\x1f\x36\xe1\xc7\xf5\x35\x41\xa9\x2b\xd7\xfe\x98\xdd\x7b\x18\x6d\x3a\x1a\x64\xa9\xae\x0d\xaf\xa5\x0a\xd1\x0b\x78\x2d\x54\x1d\x77\x65\x05\x2a\x01\x15\x28\xa9\xd8\xcb\x53\xf5\xad\x99\xf5\x67\xb5\xed\x92\x4a\x46\xd3\x73\x04\x00\x85\x65\xc5\xf9\x54\xfb\x4c\xed\x55\xc2\xbe\x26\xe3\xc0\xe7\xbd\x12\xea\xad\x6e\xe8\x69\x52\x85\x7b\xcb\x1e\x20\xd3\x52\x09\x5a\x0c\x2c\xb9\xc0\x44\x7c\xff\x92\x19\x09\x31\x56\xc7\x36\x61\x65\x49\xc2\x6c\x20\x94\x96\x38\xa6\x03\x1b\x1b\x49\x79\x0a\x57\x45\xba\x7b\xc8\xce\xbe\x45\x5f\x1b\x6f\xa5\x8f\x51\x9c\x34\x14\x31\x98\x5b\xd1\xe1\x11\x4a\xca\x7c\xd1\x8d\x3f\x50\x38\x3e\x70\x31\xc2\x5a\x5d\x86\x3f\x32\xad\x01\xeb\x0f\x03\x15\x81\x83\x37\xcb\xe6\xa6\x84\x58\x26\x25\x97\x81\x4e\x25\xb7\x61\xe2\x5d\xef\xb0\xd5\xf3\x5e\xec\xf5\xb0\x41\x0d\xd1\xec\xe7\xcf\x21\x0e\x6e\xda\xd8\xa1\xd3\xb5\xc8\x76\x0e\x05\xfb\x0f\x9c\x67\xb7\x26\xa7\x6c\x11\x81\xf1\x97\xae\xc0\xd8\x7d\x8e\x73\x5e\xc6\xae\x10\x3d\x71\x37\xea\x1d\x66\x03\x9a\x0c\x18\x23\x78\x70\x7e\x0e\x10\x58\xa8\xe7\x78\x4e\x67\x79\x2e\x38\x9b\xc4\x40\x2f\xe8\x1d\x1e\xd2\xbb\xba\x02\xe3\x3e\xf9\xe5\x29\x95\xe8\xea\x8c\x52\x7a\xbe\xd4\x35\x94\x99\x6e\xd8\x30\xad\x4e\x61\xba\x07\xa5\xca\x52\x6e\x06\x6c\xb3\x4e\xa4\xe0\x20\x16\x1f\xd6\xef\x75\x13\xaf\xaf\xaf\x96\xa8\x52\x5f\x1f\xea\x72\x47\xf9\x92\x0d\x4c\xbd\x74\x8c\xd6\xf2\x09\x8f\x69\xfc\x80\xd8\x37\x6a\x1f\x8c\xc3\xc6\x86\xf3\x29\x9f\xdb\x84\x93\xe1\x48\x6e\xf0\x18\xc7\xac\x52\x7e\x25\x9d\x4c\xdb\x4b\xc0\x3a\x71\x50\xdf\xef\xed\x1e\xfc\xfc\x5a\x31\x4e\x63\x45\xa4\x81\x08\x8e\xcc\xb6\x9c\x5d\xc0\xf5\x66\x6b\xa4\x3a\xbe\x65\x9f\x10\xb7\xa8\xcd\xad\x7a\x71\xa9\xa8\x79\xce\xf8\xba\x4f\x8c\xd1\x44\x7e\xbc\x6c\xca\x93\x83\x68\x7b\xeb\x82\xca\x7e\x26\x86\x37\x4f\xf5\x1d\x6a\xc4\x61\x17\x8a\x34\x94\x90\x81\x46\x0f\xfe\xea\xd6\xa2\x11\x4c\x91\x4c\x1b\x30\x11\x29\xbd\x4c\xb9\xb5\x5a\x89\x1c\x39\xc0\xfc\x4c\xda\xd4\x09\x25\xe6\x71\x3d\x98\xaa\x0b\x5a\xea\x01\xad\x92\x87\xf4\x0d\x78\xa1\x46\xf2\xcb\x7b\xd1\xab\x30\x96\x88\xa2\x14\x62\x03\x7e\x13\x7a\x18\x6d\x5a\xd6\x02\x9f\x84\xa7\xcf\x5f\x4d\x0f\x3b\x2a\x1f\xfe\xd2\x97\x0f\xa3\xe7\x7f\xdf\x07\x27\x42\x71\x06\xbf\x23\xbc\x50\x6b\x26\xe2\xcb\x13\x92\x11\x62\x1a\xcb\x9f\xea\x5c\xcb\x5e\xdd\xb1\x13\xcf\xf0\xa0\xfc\xc6\x39\x28\x59\xba\x12\xaa\x74\xeb\x8c\x3e\x33\xba\xb8\x50\x6d\xcc\xab\xc0\xdd\x67\x08\xe2\x94\x34\xaa\xb4\xc9\x82\x06\xa2\xcf\x92\xce\x9f\x50\xa0\xe7\xcf\xff\x36\xb9\x16\xd5\x99\xdc\x09\x50\x23\x4d\xc3\xbb\xf9\xbc\x30\xa6\xa3\x3d\xd8\x60\x21\xb4\xc9\xea\xf3\x71\xad\x0b\xd6\x21\xac\xcc\xe5\x85\xf0\x27\xde\xa1\xa1\xc3\x52\x9b\xa7\x3d\xbc\x05\xaf\xc3\xe0\xb0\x2e\x41\x39\x1d\x36\xc4\x96\x2b\xae\x88\x35\xed\xe9\x09\xeb\xe4\x46\xdd\xdc\xd3\x33\x27\x5d\xee\x87\xdb\xd7\xd7\xa8\xd2\x1d\xea\x9a\xe7\xe2\x3e\x8a\x9e\x31\xfa\xbe\x6e\x3b\xd4\xa3\xd5\xd9\x6b\xa7\x81\x29\xfa\x26\xd3\x76\xff\x93\x53\x0a\xe4\x25\x3c\xe3\x31\x44\xe1\xe2\xa4\x15\x1a\x55\x09\x57\x1b\x7d\xa9\xda\x99\x56\x1f\x17\x74\x23\xeb\x45\x4b\xb1\x8c\x5d\x96\x2a\xb2\xc3\xa3\x2c\xa2\x04\xfc\xd6\x3a\x1b\x8b\x86\xa0\xe3\x30\x5f\xa4\xd9\xbc\x5d\x84\x63\xc3\xa5\x1d\xa9\x32\x38\x9f\x9b\xd7\x1a\xc5\x06\xcd\x63\x17\xd1\x6d\x50\x40\x56\xb7\xf6\x1b\x17\x0c\xb1\xda\xda\x81\xba\xb4\x13\x04\xc7\x36\xc1\x0f\x69\x41\xf7\x35\xc8\x50\x37\xb5\x25\x05\x5a\xb7\x05\x8e\xab\x37\xe3\x29\x79\xb7\x53\x4b\x96\x03\xb0\xeb\x3b\x95\x51\x9c\xee\x37\x9b\x2a\xc0\x02\x43\x8a\x27\xaa\xcb\x73\xfb\x1b\x9e\x1c\x0c\x88\x69\xe6\xfa\x5a\xff\x7c\xc4\xaa\xa4\xfa\xbb\xb4\x1e\x4e\x6c\x25\x0f\xb7\x65\x8d\x1c\xdb\xd6\xa6\x00\xb0\x2e\xaf\x40\xbd\xaa\x36\xf5\x37\x6b\x28\x88\x6a\x6d\xb7\xe1\x6d\xde\xea\x32\x70\x54\x09\x33\x09\xb6\x88\xba\x07\xca\xeb\x5c\xc1\x63\xec\x5b\x88\x14\xb5\xe2\x90\x54\x49\xb6\x09\x1c\x61\x20\xdc\xc4\xf0\x31\xa8\xe3\x9d\x46\xa7\x6d\x0b\x00\xd5\x33\xfe\xb5\x09\x3d\xc3\xeb\x2e\x1a\x5a\x53\x62\x9f\x6d\x35\xe0\x2f\xdc\x56\x35\x93\xe8\xec\x15\xd5\x08\x1b\x67\x70\x27\x54\x22\xf7\x67\x6b\x67\x89\x0b\xf4\xd9\x67\xe9\xd1\xf5\x35\x27\x3e\x02\xdc\x4d\xff\xd4\xef\xad\x9d\x9b\xf5\xf1\x11\x0c\xca\xe8\xe3\xd6\xd6\xed\xba\xa8\xce\x11\x7c\xf6\xd5\xf6\xc0\xb6\x9f\xcc\xd3\xce\xce\x17\x4c\xd2\x3e\xd8\x93\x0f\x12\x37\x36\xe0\xdf\xae\x4d\xbd\xbe\x26\x1d\x19\x7b\xfc\x65\xc5\xc8\x9c\x79\xa2\x88\x49\xd4\x25\xcc\xb9\x97\xe9\xf3\xc6\x84\x27\x13\x43\xaa\x92\x1d\x54\x6b\x1a\xdd\x75\x09\x9e\x87\x67\x70\x43\x69\x71\x88\x32\xd4\x7f\x20\x3e\xbd\x63\x7c\xb6\xcb\xf8\xee\x55\xd8\x3e\x36\x94\x39\xe1\x2e\x73\x19\xd3\xc9\x06\x24\xdd\xf8\x93\x71\x1c\x25\xb1\x65\x63\x91\x7f\xf0\x09\xbb\xfd\x7c\xb9\x4c\xcc\xca\x53\xd6\x54\xac\x71\xd6\xee\x66\xd2\x02\x80\xa6\xd3\x4e\x72\x53\x51\x4c\xd5\x59\x91\x86\xe1\x41\x80\x03\x51\x1a\x71\xd9\xc1\xb5\xab\x05\x49\xc8\x33\x63\x80\xb4\xfb\x0e\xed\x8f\xd4\x1f\x32\x85\xe2\x5c\xd7\x47\x98\x49\xdd\xee\x9b\x52\x25\x95\x2a\xb7\xd8\xd1\x24\xda\xb9\xeb\x3c\x59\xda\xa6\x12\x89\xe3\x72\x12\xc4\x56\x85\x67\xa4\x66\x15\x75\x1f\xd1\x81\x83\xba\x7f\xdb\x15\xc6\x49\x4b\xc3\xaf\xc6\xd7\xc4\x21\x39\x39\x48\xf5\xf8\x28\xb7\x2c\xb4\x6a\xae\x98\x8c\xdf\xf5\xc5\x18\xa0\xe5\x9f\x29\x83\x5f\xce\x1a\xb7\x8c\xa8\x58\x02\xf9\x95\xae\x0e\x34\x0e\x54\x8d\xa5\xae\x6e\xd3\x54\x65\x15\x11\x34\x49\x57\xd9\x74\x6e\x01\x06\x78\x6e\xe9\x5a\x48\xfe\x1b\x92\x77\xa3\xad\xc7\x8d\x99\xca\x49\x1f\xc1\xde\xc8\x83\xa5\xd0\x31\xfd\xe5\x79\x77\x57\x6d\x8b\x11\xe0\x6f\x7b\xf9\xf0\xf5\x29\x35\x99\x04\xb8\xf2\x4c\x52\x4d\xc1\x3c\x52\x2d\xab\x4c\x22\x55\xd0\x32\x85\xdc\x0a\xd5\x9a\x98\x3d\x4b\x7b\x9c\x61\x87\x87\xcc\x7e\x62\x0f\x68\x02\xb7\xda\x1e\x48\x32\xb6\x05\xde\xf5\x47\xdf\x03\xb3\x5f\xea\x7b\x3f\xc3\x88\x1b\x80\x01\xfc\x69\x18\xc2\x59\x7e\x9f\x0e\x02\xff\x4a\xb0\xce\xd1\xa9\xa9\x95\x64\x98\x69\xaf\xc1\x7e\x8a\x30\x3b\x50\xcb\xa0\x3d\xea\x99\xba\x3d\x98\x66\x01\xe7\x86\x56\x1d\xf4\x53\x8d\x4a\xa0\xa5\xb3\xa1\x98\x58\x45\x89\xbf\x09\x9a\xa9\x2e\xbe\xc3\x13\x36\x84\xe5\x40\x65\x1f\x2f\x7d\x5d\x96\xa8\x5a\x03\x94\x63\x7b\x82\xfc\x30\x33\x65\xb3\xa3\xbe\xa8\x18\x55\x7e\x4d\x1e\xbf\x77\xca\x3b\x12\x81\x81\xc9\x57\x9b\x60\x92\x9c\xa4\x90\x10\xf0\x30\x2e\xe6\x5b\x45\x38\xd7\x24\xfa\x8a\x9b\x2e\xb4\x08\x6e\x76\xa4\xe0\x66\x15\x39\xc2\x15\xbb\x7b\xb1\xd2\x03\xa3\x8d\xb8\xca\x28\xac\x6e\x35\xf6\x29\x32\xdc\x1b\x8d\x69\x9b\xc0\xf3\xb3\x8a\x1b\xc3\x49\xfb\x9d\x99\xb4\x95\xa6\xa3\xe5\xfd\x48\x18\x27\xc6\x55\x0a\x49\xb0\x04\x93\xb0\x7f\x5e\x9d\x8c\x4f\xc7\x6a\x81\xac\xf3\x2b\x13\x26\x53\x7c\x66\xf8\x3c\xd1\x4e\x01\xd6\x5d\x78\xfd\x08\x84\xa9\xa5\x03\xdb\x77\x5e\x79\x8c\x9f\xba\xa3\x65\x93\x9d\x64\x60\x78\x72\x78\x07\xb2\x7b\x57\x9a\xee\x35\x75\x3a\xaf\xaa\xbf\x47\x9d\x9b\xb8\x5a\x50\xbf\x21\xe7\x25\x4d\xab\xd2\x5f\x70\x3b\x0d\xf2\xed\x07\x42\xbe\x1d\xa5\x10\xbf\xf3\x45\xbb\xdf\xeb\xc1\x0a\x04\xdc\x26\xa7\x75\x69\xc7\x14\xbe\xbe\x12\x0a\x5f\xab\x85\xa8\x5a\x91\x5e\x9d\x5f\x46\x88\x55\x71\x3a\x9f\xfd\xbd\x9a\x82\xf1\x41\xcf\x3d\x5a\x4c\x2f\x36\x36\xcc\x4f\x6d\x9b\x80\x47\x40\xcc\x81\x47\xfd\x3d\x56\x97\xe5\x8f\x21\xa1\xc7\x0e\x2a\xce\x2f\x3b\x79\x17\x17\x97\x09\x4a\x1b\xb5\x6f\x07\x7d\xa9\xec\xdf\xfe\x63\x6d\x34\x73\x63\x63\xae\x61\x59\xd2\xd8\x83\x2a\x8f\xf2\x7c\x95\x9d\xa3\x32\xd5\xda\x84\x77\xaa\x3b\x21\xa2\xed\x2f\x60\x41\x98\xbc\x50\x57\xf6\xb7\xb7\x4b\x3e\x2b\xed\x5e\xfd\xb9\xc8\x0f\x9a\x16\x71\xd3\x83\x1a\xba\x2d\xaf\x3c\xc3\xfa\x72\x7a\xb2\x0f\xfc\xaa\x17\x5c\x99\x44\xb1\x52\x8f\xd6\xd5\x76\x0d\xd3\xba\xb6\x2e\x30\x68\xb7\xd5\xef\x4d\x47\x77\x54\xf9\x1e\x38\x1c\xd5\xca\xae\xea\x54\x38\x1d\xbf\xb9\x98\xab\xe5\x8c\x99\x99\x5d\x21\x3a\x2c\x06\xa8\x0f\xbc\x1b\xd7\x5a\x07\x00\xa0\xca\x75\x70\x2c\x78\x72\x31\x07\xab\xe0\xd7\x17\xd3\x9f\xd4\xfa\xeb\xfb\x4a\xc4\xea\xf2\x02\xb0\xe0\x40\x4e\x74\x09\x0a\x42\xad\xc7\x6a\x13\x43\x84\x7f\xe0\x66\x91\x55\xd4\xda\x11\x45\xac\x97\xd1\x2a\xa9\x23\x1a\xcd\x8e\x46\x13\xf7\x28\x76\xee\x15\xa5\x08\x3b\x91\xd3\xe1\x78\x52\x86\x3d\x9c\x0c\x8f\xab\x89\x23\x82\x57\xe7\x25\x5c\xe9\xb3\x23\x1f\x68\xb9\x1a\xe5\x5b\x9c\x55\x82\x21\x60\xc7\x19\xea\x2a\x83\x02\x59\x6e\x8e\x74\x60\x89\x5c\xe8\x41\x2e\xd4\x80\x8e\x17\x97\x7d\xfa\x43\xcf\x32\x1a\x46\xdc\x75\x06\x86\xcc\x20\x7f\x0f\x25\x4b\x9d\xd4\xe5\x04\x11\xd9\xe5\x62\x72\xaa\x58\x15\x60\x3a\xf8\x2d\xbf\x23\x92\x70\x98\xc5\xb7\xba\xa8\x9a\x19\x37\x02\x73\xc4\xbf\x43\x58\xb9\x21\xbe\x75\x9e\xac\xd1\xb8\xfd\xe1\x8a\xba\x30\x1c\x7a\x14\x36\x36\x42\x7c\xdc\x91\x01\xe9\x21\x82\xda\x11\x14\xa1\x67\xfc\x21\xbb\xf5\xf8\xe8\xa7\x25\xd0\xac\x80\xb3\xe5\xca\x40\xe8\x3e\x99\x25\x85\x1d\x0e\xb2\x09\xa9\xe5\x92\xb1\x0f\xb0\x8d\xe2\xd3\x25\x60\x5d\xb8\x30\x59\x4d\xb2\x36\x5c\xce\x08\xd8\xc9\x70\x47\xf4\xd6\x9e\x72\x31\x5c\x77\x6b\x5b\x6b\xd9\x26\xdd\x91\x56\xb8\x0a\x48\xad\x88\xcf\xa4\xae\xb1\xaa\x52\x45\x8b\x1e\x46\xe2\xcc\xbb\x91\x2a\xc6\x3f\x4b\xd4\xd5\x5f\x4d\xf5\x02\xef\x2e\xc1\x41\x8a\xa9\x89\xb3\xf8\xab\xf6\xcb\xef\x57\x3e\x6b\x8b\xd7\xd0\xe7\xd5\xe2\x6c\x16\x02\x8a\xbc\x56\xb5\x8a\xc8\xf9\x1c\x65\x06\xbe\xf6\x99\x81\x16\xb5\x89\x6f\x6e\xab\x36\xf1\xcd\x8d\xd5\x26\xbe\xbd\x99\xd6\xc4\xb7\x37\x51\x9a\xf8\x76\x75\x9d\x89\x6f\x63\x2a\x13\xd1\xd0\xa9\xdb\xe9\xd0\xa9\x69\x4b\xcd\xe1\xa0\xcd\xea\x9e\xda\x53\xd7\xd6\x8f\x8b\x1a\xad\xe1\xf4\x81\x76\x3e\x3b\x7f\xb2\xf8\x28\x14\xe3\x19\xc8\x06\x20\xdb\x7e\x7c\xb5\xec\x99\x64\x05\xdf\x11\x0e\x8d\x41\xba\x09\xe5\x4f\x16\x1f\xc9\x4b\x11\x01\x81\xcc\x13\x92\xb4\x74\x19\xcc\x98\x6d\xa1\x31\x44\x13\x7b\xeb\x46\x41\xc3\x9f\x8a\xcb\x78\x3f\x1e\xa9\xd5\x15\x8b\x83\x26\x02\x2f\xb1\xb7\x79\xec\xd4\x05\xf9\xbd\x42\x17\xb0\xa0\x68\xac\x9b\x74\x2a\x7c\xac\x4f\x27\x05\xde\x5b\x5f\x57\xff\xea\x63\x75\x9c\x52\x46\x76\x99\x10\xa1\x91\x11\xbb\x84\xb5\x68\x43\x40\x50\x80\x40\xb8\x8a\x4e\xfe\x03\xc5\x13\x31\x51\xa5\x9e\x1b\x50\xa2\x86\x6e\xd1\x83\xbc\x45\xa5\xb3\x5d\x58\x37\x31\x1f\x17\x79\xdf\xcc\x86\x4e\x10\xaf\xf4\xb9\xd9\x39\x1d\x50\x15\x69\x55\xc4\x60\xc1\x70\xe2\x75\x1b\x72\x56\xc7\x1f\xa4\xe4\xdb\x85\x1a\x75\x6c\x14\xed\xe8\xfb\xa3\xd9\x15\x7e\xa8\xd4\x3e\x4c\xa2\xdf\x37\x14\xa2\x23\xbc\xe9\xdf\x92\x74\x17\x14\xb4\xa3\xc2\x92\xec\x36\x14\x0e\xfb\xbd\x82\xd2\x88\xaa\x57\x8c\x85\x13\x31\x0f\x3e\xe8\x75\x7d\x99\x4b\x2c\x96\x05\xbb\x20\xec\x85\x3c\x31\x3d\x33\x1a\x25\xe7\xd9\xa9\x89\xf9\xb7\xee\xc4\x13\xb0\x97\xea\x03\x05\x86\x77\xea\x7e\x7a\x1a\xec\x58\x16\xfe\x80\xf7\xad\x2a\xab\xa3\xeb\x43\x49\x38\xfc\xf2\x01\x63\xdb\x57\x9b\x40\xbd\x3d\xa8\x30\x32\x29\xee\x94\xf4\xbd\xf0\x94\xf4\xa0\x0a\x25\xd0\x2f\x22\x59\x68\x13\xa2\x2a\x6d\x69\xa7\xdf\xa0\x9c\x98\x3b\x12\x9f\xab\xca\xdc\x31\x7d\x2b\x22\x9d\x21\x72\x14\xdc\x14\x2d\x0c\x20\x98\x4a\x00\xad\x69\x8c\x33\xbd\xec\x2c\xd2\x9b\xe1\x5a\x90\x11\x2e\x06\xca\x58\xaa\x85\x86\x39\x0d\x55\x85\xe2\x4d\xa0\xcb\xca\x62\x4c\x4a\x36\xe8\xe0\x2e\x3a\x72\x1a\x6c\xe9\xec\xdd\x02\x7b\xd9\x3c\x0a\xb6\x29\x18\x69\x47\xb8\x83\xd3\xf1\x96\xc2\xc0\x15\x22\x6a\x6a\x4f\x30\x03\x9d\x0c\xdb\xc8\x74\x5c\xd1\xbb\xec\x32\x38\xb3\x6b\xea\x6c\x8e\xb6\xfb\x70\x66\x7c\xf4\x3b\xee\x5f\x07\x02\x64\xdc\x6d\x8b\x71\x2a\x03\x9e\x7f\xdd\xd1\xd7\x36\x55\x08\xc5\x6d\x35\x2e\x3a\xfe\x64\xfb\xea\xa1\x56\x84\x18\x1a\xce\x33\x51\x9b\xa9\x2c\x3e\xce\xba\xa1\x2c\xe7\xde\x25\xda\x44\x3b\x70\x88\xe3\x84\x4e\xc4\xdb\x02\x78\xbe\x95\x81\x3b\x41\xfb\xa0\xa1\xd4\xfa\xba\x53\x6c\x59\x28\x1e\x38\x7a\xe4\x3e\xb6\xed\xf7\x74\x95\x72\x83\xea\x0b\xd8\x05\x5c\xec\xb8\x37\xf1\x4e\xeb\x9e\xe2\xfa\x92\x86\x11\xd1\xd5\x95\x3e\x77\x5a\xa8\x1a\x16\x36\x64\x11\xd7\xfd\xe9\xec\x02\xe4\x3d\xe8\xeb\x74\x6e\x34\xa0\x3d\x7a\x19\xa5\x86\x1b\x1b\xeb\x58\x58\x53\xc5\x15\x29\x22\x88\x00\xb0\xcd\x15\x48\x63\x4e\x1e\x79\x3e\x2e\x04\x8d\xc4\x66\x56\x27\x94\xb8\x4d\x60\x4c\x57\x5a\xba\xea\x5c\x6b\x59\xb8\xc6\xff\x41\xb0\x6c\xa1\x09\x35\x7f\xea\x4e\x38\xbf\x6c\xdd\x91\xeb\x91\x83\x54\xd2\x40\x00\x69\xa1\x80\x4b\x6a\xea\x3b\x0f\x91\x71\xbd\x07\xc9\x1a\x93\x38\xb6\x16\x88\x7f\xb5\x8e\x0d\x56\xd6\x3c\x38\xc3\x69\x53\xbf\x1b\x4e\xea\x80\x21\x92\x8b\xd2\x5b\xaf\xe3\xd1\xc7\xc4\x42\xbf\x12\x2b\x7d\xa9\x95\x02\x3f\x75\xb5\xae\xbc\x54\x6f\xbf\x42\xb1\x09\x75\x3a\xcf\xde\x55\xee\x24\xa9\xf1\xc4\x09\xda\x9d\xb6\x4f\x8f\x82\x6d\x9d\x9c\x70\xa5\xec\x62\x0b\xd0\x72\x6a\x99\x10\x04\x85\xf0\x8f\x4c\xae\x0c\xdf\xcf\x50\x86\xac\xb7\x33\x74\x57\x11\x8e\x6e\xa9\x8f\x4f\x59\x75\xe2\x04\x45\x12\x4d\xfb\xc5\x4c\x11\x7a\xb5\xa1\x0c\x0a\x6b\xe3\x63\xb5\xe4\xf9\x72\x35\x74\xdf\xcf\xde\x8a\xfe\xbd\xc3\xfe\xbb\xe6\x68\x85\x7b\xa6\x47\xe2\xad\x3d\xda\xc9\x1b\x02\xc8\x6a\x1f\x90\x09\x46\x80\xc3\xc2\x91\x54\xe2\xe3\xc6\xc6\xc7\x43\x8b\x04\x7a\x5e\x8b\xb9\x9b\x22\x10\xc1\x34\x41\xfb\x8f\x69\x1d\x7c\x2c\x28\x97\xec\xd9\x7a\x4e\x7d\x20\x95\x8f\x0c\xc3\x62\x86\x77\x68\xdf\x1b\xf0\x2a\xcc\xcc\xac\xd0\x0a\xf8\x84\xc8\xcc\x63\x54\xf0\x32\x7f\xe2\xb8\xef\x6e\x62\x4d\xdc\x15\xce\x6a\xf9\xb8\xb1\x73\xf0\xde\xab\x3a\x72\x11\x0a\x41\x8d\xc2\x88\xbe\xc2\x70\x46\x2e\x5a\xea\xaf\xda\xa1\xb7\x64\x1b\xbd\xce\x3c\x43\xee\x2b\x7f\xbf\xf5\x3a\x08\x31\x91\x6f\x33\x70\xd4\x8e\x91\x50\xe0\xf2\x7d\x9b\x3f\xdc\xb6\x4c\xdf\x5b\x9f\xe9\x6b\x37\x65\x70\x8d\x11\x86\xa3\x51\xa8\xc4\xf5\x69\x2a\xb2\x56\x98\x7a\x23\x3d\x59\x5b\x6c\x65\x65\xd9\xa8\xfa\xd9\xcd\x54\x9c\xe3\x55\x44\x74\x96\x2d\x7a\x37\x54\x76\x16\x05\xef\x46\xe3\x39\x8e\x72\x44\xed\xf9\x9f\x70\x62\x3f\x71\x5e\xe3\x8a\xcd\xab\x4d\x6d\x6b\xd9\x3b\xd1\x8c\x5e\x61\x72\xe3\x50\x37\xd5\x91\x0e\x11\x4f\x28\x4a\x87\xa3\x03\xda\xd2\x0d\x7a\xb2\xf2\xc1\xd1\x2a\xcc\xa2\xef\x18\x2b\x42\xe6\xf0\x0d\xf0\xe7\x0c\x5c\x42\x4f\x16\x43\x3c\xc8\x28\x2a\xb1\x38\xc6\x74\x1d\xb9\x29\x57\xea\xa4\xbe\x8d\xc8\x19\xc0\xc0\x72\x32\xcd\xdb\x6b\x10\x96\x08\x6b\x62\x15\xd9\xb0\x75\x46\x9c\x30\x2d\xe9\xcb\x34\xeb\x66\x62\xe0\x55\x52\xa1\xf5\xda\x73\x4a\x43\x53\xba\xc7\x25\xe5\x80\x75\x9d\xc1\x09\x3e\x28\x79\xcb\xa4\x41\x04\xb4\xbe\xe8\x67\x89\x61\x0f\xcd\x17\x72\x92\x06\x1f\xca\xe4\xdf\x98\x95\xdc\x27\x20\xd3\xe3\xc5\x89\xf8\xa4\x77\x94\xe9\x50\xa0\x34\x1b\xd9\x3c\x87\xcc\x5b\x39\x93\x7f\xe4\xad\xe2\xb4\xaa\xee\xff\x5b\x3f\xbf\xb1\xf5\xd3\x34\xe7\xae\xb6\x74\x38\xe7\xb1\xd5\x15\xa8\x00\xeb\xde\xa6\x00\x70\x9d\x3a\xab\x07\x42\x91\x7d\x17\x30\xa3\x90\x0a\xe1\x48\xad\x40\xc6\x91\xb8\x30\x0b\xdb\xc9\x31\x56\x9b\xa5\x93\xe8\xb7\xd5\xf5\x71\xa8\x6b\x32\x3e\x5c\xb4\x68\xf7\x2d\x87\x8a\x85\x4c\x70\x6c\x08\x28\x53\xbc\xea\x21\x0a\x84\x30\x81\x82\x54\x1f\xd3\x9b\x8a\x78\xae\x22\xb9\x92\x8e\x96\x88\x45\x09\x9e\x43\x1d\x59\x20\xf1\xa6\x64\x13\x45\xe8\xc2\xc6\x28\x13\xfa\x7d\x1d\xa6\x2c\x54\x01\x8b\xbe\x7f\x9b\xb7\xea\xbb\x76\xb9\xd4\xa6\x92\x9c\x7a\x7c\x7c\x70\xb3\xc7\xc7\x07\xf1\xc7\xc7\xe4\xa3\xe2\x83\xd8\xa3\x62\xfc\xa9\xf2\x81\xf3\x54\xb9\xd2\x8b\xd7\x4c\x28\xdd\x4c\x21\xd2\x0f\xb3\x04\xfa\x4a\x16\x70\x89\x11\x20\x77\xbd\xcf\xa6\x55\x73\x95\xc0\x40\xea\xdf\x7c\x51\x64\x3f\x28\x52\xf2\xb1\x42\xc3\x05\xba\xf7\x70\x5b\x57\xf3\x09\xee\x0a\x5d\x0c\x9c\x18\x64\x81\x4f\x50\xe3\xa8\xc5\xc6\x74\x32\xf6\x03\xc2\x9f\xe8\x0e\x78\x47\x12\x5b\x0c\x8a\x1c\x8e\xb7\x76\x8e\x5c\xff\xa8\x1e\x05\x42\xac\xf1\xea\xaa\x46\xe6\xf4\xb4\x79\x64\x62\x7c\x5b\xeb\x78\xab\xb5\xe1\xf7\x36\xc9\x4b\x61\xf6\x0a\xfb\x51\xa8\x18\xb7\xef\xc8\x1b\xe8\xbb\x7c\x4e\x0d\xf7\x7f\x59\x65\x0f\xdf\x56\xa3\xc3\xaa\x11\xbb\xdb\x47\xab\xd2\x72\x94\x2d\xd2\x9e\xed\xa5\xde\x84\xad\xe2\xad\x73\x97\xaf\x43\x80\xc8\xd2\x76\x9d\xce\x58\xf5\xe5\xd2\x55\x64\xfe\xfe\xf5\xcb\xff\xde\x7b\x31\xd8\x7b\xfd\xfa\xe5\xeb\x32\xa3\xea\x38\x98\xdc\xda\xc9\x70\x0a\xfa\xba\xc7\x15\xe8\xd0\xa3\x36\x7c\x37\x73\x2b\x95\x85\xe5\x47\xdb\x82\x79\x77\x81\xc1\x06\x07\x51\x97\x36\x77\xa7\x10\x65\x94\xd8\x57\xd5\x95\x67\x7c\x9a\x91\x8e\xf8\xbc\x69\xf4\x8a\xf3\x5b\x54\x86\x6a\x3a\xd8\x5e\xfe\x7c\x30\x78\xf9\xfd\xe0\xf5\xee\x8b\x3f\xec\x0d\xf6\xfe\xeb\xc9\xde\xab\x83\x67\x2f\x5f\x94\x19\x9a\xbf\xaf\xcd\x2e\x16\x6b\xc0\x7c\xda\xcb\xee\xde\xf3\x57\x07\x7f\x06\xf5\x91\x4f\x51\xcf\x1f\x93\x61\x6c\xb0\xa3\x38\xbd\x49\x71\x3e\x12\x90\xe2\x6e\x34\xa6\xb0\xbd\x10\xad\x88\x02\xd4\x73\x5a\x1a\x09\xbf\x35\x11\x47\x34\x09\xc8\x6f\x6e\x6e\x03\x60\x91\x2c\x02\x2c\x8a\x2b\xf6\xe1\x21\xdd\xa1\x60\x98\x7b\x9f\xbf\x5c\x59\xa7\x03\x29\x10\xbf\xf2\x69\xf7\x20\x0a\xa4\xc0\x45\xe0\x1d\x35\x3a\x7c\x73\x2c\x80\xa0\xf6\xbf\xf2\x28\xe2\x77\x25\x6a\x46\x10\x5f\x95\xb9\x8b\x0b\xd4\xbf\x5d\x1c\x52\x13\xfe\xbd\x4c\x87\x3c\xf6\x2c\x57\x01\x7d\x8a\xf2\x10\xdc\x71\x30\xdf\x5a\xb1\xc2\x05\x04\x7f\x44\xbd\xc5\xc4\xad\x1f\x12\x68\x2f\xcd\xc8\xda\x97\x1c\xf8\xde\x71\xfb\x63\x10\xe4\xf1\x75\xcd\x08\x41\x4e\xea\x3b\x84\x41\xad\x15\xac\xc3\x04\xcf\x8e\x3c\x3d\x61\x8c\x8c\xb9\x09\x43\x21\xab\xaa\x7d\xf7\x16\xe4\x87\x6f\x5d\x38\xd9\xe9\xda\x60\x16\x98\x7f\x7d\xcd\xbb\xd4\xa4\xe4\xd1\x47\x8e\x4e\xf6\xfc\xa2\x5e\xac\x9d\x0f\xeb\x9a\xa3\x4f\xda\x3a\xd7\x16\x33\x4e\xe3\x55\x8c\x15\xfe\xab\xc0\x2b\x63\xbf\xea\x7a\x6c\x22\xdd\xda\xd6\xbe\x78\xbc\x99\x3f\x9f\x9d\xfb\xe3\x74\xc3\x65\x6f\xde\x91\x8d\xc2\x95\x34\x1e\xdd\xda\x31\xeb\x90\xa3\x6a\x63\x22\xbc\x7d\x48\x09\x76\x7d\x36\x3e\x0d\x3c\xf8\xac\xa0\x07\xd6\xd0\xf8\xb6\xdf\xf0\xb6\x2f\x9f\x8f\x36\x1a\x59\x25\xdb\xe1\xa2\x70\x0a\xc7\xd6\x85\x47\x07\x52\xc3\x3f\x87\x57\xd4\xba\x0a\xea\xb9\x0d\xe9\x81\x12\xdc\x4a\xe9\x5d\x7d\xb9\x99\x4e\x1e\xa3\x4f\x71\xcc\xd4\xe9\xd3\xb8\xea\xf9\xb7\x50\x7b\x94\xc8\x74\x91\x94\x5a\x3f\x40\xb1\x6e\xac\x8c\x0a\xcd\x60\x74\xa2\xb0\xfa\xd9\x49\xa4\xfa\xeb\xeb\x6d\x3f\xb8\x90\xd6\x7f\xe4\x08\x4f\xde\x5a\x9d\x9d\xd0\x85\xdc\xe4\xa3\xd2\x5a\xee\x2d\x5e\x05\xe5\x52\x1a\x75\xbb\x8a\x62\x16\xbe\x3d\x61\x80\x1b\x4c\xb2\x5b\xb7\x23\x57\x16\x33\xa7\xab\x72\x88\x69\x55\xfa\xd6\xf0\xef\x6d\x2e\x0a\x57\xf4\x41\xf8\x4b\x7b\x7c\xbd\xa1\x2b\xe7\x04\x27\x11\x89\x85\xd0\x66\xd2\xb5\x9a\x85\x24\x3a\x7c\xd2\xcf\xca\x24\xcb\x0a\x82\xb6\x77\x63\x40\x58\xba\xb2\x8a\x24\xa9\xb2\x21\x08\x59\x54\xb6\x44\x47\xbf\xa9\x9f\x38\xbb\xa4\x23\xaa\xbb\x26\x33\x46\x17\x62\x9d\xe3\xa8\x33\xfa\x9d\x93\x61\x8b\x08\xc1\x35\x55\x63\x9a\x7e\x8f\x0e\x3b\xed\xc6\xb1\x89\xd0\x88\x08\xda\x32\xff\xe6\x98\xb3\xe0\xc2\xa5\x79\x20\xfe\x45\xbf\x52\xe0\x55\x4a\x90\x09\xdb\x07\x00\x3e\x1c\x1f\xe5\xcb\x95\xfa\xd0\xbe\xf3\x29\x5e\xca\x2f\x6e\x3c\xa3\x2a\x48\xc7\x79\xaa\x9b\x32\x9b\xc5\x8e\x2b\x5b\xd5\x70\x9c\x18\xff\xbe\xda\xee\x97\xf5\xb7\x78\xbf\x6c\x35\xb6\x71\x9d\x41\xba\x09\x77\x14\x21\xa6\x49\x78\xa3\xfe\xfe\x69\xbc\x38\xd3\xa1\x5c\x22\x60\x22\xfb\x93\x0d\x78\x54\x75\xaf\xe2\x81\xba\x22\x06\xb1\x75\x12\x38\x76\xf1\x0c\x68\xfa\xd7\x0e\x4d\x4f\x8a\x89\xbf\x89\x89\x89\x5b\x69\xfb\xb7\x4d\xb4\xfd\x97\x77\x8b\xda\x72\x9a\x7c\x9b\x3e\x4d\x90\x0a\xd3\x7e\x8b\x3a\x54\xd5\x99\x1a\x98\x82\x37\x35\x16\x71\x41\x84\x58\x3f\x5d\xca\xcd\x67\xde\x96\x5f\xbd\x7d\x27\xbb\x58\x40\xe6\xd2\xf3\x4b\xcc\x1f\x2f\xba\x57\x6d\x73\xc8\x0b\xbb\x4c\x7a\xe4\x6d\xb2\x26\x5a\xe9\x69\x00\x42\x1b\x4b\xad\x1c\x19\x61\xd8\x7a\x13\xd0\x19\xa8\xc5\x2f\xfc\xc6\x87\x4f\xfb\xa4\xcf\x85\x2a\x90\x0e\x28\x7b\x0b\x00\x96\xf3\x64\xb8\xe8\xc4\x9d\x79\x93\xde\x7f\x80\x8f\xd6\x14\xaa\x3d\x74\x62\xee\x4c\x8b\x3a\x8e\x20\xb8\x73\x17\x9e\x5a\x05\x0c\x55\x89\xf9\xcb\x22\xb6\x4d\x64\x2f\xa3\x67\x71\xf0\x92\xec\x2f\x5e\x59\x43\xe4\xbc\xf5\xef\xbd\xc1\x76\x8b\xcc\x50\xea\x65\x5c\x03\xc4\xab\x8c\xbc\x69\x07\x35\x7a\x8f\x9d\xf1\x0a\xa7\xb3\xc5\xf8\xf4\xd2\xed\x48\xa4\x4e\xba\x52\x84\xa8\x9a\x4a\x1d\x00\xdb\x72\xbc\xd1\x60\xbb\xba\x9a\xa6\xe1\xa3\x96\x0b\x6d\xfa\xe3\x41\xf2\x45\x69\xb5\x2a\xdb\x2b\x73\xc9\x43\x63\x7d\x2e\x68\xba\x4a\xa1\xac\xa3\x68\x43\xdc\x76\x24\x7c\x07\x52\xb9\x9b\x99\x51\xa6\xc1\xad\x2b\x8e\xc7\x70\x97\x31\x89\x70\xdf\x7b\xdd\x42\xee\xf6\x73\x0a\x80\xe0\x50\x11\x15\xd8\xc9\x46\x3f\x37\x68\xc2\x80\x90\x20\x91\x9c\xe8\xda\x44\x95\xaa\x7f\x97\x3b\xcb\x60\xbb\x77\xce\x87\xf3\xba\xfa\x7e\x32\x1b\x0a\xf1\x98\x5e\x2a\x70\xab\xce\x37\x6d\x5d\x81\xdb\x67\x4b\xc3\x46\x55\x2b\xa2\x06\x44\x22\x6a\x13\xc1\x28\xbe\x09\xd1\xa0\x51\x40\x6e\xcb\x96\x6f\x40\x6e\x31\x7b\xf3\x66\x52\x25\x31\x8b\x50\xc1\xf5\x70\x2c\x1a\xea\xd7\x27\x4c\x9a\xea\xbb\x4e\xdf\x6c\x49\x79\x8c\xfd\x58\xc5\x50\x33\x62\x28\x0b\xe8\x55\xd2\x7e\x91\x60\xe7\x02\x3a\xb2\xfa\x5d\x3c\x32\x25\x98\xf1\xe8\x0d\xe0\x97\x74\xa0\xf4\x39\x1c\x26\xad\x16\x30\x36\x64\x40\xbf\x74\x18\xd0\xc4\x9b\x4d\x84\xef\x55\x07\x81\x09\xe2\xda\x55\x1f\xc4\x0e\xcd\x6d\x9a\xe2\x65\x8c\xb1\xef\x62\x78\xde\xc1\x79\xb5\xce\x53\x60\x35\x53\x12\xbc\x8b\x92\x07\x0c\x98\x29\x7c\x6a\xcd\xfb\x4e\xf6\x6b\x34\x3c\x12\xb9\x31\x77\x1a\xbe\xa2\x75\xaa\x01\x7a\x7b\x15\xb9\xda\x13\x98\xc7\x55\xb0\x15\x96\xd0\x01\x1b\xd6\x10\xe7\x36\x81\x59\x50\x2d\xc1\x67\x05\x97\xeb\x93\x84\x9d\xbe\x96\x85\x76\x5b\xc1\x3e\x59\xc8\xe3\x5f\xbe\x9a\x1d\x33\xd5\x41\x31\xa6\xc7\xf5\x2b\x35\x47\xe3\xe9\x9b\x9e\x9a\x03\xb0\x85\xd8\xaf\x16\x8b\x09\x3b\xd6\x18\x8e\x5e\x4e\x15\x53\x06\xe6\x19\x9c\xdc\x03\xb1\xbe\x44\xdb\x19\x1b\xaf\x8c\x86\xe2\xe7\x6f\x01\xc9\x29\x3c\xfe\x09\x35\x6f\x33\xd5\x11\x2b\x04\x30\x4c\xb3\x1a\xe0\x6a\x75\x20\xb5\x70\xfd\x8b\x44\x1f\x68\x32\x39\x60\xf7\x6a\xbd\x04\xd6\xde\xc1\x53\xc5\x71\x05\x5b\x24\x03\x6a\x53\xa0\xc7\x19\xce\xdd\x05\x73\x91\x4e\x06\x49\x59\x5e\xb0\x2b\x1b\x2f\x93\x12\x73\x70\x3e\x39\x55\xdc\xe9\xa5\x9f\xaf\x93\x81\x8e\x59\xcb\x79\x09\xe2\x68\x67\x78\x52\x73\xed\x74\xc5\xca\x84\x39\x25\xf3\x17\xf3\xe1\x54\x84\xfa\xd1\x5e\x70\xbc\xf0\x34\x8d\x74\x14\x94\xc2\x3e\xab\x38\xe6\x46\xb1\x62\x6e\xfe\x28\x2f\xfc\x92\xdc\x4c\xdc\xf2\x8f\x20\x58\xf9\xd5\x9c\x96\x34\x89\xa9\x6f\xf1\x22\xdf\xfc\x82\x9e\xf0\x39\xe2\xfb\xc9\x88\x3c\xb4\xa7\x2e\xfa\xdf\x44\xee\xf9\x0d\xd7\xf5\x6f\xe2\xb7\xf5\xe8\x19\xf9\xad\x7f\x46\x1e\xa7\x85\x07\x5f\xa1\x40\x25\x10\x1c\xcc\x52\xb0\x33\x09\x75\x17\x22\xf1\x88\xce\x00\xec\x77\x71\xf1\xc5\x53\x01\xd2\x76\xeb\x13\x3e\x19\xe0\x68\xc2\x24\x2d\x7a\xee\xf1\x6c\x14\xb3\xf9\xc8\x35\x97\x06\x9b\xb4\x1d\xb4\x4c\x7b\xa0\x95\x9c\x6b\x90\xb8\x6d\x17\x6e\x33\x82\x90\xb9\x19\x68\xa9\x27\x1a\xf7\x00\x4d\x3a\xc3\x69\x8c\x3c\xb0\xef\x8d\xf5\x9d\x91\xd1\xbb\xcd\xd8\x3d\x7e\x2e\x82\x15\xe6\xe4\x84\x1a\x31\x86\xc7\xbf\x2b\xfe\x2d\xab\x64\xeb\x48\x68\x4a\x1b\x50\xef\x14\x4e\x25\x26\xfd\x81\x9b\x9e\xf7\x4d\xed\xa0\xc7\xbc\xb1\xb1\xee\xf4\xc8\xb4\xb6\xb5\xf3\xef\xf4\x6b\x19\xda\xaf\x61\xb2\xba\x64\xa8\x7d\x3f\x0b\xb4\x86\x99\x11\x11\x63\xa1\x59\x93\x7c\xf5\xe1\x27\x05\x5e\xf6\x8e\xea\x66\xa2\x6e\x31\x0e\x26\x03\x14\x9e\x65\x79\xdb\x58\x8b\xf4\xcb\xe0\x12\x8b\xe6\x8c\x12\xa2\x70\xfa\xf0\x4c\x65\xef\x8b\x5c\x6b\x82\xa3\x5f\x55\xf4\x1f\xf9\x64\x4b\xee\x62\x3b\x70\xc9\xac\xa1\xb4\x70\x0b\xd6\x3d\x9e\xcd\x26\x9d\x70\xf9\x81\x52\x98\xaa\x76\xc4\xda\xfc\x96\x39\xb1\x8c\x9e\x57\xa8\x4b\xfe\x9d\x8b\x94\x01\x7f\xd3\xbc\x68\xb4\x4a\xa9\x07\x48\x49\x37\x99\xb5\xc2\x46\x1d\x92\xf3\xa7\xab\x62\xb7\x3c\x53\x60\xb9\xf1\x2f\x49\xfa\x3a\x79\xdf\x7c\x3b\x8a\xe4\xce\x36\x9e\xcb\x28\x45\xb4\xe1\x1d\x80\xa5\xdd\x64\x77\xb2\x2e\xa4\xb0\xe4\xae\x16\x85\xde\x41\xda\x50\x91\xcb\x9b\xc5\xc2\xdf\x8a\xef\xd3\xde\x9c\x85\x10\xcd\xa5\xd8\x62\x1d\xfc\xbf\xfd\x17\xdb\x7f\xee\xc6\xf3\xbb\xde\x30\xae\xde\x50\xc8\xe1\xa5\x3a\xc1\xdc\x7c\xdf\x39\x1d\xac\xeb\x1d\xbf\x1d\x2b\xb1\x9c\xdd\x65\x03\x26\xa7\xa5\x1f\xf6\xa0\x5a\xa5\x95\xe4\x21\xe7\xb7\x9a\xea\x55\xbc\x39\x13\x0c\x34\x68\x51\x7a\x2d\x92\xa1\x10\xbc\xe6\xd7\xc9\x95\x63\xa4\x02\x6d\x32\xee\xd0\x4a\xd1\x0f\x2f\x07\x4c\x51\xdd\x94\xae\xab\x26\xd4\xc1\x4b\x17\xaf\xb5\x5d\x37\x36\x8d\x88\xa0\x8a\x8a\x8f\x63\x13\xc5\x40\x55\x76\x41\xf6\x53\xfc\x93\x83\x32\x35\x11\x55\x8a\xc2\xa5\xe9\xe2\x4d\x7b\x61\x19\x47\xad\x32\x50\x52\x94\x66\x22\xa8\xe8\xb6\xc2\x44\xfa\x60\x9c\xfa\xda\xa4\x67\x35\x02\xa0\x77\xb1\xdb\x8c\xbf\xd7\xc3\xe1\x14\xef\xf4\x08\xd2\xca\xfa\xfc\x6a\xc7\x71\xfb\x34\x2e\x9d\xa5\x10\x79\x7d\xb8\x8b\x95\x70\x33\xa2\xec\xad\x19\x68\xa8\x69\x05\x08\x4c\xcc\x44\xc8\x42\xfe\x7c\x0a\xf5\x3c\x3d\xb6\x8a\xe7\xb8\xcd\x44\x7e\x8e\xf3\xf3\xb6\xb3\xe8\x77\xa8\xe7\xf5\xfa\x36\xdb\x4f\x44\x2a\xf1\x00\x84\x22\x9e\x76\xe4\x43\x08\x1f\x8f\xa7\xc3\xf9\xe5\x7e\x35\x9c\xab\x51\xc4\x31\x41\xdd\x3c\x08\xb7\x17\xd0\x25\xa3\x22\x89\x33\x09\x58\x9a\xc5\x98\x1c\xae\x4f\xec\x56\x31\x9b\x70\xa0\xbe\x10\x19\x72\x98\x80\xd5\x2a\x94\x4f\x11\x87\x00\xcc\x68\xfc\xe9\x8a\xb6\x76\xf2\x62\x3e\x7e\x73\xb6\x22\xf8\xe6\x0e\x55\xfe\x9a\x6e\x20\xba\x1d\x0e\xc4\x2c\x99\x3e\x83\x03\xd7\xcf\x25\x4c\x5b\xb1\x22\x26\x93\xd5\x3c\x75\x3b\x68\xee\x69\x2b\x79\xb4\xbd\x12\x55\x6b\xd8\x28\xea\xbe\xe4\x4c\xb5\x3b\x2d\xc5\x64\xf6\xa1\x38\x53\xed\xb1\x17\x92\xf1\xa8\x50\xff\x3d\x43\x0c\xab\xda\xe7\xfb\x11\xd5\xd9\x07\x75\x0f\xa4\x22\xda\x9d\xe0\xec\xc3\xf2\x26\x0b\x56\xb5\x50\xaa\x32\x9b\xcf\x87\x8b\xb3\xee\xe9\x64\x36\x9b\x77\x3a\x50\xe1\x96\x4a\xcc\xef\x3f\x40\x80\xe6\x39\x52\x00\xc0\xbe\xb2\xfe\xab\x1e\x58\x8d\xf9\x58\x0f\xab\x82\x78\xb8\xed\xfa\x1b\x89\x2c\x7b\x55\x6c\x73\x87\x06\x61\x69\x8d\x86\xeb\x47\xed\x25\x61\xf0\x00\x15\x4d\x09\xd4\xef\x15\x1e\x65\xe8\x41\x92\x83\x91\x0f\x38\x14\xc0\xaf\xee\x25\xf9\xd7\x96\xfa\xfd\x6a\x52\xbc\xf6\xe8\xff\x6d\x82\xbb\xa8\x08\xec\xf7\xbe\x08\xec\x00\xa7\x9d\xc2\x9d\xef\xd3\xa4\xfb\x0e\xdd\x11\x82\xa4\x4d\xb4\x3a\xe4\xef\x27\xe4\x3d\x8a\x92\x08\xb4\xc5\x4b\x69\x32\x68\x7b\x9f\xfd\x33\xbd\xd4\xee\xb4\x40\xd7\x3e\xe3\x20\x28\xc2\xed\xac\x2d\xca\x60\xd2\x9f\xb9\xf0\xbf\x65\x81\xe9\x2e\xa9\xb6\xf4\xdb\x8b\x73\x5d\x68\xe9\x3c\xfe\x48\xbf\xee\x04\xb0\x74\x5c\x91\x6a\x1c\xdd\x5e\xb7\xf4\xd4\x81\x95\xb4\x47\xa6\x3b\xfd\x76\x72\x5a\xbb\xef\x42\xdf\x6c\x14\xdc\xb2\xe9\xc1\x70\xe0\xdc\x31\xf1\xba\xa1\x4d\x76\x69\x2d\x09\x25\x57\xf4\xf7\x02\xff\xa2\xb7\x96\xeb\xeb\x2b\x0e\xee\x40\xe2\x40\xf4\xdd\x42\xbf\xaf\xaf\xfd\x31\x82\x5a\x69\xb9\x20\x18\xfd\x96\x60\x72\xc5\xf9\xb3\x23\xab\xe6\x24\xfb\x9e\x03\xa6\xbc\x80\x9a\xfa\xad\x07\xd2\xfa\xd7\x02\x73\x8e\x43\xf4\x72\x25\x73\x8c\x07\x24\x91\x28\x02\xeb\x6a\xbd\x27\xae\x94\xa2\x99\xb1\x4b\x06\x07\x2d\x35\xab\x66\x7e\xd4\xc4\xae\xb4\x4a\x74\x0f\xaf\xaf\x51\x4f\xc6\x78\x9c\xdb\xd8\x20\x30\x83\xb7\x75\x46\x87\x16\xe4\xe4\x8c\x4c\x24\x74\x1d\xe7\x9a\x38\x0a\x4e\x43\x3c\x16\x36\x66\xa1\x2e\x7d\x48\x19\x47\x6d\x15\xe4\xd8\x71\x55\x4e\xdd\x48\xe9\x0d\x17\xeb\x98\x5b\x57\x94\x60\xff\x22\x97\x18\x42\x2d\x3d\xbb\x58\x29\x17\x8f\xd0\xa8\xe4\x69\xc6\xa1\x93\x00\xc9\xb1\x1f\xd4\xcb\x83\x81\xe7\xb7\xfa\x7c\x78\xb2\xb2\xae\x6e\xd3\x61\xf0\x42\x57\xd6\x74\x20\x24\xfa\x67\xca\x76\xd5\xf8\x55\x18\xdb\xa3\xad\x7b\xc0\xd0\xc7\xf5\x27\x3e\xeb\x11\x7d\x03\x35\x8b\x66\x9d\x6a\xd7\x00\xd8\xeb\x1d\x31\x54\x6d\x0f\x8b\x8d\x26\xc1\x0d\xaf\x8e\x41\x70\xad\x7f\x84\xd7\xc4\xdf\x9a\x9a\x76\x13\xeb\x12\xb3\x18\xfe\xd2\xb3\x18\x6e\x53\xcc\x8e\x32\x2f\x5f\xdd\xe0\xfd\xee\xf7\x37\x78\xbf\xfb\xbd\xff\x7e\xd7\xaa\x6e\xfd\xf5\x27\x98\xd2\x7c\x9d\x56\x7e\x4e\xe8\xe4\x7c\x13\x31\x2e\x02\x48\xb6\x14\xf3\x56\x4b\xc2\x04\x3a\x9c\x93\x58\xf0\x82\xc4\x33\xef\x4e\x64\x79\xf8\x91\xd4\x50\x6f\x59\x87\x52\xfb\x24\x53\x75\xf4\xf9\x69\xd5\x8b\xf0\x13\x33\x7e\x64\xf7\x85\x3f\xe2\x17\xf6\x08\xb5\x43\x4a\x31\x1c\x9a\x86\xca\x6e\x17\xfa\x51\x85\x39\x57\xef\xdd\x68\xc8\x7a\x21\xf6\x92\xcf\x37\x3a\x0d\x20\xcd\xa4\x23\x71\xd8\x82\xbb\xa4\x1b\x3b\x16\xf4\x45\xd1\xcc\x30\x56\x5d\x31\x7c\xb7\x30\x86\x87\x57\x91\xf7\x08\xc7\x84\x5a\x02\x2f\x6f\xfb\x00\x42\xf7\xc6\x85\xba\x31\x8e\x66\x1f\xa6\x8c\x14\xca\xff\xfd\xc4\x1b\x3c\x5b\x8a\xc7\x10\xf3\x84\xd5\x8d\x84\x42\xa7\x72\x57\xd6\xcb\x5d\x2f\x8b\x8b\x92\x85\x97\x3f\x17\xc4\x4a\xbe\xc0\x25\x51\x4a\x10\xfd\x63\x42\x2c\xf9\xa3\x19\xb5\x98\x80\xfe\x16\xef\x45\x1c\xba\x55\x11\xbf\x8b\x73\x67\x2c\x65\xca\xa7\x0e\x24\xc4\xff\xfd\xac\xa3\x38\xf0\xd6\x70\xc3\x92\xf2\x57\xbb\x3f\x56\x37\x91\xa6\x81\x6d\xae\x97\xfa\xb8\x51\x5a\xd8\xdb\xa6\xf1\xf6\x00\xbc\x5e\x53\x7b\x64\xd4\x2b\x02\x4f\xc4\x4a\x7a\x85\xf4\x74\xea\x8d\xb0\xeb\x42\xfb\x88\xe1\x44\x7b\x69\xb1\x75\xf5\x9b\x18\x33\x5a\x91\x7e\x8f\xe2\xc3\xe2\x5a\x08\xc4\x61\xdc\x75\xa4\xc7\xdc\x8c\x37\xba\x6f\x30\x1b\xc1\x6b\xd6\xdf\x10\x37\x11\xd4\xa1\x92\xa1\x3b\x0d\x81\x34\x72\x85\x0d\xd3\xbc\x84\x9c\x8d\xd3\xd8\x71\xde\x40\x89\x15\xf3\xb9\x3b\xba\x1a\x89\xbd\xdb\xbe\xa6\x69\xc5\x8f\x7e\x9e\x24\xbc\xfa\x50\x6c\x3b\x4e\x0d\x29\xd4\x12\x6a\xf7\x34\xe6\x33\x95\x56\x77\x5a\xf6\x72\x83\x71\xd6\xa2\x8e\x9b\x6d\x2a\x58\xda\xda\x8b\x4b\xfa\x44\xbf\x01\xb5\x67\x23\x5e\xc9\x2a\x04\xf5\xf9\x66\xc7\x5e\xf3\x9e\xcf\x8a\xa0\xab\x65\x19\x43\x42\xad\x2a\xeb\xaa\x9d\x48\x05\xd7\x2c\xd5\x51\x1b\x34\x75\x7f\xae\xd5\x55\x6a\x8d\xcb\xac\x81\x74\xc5\x8e\xa6\x60\xd3\xd4\xcd\x00\xe3\xcc\x0e\x27\x93\xd9\x07\xf0\x59\x85\x1b\xe7\x86\xce\x68\xf4\x91\xf8\x09\x4e\x69\x06\x2b\x79\xa5\x69\xc5\xeb\x16\xe3\xec\x48\xee\x9d\xe7\x2b\xae\xb7\x7d\x94\x75\xa9\x1b\x0e\xf3\xad\x7d\xec\xb4\xa9\xcb\xdc\xe4\xe8\x1a\x4f\x47\xe3\x93\x0a\x22\x9a\x15\xe3\xfe\x2f\xea\xbc\x07\xe3\x2f\x94\xd8\x0c\xb8\xda\x84\xbf\x9b\x18\x41\x09\x3c\x00\x32\x5a\x1c\x07\xcd\x7b\xcf\x4b\xbe\xf6\x8c\xc1\x98\x51\x17\x8d\x78\xf7\xe4\xb9\x3e\xde\x1a\x2e\xf3\x7e\xc2\xa8\x90\xd0\x02\xef\x9f\xba\x22\xe9\x99\xd0\x5b\xac\x04\x01\x1e\x40\x77\xb4\xd7\xa1\x98\xa5\xe1\x4d\x5c\x11\x0d\x22\xbe\x88\xfc\x0d\xf6\x0f\xed\x93\x68\x70\x0b\xa7\x44\xbf\x90\xef\x99\xc1\x2a\xce\x67\x5a\xdd\x04\x0d\x3e\xdd\x4f\xd0\xa0\xdd\x51\x10\x2a\x4c\x44\x58\x19\xcf\xd3\x8f\x38\x49\x49\xc7\x82\x85\xc5\xea\x5b\x9e\x24\x3e\xcd\x48\x2a\x11\x51\xdc\x0c\xa1\xb6\x60\x94\x16\x80\x15\x32\x3c\xe9\x65\xc8\xcb\xa7\x0a\xc5\xdb\x4e\x68\x07\xdc\xa0\x69\xcb\x06\xa7\x5b\x86\x08\x22\xbd\xe0\x1e\xce\xda\x77\xd1\x6b\x64\x23\xdf\xbe\x44\x57\xf1\x4f\x43\x05\xe3\xe6\x1b\x8c\x7f\xc3\xb1\xf5\xa5\x05\xf0\xf6\x6c\x69\x13\x4c\x03\xf1\x18\xaa\xec\x79\xd2\xac\xef\x06\x1e\x44\x9b\x24\x98\xbe\x00\x32\x22\xa0\x7a\xa2\x71\x29\xd9\x23\xcb\xf3\x19\x05\xdc\xb6\x48\xe6\xb2\x8c\x81\x07\x49\x66\x09\xd2\xcc\xc4\x70\x18\xc0\xf6\xd1\x98\x57\x03\x2d\xcd\xfe\x05\xc5\xf4\x6a\x3b\x2f\xd4\xd1\xf2\xce\x4b\xfe\x00\x86\x4f\x2c\xf4\x96\xa8\x9c\x81\x83\xa8\x55\xfc\xa4\xdc\x22\x8e\x71\x5c\xd0\xff\xb6\xba\x4c\xba\x85\x62\x0d\x84\x33\x8a\x8f\x1d\x1f\x88\xd0\xd7\xcb\xf1\x98\x95\x2a\x57\x79\xaf\x50\x2d\x0e\x26\xb3\xd9\xf9\x3f\xb1\xf4\x5f\x24\xf8\x38\xee\xf8\x48\xee\xf8\x58\xee\xf8\x68\xee\x7c\xfd\xeb\x3e\x29\xbc\xb9\x18\x8f\x7c\x67\x1a\xf0\x60\xc0\xe9\xab\x3d\x29\xa0\x3e\x43\xf8\xa0\x80\xc9\x8c\x9d\xda\xd3\xea\xe3\x0f\xaa\xd6\xb0\x29\x91\x89\xd0\x7f\xf8\xf9\xd9\xd3\xc1\x8f\x7b\x7f\x0e\x20\x75\x06\x42\xc1\x82\x0b\x20\x20\x91\x64\xf3\x7b\x07\xbb\xd1\x3a\x74\x06\xd5\x31\x7c\x1b\x11\xdf\x63\x45\x3a\x87\xb5\x5d\x71\x87\x07\x6f\x1b\x9c\x4e\x52\x7b\x75\x0a\xd5\x67\x4f\x70\xcb\x07\xcf\x12\x32\x93\xe7\x24\xe6\x9e\xfc\x9b\x20\x92\xf2\xb3\xfd\xc1\x77\xcf\x5e\x3c\x7d\xf6\xe2\x0f\x81\xc1\x95\xcd\x4a\x68\xad\x7c\xdb\xee\xeb\xec\xdb\xc0\x01\x6c\x93\x2b\xb6\xd8\xb3\x46\xfc\x61\x25\xf6\xac\xa1\x69\x67\xb0\x50\x74\x06\x42\x01\x01\x0b\x5e\x3f\xfc\xaa\xe8\xc5\x9a\x03\xfd\x97\xfe\x9e\xf4\xa1\xe9\x24\xd1\xec\x7c\xe9\xef\xd8\xae\x9b\x8f\x45\xbe\x23\xa2\x57\xfa\x9b\xb9\xcb\x19\x7c\x0c\x12\x0d\x8c\xd7\x0c\xeb\xc3\x87\xa0\x89\xb8\xf0\xfc\x6f\x47\x6c\xf8\xd8\xba\x29\x58\x70\x9c\x4e\x2f\x6e\x03\xde\x78\x62\xa3\xcd\x06\x5e\x67\xf5\xd8\xc6\x3a\x59\x9f\x9c\x55\x70\x6e\x97\x0a\xa3\xae\xfe\xb0\x3b\x9e\x16\x14\xa9\x2c\x0d\xec\x6e\xa7\xa5\xfc\x4a\xdd\xf3\xc6\xc3\x09\x67\x3b\x69\xbc\xda\x54\x43\xba\xb4\x75\xae\x43\xc9\xb4\x5e\x77\x5f\x3c\xdd\x3d\x78\xf9\xfa\xcf\x83\xfd\xbd\x83\x83\xbd\xd7\xfc\x02\xb5\xf7\xe2\x8f\x5d\x3f\x8b\x1e\x3f\xa7\xed\x91\xbd\xdd\x67\x2c\x73\x55\x55\xac\xdc\xc9\x7c\x7c\xbe\x50\x8b\x14\x04\xff\xa7\xe3\x37\x17\x14\xf0\x02\xad\xfa\x3e\xcc\xc7\x0b\xfb\x25\xc2\x61\x90\x81\x36\x6a\xee\xf4\xac\x0d\x04\x59\xee\x5f\x20\x83\xf8\xa9\xb5\xa2\x1f\x7f\xab\x3a\x03\x44\xe7\x89\xaa\x8f\xaf\x01\x1f\x86\xf5\x2e\x68\x5b\x54\x3a\x42\x22\xf0\xb9\x38\xa2\x35\xfe\xb4\x6a\xd0\xb4\x1c\x27\xea\x46\x57\xba\x12\xab\x75\x5b\x47\x7e\x85\x00\x34\x19\x8a\x29\xf5\x97\x0a\x5d\xa5\x34\x89\x2d\xdc\x1e\xe6\xfd\x38\x78\x36\x18\x40\x10\xc4\x7d\x60\xb5\xb3\x22\x32\xe0\x74\x5b\x7b\x57\x02\x61\x26\x89\x77\x81\x08\x94\xef\x08\x91\x3e\xff\x35\x76\x5b\xb6\x8f\x5a\x45\x15\x7e\x97\x36\xb9\x6f\x7f\x52\x44\x13\x5f\xc4\x46\x6b\xac\xa0\x82\x28\xb9\x70\x07\xcb\x58\x93\x9f\x53\xb5\x62\x18\xdd\x4f\x1b\x4a\x95\x14\x90\xaa\xe9\xd0\xee\xe5\xb1\xd6\x46\x8d\xe7\x09\xef\x82\xea\x16\x5a\x62\x6b\x46\x04\xf1\x70\x62\x63\x90\x58\xbe\x8b\x80\x0e\xc7\x47\x7d\xab\xdf\x64\x73\x21\xa0\x22\x33\xbc\x1b\x1b\x4e\xb2\x0c\x8c\x19\x15\x6f\xd1\x9e\xe0\x47\x5c\x22\x16\x6b\xb3\xe9\xe4\x72\x6d\x78\x72\x52\x9d\x2f\x6a\xed\x5d\x16\xe4\x59\xb0\x66\xce\xc5\x50\x01\x47\x3f\x9e\x5e\x54\x4b\xa6\xcd\xa8\x51\x53\x02\x91\xee\x08\x30\xd3\xdb\xbf\x42\x6f\x27\xa5\x06\xd4\x3d\xfe\xeb\x43\x35\x90\x7f\x15\x61\x57\x20\xd7\x40\x1d\xfe\x15\xbb\x2c\xda\x05\x3f\x6d\x2f\x3f\x18\xb1\x8e\x71\x92\xe2\xe1\x43\x1a\x78\xb6\xd8\x21\xc3\x61\x75\xf6\x78\xec\x2e\x14\xd5\x14\x75\xa0\x22\x02\xd1\xf1\x5a\xad\x43\xfd\x13\x71\xd0\x1f\xf9\x55\x04\xa2\xbc\x5a\x1a\x8d\xe1\xf5\x77\x3e\x92\x99\x06\x03\xe1\x5a\xac\xb4\x26\xd8\x1d\x9b\x96\x2f\xf5\x2f\x83\x3b\x87\x2e\xe6\x53\xe0\xa4\x04\xd2\x5d\x9f\xb8\x7d\x8b\xaf\xb9\x8d\x0d\x2d\x5a\x8b\xe7\x1b\x4f\x32\xc6\x69\xee\xf1\xb0\xe6\x38\x36\xb0\x94\x9d\x26\x4c\x16\x09\x31\x35\x59\x11\x62\x4c\x03\xc1\x5b\x40\x6b\x44\xfa\xe9\xec\x4c\x84\x04\xb0\x04\x62\xb8\x2b\xd1\x8c\x07\x1d\x07\xd7\x99\x0a\x25\x18\x15\x70\x25\x54\x9f\x74\x13\xbe\xcd\xa8\x0a\xbb\x99\x70\xbb\x2a\xd8\x9f\xa7\x6f\xa7\x33\x3b\x71\xa5\x0c\x55\xba\xb1\xb1\xae\x57\x8a\x3a\x71\xb0\x48\xce\x17\xff\xb0\x64\x27\xd2\x1e\xac\x0d\xff\xfc\x02\x34\x43\xda\xa9\x0b\xa3\xe6\x84\xc4\xd8\x99\x0b\x5e\x0e\xf0\x3f\xe7\x94\xa5\x3a\xde\xe5\x01\xf9\x03\x1a\x26\x64\x42\x86\xc0\x12\xb9\x95\x8c\x28\xbf\x40\xfa\x11\xa1\xa0\x02\x45\x09\xfa\x74\x5c\x2c\x66\xfb\xa8\xcf\x15\x1c\xe5\x3a\x83\xe1\x40\x64\xf2\x9a\x0e\x7d\xf7\x08\x0a\x4f\xa0\x57\xba\x0e\xc9\x61\xf0\xd6\x88\x41\xe4\x4b\xff\x24\xd4\xc8\x0d\xc4\x59\x20\xcc\xa2\x60\xfb\x8a\x1c\x48\x70\x4a\x08\x12\x1e\x29\x25\x72\x65\x49\x1a\x45\x4f\x52\x87\x32\xa6\x13\x3c\x78\x09\xca\x26\xa0\x18\xde\x7c\xe5\x57\xf6\xb7\x39\x82\xfd\x03\x5a\x74\x13\xd5\x3a\x63\x83\x41\xf7\x2e\xbd\x08\x04\x6a\x00\x01\x72\x42\xbc\x91\x04\x19\x8e\xf1\x92\x49\x5e\x6a\xb9\x22\x82\x2f\x89\xa9\x9d\xb3\xad\x49\x69\xd9\x91\xbe\x4d\xb5\x0b\x22\xf0\x5f\xc8\x07\x8d\x85\xcd\x96\xb2\x60\xd3\xb4\x5f\xd1\xa1\x2d\x85\x6d\x96\x07\x65\x9d\x6c\x13\x5f\x37\x12\xd4\xc8\x97\x00\xa2\xf6\x4a\x84\x04\x6a\x87\x3f\x2c\xdc\x13\x7e\x79\x38\x05\x7c\x3d\x50\x52\xc4\xc1\x80\xb6\x25\x95\xd0\xba\xf3\xcb\x20\x87\xe6\x50\xf3\xd5\x5a\xab\xbb\xce\x0a\xbb\x57\x85\x9c\x31\x17\x90\xdc\xb4\x84\x1c\xe8\xdc\x91\x81\x77\x06\x40\x4a\x2c\x7f\x2c\x02\xe8\xc6\x5e\x54\x23\xd3\x09\x6e\x59\xea\x26\x08\x30\xec\xd1\xb2\x38\x76\x02\xd7\x2f\x66\xc5\xe9\x7c\xf6\x8e\x9f\x27\xe0\x27\xbc\xa4\x2d\x86\xd3\x13\xa0\xb9\x7c\x5f\x52\x34\x14\x72\x4a\xfe\xec\xc2\x07\xc2\xe6\x4b\xf8\x57\x2d\x2a\x55\x0f\x1e\x01\x53\x78\xd2\xa0\xe6\xb5\x16\xb3\x02\x00\xd7\x6e\xb4\xec\x7a\xd6\x21\x16\xa7\xf0\x56\x54\xa7\xf1\x01\xa7\xec\x81\xa2\x5a\x0d\x3a\xf0\x92\xf2\x2f\x82\x5c\x49\xf8\x8b\xca\x24\xc7\x6a\x7a\x9c\xf5\xb2\xcd\x78\x35\x9d\xbc\x97\x65\x7d\xad\xdd\x9e\x3d\x64\x38\xd5\x17\x35\x6c\x17\x27\x6a\x03\x75\x2d\xaa\x9b\x50\x0f\x0b\x57\xa8\x9b\x9b\xa6\xe1\xcd\xec\x51\xd6\x77\xda\xc0\x2d\xa8\x71\x01\xd5\x6f\x27\xd4\xc1\x32\x4f\x6f\xaf\xae\x3a\xa6\xaa\xf9\x13\x8b\x43\x69\x41\xdd\x0b\x87\x53\x7d\xc4\xf5\x92\x6c\x50\x4d\x31\xed\x71\xba\xef\x74\x67\xef\xab\xf9\x7c\x3c\xaa\x3c\x7a\x7d\xb5\x02\x50\x27\x89\x7a\xbe\x14\x59\x03\x12\xe3\x0f\x06\x96\x19\x47\x5a\x15\xa3\x21\x36\x43\x06\x7f\x71\x2b\x97\x39\xe3\x1a\x4b\xd0\x0d\x6d\xcc\xb1\xd0\x79\xf7\x93\xae\xa3\xff\x30\x43\x57\x2c\x4b\x17\xe9\x2e\xc3\x74\x3a\x85\x17\xce\xa8\xcd\xcc\xa3\x64\x3d\x52\xc4\x1b\x95\xa0\x95\xc8\x14\xe3\xb9\x13\x3d\x35\x12\xb0\x44\x76\xf9\x31\x29\x56\x50\x72\x12\xfe\x09\x47\x77\x36\x3e\x57\xcd\x3c\xb9\x27\x4c\x9f\x8e\x4d\xef\x38\xb2\xac\xb0\x0b\x9d\x13\xb8\xdc\x3b\x8c\xa8\x14\x12\x76\x10\x48\x71\x36\x70\xa7\xa4\xdf\x0e\x8f\x13\x0c\x94\xe8\x5e\xee\x9e\x78\x05\xa1\x01\x5e\x3a\x89\x59\x08\x66\xdc\x5c\x4c\x83\x20\xf0\xdb\xf6\xa1\x50\xb3\x1a\xc2\x1f\xaf\x3e\x70\xe1\x32\xf6\x44\xb7\x73\xdb\xda\xed\x01\x96\x6e\x21\x3c\x41\xcd\x11\x43\x7c\x59\x47\xf2\x8a\xfe\x34\xf3\xa5\x59\xcc\xb6\xa7\x0f\x03\xd9\xb4\x5d\xfc\x33\xda\x5f\xe0\x91\xba\xd2\x67\xb9\xeb\x8c\x90\x1a\xa3\x77\xed\x30\xee\x86\x25\xd6\xeb\xe6\x12\x82\x79\x8e\xb9\x0b\x05\x07\xd1\x65\xd4\xdf\x92\x1c\x38\x58\x1d\x11\x38\xc4\x20\x5d\xfd\x27\x56\xf3\xd2\xa9\x85\x91\x78\xc6\x27\x99\x87\x8c\x7d\x0a\x96\x67\x1d\x61\x0f\xab\x52\x11\xf7\x57\x31\x27\xa4\x26\xf6\xff\x50\x6c\x93\x4e\x7e\xa8\x85\xd2\x47\x05\x5d\xf9\x14\xc0\xc6\x06\xfc\x6b\xef\x7e\x47\x7a\x8c\xf0\xc6\x33\x80\x4c\x30\xf8\x5a\x16\xe0\x77\xc7\x97\x33\xda\x46\xc1\x53\xd3\xf1\xf0\xe4\x6d\xc1\xf7\x4c\x23\x74\x60\x91\x8b\x46\x01\x1b\xae\x4b\xb9\xa5\x30\xa5\xa8\xde\x9d\xab\x2b\xd2\x95\x75\x83\x6c\xee\xfa\x53\xbe\x23\x21\x9c\x75\x81\x5c\x12\xca\x53\x7d\x91\xd4\xe9\x72\xa4\x7c\x7c\xd5\xbd\x9e\xf1\x24\xd7\x52\x8c\x2c\xd9\x64\x51\x80\x47\x5d\x8d\xee\x3a\xe2\x05\xae\xfc\x96\x4c\x98\xda\x8f\xbd\xd4\xe9\x25\x68\x73\xfc\xe4\xb2\x00\x1d\x01\x2b\x8f\x29\x41\xfb\xed\xcf\x7e\x48\x82\x4c\x89\xe4\x8b\xb0\x05\x69\x7b\x03\x55\x99\x0a\x3d\x19\x13\xd6\x7b\xef\xb3\x00\xed\xaf\xa1\x49\x43\xa1\xcf\x19\x90\x12\x56\xd1\x53\x46\x32\x1a\x97\xf2\x26\xaf\x5c\x29\xc3\x8d\xc8\x83\x80\x6e\x33\x66\xdd\xe0\xe0\x93\xf7\xf5\x67\x57\x50\xc0\x0e\xac\x75\x74\xda\xd9\xb2\xcd\xf4\x04\x94\xa6\x16\x3e\xf5\xf2\x7e\x74\xbd\x17\xba\x40\x6e\x37\x3b\x25\x34\xa8\x10\xe8\xba\xdb\x96\x0b\xd0\x89\x5f\xc1\xb0\xad\xe5\x15\xbb\xd1\xd6\x2c\x9e\x19\xb7\x65\x6b\x7c\x96\x4e\x78\xbe\x6c\x0a\x59\x12\x3e\x84\x47\xec\xee\xfe\x6f\x79\xe2\xfe\x4d\x3f\x4f\x37\x3d\x59\x46\x9c\x2e\xeb\x77\x24\xff\x69\x4d\xbe\x23\x61\x9f\xc2\x87\xe1\x58\x54\xcb\x04\xd5\x89\x58\x96\xad\xe6\x39\xf3\x97\x0c\xd3\xd1\x56\x36\x06\x25\x8a\xdf\x28\xca\x47\xbb\xdb\x05\x14\x5c\x55\x24\x8a\xac\xc3\xe8\x1e\x4e\x76\xeb\xbb\xee\x83\xf8\xbb\x6e\xab\xfd\x21\x2c\xf8\xf6\x78\x2f\xf1\xa8\x2d\x58\x36\x00\x71\x0a\x26\x02\xc5\x38\x25\xbd\x48\x31\x2d\x46\x8f\x58\x34\x61\xf5\x48\xe1\x0b\x84\x3c\x33\x28\xe8\x43\xd0\x0b\x6f\x8b\x93\x55\x5c\xf7\xea\x07\x6d\x90\xc8\x19\x6a\xb7\x4f\x71\xe5\x4a\xe6\x58\x05\xd6\xc8\xbe\x91\x5d\x8b\x2b\xec\x79\xaf\x44\x9c\x8a\x05\x4a\xfc\x97\x53\xb4\x0a\x35\xff\x5d\xa6\xac\x21\x70\xef\x83\x97\x19\xa7\x98\x6b\x50\xa8\x8f\xdd\x31\x7a\xf1\xd1\x3e\x4c\x0b\x07\xa1\x76\x0b\x09\x8d\x91\xd3\x50\xdf\xf5\xb2\x88\x36\x10\x27\x31\xdb\x87\x65\xae\x15\x3f\x5e\x7e\xb7\xbf\xf7\xfa\x8f\x7b\xaf\xcb\xfb\xff\xd3\xdd\xec\x75\xc8\x5c\xec\x9a\xa6\x2c\xff\xe2\xbe\x70\xb9\x60\xc9\x82\x22\x8a\xac\x77\xf8\x63\x75\x19\x0c\x37\x1e\xff\xa8\x7c\x09\x01\x0f\xaf\xc8\x6e\x97\xfc\x77\x61\x56\x77\xa0\xc3\xb8\x01\x81\xc5\x07\x31\xad\xb6\x1a\x87\x53\x17\x03\x37\x1a\xa3\x3b\xd4\xc1\x20\xeb\x68\x8c\xec\xbf\x2d\x88\x32\x82\xc3\xed\x62\xab\xd5\xa6\x55\x7f\x84\x61\x8d\xba\x53\xfa\x2e\xbe\x92\xc5\x84\x47\xaf\xfe\xbf\x40\xc7\x4a\x2d\x80\x33\x9e\x83\x74\x37\x0f\x21\xe7\x28\x77\xbe\xc0\x78\xd6\x49\x20\x75\x76\x0c\x19\xb9\x5c\x9a\x49\x70\x69\xde\x1d\xcd\xc3\x8a\x53\xc0\xe7\xda\xf8\x04\x5e\xf9\x70\xea\x6e\x3f\x29\x31\xa2\x7f\x93\x79\x89\xf9\xd0\x5b\x69\x6a\x62\x33\xc3\x7d\x2a\x9d\xf1\x37\xc9\x87\x7c\x66\x13\x13\x6d\x06\x00\xfa\x73\x84\xf2\x42\x35\x3f\x9a\x58\x25\xcd\x99\xe3\x14\x2a\x4e\x93\x3c\x5a\xd3\x6f\xb4\x22\xb5\x3e\xeb\x9c\xa3\x8b\xb5\x20\x4c\x83\xc8\x4d\x8a\x88\x3f\xa3\xf1\x68\x77\x34\xd2\xe1\x68\x44\xb6\xf1\x46\x77\xe1\xbe\x42\x26\x43\x3e\xb1\x48\x1a\x28\x4f\x89\x3a\x01\x9a\x66\x77\x9c\xde\x98\xd9\x21\xa4\x5b\x9f\x2a\x51\x0c\x8d\x35\xe0\x39\x49\x7d\x56\xb7\x17\xb1\xde\xfd\x10\x44\x18\x98\x77\x98\x52\x46\xd7\x78\x24\x95\xc2\x8d\x5e\x98\x21\xc4\x14\xea\x67\x32\x7e\xd7\x57\xff\x95\xb6\xd0\xa3\xed\xc7\xd2\xf5\xe4\x74\xd1\xdb\xda\x89\x9b\x88\x98\x19\x02\x64\x41\x8c\x01\xb5\xd2\x23\x06\xfc\x8a\x68\x20\x48\xed\x03\x30\x87\x19\xbf\x23\x97\x61\x2b\x6d\x7b\x7a\xca\xc1\x1d\x3f\x7e\x97\x2f\xc3\xb3\xde\x0c\x74\x32\xd3\x4e\x58\x46\xce\x96\xd3\x31\x34\x79\xb0\x23\xda\xf7\xb7\x1a\x6b\x3d\xce\x1a\x8a\x47\x59\x7f\xc2\x18\xfb\x8c\x84\x3c\x13\xb5\xc0\xe8\xd3\x06\x7a\x95\x43\x2e\x31\xca\x61\x54\xae\x54\x5e\x38\xc6\x66\xd7\xb9\xfb\xb2\x17\xdb\xbf\xa4\x75\xa2\x8f\x6d\x52\x3b\xb1\xd9\xbc\xbf\x93\x9b\xc6\x40\xb2\x17\xcd\xed\x62\xeb\xeb\x1c\x2c\xcc\x54\xcb\xaf\x71\xaa\x3e\xbd\xf1\x7a\x01\x71\xc1\x6f\xd0\x76\x0a\xdb\x48\x00\xa3\xc8\xca\xe9\xeb\x59\xce\xbd\x0c\x38\xb4\x74\x9e\x51\x75\xc8\xaf\x9c\xcf\x72\xa7\x9f\xe4\xa6\x0a\x6d\xff\x13\xb0\x50\xfd\x95\x99\x21\x5c\x0b\xdb\x64\x4c\x8d\x7a\x17\x4e\xeb\x9b\x9b\xaa\xf7\x89\xe1\x5a\xbd\xf3\xf0\x77\x63\xc3\xa9\xf8\xd1\xf6\xc6\xc6\xd6\x96\x93\xf4\xd0\x04\xb1\xbe\x61\x5f\x6f\xc2\x73\xc8\xee\x1a\xe7\x0e\xce\xe1\xed\x08\xb9\x8b\x95\xa3\xe5\xc9\xca\x22\x14\x27\x5a\x57\x22\x4e\x9e\x27\xe6\xea\x8a\x5b\x86\xfe\x15\xe4\xf3\xc1\xae\x7f\xb5\x89\xc1\x26\xc3\xbf\x5f\x0e\x26\xb3\xe1\x68\x05\x29\x58\xa3\xfc\x69\x3a\x5c\x8c\xdf\x0b\x67\x49\x9f\x5b\x50\xba\x92\x9c\x45\x5f\xdd\x7c\x59\x8b\xbc\xba\x41\xe7\x7f\x98\xcd\xde\xd6\x42\xe3\x76\xef\xf9\x77\x7b\xaf\x07\x3f\xbd\xdc\x7d\x3a\xf8\xe1\xe5\xcb\x1f\xf7\x8d\x2f\x39\x00\xae\x46\xb0\x5d\x0d\xa3\x3b\x9b\xfe\xa4\x12\x31\x54\x4f\xa1\xc5\x98\x92\x87\xed\x9b\x06\xe8\x11\xa0\xf4\xbe\xaf\xaf\xb5\x07\xfa\xdc\x07\x95\x11\xd4\x4d\xd5\x7d\x63\x19\x58\x12\x36\x04\x6b\xdf\x0c\x3a\xda\xc4\x57\x86\x7e\xea\x12\x9a\x25\xfd\xb1\xd8\xab\x59\xfc\x49\x37\x4a\x7d\xd0\x86\xc7\xb2\x72\x66\x38\x85\x26\xe6\x07\xc5\x5e\xa2\x2b\x54\xab\x85\xe9\xe4\x28\xbe\xad\x3e\x07\x3e\x8f\xb4\xfa\x5d\x9d\x32\x86\x7c\x72\xa1\x08\xca\xbb\x10\x80\x46\x0f\x69\x30\x32\x6a\x02\x8e\x50\xbc\x1a\xa9\xf5\x38\x9e\xf4\xa8\x69\x7c\x10\xe9\xc1\x3f\x6a\xb1\xc7\x5a\x27\x72\x4e\x46\xbb\xee\x00\x1b\xff\xf8\xc4\x32\x7b\xb9\x45\x20\xcf\x8e\x0c\xb2\x37\xcc\x72\x3c\x4b\xf9\xd1\xb6\x11\x85\x93\xb8\x4f\x11\x47\xbb\x7b\x74\x55\x1f\xa8\x9f\xf5\xb9\xe3\xa6\x12\xdd\xcf\x2a\x5d\x8d\x89\x3b\x7f\xe7\x89\x3b\x57\x33\xb8\x59\x45\x16\xdb\xe6\x3a\x35\x25\x2e\x8d\x44\x3b\xb2\x7e\xff\xa2\x97\xb6\xda\xe4\xb3\xfe\x86\xa7\x01\x66\x5d\xff\xbd\xd8\x7d\xbe\xb7\xff\x6a\xf7\xc9\xde\x3e\x5d\xdc\x89\xf3\xb7\xf9\xaf\x5e\xbf\x54\x79\xfb\x7b\x4f\x59\xb7\x30\x54\x35\x62\xb9\x0e\xac\x58\x61\x74\x0c\x9f\xe4\x67\xc2\x89\x5a\x86\xfb\x52\xad\xfb\x91\x69\xc1\x0b\x52\x7b\x08\x08\xe1\x6b\xef\x12\x77\x32\xbe\x29\xb9\x71\x6e\xd5\x7a\x57\xc5\x6c\x17\x3b\x87\x8e\x5a\x50\x27\x3f\xa2\xe3\xfc\x6a\x99\x27\x23\xe1\x98\xfd\x55\x97\xb1\xb1\x30\xbd\x2c\xbd\xaa\x91\xe6\xf1\x97\x7e\x0f\x25\xd7\xa6\x87\x3a\xf9\xc8\xea\x9c\xab\x3d\x3e\xa9\x16\xd5\x5a\xac\x89\xc1\x77\x7f\x1e\x3c\x7b\x6a\x4b\x2d\x2d\x4a\xdd\xfa\x9c\x3c\xc5\xcb\x0b\xbc\xcd\x26\x9e\xbb\xd8\x31\x76\xba\x1c\x48\x63\x29\xe7\xcd\x79\x91\xb3\xad\xf6\x0e\x11\xe7\xa3\xc2\x47\xa4\x77\xb5\x2c\xcc\x5c\xdb\xe8\x7b\x30\xd0\xbb\x93\x49\xcf\xfe\xb4\x13\x57\x1c\x23\x5f\x62\x87\x76\xaa\x59\xed\x75\x1a\x98\xef\x5e\xbe\x3c\xd8\x7b\x6a\x26\xcc\x29\x6c\x1d\x06\x04\x43\x82\xd4\x76\xc9\x92\x3e\x3f\x37\x3a\x5d\x94\xd5\x67\x45\x37\xbe\x30\xa9\x63\xd9\xbb\x3e\x39\x61\xf5\xdc\x25\xa4\x8e\x87\xb3\xba\x98\xcf\x66\x8b\xa2\xae\x2a\xf6\x6b\x0a\xee\xe1\x31\x43\x6b\xea\x07\xa8\x52\xee\x5f\x67\xe3\x69\x27\xeb\x66\xf9\x51\x09\x35\xf4\xbd\x2b\x1d\xa4\xd1\xb0\x58\x74\x68\x4e\xb1\x3d\xef\x4e\xc7\xac\x02\xd6\x44\xaa\x0d\xd8\xc8\xa1\x42\xe6\x08\xc4\xbd\x7c\xe0\x6f\x6c\x80\x82\x86\x59\xa6\x65\x89\x6a\x1a\x07\x66\x69\x3a\xb9\x8e\x26\x9b\x87\x73\x0e\xe2\x3b\xbb\xeb\x4a\x2f\xdb\xa8\x6d\x9b\x36\x05\x71\xc1\x5e\xc1\x78\x1d\x6a\xc9\x14\x28\x80\x1c\x89\xde\x84\x99\xa4\xf8\x99\x98\x00\x60\x87\x71\xfc\x97\x4b\x39\xf0\x20\xa3\xc3\x81\xd9\x3f\xd8\x7d\x7d\xb0\x3f\xf8\xd3\xb3\x83\x1f\x06\x3f\xbf\x7a\xb5\xf7\xfa\xc9\xee\xfe\x5e\x79\xff\x7f\x0e\x77\xb7\xfe\xfb\x48\xc8\x7c\x7d\x0a\x73\x45\xdc\x1a\xec\xd3\xd2\xf1\x47\x0c\x0d\x8a\x0e\xc1\xe0\x46\x68\x9f\xd1\x00\xd5\x33\x0b\x47\x2e\x4c\x2d\xd5\x42\x93\x1b\xc5\x8d\x6e\x9a\x00\xee\xdf\xdb\xb1\xa4\xb7\x40\x37\x36\xd6\xa3\xe9\x41\x05\x8b\xf9\x25\xcc\x70\xc9\xa4\x07\xb2\x8f\xfa\xa2\x1f\x65\x6c\xb6\x96\x18\x81\xb2\x53\xb9\x88\x38\xd3\xe9\x2d\x05\x55\x2d\x0b\x09\x75\x22\x8f\x9e\xf9\xd4\x67\xe0\x66\x36\x40\x8a\x6f\xa7\x00\xa9\x12\xd2\x1f\x5e\x77\xef\x48\x87\xc4\x53\x0c\xc7\xd4\x06\xc5\x70\xe7\xd3\xe2\x66\x83\x4e\x45\x32\x1d\x37\xbf\x01\x1e\xa2\xf6\xa5\x84\x14\xd2\x6a\x67\x2f\x75\x42\x92\xa6\xe6\xc9\x3d\xab\x92\x34\x4e\x4b\x19\x59\xad\xd8\xeb\x40\xe9\x9d\x78\x7a\xaf\xb1\xab\x04\xb3\x99\x35\xa8\x4d\xd3\x06\x20\x73\xe0\x87\xca\xa0\x8f\x74\x8a\xa3\xab\x9b\x39\x15\xcf\x54\xbf\x8f\xb1\x5f\xe0\x02\x33\xdb\x54\x19\x9b\x59\x9e\x59\x77\xcb\x59\x87\x25\xa7\x64\x54\xa6\xb2\x5a\x94\x6d\x85\x0f\xea\xa5\x4f\x58\xbd\x61\xb8\x22\x83\x43\xce\xac\xc4\xd6\x2c\xd7\x23\xdb\xad\x10\xa0\x6c\xa5\x40\xa3\x3f\x9c\x5e\xfe\xec\x67\x41\x2f\xa3\x55\x2b\x6e\xde\xe7\x33\x62\x6c\x0d\x2a\xbc\xa5\xea\xb8\xbe\x0e\x50\x59\x8d\x7f\x30\xf9\x9e\xa9\x9b\x38\xe4\x7d\x7b\x37\x93\x25\x80\xc0\xde\x2d\x64\x77\x4c\xbe\xc3\xf3\x98\x54\x64\x7c\xd2\x03\xc6\x8c\xdc\xf2\xd6\x7a\xce\x29\x5b\x17\xf7\x08\x6a\xf5\x3a\xdd\x7e\x05\x92\x22\x84\xdf\x60\xa8\xd9\x46\xed\x9c\x95\xdc\x45\x93\xe6\x4d\xd4\x5d\x34\x43\x9c\xcc\xce\x2f\x9b\xf2\x4f\xe7\x55\xf5\xf7\x44\x94\xdb\xf3\x3b\x93\xbc\xfc\xfa\x5a\x38\xff\x2c\x61\x6d\x13\xba\x33\x91\x1b\x5e\xd2\x7f\x72\x44\xcf\xe6\xa5\x59\x47\x6d\x6a\x36\x4f\x78\x3d\xb5\x79\x6f\xfe\xfe\xf5\xcb\xff\xde\x7b\x31\xd8\x7b\xfd\xfa\xe5\xeb\x50\x83\x45\xe6\xb2\x18\xfa\xfc\xb2\xd5\xc5\x01\xfb\x7b\x0a\x34\x27\xb4\x23\xa8\x95\xd5\x2b\x5e\x20\x65\xa0\x91\x89\x05\xaf\x25\xe5\x0a\x3b\x28\x85\xee\x75\x01\x9e\x8e\x3d\x9d\x63\x92\x43\x83\xc4\x49\x0b\x8e\xa5\x31\x18\x13\x69\x7d\x30\x87\xee\xea\xa0\x0e\x79\x7d\x45\x8e\x1d\xc1\x23\x01\xb1\xf0\x6d\xa5\xc5\x21\x25\xd6\x02\xcc\x7e\xc4\xcf\x62\xe0\xe6\xd1\x5a\x2b\x7d\x3f\x9f\xfd\x5d\xf1\xcd\x64\xe3\x1c\xcc\x0f\x08\xc9\xb9\x10\xea\x56\x68\x45\x86\xa8\x83\xdb\x84\x5f\x2b\x68\x18\xe4\xe3\x7d\xe3\xed\x4e\x6b\xe1\xeb\xeb\x2a\x01\x99\x10\x0e\xe4\xdd\xcb\x3c\x3a\x39\x4e\xa4\x5b\x3c\x59\x99\xb6\x3c\xaf\x64\xe9\xa7\x5d\xff\x59\x57\x47\x25\x71\xe3\x18\x02\xa3\xe3\xd8\x84\x1b\x26\x0c\xe6\x8d\xad\x49\xe5\xb3\x2c\x5f\xc1\x7d\x1f\x66\x05\xba\xf2\xdb\x5d\x98\x7b\x22\x3e\x43\xc8\x15\xa3\xdd\x0c\xee\xba\x0d\xea\xb4\x6d\x5a\x23\xfa\x93\xff\x3e\xdc\x7e\x8c\x61\xa0\x4e\xaa\xf1\x44\x17\xcf\x7b\x22\x32\x94\x4e\x13\xd5\x3f\xdc\xd6\x95\x6e\x96\xe0\x5a\x10\x7d\xfb\xa9\x8b\x2b\x27\xf6\xd5\xef\x87\xe8\x72\x70\xf4\x11\x9d\x0e\x32\x23\x8a\xd7\xc9\x92\x17\x85\x5e\xc1\x70\xcd\xa2\x9f\x5b\x3b\xcb\x02\x42\x3a\x3e\xfb\x4c\xfd\x57\x50\x5b\x3b\xbf\xe4\x18\x3c\x02\x77\x87\xa3\x8f\x5b\x5b\x37\x1a\x02\xa0\x6b\xb6\xef\xa3\xaa\xa2\xbb\x1e\xfd\x90\x1b\xfc\xdd\xf0\xbc\xe3\x85\x78\x33\x2a\x4d\xe7\x1c\xe5\x0c\x2d\x33\x97\xae\xb1\x29\x47\xd9\xd5\xd2\x8e\xf1\x9b\xa9\xe2\x6c\xca\x43\xbd\x2f\x8f\x8c\x96\x84\xa0\x79\x5d\x74\x30\x20\x94\x24\xde\xa1\x6d\x96\x79\xe8\x24\x20\xc3\x9f\x1d\xda\xec\xa3\x9c\x1a\x20\x51\x9f\x28\xb6\x24\x15\x17\xca\xb4\x36\x36\x92\xd0\x4a\x04\x3e\x8c\x55\xc9\x8b\x05\xeb\xed\x8b\x9c\x82\xaa\xa0\x7b\xcf\xae\xb4\x1f\x9e\x23\x6a\xe0\xbb\xcf\xd9\x7f\x90\x70\x78\xb4\x94\xc1\x77\xa9\x09\x76\xdf\x08\x05\x1f\xab\x7f\x7a\xb2\x79\xe3\xdd\x2f\x5f\xf6\x9d\x74\xd5\xd8\x7b\xf0\xf9\xe2\x48\x3a\xfd\x72\xde\xf0\xe4\x7d\x1f\x4f\xeb\x4d\xf0\xfa\x5a\xe1\xb6\xb4\xa6\x11\x7b\xff\x75\xb0\xf7\xe2\xe9\x40\x5d\x1e\x0e\x5e\x1e\xfc\xf9\xd5\xde\x3e\x9c\x03\x6a\x56\xf5\xa3\x4d\x90\xdf\xc5\xc6\x3c\x2c\x18\xcb\x8e\x66\xd2\x77\xcb\x5d\xe7\xdd\xce\xff\x4e\xcc\x42\x9a\xc1\x36\x20\x6d\x2c\xb6\xef\x23\xae\xc9\x8f\xdc\x2a\x1c\xec\x6d\x78\xcd\x26\xce\x4e\x98\x5b\xb7\xb0\x77\x09\x0e\x28\xe2\x1d\x49\x0a\xd9\x85\x8d\x0a\x8b\xce\x6d\x3d\x79\x5f\x4a\xd6\x5b\xed\xba\x8d\x4d\x77\x62\x56\x44\x65\xab\xcd\xca\xaf\x60\x8d\x90\x30\x04\x88\xa8\xf6\xb7\x1b\x15\x24\x0d\x05\x1a\x9f\x9a\x6c\x74\x9c\xdf\xde\x43\xd4\x3f\xd1\xa5\xa6\xd9\x3b\x5c\x4a\xc9\xfe\xab\x88\x8e\x7d\x83\xae\xfb\x57\x71\x55\xf7\x66\xad\xfc\xaf\x6e\xaf\x94\xff\x55\x93\x4e\x7e\x8b\x8a\xf9\xef\xd3\x1a\xe6\xcd\x5a\xed\xbf\x4f\x2a\xb5\x47\x0d\x1a\xbe\xf6\x0d\x1a\x1a\xb4\xf4\xbf\x89\x2b\xe9\x47\x43\x09\x7d\xeb\x87\x12\x0a\xa2\xe4\x6c\x8b\x28\x39\xa9\x77\x46\xff\xd2\x66\xe5\xa1\xc4\xa3\xbf\x0a\x75\x5d\xb4\x1e\x8d\x55\x72\x31\xda\x3e\xa5\x4d\x63\x36\xe7\x9b\x9c\xb5\x7e\x8c\xf3\x18\x2d\x7a\x6d\xd4\xf8\x4b\xa1\x61\xaf\x0c\x77\x8c\x45\x4c\x23\x8e\x0e\x19\x18\xb2\xb4\xae\x2c\x37\x45\x6e\x34\x6e\x1a\xef\x65\x09\x26\xf7\x07\xf3\x8b\xc5\xd9\xa5\xd1\x9d\xef\x1e\xcf\x66\x13\x19\x21\x48\x4d\xd6\xf1\xc5\x1b\xe3\x08\x16\xb4\xad\xb0\x31\xb0\x63\xfe\x13\x48\xf7\x1b\x0c\x6b\xed\x40\x94\xc6\xd9\x76\xb6\x09\x2f\x4a\xa1\xa6\x39\xf6\xdb\x16\x20\xd5\xd6\xe4\x2a\x70\xd5\xcd\x57\x29\x6b\x06\x85\x54\x07\x7f\x9e\x7e\xb8\x35\xf2\x51\x8d\xec\x9b\xe2\xef\xa9\x65\xdf\xb4\x0b\x4d\x17\xd3\x9b\x45\xde\x11\x51\x29\x84\x8a\x1a\xe8\xa4\x85\x0e\x96\x92\xf7\x5f\xe9\x50\x0e\x6a\xd7\x4e\x8e\xb4\xa9\x77\x42\x89\x59\xfa\x5a\xea\x3b\x91\x39\xdb\x7a\xa0\x9f\x5a\x5c\xac\xb5\xdb\xa6\xb4\x75\xa6\xd8\x50\x6d\x4c\x11\x72\x30\xbf\x20\x2f\x34\xae\x07\xd3\xd9\x74\x85\x30\x7e\xb7\x64\x9c\xb5\x7c\xb8\x21\x62\x60\x7b\x4c\xc1\x5b\x0b\x89\x63\x4e\x92\x57\x61\xf6\x7e\x8b\xb1\x92\x7f\x0d\x93\x4f\xd7\x47\x6a\xcc\xab\xf1\x6f\xda\x28\x74\x5c\xbf\x50\x6b\x3b\xe0\x9e\x28\x39\xca\x3f\xfc\x5e\xb0\x0f\x89\x5b\x59\x44\x2e\xcd\xf2\xd8\x44\x74\xbf\x58\x7c\xc1\x38\x64\x44\x40\x1d\x15\x64\xc7\x7c\xf0\x7e\xaf\x17\x7f\x68\x34\x69\xb2\x5a\x44\xde\x3b\x31\x91\x77\xca\xb7\x6f\xe4\xca\xf9\x09\xf6\x8d\xb7\xb6\xa9\xc4\xe0\x82\xe4\xb4\x27\xf4\xe9\x2b\x32\xd3\xbc\xea\x8e\x13\xf7\xb2\xd5\x21\x83\x17\x00\xd1\xce\xa4\x95\xbe\x9b\xf1\x2e\xae\xd8\x48\x70\xbb\xc0\xb0\x15\x71\x07\x5c\x2c\xd2\x8e\xfb\xed\x94\xf3\x41\xdc\x59\x22\xe8\x85\x94\x56\x4b\x69\xb2\xde\x2b\x24\xf7\xb6\x44\x36\x14\x7e\x43\x98\x8c\x6d\x74\xbe\x13\xe5\x51\xb3\xd3\xf1\xbc\x36\x91\x92\xd3\x60\x20\x4e\x35\x50\xe2\x55\x18\x5e\x80\x75\x48\x18\xc7\xca\x8b\x84\x94\x47\xb9\xd6\x22\xc3\x6f\xb2\xf1\x92\x29\xe3\xa3\x65\xed\x77\x5b\xe2\xeb\x71\xb3\x09\x74\x7d\x28\x07\xdb\xf8\x10\xd9\x22\x3c\x42\xae\xd3\xb9\x7a\xef\x6f\x17\xc3\x49\xe8\xa8\x66\x3d\x1a\xa4\x25\xcf\xa5\x87\x19\xd6\xae\x3e\x49\x4c\x28\x3f\x61\xd8\xc4\xf5\xb2\x04\xbb\x36\xa7\x0a\xc7\xc8\x6f\x9b\x9a\x06\x8d\x18\x0e\xc3\x40\xc6\x40\x87\x2a\xf7\xc8\x6d\x7b\x29\x3d\xe1\x80\xed\x4f\x4f\x6c\x97\x4e\x86\xac\x2e\xc7\xfd\x26\xb6\xd1\xcd\xd7\xac\x24\x83\x9c\xcf\xce\x93\x71\xb2\xf4\x12\x4f\x45\x93\x72\xd6\x78\x5f\x2b\x86\x09\x29\xfb\xa3\xed\xc7\xd8\x09\x91\xb4\xb5\x73\x84\x57\x02\x9a\x33\x42\xa6\x13\x44\x68\x01\xf9\x6f\xba\x5b\x18\xbd\xc5\xcd\x56\xdd\x50\x19\x1c\xd8\xc5\xcb\x52\x75\x41\x40\xa6\xd1\x08\x04\xd5\x89\x5a\x6b\x33\x5a\x21\x90\x1c\xb1\x1a\xc3\x35\x49\x65\x55\x10\x9d\xd7\xbe\xc1\x21\xdb\x63\xd6\x14\xbc\xcc\xb6\xc2\xa9\xcb\x62\x6a\xc3\xe4\xb7\xbd\xb2\x89\xfd\x10\x35\x5a\x0e\x9f\x03\xf5\xb0\x6f\x1f\x09\xcf\xd7\x79\x61\xb7\xcc\x0d\xeb\xf1\xa6\x4f\xd6\x69\xba\x16\xee\xa3\xdb\xae\x23\xd2\xf9\x52\x07\xbd\xb3\xed\xd0\xd5\x96\xa6\x89\xa5\xd4\xd8\x83\xc7\xbb\xd2\xd2\x9e\x22\x4e\x67\xc9\x48\xae\xcf\x71\xd3\xca\xed\x8d\x0d\x7e\x78\xa2\x68\x7a\xe2\xb1\xc5\x69\x11\x4b\x95\x10\x0a\xed\xa8\x9d\x10\x53\x14\x5d\x28\xb1\x2a\x99\x6d\x08\x84\xc4\xe6\xcb\x40\x7a\x89\x10\x54\x53\x34\x6c\xe8\x87\xc4\x54\xfd\xdd\xdc\xb9\x23\x52\x29\xfb\xe0\x39\x11\xb3\xbb\xe0\x37\x3f\xd9\x0a\x09\xd8\x35\xa0\x97\x09\x27\xab\xfa\xfe\x69\x68\x3e\xf1\x6d\x0f\x77\x83\x36\xa2\x5c\x69\x59\xb0\xb1\xe8\xca\xab\x81\xc1\xf1\xd6\xca\x1d\x45\xa4\xd2\x36\x59\xee\xd1\x47\xca\x8f\x80\x77\x43\x09\x39\xb7\x4b\xea\xc5\x43\xec\x5f\x7e\x05\x59\xa5\x5e\x3a\x6a\xdf\xf6\x6d\x87\x20\xcb\x2e\x32\x18\x5b\x48\xc9\x8f\x50\x8f\xb5\xf9\x34\xe7\xba\xa2\x8b\x50\xb5\x1a\xed\x67\xe3\x09\x1f\xeb\x66\xd3\x0a\x5e\xb6\xad\x60\x67\xdc\xdd\xa8\x6f\xfa\x68\x8d\x3b\x84\x73\x06\x04\x75\x81\xd5\x82\xf0\xdf\x58\xa5\xeb\x3f\xe9\xe9\xb0\xd0\x76\xda\x4f\x8a\x04\x5f\x00\x43\xa6\x80\xc4\x88\x81\xe5\xbe\xcf\x05\x28\x08\x3c\xf3\x4b\x73\xfa\xc3\x36\x3c\x74\x78\x2e\xe4\x09\xc0\x32\xeb\xc4\xd1\x05\x48\x59\x3e\x78\x4f\xdf\xa4\xec\x80\xaf\x75\x87\x47\xe6\x29\x7a\xdb\x7f\x88\x47\x08\x5a\x2e\xf6\x30\xd2\x7c\xc8\xbb\x85\x76\x4c\xbf\x5f\x2d\x1e\xfe\xdb\x7f\x3c\xca\x8a\x43\x2c\xc0\x8a\xd9\x45\x96\x1f\x81\x60\xa5\x55\x6a\xc2\x62\x8a\x56\xc1\x89\x11\x81\xdc\xf5\x13\xde\x4a\x77\xdd\x58\xe8\xfe\x07\x5e\xe8\x7e\xc4\xf6\xd9\xb4\x3e\xf7\xef\x9d\x08\x48\xe9\x7d\xd2\x11\x7f\xfd\xec\xc5\x1f\x06\x4f\x77\xf7\x7f\xd8\x7b\xfd\xec\xbf\xf7\x06\xaf\xf7\xfe\xb0\xf7\x5f\xaf\xca\xfb\x87\x6b\x83\xa3\xfb\x6f\xe2\x30\x4f\x76\x9f\xfc\xb0\xa7\x9d\x45\xe8\xdc\xbd\x27\xbb\xcf\xf7\x7e\x92\x55\x74\x0e\x87\x5b\x7f\xff\xcb\xe8\x28\xef\xa0\xc6\x79\xee\x56\x17\x82\xff\x65\xeb\x7a\x70\xfd\x97\xee\xf5\x5f\xea\x7c\xb3\xd3\xcd\x1f\xbb\xf0\x3f\xbf\x78\xba\xf7\x7a\xff\xc9\xcb\xd7\xba\xc4\x60\x27\x68\x62\x33\x6f\x2b\xf3\xa0\xbc\xaf\x9a\xf9\x4b\xbd\xa9\x00\xad\x02\xbc\x5a\x41\x6a\x1a\x0a\x88\x6e\x32\xd4\xe1\x11\x75\x04\x44\x9d\x78\x7d\x1d\x38\xd6\x7c\x80\x36\x70\x90\x5b\x7a\xef\xe4\x1c\x59\x0f\xed\x16\xac\x87\xca\x1d\xba\x7b\xd1\x0a\xd7\x62\xc0\xc5\xdc\x44\x8f\xbf\xff\x6f\xff\xd1\x39\xdc\xde\xfa\x56\xf5\x43\x75\xde\x2e\x2a\xf4\x72\x89\xca\x25\xb0\x13\xe8\x57\xa9\x7f\x3c\x3e\x1f\xce\xeb\xea\x19\xc6\xbd\xa6\x94\x62\x67\x3b\xdf\xda\xe9\xe1\xd6\xe9\xd7\x25\xa3\x78\xa8\xb3\x8d\xfb\xc7\x5a\x9d\x25\x40\x97\x1e\x67\x78\xd0\xe6\x59\xaf\x96\xfa\x06\x8f\xb3\xac\x27\xd7\x51\xa7\x06\x7d\x0c\x33\x68\x6a\xc3\xff\x52\x83\x06\x5a\xdb\xbc\xc1\x71\x5e\xf7\x0f\x55\xca\x11\x44\x24\x9d\xf7\x05\x11\x90\xd8\x58\x3c\x3f\x18\xb5\x6e\x3d\xdc\xa0\x81\xb5\xe8\xdc\x87\x45\x20\xe0\x46\xd5\xc9\xf0\x5d\x35\x19\xff\xbd\x0a\x0a\xe8\xf9\x49\x2d\xf5\x22\xfb\x62\x67\xf0\xc5\x83\x2c\xef\x2e\x66\x3f\xcd\x3e\x54\xf3\x27\xc3\x1a\x34\x16\x6c\xdd\xc3\xfa\xac\x9a\x9b\xaa\x51\x8a\xa0\x38\xfb\xaa\x8c\x6f\xad\xe2\x6c\xbc\x28\x11\xc0\x37\x6d\x80\xe2\x05\x6b\x6c\x29\x20\xab\x37\x03\xc0\x38\x2a\x56\x47\xdd\xeb\x50\xd0\x0b\x6f\xcb\x17\xd9\x56\x06\xce\x04\x75\x45\x25\x90\xf1\x98\xd6\xfa\xaa\xc3\xe4\x0f\x92\xd5\xc0\x81\xe7\x8b\xa2\xae\xd4\xc2\x1d\xc2\x61\x75\x72\x66\xeb\x51\xbf\x1f\xab\xff\xd4\x40\xfe\x7c\x7e\xae\x07\xb2\x97\x65\x4b\x8b\xff\xfd\xff\xd1\xf4\x64\xb5\x2a\x31\xcf\x9b\x99\xdc\x33\x5f\x18\x9f\x5e\xda\xa9\x51\x95\xa8\xc5\x69\x57\x0a\x58\xf6\x14\xb3\x8b\x85\x3e\xa1\xac\x82\x3a\x42\x46\x63\xb1\xe8\x41\x1a\x95\x66\xb8\x10\x18\x45\x14\xa0\x0d\x44\x71\x6c\x35\x14\x78\xcf\x9a\x43\x7c\xd0\xdc\xed\xf9\xa6\x85\xa8\x2f\x8e\x15\x4a\x9d\x9d\xdc\xb0\x11\x50\x8d\x35\x3d\x32\x1d\x82\x0d\x3c\xaf\xe1\xd8\x6a\x9b\xa1\x08\x49\xb5\x4b\xb9\x15\xf6\x41\x91\x0d\xd2\x4b\xfe\x64\x78\x3e\x56\x67\x65\x6c\x9d\xa4\xfa\x8a\x23\xae\x7b\xb9\x74\x36\x3c\x1c\x36\x09\xa1\xda\x95\xda\xfa\xbd\x53\x50\x81\x9c\x9d\xf4\xd4\x7f\xc5\x87\xde\x87\xc2\xae\xfd\x9e\xfd\x59\x98\x6d\xd8\x33\xbf\x0a\x03\x67\xa0\xf4\x82\xe8\xe9\x1f\x85\x1d\xd1\x9e\xfd\x59\xd8\x1e\xf6\xec\x4f\x07\x4d\x10\x02\x97\x20\x08\x96\x69\xc0\x90\xa9\xff\x9c\xb4\x0f\xe5\x07\xe7\xdb\xe2\x2c\x76\xb1\x0b\xa1\x3b\x50\x9a\x5f\x4e\xbe\x29\x1f\x2d\xad\x7b\x56\xea\x1f\x4e\xae\xed\x63\x69\x7f\x7a\xb5\xeb\xfe\x96\xa2\xeb\x6d\xec\xd5\xc5\x71\xd4\x3c\xa1\xe1\x19\x2a\xf6\xe6\x12\x33\x42\xf8\xdc\x0e\x13\xfc\xe7\x85\x1d\xdf\x59\x6c\x28\xda\x8e\x29\x53\x35\x68\xc7\x47\x5c\xcb\xbe\xde\x3b\xd8\x7d\xf6\xa2\xcc\xe6\x84\xc3\xf7\xcf\x7e\x82\xd0\x66\xd9\xa9\x30\x1b\x7b\x79\x0e\x9e\xcc\x31\x74\x82\x3a\x3f\xd5\xe5\xe0\xc2\xb8\x9b\x42\xdf\xe8\xe8\x36\x9d\x2f\x07\x17\xe8\x6c\x4a\xfd\xbb\x4c\x6c\xa4\xfd\x8b\x63\x62\x20\x4d\xf5\x3a\xa5\x43\x14\x8e\x95\x12\xdd\xf3\xfc\x21\x5c\xee\xc8\xee\x70\x9b\x43\x7b\x3b\x3e\xc7\x67\x1a\xc5\xba\x3c\x84\x1b\x89\x45\x99\xfa\xc7\x1e\xf0\xf2\x23\x1b\xb0\xc6\x2d\x74\xb4\x5c\x6a\x3c\x84\xd7\x77\xf0\xe1\xf3\x4c\xad\x2a\x21\xb0\x42\xd6\x07\x89\xbd\x51\x6c\x56\x14\x87\x62\x12\xa9\x2b\x36\x08\xbb\x20\x70\x75\x89\x20\x8f\xa9\xf5\x1e\x8d\xaa\x3a\x39\x26\xa7\xe4\x40\x9d\x10\x00\x63\x28\x8b\x29\x55\x6d\xaf\x69\x3a\xa3\x30\xbf\x88\xef\xc2\x20\xbe\xfb\x18\xb2\x1d\x7f\xee\x4d\x47\x68\xa0\xf9\x6c\xaa\x7b\xc0\xf6\x50\xd5\x07\x53\x79\x81\x67\x8c\xf9\xd4\xc2\x3a\xc4\x54\x5d\xf5\x75\x3a\xce\x67\x7e\xb5\xb9\x69\x53\x68\x32\xb5\xb2\x3d\xe2\xa8\x4a\x58\x1c\xf2\x2b\xe8\x95\x1c\x4c\xad\x7b\xee\xa1\xbd\x5d\xb8\x13\xa3\xdb\x2f\xe0\xac\xc1\x59\x91\x08\x97\x49\xe0\xbe\xdb\x15\x0f\xd0\xed\x8a\x19\xa0\x2d\x44\x1c\x24\x46\x5e\xcf\x4a\xcc\xd8\xb2\xfd\xe9\xaf\xd6\x9d\xcd\x1d\xea\x50\x6a\x84\xf1\x8e\xcf\xcb\x04\x2c\x75\x1d\xb4\xd4\x00\xd2\xc2\xd0\x07\x16\x2d\x1f\x77\x12\x37\x3b\x3e\x6a\xb9\x34\x8d\x8c\x15\x59\x2e\x09\x79\x10\x75\xce\xea\x4a\x9d\x7e\x2e\xd2\xf9\x52\x70\xfb\xde\x8a\x09\xba\x8d\xac\x43\x7a\xca\xfa\xb6\x7f\x0d\x08\xf9\xf8\x04\xad\x68\x11\x2b\x5c\x9b\x2d\x1b\xa8\xab\xd3\x22\xb8\xc8\x1e\x8c\xee\xbe\x5f\x6e\x83\xdd\xdd\x9c\x3a\x35\xe1\x9a\x7c\xa4\x88\xdd\xd6\x56\x6c\x0b\xae\xba\xd7\x60\x97\xb4\xac\x84\x65\xe1\x04\x5e\x88\x85\xe1\x7b\x32\x9c\xde\x5b\xb0\x92\xdf\xda\x90\x9c\x8c\xae\x2d\xce\x86\x0b\xb0\xe8\x57\xd0\xef\x2b\xf0\x4f\x5b\xa1\x3b\x4f\xc5\x3a\x66\xa9\x39\x74\xa7\xc1\xa7\xa5\xa7\xaa\x77\xa3\x27\xda\x1d\xf9\x74\xb6\xf8\x5e\x26\xb0\x9f\x1e\xb7\x7b\x18\x24\xdf\xcc\x5e\xfb\x74\xa9\x7b\x30\x70\xd4\x6e\x2d\x82\x86\x95\xdb\xd6\x56\x22\x5c\x9c\x7d\xb7\x1c\x0a\x8c\x44\x59\xdd\xa6\xa2\x08\x82\x6e\xf2\x3d\xda\x7c\x07\x95\x1f\xba\xa0\x47\x7d\x5d\x8f\xc0\xcb\x27\xc3\x5b\x3b\x7d\x4d\x83\x1f\x09\x30\x0e\xa3\xf7\xd0\xa0\x02\x77\x5f\x31\x86\x9f\xb4\xd2\x79\x46\xad\xcf\x81\xd4\xaa\xf7\x56\x7a\xe9\xaf\xdf\xa5\x3f\xb5\x3e\x09\x5a\x16\x76\xb9\x46\x37\xfb\xec\x3c\x1c\x45\xcc\x3e\x2a\x66\x0b\xc5\x9d\xbe\x3c\x27\xef\xa3\xc6\x0e\x64\x69\x46\x4b\x31\x0a\x0c\x92\xa8\x02\x04\xbc\xd0\x3b\x02\xd2\x7d\x9b\x9d\xf3\x89\x08\xde\x21\xa0\x17\xaa\x5b\x0c\x81\x9f\xfd\x60\xc9\x48\x37\x21\x8a\x20\xa9\x8d\xb8\x45\x67\xcf\xd2\x20\xf3\x30\xb1\xce\x40\x80\xdd\x8c\xe4\xe6\x67\x40\x72\x13\x90\x5c\x2e\xd3\xa2\x54\x10\x8b\x64\x59\x3f\x61\xfc\xd7\xf1\x2b\x8f\xd0\x57\xb5\x36\x16\xf3\xcd\x32\x5b\xcb\x36\xdd\xd5\x83\xb1\xa5\xfc\x75\x92\x4b\x99\x15\x5d\xd4\xc0\x08\x1a\x91\x6c\xe1\xfd\x17\x73\xb5\xac\xaa\x51\xdc\x3e\xb9\xe9\x02\x70\x47\xcc\xfe\xad\x99\xfb\x06\x96\x3d\xc2\xe1\xaf\x62\x8f\xe9\xb1\xf5\xcf\x5e\xec\xef\xbd\x3e\x28\xb3\x31\xc7\xb0\xd8\xfb\x69\xef\x60\xaf\xcc\x46\x59\xea\xbe\x7b\x40\x43\xe9\xb1\xea\x32\x55\xbf\x02\x27\xb8\x75\xcc\x05\xbe\x9a\xc5\xf1\xc0\xba\x6b\xff\xd4\xa1\x2e\x08\xf2\xfd\x71\x56\x9e\xfc\xd4\xc6\xf9\xf9\x82\x70\x68\xe2\xea\x25\xca\x5d\x1e\x15\xfa\xd3\x77\xb2\x78\x84\xe8\x8f\x9b\xc5\xa3\x45\x7f\xdc\xac\xf0\xaa\x50\xfb\xe7\x9b\xea\xc3\x33\x1a\x29\x52\xeb\xb9\x60\x85\x4d\x9d\xee\x8e\x05\xe6\xc3\xf8\x31\x05\x43\xdd\x51\x0c\xe5\x6e\x39\x1a\x6f\x44\x88\x42\xd2\xf3\x86\x65\x8b\x49\x1e\x65\x29\xbf\x9b\x4d\x27\x20\xc1\x10\x9a\x6e\xfe\x6b\x7b\xbe\x11\x90\x38\x29\x98\x48\xd3\x09\x82\x5c\xaf\xfc\x89\x5d\xc2\x9f\x2e\x9a\x30\x0e\x6e\x4a\x3f\x48\x29\x23\xf3\x4d\x13\x42\x97\x4e\x3b\x96\x14\x81\x4a\x02\x92\x64\x98\x90\xc5\xe6\xc3\xf5\xa4\xe9\x5e\x64\x28\x88\x99\x77\x9b\xce\xfb\xb2\xa7\x65\xa4\x94\x5c\x76\x24\xc4\x8b\x55\x4d\x67\x41\x6a\x7c\x6f\xd3\xee\xe6\xce\x32\xbe\xe2\x0d\xd3\x7e\xe3\x9e\x50\x4d\x06\xac\x56\x94\xb2\x23\x0b\xe5\x92\x15\x0f\xd6\x38\x8b\x04\xfe\x31\xd6\x6f\x30\x3c\xce\x8a\x5e\x6d\x55\x12\x2d\xe0\x7e\xf7\xff\xaf\x5a\x79\x8e\x0d\x3d\xc3\x3f\xc5\xd7\x72\x7f\xc1\xa0\x6d\x67\x18\x72\xc8\x7a\x76\x07\x0a\x5d\xcc\x4e\x4f\x41\x77\x76\xbb\xdf\xce\x51\xb8\x08\x15\x3e\xb3\x6d\x3c\x3f\xba\x70\x5d\x3a\x72\xa8\x1d\x6f\x9d\x90\x94\xc0\xab\x28\x24\x2e\x08\xb6\x5e\xf2\x11\xa0\x38\x2d\xac\x6b\xd3\x1b\x21\x66\xb7\xa8\x67\xf8\xaf\x0e\x11\x1d\x43\x08\x95\xf0\x6f\x72\xe4\x51\x8d\xde\xc1\x57\x44\x76\x54\x94\x79\x8e\xad\x0f\xb8\x47\xe1\xea\xe1\x70\xfd\xde\xf8\x26\x17\x4e\x24\x43\xdd\x1c\xf0\x8e\x15\xdb\xa6\xc9\xad\xd9\x7c\xed\x8a\x54\x85\x77\xaf\xcd\xcd\x48\x0e\x3f\xde\xbf\x4c\xdf\xb7\x22\x85\x8e\x12\x33\x5d\xda\x99\x36\x6e\xb9\xe2\x7d\x4e\xf6\x6d\x33\xb6\x34\xc4\xfd\x4d\x35\x91\x2a\x9a\x5f\x1d\xcf\xab\xe1\x5b\x57\xe6\xf6\x28\x05\x6d\x2e\x7f\x71\x04\x15\xef\x8d\x13\x8c\x1e\xde\x6c\xbd\x57\xc9\x39\x89\x57\x03\x27\x8e\x88\xde\xe8\xae\xb7\xe7\xe8\xc3\xac\x71\xf1\x08\x0e\x21\xb9\xac\xe0\x02\x88\x10\xbd\xc4\x86\x0f\x38\x8e\x90\x80\x45\x96\xfa\x8a\x2b\x01\xaf\x3a\x86\x83\xf1\x77\x36\xed\x3d\x32\x56\xb3\x08\xe4\xb6\x54\xfb\x91\x11\x23\x3c\xb6\x41\xbd\xaf\x6d\x4a\xde\x8f\x2d\xa1\xd2\xb6\xee\xe7\x8f\xdb\x10\xdf\x2e\x24\xea\x37\x38\xa3\xb4\xb0\xd3\x3b\x36\x23\x1d\x17\x97\x78\x62\x22\xa2\xb4\x28\x3c\x62\x53\xf7\xfa\x49\x75\xea\x0f\x6d\xf2\xfe\x5e\xcc\xc7\x6f\xce\x56\x83\x56\x17\x69\xac\x5a\xdd\xb4\xc3\x16\x36\x36\xc2\x34\x96\x26\x43\x03\xaa\x4c\xa4\xa1\x8d\x8d\x48\x22\x96\xa2\x1b\x0e\xb6\x55\xf2\xf5\x02\xde\x32\x82\x16\xf8\xea\x1e\x8c\x0d\x9f\x2a\x91\x12\x34\xe1\xa9\x0c\x7d\xf6\x84\x15\x8e\x0d\x0b\xad\x3b\xb4\x0a\x62\xb1\xfe\x7d\x22\x6a\xb1\x2a\x19\xb9\x46\x99\x45\xf1\x20\x4f\xf0\xbf\x0e\xd4\x0e\x3b\x13\x5c\x8b\xf6\x34\x31\xd0\x4d\x1d\x4d\x0c\x65\x64\xce\xee\xa4\x9b\x2c\x9a\x29\x5c\x2e\x6b\x85\xd3\x3d\xb9\x9d\x48\xab\xb1\x3e\x98\xfd\x61\x16\xe5\x5d\x6e\xb6\xdf\x6e\xb1\x83\x40\x07\x3c\xb8\x17\x7e\x54\xb5\xe0\x9f\x27\x88\x03\xdd\x33\x5e\xa8\x31\x9d\x8e\x5e\x60\x26\xb3\x27\xac\xe5\xf8\x8c\x39\x47\x67\x63\xe9\xf3\xda\x1b\x88\x10\x8f\x3e\xa1\x5f\xee\x2c\xad\x92\x05\x8f\x76\x5f\x0c\xcf\xa3\x6d\xc5\x67\x8c\x61\x95\xf8\x08\x47\x06\xe4\xa8\x4f\x9d\x28\x43\x68\x22\x01\xa6\x73\x31\x08\xe6\x1a\x4f\x3b\x5c\x49\xaa\x33\x96\x42\x70\x65\x7d\xe9\x33\xd4\xa4\x3e\x12\xbd\x30\x0a\xbc\x34\x66\xf2\xc3\x92\x87\x00\x21\x3e\x33\xce\xf9\xd0\x90\xf5\xe5\xfd\x54\x07\xb6\x4a\x01\xd7\x1f\xab\x01\x16\xbd\x96\x59\x72\x0d\x6e\xd3\x36\x96\xe8\xab\xee\x47\x3a\xe0\xac\x06\xb4\x02\xb9\x75\xc7\x72\x89\xc1\x96\x1d\xcd\xa5\x9c\x01\x4d\x24\xa2\x5c\x9c\x28\xb3\x0c\x19\x48\x7a\xc2\x89\xbc\x4c\xfb\x7b\x7b\xbc\xb5\x43\xa2\xe1\x95\x88\x59\x38\x0e\x8f\x1f\xf4\x76\x84\xc7\x4f\x3b\x02\xad\xb2\xdc\x5f\x43\x76\x6b\x85\x88\x1e\x5f\x34\x13\xd7\x70\xd8\xfe\xd2\xb8\x84\x42\xaf\x9b\xad\xeb\xeb\x18\x50\x82\xb8\x6f\x2d\x13\x8d\x10\x87\x6a\x5b\x1a\x0b\x76\x54\x3e\x65\x63\x7d\x06\xcc\x6f\x99\x18\x77\xfc\x97\x12\x88\xb5\xc6\x7f\xd9\xb6\xc7\x7b\x16\xc2\x9f\xa1\xd8\x1a\x1c\x10\xb7\xe9\x00\x33\xcc\x7d\xb0\xbc\x19\xa3\xe6\xcb\xbc\x0e\x32\xeb\x8b\x73\x90\xdd\x86\xe9\x6a\x16\xce\x07\x6a\x9a\x07\xa6\x29\x0f\x02\xfe\x06\x89\xc3\xd1\xf0\x7c\xa1\xda\xd1\x3f\xd2\x00\x7f\xbb\x50\x68\x05\xd9\x67\xd5\xe4\x1c\xd0\xfc\xed\xd8\x1a\xdf\x56\xfb\x19\x07\xf0\xfb\xd9\xfc\x80\x7a\xd6\xe6\x62\x12\xc0\xda\xc2\xb8\xee\xd2\xd8\xb5\xf9\x98\xfc\xcf\x9f\xd5\xc8\xc6\x60\x3d\x5b\x5e\x52\x5c\xc3\x86\xe1\x1f\xf1\xdd\xd5\xa5\xf9\xaf\xcc\x72\x6a\x97\x1f\x0c\xe4\xf7\xdb\xfb\x4e\xad\xe4\xc8\xca\x59\x5d\xbd\xfd\xf3\xbb\x15\xfa\x74\x65\xf8\x15\x74\xdc\x53\x1e\x5c\x22\x3a\x57\x7a\x02\x62\x0e\x4b\x86\xf5\xe5\xf4\x04\xe9\x46\x8f\xa6\xe4\xc7\x02\x93\xd4\x25\xdc\x24\x54\x1f\x4f\xaa\x73\x57\xd2\x83\x3a\x6c\xfa\x21\x1f\x3f\x1a\x7c\x3c\x70\xfb\xed\xb3\xc9\xdb\xfc\x70\x55\x3a\xf1\x99\x0d\x17\x62\xdb\xe2\x16\xb3\xd5\x3c\x2a\xb1\x99\x10\xc7\x28\x6e\x1a\x0c\x4b\xd6\x01\x11\xa7\x9e\x9a\x08\x84\x2a\x08\x20\xe9\xc9\x9a\xbd\xed\x10\x63\xcb\x88\x71\x7a\xd4\x88\xc4\x27\xb1\x9f\xa6\xdd\xa8\x76\xdb\x60\x32\x9b\x9d\x9b\xe4\xf7\xe3\xea\x43\xad\x37\xdf\x5f\xff\x76\x51\xcd\x2f\xe3\x47\xc6\xe7\x23\xed\x9f\x4d\x21\x52\x75\xb6\x6d\x43\xfe\xf5\x3f\xa1\xc7\x77\x41\xe5\x69\x7e\x90\x24\x77\xe7\xd5\x1b\x88\x7f\x37\xff\x01\xd3\xc8\x05\x00\xac\x97\x1f\x22\x30\xbb\x36\xa3\x6f\xde\x09\x31\x11\x24\xe3\x46\xdd\xf9\x62\x3e\xaf\xa6\x8b\xd7\xb3\x8b\x45\x05\x4e\x22\x3b\xc3\xf3\x73\xbe\x00\x9e\x9f\x83\x55\xd8\x7c\x36\x99\xa8\xaa\xd5\x57\x77\x30\x38\xd1\x3e\x89\x50\x1f\x18\xa2\x12\x90\xdf\x22\x02\xea\x81\x78\x7e\x7c\x82\xfc\x8d\xf5\x17\x03\x2f\x93\x4e\x5d\x45\xe6\x37\x2a\xb5\xc0\x39\xef\xd5\x70\x71\xf6\x4b\xe2\x02\xed\x45\xd0\xf8\xf9\xf5\x4f\x16\x8b\x39\xe0\xdb\xd4\x3c\x01\xf4\xde\xa9\x74\xb7\x4d\xca\x28\xb2\xc9\x4c\x63\x04\xab\x0e\x2a\x17\x4d\xbe\x1f\xd7\x63\x44\xaf\xb8\x98\x4f\x6e\xd7\x22\x7e\x75\x75\x2b\x70\xf6\x42\x1b\x50\x1d\xca\xa5\xa1\x9a\x79\x35\x1c\xa9\x4a\xea\xfa\x69\x75\xaa\x36\xb2\xa2\x16\x18\xc2\x13\x4b\x1e\x66\xcc\x1b\xaa\x52\x8a\x7c\xa9\x72\x7d\xb5\xd4\x11\xa5\x6c\x38\x7a\x3f\x9c\x9e\x54\xaf\x75\xf1\xcc\x78\x2c\x88\x95\x65\xbd\x42\x2e\x0c\x0d\x9f\x0d\xa7\xa3\x49\xa5\x32\xb1\x77\xfa\x92\xf1\x61\x48\x5d\x76\xec\x1a\xc6\xf0\xe0\xa2\x8a\xd5\xaa\x7e\xb4\x0a\x44\x77\x43\x1f\xd9\x0f\xed\x17\xd5\xa4\x84\x17\x8a\x3f\x8d\x17\x67\xbb\x35\x3e\x2b\x46\x81\x11\x75\x05\x5c\x64\xef\x66\x8a\x0c\x8c\x66\x1f\xa6\xf4\x20\xae\xd2\xba\xe3\xba\x93\xf5\xc6\xd3\xf3\x8b\x45\x96\x53\xb5\x78\x31\x80\x2c\x20\x7c\x9d\x0c\x3e\x09\x9c\x1f\x6a\xb2\x93\xb3\xea\xe4\xed\xf1\xec\x23\xc7\x32\x83\xa4\xb9\x1a\x8b\x99\xf8\x3e\x1b\x8f\x46\x60\xb3\x7b\xa5\x9b\x76\x7d\x02\xac\x8f\x66\x27\xa8\xd5\x00\xd6\x31\xdf\xab\xdf\xf5\xf5\x75\x90\xd4\xd1\x71\x2a\x4f\xe9\x4b\xdc\xe4\x14\x1d\x7b\xf3\x06\x3c\x8b\x61\x16\xcc\x38\xd0\xf5\xa5\xdb\xcf\x8b\xf3\x4c\x74\x1d\x07\xd3\xae\xc5\xc8\x70\x73\xa5\x14\x34\x2d\x36\x90\x05\x3f\x68\xe1\x7d\x2e\xaa\x9c\xa1\x6e\xb7\xbf\x53\x48\xc3\x00\x72\x99\x3e\xff\xa5\x08\xc4\x36\x82\x1c\xd7\x02\x7e\xb8\x8d\xb9\x56\x06\x6a\x46\x94\x7c\x45\x61\x48\x56\x9e\x61\xb4\x18\xc4\x90\x71\x44\x6e\xbb\xd4\x0b\x07\x61\x3b\x16\xdc\xd3\xac\xa0\xd0\x70\x0d\x63\xf2\xb6\xba\x6c\x1b\x0f\x05\xf2\x64\x36\x22\x57\xbc\xd6\x49\x38\x24\xf9\x9d\xd3\xc9\xa4\xd3\x9e\x1c\x24\xe3\x8f\x62\xa5\xe9\xd0\xb5\xf6\xf8\x6f\xf1\xe1\x6c\x7c\x72\xa6\xbf\xa4\x99\xd0\xe9\x78\x32\x79\x36\x4d\x54\x25\x37\x95\x08\xf4\x87\x58\x79\xdd\xc0\xb4\x28\xe6\x37\xda\x90\x62\x47\xc0\x66\x7b\x3f\x9c\x74\x30\x93\xc3\xf0\x77\x84\xc6\x67\x64\x62\x56\x69\xc6\x21\x12\x09\x4c\xfe\x85\xc9\x80\x59\xbf\xdb\x29\x8d\xd5\xbd\x49\x05\x4b\x1d\x62\xa9\x70\x2d\x9b\xd9\xda\x74\xb6\x58\x43\x7d\x48\xd0\x50\x65\x6c\x55\x75\x2e\x9e\xcd\xd8\x99\x21\xe4\xbf\xd7\xd7\x7c\x36\x15\x19\xc4\x84\xe2\x66\xd5\xce\x85\x9e\x00\xfd\xfc\xa2\x13\x19\xd0\x48\xd3\x8a\xcc\x1e\x9c\x55\x34\xe1\xf6\x7d\xdc\x1b\xd2\xc2\x3e\x6c\xab\xf1\x95\x46\x87\x1a\x80\x1d\xcd\x71\x39\x64\x2c\x14\x61\x7c\x37\xae\x2b\x3b\x85\xf3\xaa\x9e\x4d\xde\xd3\x1e\xd8\xdc\x14\xfc\x45\x59\xee\xe4\x57\x58\x86\xd9\xf9\xae\xe5\x7c\x39\x5c\x0e\xc5\x03\x9f\xc3\x75\xf0\x99\xea\xcd\x1c\x16\x82\x27\x5a\xa2\x73\xe5\x59\x0d\xe1\x14\xe1\xe6\xb8\xbe\xbe\xe2\x39\xd8\xe5\x73\x10\x7d\x30\x57\x07\xf3\xe1\x54\x1d\xac\x63\xb2\x51\xf0\x2a\x95\x7a\x9d\xd4\x49\xc5\x88\xa9\xf4\xdd\xbf\x0e\x3f\xbe\xae\x14\xd7\x5a\x2f\x6a\x09\xa3\x96\x30\x50\xea\x7d\x88\x65\x7e\x31\xa9\x46\x07\xea\x86\x39\x57\x54\xfa\xfa\x1a\x72\x34\x5f\x03\x21\x20\x5d\x9d\x51\xac\x1b\x06\x57\x41\x6f\x6c\xc8\x2f\x88\xde\x62\x7b\x4e\x89\xc2\x9b\xa0\x5a\x21\x94\x76\xb8\x4d\xec\xa0\x9e\x39\x9d\xbc\xa3\xcd\x62\xd7\x75\x0e\x19\xa2\xea\x45\xb2\xcc\x0d\x1e\xe8\x85\xc9\x8c\x36\xcf\x00\x9e\x71\x5b\x5b\xce\xec\x6d\xc7\x66\x4f\xdd\x49\x20\x9c\x9b\xda\xc3\x1c\x02\x1d\x27\x5f\xbb\xff\x03\xdb\x5d\x45\x76\x04\x37\xda\xc9\x90\xa1\xc9\x0a\xfc\x93\xf7\x9d\x2c\x3a\x97\x0a\xfc\xe3\x65\x69\xe2\x9b\x15\xfa\x97\x07\x40\x14\x2d\x2b\xe8\x6f\xde\x3f\x33\xe9\xd3\x11\xa4\x4e\x47\x6e\x9a\x25\x18\x94\x6b\xbf\xbd\x8a\x61\x44\xb3\x02\xfe\xf5\x32\x78\x4f\x65\x05\xff\xb0\xf5\x07\x9c\x6c\xe1\xa7\x04\xb0\xc8\x69\x16\xe2\x23\x80\x00\x0e\xaa\xb0\xbf\x3d\x64\xe4\x09\x91\x15\xf2\x2b\x7d\xc7\x73\x45\x7e\x09\x47\xe0\x36\x2c\x70\xfa\x4a\x16\xb9\x52\x71\x90\x59\xff\x56\xc5\x41\x67\xf1\x71\x16\x82\x46\xc2\xad\xa6\x9a\x1b\xf6\x11\xdc\xb2\xfe\x2f\xa3\xf7\xbf\x6b\xef\xd4\xa1\x95\xf5\x39\xaa\x2e\xfb\x44\xd8\x15\x0c\xbc\xc5\x47\xa4\x12\x4f\x25\x12\xba\xb2\x9b\x3a\xd8\x6b\x22\xbf\x73\x65\x22\xc8\x16\x36\xd9\x0d\x12\x8f\x44\xa6\x18\x7a\x2d\x8a\xef\x2e\x77\x20\xbf\x92\x89\x6e\x47\x3b\xa8\x65\xdc\x74\x01\x8f\x88\x56\x57\x90\xe2\x26\x04\xa7\x89\x6b\xf7\x6f\x42\xe6\x95\x14\x44\x46\xae\xd8\x91\xfb\x73\xe4\x96\x0d\x54\x4a\x51\x22\xa2\xd3\xf6\x52\x3b\x9e\x9e\xcc\xf1\xfc\x04\x32\xfe\x8a\x28\xba\xa6\xe6\x9d\x41\xf1\x91\x8c\xac\xe9\x9b\x14\x1c\x21\xa9\x9f\x3a\x00\x4a\x03\x4b\xfc\x82\x63\x7b\xdf\xda\x90\xeb\x04\xce\xab\x8a\x0c\xaf\xd5\xaa\x52\xa0\x60\x04\xc7\xb9\x60\x6d\x6d\x31\xd4\xaf\x36\xf8\x76\xbb\x32\x92\x09\x99\x94\x0d\xdd\xe7\x0a\x62\xf9\x8a\x02\x5f\x44\xfd\xb1\xc2\xf1\xbc\x7a\x3e\x83\x93\xce\x5f\xb4\x28\xba\xc9\x45\xc5\x6c\xf7\xcc\xf9\xa4\x1d\xa4\x2b\xd4\x07\x89\x7b\xac\x38\xd2\x62\x1d\xdc\x07\xf8\x29\xee\xd0\xe1\xd1\xca\x33\xd2\xa7\xe5\xd2\xd1\xb7\xa9\xbc\x3b\x3b\x3d\x55\x74\x5b\x15\xd9\xaf\xe0\x54\x68\x5a\x11\x79\x43\xe9\x27\xb3\x77\xe7\x70\xc9\xcd\x8a\xa6\xa9\x8e\xd5\x30\xfd\x94\xe6\xa7\x37\x6a\x3d\xf9\x1c\x64\x5f\x73\x1a\x08\x4a\x8c\x62\xac\x4e\x27\x6e\x4b\x0b\x22\xfb\x3b\x42\x05\xbe\xe0\x8b\x9d\xdd\xda\xd0\xb3\x27\x7c\x13\x7f\x82\x92\x02\x12\x2c\xa8\xb5\xf5\x45\xe7\xde\x43\xbc\xd2\xd3\x5d\xde\x5e\xd8\x1f\xdd\x53\xd7\x0b\x88\x90\x7b\x3e\x23\x46\xb0\x97\x0d\x8f\x15\xf7\x72\x01\x23\x0b\xef\xf9\xbd\x6c\x6b\x67\x7b\x7b\xfb\xfc\xa3\x3a\x4f\x67\xe7\xf6\x6b\x99\x43\x34\x11\x85\xde\xc1\xac\x93\x1d\xcf\x46\x97\x19\xcd\x0d\x73\x2f\xba\x65\x7b\x31\xe7\xeb\xb6\xf6\xc8\x97\x2f\xbf\x90\x4c\x6d\x88\xbb\x27\x1f\xa0\xd7\x48\x80\x80\x30\x46\xeb\x5f\x74\xf1\xa6\xda\x05\x51\xae\x3a\x9f\xba\xc4\x2d\x5d\x45\x93\xcb\x2b\x46\xc2\xf3\x43\xf8\x45\x77\xaa\xce\x56\x94\xec\xb1\x67\x31\x12\x7a\x90\x67\x2e\xad\x9b\xe8\x08\x37\x10\x09\x6a\xca\xfe\xb6\xf1\x9b\x39\xb0\x20\xda\xce\x34\xf6\x08\x8e\xbc\xe4\xca\xa4\xd7\xc2\xd6\x27\x9d\x40\xac\xcc\xc2\xe9\xc9\x70\x01\x1e\x53\x22\xf1\xf0\xde\x9d\x0f\xe7\xa1\x8f\x64\xc5\x09\xdf\x9f\xd7\xef\xcf\x6f\xf0\xae\x29\x8e\x74\xbd\x3b\xa4\x4c\xf1\x37\xe2\x07\xf9\x93\x0f\x65\xec\xec\x6b\x4f\xa0\x1d\xd9\x8a\x44\x9f\x03\x87\xc4\x94\x6c\xfc\xcb\xaa\xb1\x6f\x93\x79\xbf\xde\xff\xe3\xab\x36\x99\x77\xd3\x63\x69\xe4\x85\x13\x3b\x2a\x18\xbd\x36\x8f\xc5\xa8\xbc\xa8\xce\x17\xd2\x62\x14\x52\xf6\x5a\x3b\x87\x1a\x4f\xe1\x09\x8d\x58\xee\x5a\x9b\x17\xe2\x91\x64\xc4\xf6\x57\xae\x30\xde\x0d\x90\x5d\x50\x7d\xe4\xfc\x32\xbf\xe2\xda\x89\x27\x2d\xaf\x28\x26\x53\x4f\xc2\x14\xb0\xb0\x7b\x57\x70\xf9\xe8\xe9\x1d\x56\x44\x44\xf9\x77\xd8\x0c\x2a\xbd\x2c\xc1\xaf\x7d\x53\x4f\xc0\x91\x3c\x8a\x79\x9d\xca\xb5\xec\x17\x0f\xe8\x57\x24\x18\x10\xc1\xa8\x28\xb8\x77\x01\xca\x9e\x62\x1c\x63\x8a\xfb\xf1\x81\xd6\x5e\x66\x18\x6a\x59\xb0\xec\xa1\xe7\xcb\x1e\xac\x83\x16\x10\xdc\x48\x6c\x2c\x04\xb8\x77\x45\x1e\xa3\x27\x2f\xae\xb6\x2a\x75\x83\x5d\x55\xd0\x61\x54\x63\xf0\x1b\x4b\x2e\x73\x3b\x4f\x7f\xc2\x2b\xb9\x7b\x89\x00\x39\x9b\xe8\x6e\x54\x7a\xba\x63\x2d\x0d\x92\x12\x54\x3a\x1c\x58\x68\xc0\x94\x99\xbf\xd8\xc7\xd4\x6e\x87\xdd\xfa\x69\xc9\x02\x0e\xe2\xa1\x8f\xc4\x51\x2e\xa7\xbc\x1d\x65\xf2\x2c\x34\x9e\xf7\x43\x24\xac\x7c\xe3\x36\x9d\x82\x4a\xcb\x10\xbd\x7e\xb4\x6b\x4e\xc7\xd4\xcd\x5f\xfd\xb5\xf3\x53\x4d\x84\x47\x29\xa2\x42\x90\x56\x40\x0b\xe0\x35\x78\x7b\x99\x3b\xfa\x42\x7c\xdf\x06\x39\x17\x2d\x71\xb4\x81\x9c\x96\xce\x12\xef\xbe\xb3\x3b\x26\xcc\x19\xf6\xc3\xf0\xb9\xa4\x36\xf9\xa6\x2e\x63\xfe\xc0\xc8\x73\x2c\x2f\x4e\x7a\xa9\x13\x09\x7d\x28\xd7\x65\xcf\xbb\x28\x94\x23\x13\x20\xd5\x10\xf6\xda\x46\xeb\x9d\xea\xc0\x68\xf0\xae\xa2\x0a\xa1\xb9\xff\xba\xa8\x8a\x7c\x56\xea\x86\x22\xf0\xe6\x69\x46\xa0\x1e\xe0\xa6\x97\xb8\xac\xb8\xbb\x00\xc1\x62\xe8\xec\x36\xd2\x86\x88\x80\x27\x6a\x10\xe1\x88\xb1\x7d\xbe\xc2\xeb\x23\x28\x90\x9f\xe9\x0c\x80\x24\xb4\x4f\xa7\x70\x9f\xf6\xe9\xbd\xc2\x76\xa6\xc8\x7d\x07\x39\x2c\x4d\x6c\xae\x14\xfd\x51\x2c\xd1\x78\x3a\x9c\x10\xed\xc3\x24\x3e\xe5\x89\xc6\x16\xde\x39\x23\x79\xa7\xe0\x7a\x44\xeb\xd2\xb9\xdf\x60\xca\x6b\x12\x36\x6a\x14\xf4\xe3\x5b\x2f\xc3\xc8\x12\x40\x1e\x68\xf1\x98\x78\x2e\xbd\x0f\xe3\xe9\x68\xf6\xa1\x20\xd2\x77\x20\x50\x36\xcd\x7b\x25\x70\x98\x82\x34\x6c\xdd\x4b\x2d\xbd\xef\xa5\x41\xfa\x07\x7b\xc0\xe9\x1b\x29\x2c\x66\x90\xc3\xf0\xe2\xd6\xca\x6a\xee\xa0\xf1\x61\x12\x6b\x8c\x8f\x02\xbf\x89\xd6\x12\x8c\x24\x31\xa4\xb8\x01\xfb\x78\x74\xfc\x69\x3e\x3c\xef\xc4\x4f\x94\x42\x9c\x76\xa2\x5c\x11\xee\x4b\xda\x2e\x4b\xd7\xdf\x59\xe2\x94\xf1\x1d\xa0\xc5\xc1\xd4\x65\x9c\xa2\xac\x2c\xb5\xc5\x62\x74\xce\xec\x4d\x3f\x3e\xae\xf1\xa1\x48\x0f\xb9\x74\x18\x1b\x0e\xaf\x93\x1b\x2d\x8f\x0c\xba\xd9\x6f\x76\x80\xf1\x17\x8d\xa7\xa6\xb9\xc5\xb8\x46\x16\x03\x7d\xc7\x2e\x66\x8c\x5a\x8c\xb2\x19\x72\x46\x2e\x6a\xb9\x94\x71\xe6\xc7\x02\x68\xa2\x06\x38\x4d\x92\xe4\x08\x33\xbf\x04\x25\x49\xd7\x00\x52\x34\xb9\x34\x24\x76\xc0\x51\x9a\x25\xe3\x96\x64\xda\xdb\xf7\xe9\x2d\x8e\xfb\xb2\x1f\x5f\x6c\x25\xcb\x22\x9c\x7a\x45\x28\xc9\x78\x29\xe9\xc7\xb6\x94\x20\x24\x25\xe5\x29\x02\xf1\x71\x19\xaf\x18\x07\x25\x55\x39\xe4\xd9\x3e\xcf\xa6\xfb\x17\x27\x10\xee\x5d\xb1\x58\xdf\x0f\xc7\x93\x8b\xb9\x65\x4e\x64\x4b\x74\x06\xe1\x60\x44\xd9\x9d\xb1\x22\xf2\xd0\x53\x5b\x1f\xb2\x34\xa2\x56\x71\x6a\x6a\xe0\xd3\x29\x42\xe1\xa2\x40\xe9\xbf\x3c\xd9\xc2\x91\x46\x3f\xf5\x08\xa7\x0e\x23\x6c\xbd\xdf\x78\x12\xea\x98\xbe\x1b\x1b\xf8\x07\x74\xaf\x16\xa0\x79\x30\x3b\x75\xf8\xbb\xeb\x6b\xf7\xd0\x73\x42\x19\xdd\xf9\x11\x47\xd5\x8a\xc7\x49\xe7\x54\x4b\x79\x3c\x50\xad\x04\x17\x60\x14\xb7\x04\x32\xf8\x95\xd4\xa6\x9c\x3c\x57\xd9\xd1\xc9\x9a\xc3\xcd\x67\x3e\x38\xbe\x38\x3d\x15\x9a\x74\x0e\x88\xe2\xb8\xbc\x0c\xce\x5e\xa8\x19\xf6\xab\xb5\xff\x46\x33\xec\x7b\x5c\x03\xc8\x04\xde\x2e\xd5\x90\x36\xc1\xbc\x3b\x57\x27\xe6\x34\x21\xcb\x46\x99\xc7\x60\x34\xae\xcf\xe9\xdd\xca\x83\xe2\x20\x48\xf0\x31\x58\xa8\x8d\x5f\x2d\x06\x43\x6a\x50\x68\x34\xff\x16\x2e\xec\x9f\x21\x70\xd1\x27\xcb\x00\x56\x13\xc6\xe1\x53\xad\x9a\xe6\x1f\x0e\x9e\xff\x14\x0b\x4c\x64\x32\xd9\xdb\xf3\xfe\x18\xa4\x97\x28\x16\x0a\xc0\x9d\x5c\x12\x0b\xe0\xa2\xfd\x0e\xd7\x6c\x9b\x08\xe1\x64\xa2\x16\xca\x3e\x2e\xd5\x20\x7e\x91\xc8\x23\xac\xe3\x60\xb5\x85\x80\xe8\x36\x7f\x54\xeb\x26\x88\xe1\xa8\x33\x10\x2a\x0a\xe1\xe4\x3e\x31\x8b\x3c\x0a\x67\xb3\xb9\x55\xde\x35\x41\xc5\xd1\x80\xfe\xba\x6c\x00\x1d\x8d\x9a\xc4\x3b\xa9\x35\x6c\x12\x3e\x1b\x3e\x35\x7b\xaa\x35\xb8\x3f\xb4\x7e\x80\xbb\x6b\x17\xb1\xd9\xa7\xbd\xd5\x18\x1b\x89\x6e\x70\x46\x92\x4b\x9f\xa9\x8a\x12\xe9\x5c\xca\x59\x23\xf2\xc3\x20\x47\xde\x6e\x6c\x1b\xf4\xad\x78\x5e\xf3\xe1\xac\xd4\xd2\x59\xb6\x16\xc6\x5d\xbc\xee\x62\xa5\xca\xcd\xa2\x31\x8b\xc4\x36\x5a\x7a\xdf\xbc\xd8\x4a\x5e\x73\x22\x43\x2e\x64\xb9\x70\x09\x64\xe0\xad\x2a\x6f\x15\x69\x44\xe4\x3a\x72\xbe\x0c\x84\xb3\x78\xdc\x4f\x03\xa3\x97\x8c\xf9\xc5\x39\xfe\x12\xf1\xbe\x1b\x23\x21\xc7\x0f\x3f\x1b\xd0\x8e\x5b\x1a\x28\xfa\x0e\x12\xdd\x0a\x56\xd1\xbc\xd2\x02\xd6\x4f\x89\x03\x68\x42\xd8\xfd\x26\x1e\x3e\x9b\xa2\xbc\x3d\x07\x4c\x03\xfa\x88\xa9\xa9\xb1\xc5\x4c\xfd\x60\x76\x05\x51\x41\x9f\x57\x6a\xcb\x60\xb2\xbd\x8f\xc0\xe8\xb8\x21\x75\x12\xbc\x31\x60\xa1\x07\xbe\x1a\x69\x97\xdd\x05\xfb\x51\x7e\x27\xa2\x61\x2a\x46\xef\x52\xdd\x76\xf7\xe1\xe1\xe1\x74\x5c\x8d\x4a\x6c\xa3\x4b\xa9\xf0\xc6\x70\x7d\x2d\x53\x48\xa7\x49\x07\x9f\xd0\x30\xa4\x55\x49\x70\x7a\xe2\x21\x7d\x63\x63\xdd\xab\x1e\x44\x8f\x3e\x5a\x65\x26\xcb\x64\xfd\x08\x96\xa5\x6c\xac\xef\xa3\x58\x86\x2d\xeb\xbb\x14\xe6\x1c\xba\x0d\x1c\x2d\x03\x64\x6f\x8a\x68\x23\x92\x2e\x82\x1e\x72\x09\xc4\x08\xa9\xb0\xc9\xfc\x6a\x19\xd3\x33\x58\x99\x41\x3a\x5c\x21\x84\x37\x57\x93\x64\xb1\x3e\x63\xc8\xc8\xa6\x6d\x18\xee\xa2\x1d\xb3\x8b\x50\x62\xdf\x72\x68\xc5\x1e\x3c\x62\xe1\xf2\x7e\xe7\x87\x76\xc6\x18\x57\xa5\x09\xe5\x8b\x9f\x2b\xed\xdb\x08\x46\xc5\x15\x0d\x2b\x05\xce\x92\xda\xec\x10\x79\x09\x21\x9f\x90\xb4\x54\x42\x00\x2b\x1f\x7b\x69\x6b\xe1\x9e\x3f\x53\x94\x55\x3f\xa2\x6a\xe3\x33\x5e\xa3\xc1\xd6\xaa\x51\xe2\x57\xbc\x36\xb9\x97\x98\x7f\xc8\x9b\xc0\xaf\x16\x6d\x34\x12\x49\xf4\x4b\x37\x92\xa8\x6f\x11\x13\x79\xd3\x03\x31\xc6\xcb\xd3\x80\x11\xa7\x64\xf2\x42\xf8\x2e\x88\x35\xda\x1a\xcd\x3c\xc2\x2c\x47\x6e\x33\x11\x26\x39\x60\xa4\x31\x78\xba\x61\xe8\x69\x63\xb2\xf9\x4c\x13\x8f\xe3\x19\xdb\x51\x40\xdd\xde\xd5\x62\x76\x71\x72\x86\x16\x5b\xbd\x0c\x7f\xa3\xf2\x2b\xe8\x17\xa8\xdf\x18\x4f\x90\x92\x9f\xab\x9f\x9c\xaa\xca\x73\xe2\x1e\xe8\x8c\xe0\xaf\x13\x90\x7c\x4c\x38\xf9\x09\x7e\xa0\x5e\x24\x58\x33\xf4\x40\x55\xf2\x29\x98\x35\x40\xca\xc5\x39\x7e\xff\x7c\x8e\x5f\xea\x68\xa8\x6b\x4c\x78\x05\xbf\xb2\xc2\xd8\x40\xf4\xc8\x4c\x80\xca\xb1\xc5\x00\xa7\x41\x59\xa6\x28\xea\xa8\xba\xe8\x69\xf2\xf2\x5c\x7d\xb0\xae\x66\x4f\xeb\x3e\x8c\x8e\x27\x9c\x30\x9a\x5d\x1c\x33\x6f\xcc\x15\x52\xf7\xf0\x27\x75\x8f\xed\x15\x7a\x64\xb8\x80\xba\x9b\xf0\x43\x1d\x78\x9c\xf4\x52\x1d\x84\x54\xb6\x02\xf5\x54\x2e\xbc\x37\x45\x4b\x40\xfc\x3d\xa9\x86\xa6\xd2\x9f\xe0\x77\x56\xd4\x17\xc7\xef\xc6\xaa\x06\xfa\x0b\x4a\x36\xe7\x50\x21\x29\x38\x14\xa4\x4f\xae\xf0\xc5\xbf\x0a\xe1\xf9\xf0\x0d\xcf\x07\xfc\xe4\xe9\x80\x9f\x94\x40\xbf\xb9\x79\xf8\xc9\xad\xc3\x4f\x6e\x1c\x7e\x72\xdb\xf0\x53\x75\x8d\x41\x5f\xbe\x27\x48\xd0\x1d\x81\x7f\x75\x5d\x23\x5d\xd3\x28\x5b\x16\x42\xad\xbb\x47\xca\x24\xf4\xfc\x20\x7c\x13\x81\xd3\x63\xe4\xaf\x6b\x09\x4d\x92\x36\x5c\x58\x64\xba\x50\x8b\xc0\x58\x1c\xc0\x59\x2b\x11\xe9\x75\x48\xc9\x85\xa8\xf1\xfa\xfa\x6a\x49\x8f\x4a\x1c\x2a\x4e\xb6\x80\xcf\x1d\x5c\xa3\x54\x3f\x77\xd0\x58\x8a\x0f\xbe\xcd\x89\x88\x75\x8e\xd6\x3a\x98\x22\x99\x4f\x88\xdc\xf8\x04\xe2\x35\x74\x42\xcd\x0a\x0e\x92\x8a\xe8\x82\xc8\x9c\xf0\xc6\xf7\x0e\xfa\xe9\x07\x92\x21\xdb\x0d\x66\x6b\x71\xfc\x7e\x20\x2d\x1c\xd9\x9f\x42\x0e\xd6\x21\xfe\x39\x42\x8f\xb4\xb2\x80\x78\x4b\x8e\x97\x7c\x61\x9e\x06\xad\x13\x70\xd9\x2d\x78\x78\x04\xb8\xcd\xac\x8b\xfd\x52\xe7\x4a\xd7\x9e\x38\x42\x67\xb5\x7a\xbf\xd0\x7a\xba\xea\x44\x7b\x3e\x9c\xaa\xb5\xc1\x3a\xde\xef\xf5\x75\xb1\x8b\xe7\x13\x05\x89\x84\x90\x7c\x6a\xd7\x2a\x22\x83\xcf\x4c\xc5\x3b\x2a\x41\x92\x54\xfd\x41\xde\xb8\x41\x9f\xf9\x45\x35\x54\xd0\x0b\x9c\x66\xae\xbc\x03\xb5\x89\x5e\x90\x6b\x75\xcc\xda\xd8\xe0\x1f\xeb\x65\x19\x41\x8a\xdb\xa5\xda\x35\xbf\x40\xd6\x28\x5c\xae\x80\xee\x98\xaa\x0b\x68\x29\x37\x4e\x71\xf0\xcb\xad\xe4\xf8\xe2\x18\x22\x05\x63\x15\x8c\x96\x1c\x60\x92\xd5\xaa\x34\xb4\x80\x85\x79\x1e\xbe\x21\x37\x0e\xc2\x13\x05\x54\xb7\xcc\xdb\x46\xff\x70\x34\x5c\x0c\xb7\x78\x8d\xe1\xd0\x1f\xb9\xb3\xc0\x1a\xc3\x82\xb4\xe7\x57\xf2\x2b\xae\xf2\x08\x26\x03\xc2\x50\xf6\x3e\x55\x0d\xca\x8f\xb2\x6c\x46\x7e\x69\x29\xf3\xd9\x48\x6f\x10\xe8\x18\x3f\x6b\x12\xc7\x97\x77\x87\x8b\xc5\xbc\x93\x05\xb8\x1a\x1e\xaf\x94\xd5\x1a\x73\xce\x6a\x44\xc9\xf5\xa1\x6e\x82\x7c\xcd\xe1\xc7\xc6\x06\xfd\xed\x9a\x71\x2d\xcb\x52\x2c\x62\x1e\x48\x06\x62\xbd\x35\x1c\x11\xb8\x30\x14\xa9\x65\x24\x74\x24\xdc\xf5\x74\x45\x4e\x38\xc5\xb2\xa4\x08\x7c\x34\xfd\x3a\x03\x88\x03\x16\x24\x2a\xc5\x95\x66\xd1\xd5\x78\x68\x2a\x3f\xd2\xde\xea\x70\x6f\xd8\x3a\xe0\x55\x7f\xba\x80\xbd\x62\x8d\x6e\xb8\xb0\xea\x81\xb3\x54\x9d\xc8\x84\xea\x74\x8e\x2d\x59\x76\xf6\x6f\x76\x19\x69\x01\xd1\xc8\x94\x54\x4c\xe0\xa4\x8d\xa3\x5e\x9e\x1a\x7d\x43\x50\x9b\xd3\xed\x64\x66\xcd\xc3\xa3\x03\x37\xca\x80\xd8\x38\x36\xd9\x8f\xaf\x72\x7e\x1c\x23\x4c\xf0\xb6\xde\xb6\x65\xdc\x7d\x51\x48\xf8\x60\xca\x1c\x62\xa6\x0b\x5e\x70\x36\xfc\xc3\xcb\x61\xcf\x25\x7c\x05\x2e\x8e\x62\xa4\x56\xc4\x7c\x16\x44\x6e\x94\x27\x41\xe2\x08\xd0\x5a\xad\xf2\x04\x21\xbd\x5a\xb3\x5f\xff\xfd\xdf\x8d\xaa\x64\xc3\xf9\xe0\x78\x07\xe5\xd0\xc0\xe9\x6b\xae\x7c\xdf\x38\x8c\xdf\x41\x6e\x64\xdd\xe0\x33\xb6\x11\xae\x5a\xdd\x36\x2e\xaa\x1a\x66\xbe\x4b\x3f\xc1\xd0\xad\x3b\x50\xa7\xde\x7f\xc2\x27\x84\x3e\x06\x49\xa5\xea\x30\xed\xbf\x9a\x0c\x34\x25\xc4\xf0\x74\x01\x26\x03\x0c\xc6\xf0\x2d\x5d\xd4\xb7\x9c\x86\x8b\x5c\xf3\x8d\xea\xd7\x0b\x4b\xb4\xd2\x65\xe5\x43\x70\x55\xf9\xd0\xea\xda\x3c\x62\x22\xb0\x8a\x6b\x73\xbe\x31\x90\xc0\x73\xfc\x0e\x11\xdf\xd8\x70\x3e\xbb\x04\x73\x7d\x0d\xeb\x90\x95\x64\x59\xa2\x0d\x67\x0a\xfd\x24\x4b\xe0\xd9\xe9\x1a\x9f\x23\x1e\x89\xe0\x66\x38\xb3\x93\xf1\x0c\xa2\x06\x0f\xe5\xd1\xee\x42\x9e\x91\x18\xbd\x0f\x9d\xcc\x30\xae\x98\xbe\x66\xb8\xd4\x35\xc3\x99\xae\x69\x6e\x74\x0d\x98\x4f\x86\x18\x11\x6b\x85\x5e\x99\x6c\x85\xf2\x38\x34\x54\x41\xb3\x8e\xa8\x55\x7c\x3a\xfe\xf8\xc3\x6c\xf6\xb6\x16\xc4\xaf\xc4\x90\xb2\x75\xef\x10\x0f\x2d\xb4\xa7\x3b\xc5\x03\x4f\xed\xc2\xc4\xd5\x88\xaa\x6c\x5e\xc0\xde\x33\xe5\x9d\x0b\x24\x56\x7d\x2e\xbd\x5b\x2b\x99\x36\xa9\xc0\xaf\x76\x89\x4f\x3e\xdf\x7d\x19\x7b\xbe\x8b\x5c\xa2\xbd\x3b\xbd\xd1\x0b\x40\xda\xbd\xaf\x4e\x01\xc3\x95\x57\x53\x78\x72\xa1\x68\xb9\x8a\x79\x01\xaf\xf9\x1a\xc8\xf3\x6f\x6f\x0f\x16\x22\x4e\xc8\xa1\xd1\x4f\xb8\x0e\x98\xfa\x8c\xae\xa1\x49\x39\x24\xa8\x23\xa1\x89\x05\x6d\x91\xd2\x23\x57\x06\x6e\xcb\x9e\xbe\x7c\xde\x0b\xdf\xf3\x2d\x3c\x05\x22\x5c\x03\x5b\x7a\xec\xf8\x77\xbb\x4f\x07\x07\xbb\x7f\x18\xbc\xd8\x7d\xbe\x37\x38\xd8\xdb\x3f\xb0\x91\x65\xff\x67\xb8\xf5\xf7\xdd\xad\xff\xde\xde\xfa\xf6\x2f\x5b\x47\xf7\x43\xe8\xd7\x7b\xaf\x7e\xda\x7d\xb2\x97\x2a\x20\x02\xb7\x02\x7e\xe7\x07\xc3\x37\xa4\x97\x4f\x7f\xd9\x04\x40\x7f\x68\x44\xe9\x1b\x95\xfc\x52\xa8\xa1\x76\x90\xa9\x26\x28\xea\x7e\x9a\xf8\x88\x0d\xa8\x17\x59\x46\x56\xba\x00\xf3\xe4\x87\xdd\xd7\xfb\xa6\x4f\x1b\x9d\xc7\xeb\x7f\xf9\xb0\xd9\xcf\xaf\x0f\x1f\x3e\xca\xee\xfd\xaf\x8e\xb5\xfb\xea\xe5\xfe\xfe\xb3\xef\x7e\xda\xf3\xc0\x0f\x37\x18\xca\xf6\xbd\xaa\x4f\x86\xe7\xd5\xae\x62\x82\xc7\xc7\x17\x8b\xaa\xc3\x96\xc6\x78\xc7\xc5\xac\xf2\x2a\x7b\x98\xf5\xb2\x8d\xc9\xa2\xaf\x36\xe5\x23\xf8\xf9\x06\x7e\xde\xcb\xee\xa9\x9f\x7f\xbb\x98\x61\xfa\x3d\x48\xff\xd7\x8f\x0f\xbe\x86\x8f\xff\xa5\x8f\xdf\x6f\xf7\x33\x9a\x45\xaa\xe9\xc9\xd9\x70\x6e\x95\x66\x64\x6c\x4d\xca\x3f\x54\x49\x47\xd7\xd7\xd9\xc6\xf0\xdd\xb9\x2e\x49\x4b\xa7\x44\xac\xba\xda\xeb\x5d\x87\x6e\xce\xd1\x4e\xd2\xe8\xf3\x8a\x93\xf1\x22\xc1\xbb\x95\xf3\xe5\x0c\xbd\xac\xa2\xb0\xe8\xd2\xb8\x9f\x0c\xa7\x6a\xaf\xc0\x74\xbd\x9c\x3e\x03\x79\x46\xed\x6b\x63\x8d\xc6\xef\x4b\xe3\x3b\x82\x44\xca\xcc\x65\xa9\x13\x63\xfc\x5e\x5d\x26\xaa\x49\x12\x80\x6d\x40\xfa\xd5\x04\x36\xbe\x9d\x8a\x6c\x8a\x26\xac\xd9\xe9\x6c\x06\xee\x3d\xc6\xef\xd9\xfc\xe5\x89\x62\xee\x47\x9d\x6a\xa2\x99\xb1\xf5\x75\xc8\x1b\x6b\x82\xd1\x45\x4f\xf5\x1d\x2a\xb6\xec\x24\x9d\x44\x99\x25\x20\x9f\x6e\x3b\xfe\x8a\x07\x45\xee\x41\x14\x42\xe8\x22\xc5\x01\xd8\x4d\x06\x7d\xd5\xe5\x21\xff\xba\xbe\x86\x2b\x0a\x2b\x2a\xd2\x71\x53\x66\xd9\xd2\xa9\x43\xd2\xa5\x41\xc5\x62\x1a\xd4\x17\x1f\x9c\x0d\x6b\x2d\xb7\xc1\xeb\x38\xe7\x22\x45\xab\x6a\x02\x3a\x91\x1f\x0c\xf0\x6c\xe4\x7c\x9a\x61\x76\xa1\x58\xb2\x31\xf6\x92\x15\x71\x70\xbe\xf7\x17\x97\x93\x8a\x52\xe8\x22\x44\x68\x73\x8a\xa2\x79\x21\x25\x15\xdd\xdd\x2c\x29\xb1\xef\x04\x72\xd7\x72\x19\xa1\xfd\x0d\x9f\x62\x28\xdd\xae\x96\x91\x34\x35\xb6\x10\xae\x9d\xa9\x7b\x3f\x02\x01\xe2\x1f\x51\x31\xbb\x5c\x4c\xd7\x88\x64\xd9\x45\x54\x2d\x52\x3d\xda\x21\xaa\x75\x1c\x57\x56\x3b\xa3\xc0\xed\x16\xd8\x78\xbb\xa7\x98\xed\x68\x93\x89\xf1\xda\x41\xff\x13\xeb\x31\xd2\x2a\x5b\x08\xcc\x31\x97\xcb\x62\x2c\x8e\xab\xf1\xc8\x6d\x56\xdd\xf8\xc7\x23\x6f\x78\xd5\x84\x7b\xe6\x1a\x82\xd6\x0d\xcd\x72\x70\x06\x61\xb7\x2d\x19\xe4\x78\xfd\xa4\xc6\xbd\xbe\xe8\x1b\x70\xd6\x05\x25\x0f\xed\x5e\x2a\x11\x39\x37\xb8\x3f\x5d\xc7\x76\x03\xd4\x57\x44\x1a\x31\x33\x5f\xc6\x76\x24\xc0\xc7\x69\x13\xb8\xb7\xf4\x40\x9d\x9b\x0d\xe2\xb4\xf9\xaa\x2d\x79\xa5\x81\xb2\x95\xcb\x81\xf2\x53\xd3\x03\xf5\x2a\x40\x7d\x45\xa4\xf5\x1b\x38\x7d\x99\x81\x0a\xf0\x71\xf7\x01\x12\x81\xe8\x48\xc9\x56\x90\x56\x94\x41\x0a\x0e\x48\x90\x2a\x7b\xe8\xae\xdf\xe3\xea\x8d\xd4\x27\x88\x13\x59\xe2\xb7\x1c\x42\x9b\xbb\xd5\x00\xc0\x4b\x75\x8a\x28\xf2\x03\x44\xcd\x3b\xc7\xb8\x24\x61\x6b\x04\x65\xc4\x18\xd1\xa1\xeb\x9d\x0f\xe8\x4d\x08\x65\x01\x96\x2e\x6f\x6c\x90\x61\x8a\x26\xdc\x7c\x3f\x23\xda\xe7\x39\x79\x11\x60\xd4\xa8\xba\x2b\x81\x4f\x56\x73\x3a\x9a\xf8\x74\x80\x1e\x9f\x16\xa2\x3a\x45\x05\x4a\x77\xe3\x17\x0e\x31\xe3\x0f\xdc\xfd\xa9\x5d\x82\x2b\x3e\xb5\x32\x68\x96\xc3\xe9\xc3\x1a\xb1\x64\x5f\x13\x75\xc5\x27\x6d\x46\x59\x49\xd4\xce\x56\x14\x4a\x03\xde\x5b\x53\x58\x67\xf7\x36\x7d\xde\x4b\xc1\x6c\x2a\xb6\xaa\xef\x51\x32\x6d\x73\xc4\x7d\x91\xf5\x60\x52\xac\x2a\x86\xb5\xfc\xb4\xa8\xf9\x44\xd2\xe4\x14\xb1\x5e\x22\xe7\xaf\x3a\x2a\x9b\xa3\xb1\x50\xf5\x00\xb5\x86\xbe\xc3\xad\x80\xa1\x34\xbc\xff\x44\x00\x60\xb9\xad\x04\x3e\xd1\xb5\xb0\x8f\x31\x16\x3e\x84\xec\xa3\x7c\x33\x53\xfc\xdf\xd2\xb4\xeb\x0d\x09\x6d\x28\x8d\x24\xce\x2c\x69\xfb\xc3\x4f\xc0\x88\x93\x74\xa6\x8f\x11\x24\x0a\x8c\xc0\xf5\x31\x24\x6d\xde\x8b\x0d\x24\xd6\x70\x08\xff\x1e\xe1\x10\x2e\x97\x89\xf3\x41\xe3\xc3\x8a\x3e\x72\x84\x38\xc9\xa8\xae\xc4\x47\xc8\x28\x70\x93\xda\x09\x0d\x85\xd1\xbf\xbe\xbe\x66\x61\x06\x81\x94\x65\x36\xbd\x40\xc1\x1d\xd6\xab\x13\x81\x23\x72\x7b\x86\xe3\x8d\x3d\xa3\x5f\xaa\x07\x48\x54\xe3\x30\x7e\xef\x05\x26\xdc\x7b\xb7\xff\x82\xec\x63\xff\x4d\xad\x8f\x32\x87\xbf\xa3\x3f\x44\x7d\x9e\x4c\x66\xf5\x0a\xd4\xc7\x92\x34\xf0\xc4\x89\x12\x5f\x87\xe4\xd9\x5d\x77\x3f\xb1\xed\x36\x15\x16\x8a\x4f\x70\xc9\x58\xea\xf6\xa9\x9b\x3b\x74\x1b\xd7\x91\x1b\x8f\x96\x85\x47\x99\x6e\x80\xfc\xaf\x47\xa4\x30\xfd\x3b\xcd\x63\x5b\x9a\x55\x2c\xe0\xcd\x15\x79\x50\xbd\x4b\x36\x36\x68\xb3\x4c\x49\xf9\x2b\xbc\xf3\xa8\x71\xd7\x85\xd2\xa4\x6e\xf3\x1e\xfb\x97\x49\xec\x24\xac\x1e\x96\xd2\x23\x5e\x87\xb6\x4e\x7d\x41\xc6\x0b\x23\x1f\x09\x89\x2b\x93\x29\x94\x17\x5f\x54\xee\x13\x28\x7f\x1a\x9a\xab\xf3\xf9\x9d\x67\x0c\xee\x1f\x46\x79\x2b\x89\xf5\x8a\x61\x7a\x56\x84\x54\xf5\x76\x14\xf5\xe6\xe4\x53\x4c\xa4\xa0\xa1\x82\x66\x12\xc9\xf4\xd0\xc6\xfc\x4c\xae\x82\xfc\x73\x50\x52\xb7\x55\x5c\x64\x92\x6c\x7e\x3e\x92\x69\x1a\x46\x2f\x91\xb8\xb0\x25\xc5\x6a\xa6\x55\x5a\xf6\x40\xb9\x4b\x7d\xb5\xf3\xf7\xf5\xd9\xe2\xdd\xa4\x64\xf7\xf0\x8a\x00\x48\x09\x04\x64\xf9\x4c\x8c\x14\xdd\x75\x9c\xac\x02\xc1\xdd\xf0\x6a\xa6\xf1\x3a\x70\xe7\x1f\x65\xac\x9c\x52\x4c\x77\x54\xd2\x9e\xe4\xa0\x2a\xcd\x39\x15\x68\x0a\x89\x02\x46\x01\xd4\x35\xa9\xc2\xc5\xa0\x85\xf4\xfc\x0c\x32\xb6\xbc\xb9\xb2\x87\xa3\xf1\xfb\xfb\x8f\x32\xed\x88\xa3\x23\xea\xcd\xbb\xd0\x3f\xfb\x4c\x6c\xaa\x0c\xcd\xcd\x9c\x81\x84\x9b\x9c\xfd\x4e\x91\x67\x3e\x40\x42\xdf\x2a\x31\xb1\x72\x5c\x76\xbd\x8a\x38\xf9\x93\xc5\xc1\xd3\xaa\x1a\xd5\xfb\x67\x97\x25\x0f\xac\x26\x60\xeb\xce\xb8\x6e\x6c\xf8\x87\x07\x3c\xf5\xa6\x25\x44\x28\x42\xea\x13\x90\x15\xf4\x94\x38\x1d\x8f\x1e\xde\x87\x7f\x33\x9d\x7d\x3a\x9e\x83\x17\x90\xf1\x64\xe4\x40\xd6\x27\x8a\x5a\x2f\x14\x30\xff\xc8\xcc\xb5\xa0\xa1\x58\x09\x82\x99\x0e\xe9\x24\xc3\xfd\xaa\xfe\xd3\xd9\x58\xc1\x9f\x0f\x4f\xaa\x5f\xa6\x83\x60\xb3\xd5\x5b\x63\xe4\xc9\x91\xcc\x3d\xd0\x81\xba\xff\x71\x0b\x65\x77\x67\xb3\xc9\xa8\x9a\xdf\xb3\xdd\xc2\x88\xe4\x7e\xdf\x4e\xa0\x5b\x2f\x66\x23\x75\xba\x6f\x1f\xa1\x07\x96\x3f\x6a\x26\x0a\x1b\x00\x37\x2b\x01\xe4\x03\x0f\x72\x8d\xaa\xd6\xc3\x01\x6f\xf4\x38\x5c\xdf\x5d\xaa\xf3\x43\xd8\xbe\xd3\x5e\x87\xa3\x07\xb4\x66\x78\xcf\xbd\x71\xe4\x7a\xea\x10\x82\xf7\x6a\x80\xf1\x88\x90\x96\x90\xe8\x72\x16\x1f\x23\x29\x19\x7d\x2c\x00\x2f\x0a\xab\x4e\x62\x93\xd1\x47\x10\x9c\x8c\x28\x7a\x9e\xfa\x0b\xc2\x13\x80\x89\x54\x73\xa8\xb2\x8f\xfa\x58\xb6\x04\x10\xec\xe3\x01\xb9\x9d\xd9\x51\xb3\x26\x7b\xd5\xc1\x76\xe0\xb4\x54\x3d\xc1\x22\xd6\xc6\x1c\xbe\x96\x2c\xa3\x97\x24\x0f\xbc\xf9\xa9\x9d\xff\xfd\xf8\x63\x38\x26\x44\x2e\x31\x0a\x0b\x6d\x92\xfc\x0a\x89\x6b\xb6\x51\x9f\x5d\xf6\xb3\x4d\xf8\xb0\xf1\x44\x2b\x1d\x02\xc8\x5b\x78\x5c\x08\xfe\x31\x12\xdc\xfb\x9d\xbf\xd4\x9b\x79\x47\xaf\x13\xc5\x6e\xdd\xeb\x1c\xfe\xcf\xbd\xa3\xcd\xfc\x5e\x7e\xff\x8d\xdd\xf0\x58\x71\x81\xd5\xd4\xc0\x02\xe1\x34\x71\x6b\xec\x9f\x61\x3c\xe2\xfc\x23\x7b\x71\x1e\xbe\x59\x82\x5e\x00\x8d\xa5\x5d\x9d\x80\x02\x29\x4f\x50\x05\x34\x43\xe0\xbf\x59\x4f\xa3\x9b\x03\x73\x97\x9e\x30\x1c\x49\xc4\xbf\x74\x67\x41\x0f\x1f\x57\x86\x33\xa8\xd6\x71\x8e\xcb\xc0\xdf\x51\x07\x6a\x73\xc0\x44\x77\x1c\xe8\x1d\xd5\x19\xaa\xbb\x4b\xe2\x4a\x00\x01\x77\xf9\xea\x3c\xfc\xae\x52\x28\x55\x34\xd7\x04\x93\x2f\x97\xce\x24\x21\x66\x67\x97\xfa\x90\xd1\x03\x61\x29\x06\xab\x9b\x58\x18\x6f\x55\xad\x7b\x39\xc4\xc5\x8b\x2a\x45\xbe\xad\x15\xf9\xa5\x68\x95\xbf\xdb\xd8\xf0\x32\x70\x6f\x82\xd3\xda\xf9\xee\xa2\xb3\x8d\xca\x20\xff\xff\xff\x97\xc9\x36\xc4\x66\x8e\x96\xa5\x08\x7a\x18\x84\x9c\x5d\xce\xf0\x34\x2b\x0e\xd7\xf8\xa1\x21\xa6\xd8\xbe\xdb\x85\xd2\x18\x0c\xe7\x28\x4a\x6a\xa1\xf7\x91\xa2\x8f\x86\x3c\x5a\x83\xdf\x28\xa8\x78\x73\x30\x8e\xdb\xf4\x73\xd1\x62\xf6\xd3\xec\x43\x35\x7f\x32\xac\xab\x0e\x76\x93\xdc\xd0\x66\xfc\x62\x93\xa6\xb0\x1a\xae\x1f\xdf\xad\x6a\x95\x15\xf7\x1e\x92\x97\x66\xbe\x62\x66\xe8\x14\xea\x11\x50\xc8\x87\xf7\x29\xe7\xd1\xbd\xbc\xcf\x88\x55\x93\x2e\xfb\x74\x16\x82\xbc\x65\xbc\x43\x25\x95\xe9\x1b\xb3\x72\xf8\x12\xcf\x07\x0e\xcf\xe4\x52\x0b\x79\xb3\xd2\x0b\x8f\xbf\x31\x9a\xb6\x3b\x21\xe2\xd5\x2d\xd9\x4d\xc9\x8b\x21\x67\x82\xf6\xe0\x86\xff\xa9\x7c\x2e\xe9\xfa\x1a\x22\xec\xad\xfd\xd7\xf3\x9f\xf6\xab\x39\xbb\xab\xcc\xbb\xb5\xfe\x7d\xa0\xdf\xa4\xcc\xc5\x83\xcd\x1c\xe7\x70\xe3\x2c\x4d\x35\xfc\x2a\x03\x55\xbd\xae\xde\xec\x7d\x3c\xef\xc0\x1d\x8a\xf1\xdd\xcc\x14\xb9\x7a\x74\xf4\xef\xf9\x23\xc5\xa8\x8c\xd5\xb5\x42\xed\xef\x02\x1c\x9d\x0d\xdf\xd0\xfd\xd6\xc0\x3d\x22\x5e\xe4\xc3\x1c\x18\xb0\x79\xcb\x79\x9a\x18\x03\x2e\x5c\x68\x24\x91\xf0\x6e\x52\x73\xf0\x0a\x45\x7b\x92\xa1\xc2\x6d\xee\x4d\x03\x28\x2e\xea\xd5\x5f\x79\x24\x02\xe2\x68\xed\x8f\x8f\x27\xf0\xf6\xe6\xf3\xdb\x82\xd9\x6a\x30\x02\x14\xe6\xee\xc2\xea\x8f\xf5\x4e\x49\xef\x6d\x36\x02\xab\x9f\x79\xc9\x6e\xd8\xc0\x65\xcb\x8f\xd5\xe5\xf5\x35\x7d\x03\x0f\x28\x3e\x87\x13\x99\x79\xb2\x98\x4f\xd4\x67\x51\x57\x27\xb3\xe9\x68\x38\xbf\x24\x0b\x43\xca\x44\x1f\xde\x8f\x76\xf4\x23\x9b\x6e\x07\xc8\x99\x03\xee\xf4\xa4\xc1\x54\x31\xc1\xba\x26\x4c\xb2\xdb\xf5\x2f\x7c\xa7\x6b\x94\x7c\x3c\x46\x6f\x84\xbe\x01\x1e\x58\xa4\x7d\xa2\x02\x47\xb3\xfa\xd2\x0d\x4d\xd0\x9d\x8c\x15\x2c\x9c\x30\x06\xdb\x3f\xac\xa9\x48\x60\x34\xfe\xc9\xf7\x8c\x88\xff\xb7\x07\xae\xff\xb7\x71\xfd\x87\xc9\xec\x78\x38\x01\x9f\xc6\x11\x83\x6f\x9b\x49\xdc\x3d\x2c\x90\x36\x43\x6f\x5f\xd7\xe5\xab\x06\x5d\x97\xdf\x0b\x5d\x97\x26\x4b\x92\x1b\x1a\x5e\x47\x6c\xc3\xbf\x6d\xb5\x0d\xff\x56\x9a\x92\xcc\x8e\x15\xed\x7e\xef\x8f\x30\x58\x9b\xe8\x1c\x04\x3b\x46\xb6\xe8\x65\x12\xd8\xcd\x17\x7e\xef\x60\xa1\xb6\x5a\x6e\x07\x46\xc0\x62\x10\x8c\xf1\x0a\xda\x7b\xe8\x77\xef\xea\xdd\xf9\xe2\x12\x4d\x8e\xf1\x8d\xf8\x8f\xa8\x4e\xaa\xd3\x08\x04\x22\xe4\x79\x10\xe0\x4b\x39\xd0\x16\xad\xb4\x62\x2b\xab\x6f\x72\x90\x52\x6e\xee\xe9\x58\xf1\x9e\xe4\xfc\xbf\x6f\x34\x5b\x17\x18\xa4\x14\xf3\xff\x34\x9e\x4c\x08\xa0\xe7\x8e\x01\xdb\xbf\x81\x9d\x82\xd7\x22\xa7\xeb\x07\x9e\x85\x85\xc4\xab\x05\x7f\xe4\xba\xc3\xac\x84\x4a\x11\xfe\x74\xe5\xe4\xf2\xc7\xbc\x20\x13\xe4\x63\xa8\x8c\x7f\x17\x19\xf1\x21\x59\xde\xdb\xa6\x1e\x21\xcd\xb0\xe8\x1a\x40\x8c\x4a\x9e\x2f\xf3\x22\xe8\x72\x6f\xb6\x72\x5f\xac\x9e\x6d\xbc\x2f\x34\xa6\x43\x74\x6c\x8e\x3d\xf9\x69\xfc\xd6\xa0\x90\xf7\x75\x57\x87\xa3\xd1\xdd\xf4\xd3\x4e\x9b\xed\x26\xae\x0a\xdd\x57\x0f\x15\xcf\xc7\x1c\xa0\x1c\xd5\x2f\x36\x6e\xe6\xf4\x6a\x31\x2f\x7f\x37\x19\x8d\xf6\x99\x35\xe2\x2e\x22\x61\xa3\x3d\xbd\xb6\xf5\x50\xfa\xe9\x5d\x46\xb6\x93\xbb\xaf\xb2\xde\xac\x07\xfd\x24\xb6\x47\xc7\x9a\xc5\x28\x9f\xcc\x3c\xeb\x9a\xa5\x3d\x8f\x4e\xa3\xfe\x98\xcf\x8d\x0d\xf3\x53\x7a\xc4\x21\x7c\x4d\x16\x77\xf7\xfb\xf9\xec\xdd\x2b\xbc\x76\x71\xb4\x05\xbc\x8e\x03\x00\xcb\xf3\x07\x36\xa1\x30\x3f\xf1\xa6\x0f\xf7\x43\x1b\x42\xdf\x82\x69\x5f\x59\xb4\x9f\x55\x23\xe0\x91\x79\x32\x29\x65\xaf\x14\x43\x8e\xd7\xcb\xd3\x8e\x80\xd0\x4e\x64\xe9\x4d\x04\xfd\x1b\x74\x11\x5f\x9a\x06\x1d\x07\xf3\xfd\xec\x6d\xf5\xba\x52\x50\xf5\xf8\x7d\x35\x11\x11\x11\x58\x59\xdf\x76\x6e\x04\xbd\x7b\xfa\xf2\x39\x05\x6d\x2d\xd0\x91\x1b\xf9\xfb\x82\x5b\x2e\x8e\xf5\xa6\xc4\x0a\x42\xe4\x8f\x3e\x3e\xa2\x1c\xf8\xb9\xb5\xa5\x96\x87\xee\x58\x69\xbb\x48\x92\x0a\xf3\x2d\xa6\x9b\xe7\xd8\xee\xda\xe6\x29\x26\xb3\x2b\xd6\x98\x80\x9f\x34\xf2\x87\x47\xa8\x6f\x8f\x54\x53\x8f\xb5\x4b\x42\x2d\x7d\xed\xaf\xb2\x17\x31\x5a\x31\xf8\xd0\x93\x75\x88\xb5\xe4\xa4\xd3\x7a\xca\x98\x89\x82\x97\x3b\x12\xa7\x39\x40\x1b\x1b\xf2\x9c\xee\x38\x79\x79\xac\x21\x17\xe2\xfa\xda\xf9\x76\x27\x05\xc5\x0f\x34\x3d\x38\x28\x5a\x0c\x01\x45\x74\x57\xbb\x64\x3a\xa1\xae\xd4\x2a\x53\x5d\x6c\x60\x82\x68\xf9\xe0\x5e\x7c\xa2\xe7\xc6\x6d\xb7\x30\x07\x17\x0e\x2d\x7f\x60\x9c\xf9\x9e\xaa\x47\xb1\xc1\x76\x16\x48\xe8\x42\x46\x4b\x6c\x7a\xd4\xbe\x0b\xd7\x2b\x4b\x1b\xac\x16\x42\x38\x96\x62\xb7\x3a\xe3\x68\x8b\xe7\x5e\x73\x36\x47\xdd\x10\xf4\xef\xa5\x85\x89\x76\xde\x16\x0a\x3a\x26\xb2\xea\x48\x6f\x0a\x91\xaf\x7a\xa0\x99\x18\xb5\xd4\x17\x18\x2d\x50\xe0\x19\xa7\x81\xa5\x45\x92\x9e\x3a\xb4\x40\x8c\x36\xc0\x76\x61\x11\xca\x97\x85\x87\xb8\x67\x9b\xc2\x4f\x3d\x76\x92\x99\xe0\x8b\x4c\xe2\x2b\xd5\xa4\xf2\xab\x9f\x30\x07\xe2\x2b\x20\x4d\x90\x04\x29\xf1\xb1\x85\x96\xa2\x4d\x13\xa2\x10\x99\xe1\xb2\x45\xdd\x27\x2f\x5f\x1c\xec\x3e\x7b\xb1\xf7\x7a\xf0\x7c\xf7\xd5\xa1\x5d\x0f\xa6\xb1\x23\x1c\x56\x17\x83\x42\x54\x68\x8e\x86\xf7\x38\x44\x79\xbf\xa9\x81\xf2\xea\x62\xd2\xcb\x26\xe3\xac\x98\xf1\xdf\x05\xd8\x27\xf4\xb2\xc5\x5c\xfd\x3c\xab\x86\x23\xfe\x09\xd6\xa2\xfc\xf3\x74\x36\x5b\xf0\xcf\xb9\xfa\x3b\xca\x38\xc4\x50\x2f\x23\xe1\x48\xb6\x4c\x69\x5f\xba\x98\xb4\xdc\x0d\x8d\x2b\xae\x56\xc7\xf1\x2b\x3a\x73\xb9\x8d\x1b\x89\x96\xeb\xdb\x5d\x3a\x28\xb8\x6b\x5f\x15\x77\x7d\xe1\xfb\xe4\xeb\x9b\x71\xeb\x73\xc0\xd3\xf3\xd4\xce\x4e\x9b\x27\x8c\x36\xe7\x19\x11\xab\x9b\xe0\x46\xf4\xa5\xbc\x11\xdd\xf6\x5a\x17\xf1\x43\xf0\xb5\xeb\x87\x20\xea\xb4\xe3\x9b\xc0\x69\xc7\x80\x3c\x80\x23\x5b\x28\x9c\x2c\x5a\x77\xe0\xd6\x1f\x92\xbc\x20\xc5\x7c\x76\x34\x0d\x6c\x71\x35\x46\x97\x90\x20\x7e\x42\x55\x90\x4c\xec\x2c\x9b\x05\xde\x94\x26\xc3\xcb\x9e\xc6\xb1\x13\x7b\x94\x1d\x55\xc7\x17\x6f\xcc\xb5\xed\xc7\xea\x52\x1f\x45\xd9\xd5\x55\xb6\x99\x80\xa1\x78\xe2\x9d\xac\x97\xe5\x87\x3b\x47\x9b\xd9\x72\xa9\xfe\x9f\x07\x97\x34\xf7\x72\x66\x0f\x0e\x70\x25\xc9\x1e\x47\xb2\xc2\xe3\xb8\x3f\xa2\x99\x77\x1d\x24\x16\xc4\xd6\xb9\x19\xec\xc5\x84\xf2\x80\xeb\xc7\xb5\xf2\x13\xfa\xbc\x09\x7d\x4f\x9b\x58\x83\x64\x81\x45\xf6\xda\xc7\xc3\xb9\xf6\xa1\x5a\x1f\x66\x97\xe3\x6a\x32\xca\x8e\x9c\x50\x57\xa6\x1c\x78\xf9\xa5\xb9\x88\x0c\xe9\xdb\xea\x52\xeb\x4c\x6a\x35\xa6\xa8\xa4\x9c\x54\x3e\xe9\x25\xd1\xfa\x03\x12\x3c\x82\xe3\x26\x28\x37\x4d\xb2\x3a\x0e\x7f\x7d\x3f\x9b\x93\xb6\x8a\x00\xb6\x45\x85\x75\x23\xa7\x48\x97\x49\x3c\x4a\x07\x06\x78\x99\x77\x35\x61\xeb\xa4\x9a\xc7\x65\xc6\x2a\xe9\x6a\xa1\xa9\x35\xf0\x61\x36\x1f\xd5\xe1\x2b\x37\x9e\xbb\x3d\x6c\x49\x44\x4d\xc5\x1b\x8d\xba\x7a\xe3\xf8\x36\xcc\x8c\xb1\x5d\xd7\x22\x79\xb0\x0c\x43\x1b\xf6\xc2\xda\xe9\xf2\xa9\x6e\x13\xec\x20\x85\xc3\xc8\xc1\x36\xf9\x8b\x39\x7e\x69\x7e\x80\x15\x5c\x8d\xeb\x3f\x8e\xe7\x8b\x8b\xe1\x84\x74\xf1\xf9\x0c\xee\x65\x19\xdf\xad\x3f\x62\x43\xbd\x48\x9b\x3d\xfd\x43\xfb\xb8\xe8\x39\xb8\xab\xed\x38\x1e\x55\x7f\x98\xcf\x2e\xce\x1f\xbf\x89\xee\x80\xbc\x07\xe9\xa2\x66\xbb\x11\xe4\x10\xc6\x80\x8c\x17\x1f\x8d\xc3\xd3\x21\xb8\xe1\x7f\xab\x67\xc7\xc2\x77\x9d\x69\x03\x4d\x2e\x8b\x57\x12\x61\x0c\x30\x55\xd0\x61\x4a\xfe\x48\xe2\x0b\x5f\x3b\x73\x37\x13\x64\x3b\x3a\x90\xe6\xd5\x7a\x55\xda\xb4\xc7\x4d\xbd\xc2\xf5\xe6\x2c\x4e\xa7\x36\xc5\xa1\x4c\xd9\x78\x5d\xf8\xba\xc0\x3f\x7c\x47\xc2\xdf\xb8\x35\x78\x44\xeb\x92\x49\xb4\xe7\x44\xbd\xd8\xc9\xad\xd1\xbb\xcb\xd5\xd9\x4a\x44\xaf\xb4\x65\x3d\xeb\xbf\x47\x40\x18\x8f\xa5\xa9\x35\xe4\x17\xa5\xe5\x19\x7b\x4c\xa0\xde\x74\xb8\xc6\x9e\xe8\x80\xeb\xa6\x49\x77\x07\x03\x80\xa5\x19\x33\x3e\x13\x5a\x78\x32\x57\xc4\xdd\x2a\xae\x77\x25\xf0\x1e\xe3\xf5\xee\x02\x59\xcd\x81\x91\x72\x7f\xb2\x9d\x65\x84\x4d\x93\x19\x9e\x63\xd9\x74\x20\xf1\x98\x3d\x72\x82\x51\x6b\x77\x30\x65\xd5\xe9\x6f\xe2\x29\xb7\xe9\x75\x80\x0b\x4e\x87\x10\x5a\x72\xf0\x4f\xf6\x48\x10\x78\x96\x15\x09\x3e\x8e\x3b\x3e\x92\x3b\x77\x64\xdf\x1a\x3e\x0c\x44\x58\xd2\xe7\xb4\x7e\x43\xd9\x77\x84\x17\xf5\xb9\xcd\x2f\x1b\xb8\xcd\xaf\x04\xb7\x19\xf0\xb0\xbf\x5f\xd1\xe3\xeb\xef\xe3\x1e\x5f\x53\x5e\x6b\xbf\x8e\x78\xad\xc5\x91\x82\x3a\x12\xf0\xb5\x07\x1a\x86\xad\x8f\x3c\x66\x34\x59\xce\x47\x3c\x64\xad\x62\x39\x1f\xe5\xb7\xf1\xb9\xc2\x61\xb8\x03\x2f\x0a\x91\x79\x27\xd2\x67\xfc\x23\xfa\xab\xb1\xeb\xe6\xb3\x20\x72\x1a\xf7\x19\xbc\x13\x59\x06\xf1\x67\x98\x2f\x6f\xf2\x0c\xf3\x65\xfc\x19\x06\x29\xc4\x6e\xe9\x6f\x86\xee\xae\x7e\x99\xf7\xdc\xbb\x76\xbc\xd9\xcd\x23\xef\x52\xf2\xda\x21\x17\x7b\x71\x35\xa0\x0a\x7b\xf4\xa7\x85\x97\xf7\x84\xbf\x82\x87\x37\x89\x99\x3e\x75\x8c\xae\x6b\x00\x51\x10\x67\x62\x12\x8c\xc3\x49\xac\x7f\xd0\x20\x5d\x36\x2e\x08\x84\xc0\xd9\x91\x02\xe1\xa1\x09\xc2\x3e\xc3\x52\xc6\xc5\x94\x1a\x96\xe5\x45\xa6\x23\x26\xbd\x41\x58\xf8\xde\x95\x87\x99\x66\x49\x0a\x48\x2a\x19\x8d\x85\x49\xb2\x33\xf0\x44\xc5\x25\xca\x78\xf8\xbe\x83\x03\x4d\x32\x6e\x8f\xb3\x12\xa9\xfc\x46\x61\x13\xe8\xb5\x23\x14\xb3\xe7\x57\x4d\x83\x1a\x0a\xe7\x49\x97\xc8\x41\x91\x0d\xb3\x62\x5d\x92\x08\x50\x50\x0b\x94\xe1\x49\xe3\xc6\x8f\xce\x73\x85\x94\xea\x59\xa9\x36\xc9\xfc\x6d\x16\xf2\x88\xf6\xd3\x11\x55\xbb\x5e\xb4\xec\x23\xd2\x13\xff\x89\x2f\xd1\x36\xbd\x9a\xb0\xee\xbb\xe9\xa3\x28\x16\x3c\x6b\xf8\xf5\x10\xe3\x68\xf1\x16\xe6\x60\x72\x20\x39\xd4\xa6\x5f\xd8\x2a\xee\x60\x18\x8c\x43\x1f\xe0\x08\xa2\x3f\xa8\x4b\xbf\xe8\xbf\x6d\x50\xce\xac\x31\x55\x8b\xcc\xf9\xea\xf3\x9c\xc0\x5b\x38\xf8\x75\xc6\x82\x42\x68\x04\xa3\x6e\x5f\xf0\x1a\x07\xfd\x5f\xbc\x51\xb7\xc5\x5a\x07\xdd\xa9\xc7\x79\x34\xd3\x82\x7e\x67\xd1\xb9\x1a\xd8\xfe\x7e\x5b\x16\x34\x50\x51\x39\x49\xa2\xa0\x0e\x86\x9a\x77\xdf\x43\xf0\x0a\xd0\x26\xca\x0b\x3a\x36\x6c\xcb\xc4\xfe\xf1\xf8\x33\xc1\xb2\xbb\x25\xfe\x12\x05\x35\x1c\xcc\xd8\xfe\x9c\x2b\x00\x57\x5a\xa1\xc0\x87\xa9\x7a\x56\xc4\xd6\xad\x2b\x12\xaf\xdd\x77\x24\xc6\x48\x33\xdd\x62\xb5\xbb\xe4\x5b\x3f\xb8\x55\x23\xad\x0a\x4a\x4e\x0f\x79\x15\xbd\x17\x4b\x87\xea\x77\x1e\xc9\xf4\xae\x92\x0f\x74\xc9\x2d\x56\xc4\xd0\xd4\x6f\x78\x3a\x8a\x32\x16\xec\x48\x1c\xe8\x61\x18\x8d\x43\x4d\x10\x1d\x1c\x61\x21\x62\x80\x4f\xee\x31\x01\xd0\x4d\x96\x33\xdc\xd5\x13\x59\x8c\x8d\x23\xa9\x5f\xe4\xf4\x8e\xbc\xd1\x38\x51\xd9\x15\x3a\x89\x03\x14\x4a\x36\xe0\xae\x6f\x0d\x77\xe2\xc3\xec\xee\x29\x67\x94\xa9\xf9\xa5\xb3\x14\x2c\xb8\xb3\x12\x96\x85\x87\x9f\x3f\x28\x11\xb1\x08\x60\x87\x96\x30\x78\x4c\xbf\x0f\x4f\x68\xf2\x0d\x49\x4f\x1e\xf2\x5e\x2f\x2a\xa3\x47\x32\xdc\x19\x66\xbd\x6f\x6c\x88\x7c\x51\x85\xd8\x10\x52\xea\x61\xc2\x5a\xa1\xa7\x13\xf1\xcc\xe3\x0e\xa2\xa8\xc8\xc9\x71\xbb\x83\x4e\xed\xc4\x29\xc7\x8e\x1c\x44\x4a\x93\x4e\x89\x38\xaf\x03\x5d\x8c\x5b\x9c\xf0\xe2\x43\x3e\x29\xe7\x0e\x3e\x51\x85\x90\x3b\x46\x84\x56\x10\x58\x63\xf3\xc6\x12\x99\x88\x4f\x35\xad\x2f\xe6\xb4\x2f\x55\xc6\xee\xbc\x7a\x36\xf5\xbc\xe7\x44\x9e\xf2\xa3\x65\x74\xbc\xac\xbc\x8f\xb7\xb9\x0e\xf1\xaa\x20\xa0\x46\x8e\xbc\xb8\x8a\xd2\x42\x12\xf7\xfe\x18\xdd\xdd\x3a\x2f\x81\x23\x67\xfb\x0d\x8e\xa7\x44\xa1\x65\x83\x11\x8a\x21\xb6\x45\xb8\xf3\x54\xa7\xe7\xb3\x0f\xe8\x96\xc4\x5e\xb5\x3a\xd9\x9f\x67\x17\xa0\x57\x3c\x9d\x2d\x48\x21\xf4\x92\xf8\x6c\x64\x54\xeb\x35\x54\x5c\x25\x0f\x46\xf0\x87\xb0\xa0\xab\x40\x16\x8e\x8b\x35\xb8\x4a\x8c\x8c\xfb\x70\x1a\x3d\x2a\x6c\xc0\x33\x7e\x6d\x7f\xe8\x50\x79\x72\x70\xf1\x9e\x0e\xd3\x23\x1b\xa0\x78\x05\x5a\x1a\x1b\x13\xf0\x5f\x57\x9f\x9c\x55\xe0\x27\xf3\xe5\xf4\x44\x38\xb9\x63\x42\x11\x9f\x27\x20\x51\x6d\xab\x8c\x8f\x59\xf7\xe2\x82\xb4\xc5\xe1\x34\x50\x7b\xc2\xea\xae\x9c\xcf\xab\xf7\xe3\xd9\x45\x5d\xb0\x95\xfe\x7b\xf7\x7a\x0e\xb3\xe7\x5d\xc9\xd9\xff\x47\x81\x9a\x16\x81\x9e\x8b\xf0\x0a\x12\xd7\x15\x41\x4b\x91\x75\xcd\x3a\xb0\xd5\xb1\xbc\x90\xaa\xdb\x17\x3b\x20\x10\x06\x75\x25\xc5\x76\x85\xad\x69\xf4\x4c\x5c\x66\xe2\xd9\xe9\x8b\xaa\x52\x63\xac\x99\x0a\x9a\x34\x8b\x37\x87\x46\xd5\xa5\x5d\xd7\xab\x02\x4c\x33\x95\x64\x73\xe1\xf6\xdd\x4e\xab\x4d\xf3\x47\x50\x63\x4f\x26\xa6\x3a\xd3\x0e\x41\xdf\x6b\xef\x64\x52\x0d\xe7\xda\x9b\x65\x08\x8e\x16\x1e\x77\x8d\xa2\x1b\xe2\xee\xd6\xd5\xf8\x23\xcc\x42\x5e\xa9\x8e\x94\x41\x94\x8d\x67\xd8\x80\xf5\x70\x89\xb6\xa2\x54\x55\x6e\xba\xdc\x1d\xcd\xde\xb1\xa7\xd3\x2e\xba\x75\xec\x78\xcd\x75\x6b\xb6\x43\x14\x57\x4f\x59\x48\x81\xa3\xa5\x23\x62\x1e\x14\xf1\x50\xd5\xe7\xb6\xdd\x3d\xaa\x37\xaa\x03\xc3\x29\x45\x3a\x87\xc0\xe5\x63\xda\x79\xfd\xf7\x31\xf6\xa1\x32\xbd\x79\x1f\xed\xf7\x68\x3c\xf2\xba\x9d\x76\xfa\xe7\x48\x30\x1a\x85\xd9\x5a\x1a\x7c\xb8\x8a\x82\xb9\x2b\xc8\x0e\xab\xb9\xaf\x31\x68\x00\x51\x83\x3a\x30\x6e\x38\x93\x50\xe3\x69\x3c\x68\x9a\x03\xa4\x36\xb3\xb6\x87\x6d\xa9\x4b\x4d\x6a\x33\xda\xc8\x0c\xb0\x4e\xfb\x6f\x51\x82\xdc\x24\xcb\x8d\xe8\x83\xef\xb8\xfa\xe0\x2b\x09\x72\x35\x4b\xd0\x26\xc4\x55\x13\x48\xee\xba\xda\x54\xc6\xf5\x61\xdb\x16\x8e\x40\xd0\x64\x6f\x60\xc2\x1a\x41\xdb\xd0\x1b\xad\x50\x7a\xa9\x27\xb3\x49\x0a\x6b\x68\x95\x94\x06\x9e\xce\x67\xef\xe8\xc0\x1b\x4f\x17\x33\xb0\xfc\x82\xbf\x86\x59\x32\x09\x76\x08\x38\x84\x88\x03\x96\x13\x90\xc0\xa3\x01\xca\x0c\x52\x03\x8c\x18\xa0\xc6\x9a\x60\x70\x24\x80\x2d\x97\x9b\x48\xb3\xb8\xe2\x5f\x70\x58\x54\xea\x2f\x9c\x9e\xf0\xcb\x37\xb4\x37\xa0\x39\x29\xf1\x8e\xa7\x17\xd5\x92\xb8\x25\xa8\xfe\xd0\xe4\xab\x9d\xa2\x8a\x8b\x6f\xa3\x7b\x05\x70\x8e\x8d\x4c\x2a\xcc\x96\x10\xcf\x5e\xe9\x7e\xf5\x0c\x93\x6a\xc6\xbb\x67\x7e\x15\xd8\xdd\x1e\xfe\x5b\xe8\x41\xec\x19\x2e\x53\x78\x8a\x13\x2c\x9d\x9d\x92\x9e\xfd\xe9\xa8\x69\xb9\x01\xc2\x56\xa0\x9c\x96\xe4\x7d\xa6\x30\x2e\x89\xf7\x34\xf3\x60\xf7\x4f\xed\x29\xd5\x7f\xad\x88\x50\x99\xc4\xa3\x8b\x47\x67\x12\xe7\xe4\x95\x50\x6b\x70\x6f\x57\x0d\x17\x8d\x7b\x8b\x35\x18\x04\x51\x14\x6c\x08\x41\x05\x60\x6d\x76\x8a\xd7\x0c\x3a\xdf\xc0\x73\xaa\x9a\x58\x08\xe6\x0a\xdc\xf6\x17\x11\xff\x06\xe6\x6d\x1b\x5c\xcc\x2c\x22\xde\x65\xb4\x27\x46\x78\xd6\x2f\x84\x7b\xf0\x98\xaf\x04\x54\xc2\xe6\x75\x1d\x54\xe5\xcb\x0f\xcc\xb9\x49\x7e\xc2\x98\x25\xec\x0e\xf4\x55\x82\x79\x0d\xba\x5f\x50\xec\x93\x04\x44\x3f\x9a\xec\xf8\xd9\x00\x88\x65\x11\xe7\xae\x23\x3d\x21\xce\x5c\xc1\xb3\x78\x50\xdf\x38\x49\x37\x5d\xcb\x07\xcc\x4d\x73\xb5\x5d\x6a\x4f\xf8\xc3\x76\xf3\x38\x9f\xfd\x59\xdd\xfe\x2d\xc1\x08\xfd\xc6\x36\x6d\xc8\x10\xdc\xca\xce\xcc\x37\xee\xfa\x9d\x30\xee\x8a\xb2\x13\xb7\xde\xbf\xee\xc1\x4e\xe0\x62\x3f\x82\x6e\xca\xda\xbf\xfd\xc7\x9a\x3a\xcf\x87\xb8\xda\xd6\x8e\x2b\xd8\x7e\x5c\xa4\x1a\x65\x3e\x6b\xc0\xe7\xa4\x3d\x43\xe9\x60\xb3\x10\xc5\x8d\x68\x83\xea\x75\xc7\xc3\x4f\xad\x33\x51\x43\x76\xa4\xae\x0c\x76\x49\xdf\xae\x3e\x5d\x9c\x2a\x4b\x6d\xf5\x1b\x55\xe9\x56\x42\x15\xa3\x66\xf9\x2d\xeb\xc3\xb2\x54\x4d\x1d\xa5\x68\x37\xa8\x0b\xa8\xd5\x3d\x26\x54\xf7\x8a\xb5\x6e\xb7\x9b\xeb\x61\xbc\x19\x25\x19\xcb\x7b\x93\x90\x50\x25\x4e\x05\xc1\x1b\xac\x40\x5a\x9c\x5b\xc8\xe1\x4d\x49\x42\xe2\x78\x5f\x89\x2a\x71\xf5\xd1\x50\x6b\x69\xb5\x9e\x1b\xb0\x21\xff\x68\x37\xa1\x28\xcd\x89\x50\x36\x9f\xad\x88\xdc\x86\x42\x0a\x19\xb9\x0a\x45\x28\xe4\x97\x2e\x85\x6c\x77\xde\xde\x40\x03\x23\x37\x20\x9f\x91\xfa\xba\x81\x91\xfa\x46\x30\x52\xe1\x15\xc2\xa7\x7c\x52\xf2\xf9\x85\x27\x76\xac\xab\x89\x76\x32\x51\xbd\x93\xc1\x64\x8c\xc8\x42\x7b\xd7\xae\x26\x8f\xd9\x5f\x94\xfa\x89\x6e\xb5\xf2\x9e\xf0\xce\x96\xc7\xf9\x1c\x2b\x68\x24\xf9\x6f\x22\xd6\x0c\x8a\x79\xf0\x3b\xbf\x12\x80\xf4\x53\x60\xb3\x14\x70\x82\x03\xe9\x82\x6f\x15\x6e\xfb\xd9\x94\xac\xf2\xb4\xd7\x04\x06\x5f\x7a\x3e\xaf\xfe\x35\xdb\x0c\x7a\xfb\x6c\x44\x4e\x1a\xe2\x04\x8e\xa4\x5c\xae\x56\x33\x1b\xc2\xf0\x8b\xa5\x2b\x12\x32\x17\x1a\xad\x1a\xd9\x2a\xe3\x56\xad\xae\x0d\x8d\x2f\x85\xb5\xc5\x4c\x1d\x79\xd3\xd9\x74\x0b\x9a\x20\x5d\xe9\xb5\x0f\x67\x15\xc9\xbb\x35\xd0\xb8\x5e\x1b\x4e\xd4\xbc\x8f\x2e\xb5\x24\x5c\x5d\x9b\xba\x36\x7a\x0f\xa9\x58\x47\x8e\x27\x9e\x19\xc2\x3b\x2e\x8b\x7b\x02\xe2\x46\xdd\x07\x62\x06\x4f\x6c\x52\x35\xd2\xf2\xe5\x0e\x67\x0a\x01\x9b\x36\x59\xc2\x56\xfa\x0e\xb3\xd8\xcc\xc7\x12\xcb\xa9\x46\x63\x7c\x8a\x8f\xb1\x4f\x1d\xe8\x68\x4b\x28\x65\xa7\x86\x7e\x55\x2e\xd8\x3b\x5c\xed\xd2\x1f\x34\x09\xd9\xd1\x40\x71\xf4\x11\x30\x14\xc9\xf9\x15\x88\xcc\x23\xb6\xa1\x49\x4f\x43\xfe\x4b\x7e\xd3\x20\x2e\x97\xfe\x28\x92\xb5\x28\xa2\x9c\xb8\x8d\xe0\xb0\xba\xa1\x8b\xae\xf4\xa8\x2a\x0a\x23\x62\x9d\xb8\x5b\x93\x17\x57\xc7\x8b\x7a\xe4\xb8\x8f\x83\xfb\xcd\xd2\xbf\x04\x08\x37\x3c\xa0\x73\x5d\xe8\x47\xbb\xfc\x4a\xff\x22\xc5\x65\xca\x6e\x52\xfe\xb5\x04\x70\x95\x53\x5f\x08\x28\x6f\x7c\xe6\xc7\x4e\xe5\xd5\xbd\x7c\x18\xd6\xe0\xd7\xbe\x44\xac\x7a\xda\x26\x4e\xb7\xc8\xa1\x1b\xca\x12\x6e\x75\xe8\x86\x67\x77\xe4\xcc\xf5\x05\x6f\xfe\x79\x68\x1f\x2c\xe3\xa7\x21\xbd\x17\x11\xbd\xb4\xee\x12\x88\xb7\xfc\xa2\x13\xe5\xf5\xdf\xf3\xe3\x6f\x8c\xc0\xef\xcf\xd4\xec\x9e\xc1\x9d\xe5\x52\x91\xfa\xd1\x78\xa4\xc8\x3d\xc4\x09\xd5\xf7\x19\x45\xe6\xe7\xd5\x16\xd5\xb8\x86\xaf\x19\x6b\xe3\x05\x0b\x1a\x14\xd4\xf1\xc5\x82\xf5\x25\x21\xf9\xc3\xb0\xe6\x37\x18\x95\x05\x32\x38\x49\xf2\x8b\xe8\xbd\x06\x7b\x66\x1f\xf1\x1c\xf3\x12\x7e\x7e\xc2\x2e\xf3\xa3\x5e\x13\xb1\xb2\x86\xdb\x94\x15\x28\xbd\x05\xad\xf4\x57\xd1\xbd\xf3\x9b\x29\x57\x52\xbb\xb3\xcf\x73\xfd\xd4\x3b\x9f\x7e\xdf\x23\x12\xde\xa2\xd8\x61\x1c\x59\x99\xe7\xb4\x55\x8e\x2a\x3c\x10\xcd\x63\xa4\xd6\xaf\x14\xaf\xa2\x2b\x1d\x68\xce\xc3\x58\x9c\x89\x60\x23\xfc\x7e\xd3\x91\x03\xde\x1e\xda\x6e\x50\xe2\xc9\xab\xf9\x32\x75\x03\xa1\x19\x15\x74\x78\x97\xb3\xe1\x02\x58\x53\xc3\x9c\x1c\x57\xd5\xd4\x2c\xea\x2c\x71\x87\xfc\x64\x16\x2b\x36\x25\x61\x31\x7b\x1e\x04\x7c\xd2\x67\x3b\x83\x34\xd1\x59\xf1\x04\xc2\x67\xad\xdb\x7a\x8b\x8a\x5d\x31\xdd\x93\xa9\xfd\xc9\xed\xd7\x3e\x82\xee\xc8\x5f\xd2\x4a\x97\xbd\xc4\x31\x16\x11\x69\x25\x1e\xb4\xa2\x87\x90\x78\xb3\x91\xcf\x35\xda\xae\xc1\x1c\x46\xf0\xcc\x71\x55\x61\x4c\x64\x8f\xc0\x00\xed\x44\x02\x77\x85\x24\x37\x1a\x38\x55\xce\xe4\x7b\xbc\x4b\x1d\x66\x78\xa7\x3a\x5a\x1a\x7d\x31\x63\xcf\x47\x15\x71\x18\x5c\xcc\x32\x37\x1f\xd6\xb4\xc6\xc4\xe1\x68\xf4\x9d\xa7\xb0\x65\x6f\x48\x45\x2b\x5d\x40\xe2\x0a\xe7\x1d\x1d\x70\xf7\xea\x35\x53\x9a\xcf\x37\x1c\x16\x54\x27\xa8\xd7\xe0\xe2\xa3\xb6\xd0\xec\x03\x92\x05\x90\x51\x7d\x1c\x07\xa4\xf6\x0e\x46\x82\x54\x0b\xcd\x48\x70\x2c\x90\xf4\x78\x24\xc9\x21\x12\xa9\xd3\xe9\x6d\xa8\xa2\x3c\xb0\x13\x24\x52\x1f\xee\x59\x33\x31\x51\x15\xac\x42\x49\xe4\x93\xfc\x8d\x99\xd9\x5f\x82\x4b\xbd\x0b\x2e\xf4\x8e\xa8\x40\xf0\xf4\xeb\xf3\x8d\xf6\x85\xf2\xaa\x6d\x69\x08\xee\x48\x1c\xf4\x09\xe6\x00\xfe\xf9\x61\x5c\xcd\x87\xf3\x93\xb3\x4b\xa1\x56\x13\x61\x0d\xe8\x2a\x15\x55\x94\x39\x9d\xd2\x51\x44\x17\x61\x2d\xd2\x01\x4a\x85\x8d\xa0\x83\xae\x4a\xaa\xd5\x18\x2f\x93\xe0\xf9\x42\x2b\x87\xd6\xc6\xe3\x65\x44\x63\x27\x54\x78\xd1\x4c\x49\x0a\xd1\x88\x66\xcb\x0d\x39\x94\xf7\x0d\x5c\x9d\xf3\x3c\x46\xac\x90\x7e\x50\x5a\x95\xbb\x58\x6f\xe0\x2e\xd2\x6c\x42\x7a\x67\x9a\x35\xd2\xb8\x3b\x91\x3c\xb5\x1f\xef\xee\x99\xed\xbd\x54\x91\x72\x7f\xca\xf6\x14\x6f\xdb\xc2\x82\xd3\x77\xbc\x48\xce\x40\x38\x7a\xf2\xcd\xed\x36\x6f\xf7\xe0\xad\x52\x06\x11\x6b\xd1\x46\x71\xb9\xe6\xb3\xda\x8d\x4e\x29\xe3\x06\xf6\xac\xae\xf1\xa9\xef\xb9\xc4\x68\x4b\xdf\x17\xda\xd4\xab\x19\xaa\xca\xfa\x8c\xa9\x42\xdc\x47\xcb\x4d\xa3\x06\x3b\x85\x4f\x66\xe7\x7e\x7b\x71\x47\xa1\x66\x4e\x28\x5a\xff\x2a\xc6\xc3\xce\x52\xf0\x5e\x20\x9c\x3c\xf4\x47\xf1\xdb\x7c\x50\xf8\x75\x8c\x73\x45\x82\x8f\xe6\x8e\x8f\xe7\x8e\x8f\xe8\x8e\x8f\xe9\x03\x1f\xd3\x07\xc1\x58\xfa\x98\x3e\xf0\x31\x7d\xe0\x63\xfa\xc0\xc7\xf4\x81\x8f\xe9\x83\xaf\xef\x86\x43\xbf\xa1\x84\x88\xb4\xe6\x5b\xf9\x75\x22\x6e\x6d\xcc\x3a\x87\xf8\xe7\x70\xf3\x2d\xfc\x7a\xd2\xcc\xf5\x0e\x9f\x6a\xd4\x5f\x11\xae\xa4\xc5\x32\x38\x30\xe7\xdd\x0e\x61\x14\xa3\x1e\x37\xa2\x05\x2d\x41\x91\x69\x3d\x0a\x26\x8c\x6e\x01\xde\xcd\xbf\xad\xb9\xf0\x88\x3d\xf3\x34\x96\xf2\x40\x68\x50\x2f\xc6\xa3\xef\x67\xa1\x89\x71\x97\x33\x98\x91\x5b\x0c\x43\x08\x48\x6d\xb0\x94\xfe\xd2\xb7\x94\x8e\x5b\x29\x7f\xe5\x5b\x29\x83\x55\xec\xcb\xd3\xb0\x39\x4a\x67\x67\x49\x11\xcf\xb0\xe4\x8a\x17\x33\x52\x1e\x95\x80\x32\x48\x97\x4a\xcf\xe1\x28\x0a\xd1\xc1\x64\xd7\x70\xb9\xf4\xe9\x89\xbf\x26\x62\x86\xd2\xdf\x18\x43\x69\x7b\x1e\x95\x3e\xd9\xe9\xda\x3c\x9a\xc9\x61\x7d\x56\xcd\xc7\x7f\xf7\x38\x6b\xb0\x3b\x37\x59\xad\x26\xef\x0f\x22\x34\x61\x38\x68\xb1\x7a\x2f\x86\x03\x5c\xbc\x48\x0b\x7c\x18\x93\xa3\xa0\xa4\x0d\x5b\x00\x28\x33\x5b\xad\xce\xbf\x8a\x5b\x9d\xc3\x09\x5b\xfa\xc4\x36\xb8\xea\xa7\x7c\x32\x3f\x88\x3a\x65\x0e\x4d\x0d\x4b\x9f\x58\x47\xcc\x11\x9d\xa2\x46\x82\x99\x2e\x69\x40\x1a\xdd\x22\xc0\x41\x10\xf8\x45\xa8\x13\x70\xc2\x1f\x42\xe4\xf1\xfb\x41\x84\x50\x3a\xca\xea\x56\x31\x17\x38\x6e\x14\xba\x32\x3f\x2f\xc4\xa9\xc2\x1e\x62\x29\x14\x79\xab\xe1\xfc\xc9\x10\x1e\xe0\xf4\x6d\x8a\x8a\xc0\xc6\xa7\x9f\xea\xee\xa3\xb2\xf5\xf5\xdd\x7a\x96\xf1\x3c\xb3\x1a\xa2\x14\x33\x6f\xf5\xcc\x61\x02\xc3\x5b\x70\xb1\x4c\xbb\xab\x93\xa3\xb9\x03\x19\x5a\x9b\xe5\x9c\xb4\xbf\x77\xcc\xc9\x9e\x58\x69\xba\x7e\x3e\x13\xf2\x19\x6b\x4f\xf6\xc4\xf5\x28\x40\xaf\x9a\x52\x5e\x8d\xd2\x5b\x61\x6b\x56\x87\x25\xb5\xfb\x4d\x0d\xa8\x7d\x72\xe2\xd5\x49\xbf\xd1\x96\xab\x99\xa4\x83\x0c\xc5\x99\xcf\xfc\xca\xf5\xa6\xd0\x2a\x94\xf1\xbc\xeb\xe4\x62\xb5\x68\xc3\x15\xe9\x76\xd7\x6b\x4c\xbe\x29\xea\xd7\xe5\x26\x84\x97\x71\xf1\x8c\x1d\x41\x10\x3e\x8d\xdf\xb1\x93\x1e\x75\xc3\x93\x7e\xb1\xf3\x3e\x5d\x24\x0f\xf6\x9e\xbf\xfa\x69\xf7\x60\x6f\x5f\xc7\x0a\x31\xbe\xca\x05\xbb\xa2\x5d\x48\x30\x5b\x52\x38\x7c\x07\x79\xd3\x02\x2f\x60\xe0\x4a\x4b\xfb\x95\x90\xaa\xe9\x94\xd4\xe6\x30\x8e\x3d\x23\x25\xa4\xdf\xec\xec\x1b\x9a\xaa\xc7\xaa\x3b\xd2\x41\xad\x4e\x43\x1f\x14\xde\xc9\xcb\x30\x86\xf7\x67\xfc\xda\x40\x0d\x24\x08\xf2\xad\x1e\x87\x35\x1a\x77\x8d\x58\xbd\x3d\xc6\x0a\x1e\xbe\xe3\x32\xab\x03\xa2\xcd\x5a\xe5\xc6\xe0\xc9\x91\x5a\x21\x52\x81\xc4\x79\x4f\xa6\x0c\x34\xb7\x44\x2c\xd9\x34\x55\x20\x4a\xce\xdb\x66\xd3\x13\x55\xa2\xf2\x50\x4f\x60\x1e\x91\x21\x4a\x83\x78\x07\x01\x3b\xfa\xae\xf9\xad\x69\x0e\xa5\x7b\x11\x3b\xf6\x79\xc5\x9e\xa7\x84\xe3\x42\x45\xe3\xd4\x71\x66\x57\xc6\x99\x3a\x7c\xf3\x2b\xf8\x97\x3d\xf9\xb2\x37\x3c\x1b\x46\x1f\xf3\x4e\x84\x8b\xc2\x32\xe1\xba\x90\x20\x0d\x29\xf3\x45\x33\xbe\xf1\x26\x3f\x9b\x12\x8d\x7e\x79\x0e\x71\x33\x8d\x7f\x31\x8a\x0f\x49\xe5\xff\x0f\x7b\xff\xd6\xdd\x46\x72\x25\x0a\xc2\xef\xfe\x15\x64\x1e\x35\x84\x2c\x26\x21\x92\xaa\x2a\xbb\x81\x4a\xf1\xa8\x54\x92\xad\x63\x5d\xaa\x25\x95\xfd\xb9\x59\x30\x0f\x48\x24\xc5\xb4\x40\x80\x46\x82\x25\xa9\x49\xac\x75\xfe\xc9\x37\xaf\xf3\x30\x6b\xe6\x6d\x1e\x67\xad\xee\x3f\x36\xb1\x6f\x11\x3b\x2e\x09\x80\x2a\x95\xdb\x3e\x67\xba\x5d\x14\x32\xee\x97\x1d\x3b\xf6\xde\xb1\x2f\x3d\xf6\x95\xe8\xcf\xaf\x18\xd3\x4c\x4a\x89\x90\x1c\xcd\xb1\xcb\x25\xac\x64\xc7\x95\xa0\x38\xcc\x9c\x5f\x68\x73\x34\x2e\xf0\xca\x17\x11\x05\xce\x0a\x02\x01\xd2\xca\xe9\x2c\xc5\x83\xe2\xf1\xa7\xaf\x46\x2a\x6c\xa8\x0a\xf8\x63\xfd\xe7\x2e\x52\xbe\x73\x25\x11\xe3\xbd\xb4\x44\x48\x2e\xf5\x18\xe4\xbc\x70\x94\x7d\x8c\x29\x6d\x83\xe6\xdc\xdc\x78\x06\x93\x36\x7a\x71\x02\xa1\xc8\x1b\x95\x15\xeb\x51\x87\x48\x16\xd1\xfa\x5a\xd1\x1b\xbb\x10\x88\xd3\x50\xc0\x1f\x14\xe6\xad\x90\x70\xb1\x2c\x1d\x6c\xc1\x75\xca\xbf\x46\x61\x7d\xd2\x91\x40\x13\x61\xcc\xa6\x1d\xed\x89\x3e\xdf\xe2\x7c\x46\xa1\x58\x29\xce\x36\x46\xef\xc2\x44\x1b\xb3\x0b\x22\x19\x85\x31\xca\x07\xd6\xd3\x08\xdc\x11\x48\xae\x77\x25\x30\xac\xb3\xaa\xa9\xcb\x7d\xb2\x53\x45\x83\x55\x50\xb4\x81\x2a\x47\xf5\xee\xfe\x50\x0d\xa5\xb6\x41\xc4\xa9\xe3\x60\x12\x70\x11\x17\x16\xa3\x8e\x5f\x9b\xe5\xa1\xeb\xa1\x09\x9d\xf5\xe9\x28\xdc\xdb\x88\x6f\x8e\x5c\xc6\x30\x6c\x24\x5d\xdb\x79\x50\x19\xf6\xda\x1c\xfc\x85\x2d\x47\x03\x96\x00\xdd\x60\x6f\x13\x06\x5f\x97\xa3\x85\x7c\x50\xd7\x2d\x3c\x86\xae\x92\xb2\x99\x81\x6e\x75\x83\x61\xcd\x64\x2c\x82\x35\x57\x42\x4b\x9c\x02\x9b\xe3\x3b\xac\x67\x50\x1a\x87\x0a\x4f\x91\x7e\x61\x4f\x39\xc8\x60\x4b\xfa\xc4\x89\xd0\xc6\x05\xfe\xfb\x3b\xfb\xc8\x48\xa9\xc3\x59\x21\x74\xac\x57\x17\x18\x3c\xa4\x72\xf4\x00\x6c\x62\xa0\x88\xe0\xf4\x9c\xe5\x35\x51\xbd\x29\x38\x72\x8e\xfc\x54\x30\xfd\x26\xaf\x0f\x4c\xd8\xd2\x4f\x5d\xe4\xe6\xe6\x68\x48\x67\x98\x0f\xcc\x4f\x4a\x61\x63\x39\xf0\x7b\x71\x0e\x7d\xcb\x6b\xf6\x18\xb3\x17\x1f\x6c\xa7\x13\x96\xec\x1e\x89\x68\x75\xd2\xf6\x8a\x89\xd7\x29\x1c\x3c\x67\x53\x4f\x59\x6c\x14\xce\xe2\x7a\xec\xcf\xd7\x62\x54\x9d\x2e\x97\xcb\xd4\x1e\x6c\x3a\xbc\x8d\x47\x86\xd6\xfe\x09\x25\x4a\x3d\x92\xc4\x8e\xdb\x71\x9c\x4d\x3f\xef\xfa\x9c\x4d\x85\xd0\xf7\xa1\xc9\x76\x88\x54\x11\xe9\x04\xcd\xab\x96\xce\x6f\x3b\x7b\x75\x6c\x82\xe6\x97\x14\x21\x3c\xc2\xf7\xd4\xd8\x4e\x1a\x31\x47\xc3\x51\xf4\x3f\x29\x00\x31\xca\xa2\x95\x72\x37\xc5\x46\x6e\x8f\x78\xdc\xe8\xf0\x88\xb9\x37\xe5\x25\xc7\x60\xcb\x93\xd1\xe9\xbb\x96\x75\xe1\x76\x1c\xdb\x47\x23\xb0\xb5\x18\x2b\xb4\x4c\xb7\xe4\xf0\x2e\x7a\x3d\xcb\x3d\x0e\x4f\x68\xb8\x8d\x37\x7f\x3a\x7e\xf8\xea\xd5\xc3\x3f\x41\x98\x4c\x39\xdc\xa5\x8d\x21\xa0\x82\x08\xc1\x25\x30\x85\x8b\xc0\x89\x14\xfb\x47\x14\xd2\x1a\x83\x94\xc3\x13\x86\x7c\x7c\x4b\xaf\x02\x90\x36\x92\x80\xa5\x36\x6d\x58\x68\x0e\x25\xf6\x71\x3c\x41\x0f\xd2\xee\xfb\x76\x3e\xb5\xc9\x9b\xb4\xbe\xd6\x9c\x2f\x6d\x97\x67\xbd\x66\xc7\x4e\xa5\x7d\x27\xcc\xc5\xff\x1c\x3e\xa6\xb5\x2f\xe3\x75\x4c\xd3\x2f\xee\x53\x98\x77\x78\x95\x3b\x63\x07\x03\xaa\x6b\x97\x98\x49\x1b\xe9\x45\x73\x05\xa5\x92\x1b\x2a\x7d\x27\x96\xeb\x19\x17\xf4\x7c\x1e\x7b\x5d\x6e\xe4\x40\xfb\x16\xde\xb0\xe5\x57\xec\xeb\xdc\x39\x3b\xe7\x29\xf9\x14\x51\x01\xf7\x20\x71\x88\x9a\x40\xb2\xb1\x94\x48\x70\x4b\x7e\x7d\xe4\xf3\xe6\xe6\x91\xf3\xe2\x64\x7f\xf6\x78\xf2\x36\xc1\x2a\x25\xba\xc2\xf6\x67\x6f\x32\x9b\xbd\xbb\xba\x74\x27\xa4\x9f\xed\x30\x99\x75\x6a\x7d\x23\xaf\x76\xcd\x1e\xa2\x5e\x43\xc0\x1d\x90\x2d\x29\x43\x97\xf5\x38\x4f\x75\x06\xde\xa1\x4a\xb3\xbc\xb6\x0e\xf0\xb8\xda\x25\xdc\xf1\xca\x51\x85\x30\xae\x8e\x88\x04\x9d\xa2\xaf\x20\x2c\x95\x00\xb3\x3d\xf0\x2e\x71\xb9\xc2\x4d\xba\x93\x36\x78\xe2\xa5\xf0\xb8\xa8\xc9\x68\x83\x5d\x37\x99\xd6\x28\x63\x1f\x16\x81\xaa\x14\xd2\xaa\xa2\x55\x0c\xdc\xbf\x08\x66\x08\xf1\x3a\xc1\x54\x3f\x96\x57\x6a\xad\xdc\xbe\xba\x25\x74\xfa\x2a\x77\x5b\xca\xcd\x68\x02\x47\x2b\x89\x46\x2b\x9e\x49\x5b\xeb\xd0\xda\x25\x9c\xe7\x79\x28\x47\x7b\x4f\x23\xa7\x5c\x09\x77\x48\xb3\xbf\xf5\x68\x9d\x1a\xf0\xca\xc1\x4e\xcd\x5d\x6e\xa8\xef\xa7\x2c\x98\x7c\x79\xe6\xce\xfe\x3b\x0c\xc8\x64\xa9\x84\xb6\xfe\x29\xc0\x2a\x09\x82\x13\x72\x4e\x6e\x45\xeb\xf5\xda\xd6\x48\xea\xeb\x09\xba\x96\x32\xa2\x97\x67\x10\x38\xf9\xb6\xa3\x31\x60\x47\x15\x4b\x2c\xaf\x07\x82\xaf\x4d\x87\x81\xe4\x9a\x87\x85\x85\x7b\x1c\xc2\x88\x88\xcb\x50\x47\xaf\xad\x24\xe0\x3c\xa0\x18\x4e\x17\xb3\x79\xbe\x0c\x57\x43\x86\x43\x29\x9f\xb0\x0c\x10\x02\x57\x8e\x89\x12\xd1\x88\xf7\xdc\xdb\xee\x8e\x54\x04\x6b\xaa\x9f\x42\xc1\xf3\x66\x23\x42\x3e\xf0\xe7\xc3\x49\xba\x9b\x9f\x03\x38\x0a\xfd\xa5\xce\x5d\x9b\xcc\xd6\x1d\xbc\xef\x2c\x3b\x9c\xf4\xd8\xaf\x65\xa7\xb6\x03\x3a\x80\x6d\x12\x51\x8b\xbe\x3b\x9d\xed\x36\xbc\x8e\x5d\x90\x02\xbd\x6c\xb4\xd5\xdf\x57\x05\x97\x82\x95\x29\xa1\x0d\x31\x4b\x98\x94\x5b\x4d\x50\x99\x83\x6c\xee\xc0\x34\x65\x6f\xa0\xc7\x8b\x74\x60\x5b\x00\x11\x4d\xbb\x80\xbf\xc5\x04\xfd\x42\xee\x1a\x91\x4b\x90\x20\x17\xa5\xce\x3b\x84\xd7\xcb\xae\x4e\xe9\x49\xb9\xbc\x7f\xbd\x44\x63\x39\x49\x28\x32\x92\x3b\xfb\x18\xf6\x50\xb2\x91\x5d\xe9\x93\x17\x66\xbf\xda\xb1\xab\x17\x66\xe9\xd5\x6e\xd9\x5b\xa1\x27\xa4\xd2\xb2\xd5\x6f\x6c\x0b\x2d\x27\xe4\xa4\x26\x20\x5b\xa3\x9d\x30\x39\x66\xae\xe6\x30\xb4\xe5\x87\x45\xb4\x90\x48\xad\xf9\x71\x42\x48\x79\xe0\x6a\x61\x88\x17\x7e\x21\x37\xfb\xa2\x62\xbc\xd0\x58\xfb\x6c\x48\x53\x37\x24\x18\xc2\x30\x24\x78\xc5\xdb\x50\x24\x76\x8d\x74\xe0\x91\xf4\x06\xeb\x10\x24\xf0\x48\x45\xdd\x97\x11\xad\x7a\x0d\x83\xe9\xc3\x9f\x25\x4e\x9b\xca\xf9\x1c\x11\x3b\x3a\xc3\x97\x40\xca\x47\x11\x49\xca\x75\x81\x66\x96\x3d\x5f\x94\xf6\x24\xb0\x90\x3c\x2d\x01\x0b\x00\x99\x88\x4b\xd2\x29\x2f\x15\x33\xfc\xad\x12\x2d\xb3\xe3\xe1\x87\x20\x3f\xd6\x65\x1e\x3a\x81\xf2\x60\xcd\x0b\xad\x12\x59\xa8\xba\x10\x9b\xf2\x41\xa9\x3b\x1c\xd4\x10\x9e\x52\xfb\x07\x04\x19\x86\x72\x42\x88\x22\x0d\xe5\x47\xd4\xa0\x4e\x14\x36\x3c\x0a\x19\x6a\xc5\x7c\x40\x96\x24\x33\xac\x59\x5e\x5c\xa0\x49\xbe\xd1\x7c\xda\x5c\x17\x1c\x5a\xd1\xaa\x53\x8c\xf1\x5b\xbf\x28\xeb\x56\x1d\xca\x62\x2d\x3f\xea\x66\x36\xe1\x6a\x4c\x0d\x35\xd5\x18\x35\x11\x10\xc5\x1e\x63\x82\xa0\x4d\x0c\x94\x28\x95\x7d\x55\x18\xb5\x63\x32\x2e\x59\x5f\xf8\x4d\x6f\x4b\x86\xfb\xb1\xcf\x81\xb6\x19\xb4\x1c\xc7\xa2\x77\xba\x04\x7a\x3c\x20\x8a\x1c\x2f\x82\x56\x48\x71\x59\x03\xb7\x18\xbe\x27\x62\x5b\x02\x44\xb6\x32\x12\x6e\x69\x34\xa6\x3c\x97\x3e\x90\xe2\xa5\x24\x11\x53\xe2\x92\x81\x5a\x5f\x0e\x82\x15\xde\x70\x66\xa0\x24\xed\x57\xcc\xaf\x95\x6a\x4a\x57\x6d\x68\x58\xce\x0d\x2c\xc8\x91\xfb\xe4\x6d\xdd\x2c\xe0\x01\x59\x85\xcb\x2d\xdc\xe6\xf5\x2e\xcd\x1f\x67\x6d\x44\x97\xce\x0c\x94\x89\x43\xbb\xec\xe0\x1e\x73\x6b\xbf\x76\x81\x07\xc1\x22\xa9\x87\xaf\xab\x69\x73\x59\x9d\x42\x60\xfc\xf1\xc3\x50\x5e\xc4\x8f\xa9\x78\x1e\xe2\xcc\x00\x6f\x17\x91\xb8\x89\x9f\x27\x24\xf9\x0f\xc0\x48\x16\xab\xfa\xe3\xbd\xfa\x99\x45\x6e\x6e\xcc\x85\xe7\xce\x55\x34\xac\x96\xb3\x85\xa1\xdd\x4a\x4e\x52\x81\xde\x0a\xb9\xdb\x4b\x4c\x3b\xda\x1b\xba\x99\xa2\x94\x84\x92\xf7\x87\x37\x37\x52\x72\x10\x10\x97\xb8\xd6\xf2\xf0\x65\xb0\xed\x65\x38\x66\x82\x8d\x91\x47\xce\xfa\xbd\xe4\x03\x7f\x1d\xdd\xad\x66\xc9\x5f\x14\xdb\xf7\xd2\x9b\x15\xed\x11\x05\x57\xf2\x9a\xe4\x87\xf5\x55\x4b\x7b\x24\x9d\x0d\x4b\xaf\xa5\xa5\x84\x6d\xc0\x39\x9a\x29\xfe\x30\x7d\x37\x9d\x39\x2f\x74\xa5\x9d\x7b\x90\x61\x00\x70\xdd\x82\xc4\x84\x7e\xb0\x32\x29\x28\x03\x1c\xd2\x8a\xf4\x7c\x2c\xf6\xf3\xd6\x15\xb1\xfb\xea\x55\x1d\xac\x42\x03\x32\x25\x7b\xfe\xd1\x5a\x32\x58\x25\x3e\x87\x89\x8c\x94\xac\xc7\x5b\x0e\xf7\x34\xbd\xf2\xcc\x74\x3a\xeb\xcb\x1c\x99\x3e\xf0\x41\x26\x58\xfe\x0d\xe1\x1a\x46\xe8\xd7\x5c\xa6\xe2\xa4\x80\x78\xc8\x39\x22\x59\xd8\x44\x9e\x1d\x84\xb1\x4f\xa2\xf2\x36\x7e\x70\x83\x5b\xf2\xd2\x0b\xbf\x02\xe8\xb8\x0c\xd0\x33\x3d\x53\x8c\x26\x0a\x3a\x4c\x2a\xb9\x9a\x30\xa9\x8a\xf2\x0a\x22\x15\x63\x31\x18\x08\x55\xa5\xc7\x3c\x92\xe5\x51\x13\x22\x6a\xa2\xb1\xf9\x53\x43\xf8\xc1\x26\x60\xf2\xfa\xca\xb0\x08\x5f\x27\xc2\xa3\xa5\x23\x5b\xc0\xba\x8e\x9f\x10\x37\x90\x3a\x6f\x24\x5e\x8f\x29\x44\x67\x7a\xc3\x7e\xf6\x15\x1e\x69\xad\xf4\xd6\xaf\x84\xcc\x9c\xb2\xce\x47\xc3\xfc\xd6\xca\x77\xa8\x23\x28\xb4\x2c\x40\xa1\x4b\xd9\xa4\x37\x6d\xef\x3a\xab\x34\xfd\xc0\xc1\x46\x64\xb3\x4e\xaf\x71\xc4\xa4\xef\xee\x62\xb8\xf3\x3d\x7e\x79\x8b\xe2\x9b\x73\x4f\x2e\xd0\x00\x86\xdf\xf1\x43\xda\x87\x3c\xe4\x27\x0c\x14\xdf\xc7\xb5\xd3\x10\xdd\x01\x13\xde\x2d\x13\x41\x9f\x23\xad\xce\x44\x56\xcf\x8a\xe4\x3f\x7e\x7c\x7e\xf4\x3c\xa0\xdf\x18\xd9\x24\x9a\x31\x81\x67\x30\xf7\x6c\x04\x2e\x9b\x43\xe1\xa8\xc1\xbb\x3d\x69\xc6\x1a\x54\x07\xef\xed\xac\xf8\xf7\x74\xfa\x69\xfd\xb0\xf3\x1f\xae\xc2\x4e\x4f\xf8\x82\xda\xa4\xfb\x44\xf3\xfe\x2b\x2e\xa3\xbd\xc0\x55\x4c\xbb\x23\x77\x96\x98\x7b\xcd\x66\x60\x41\x18\xf6\xb5\x49\x37\xe8\x44\x3c\x3e\x1d\x5e\x3b\x04\x91\xd8\x01\x4d\xb6\x8d\xe9\xb3\x4b\xe1\x99\x09\xe6\x12\x58\xa4\x9f\xd2\x8c\xdb\x4c\x15\x83\x44\x0c\xe1\x6b\x78\x28\x41\x91\x37\xfe\x24\x7f\xa9\x7d\x2f\xc4\xce\x88\x90\x94\xb5\x86\xbc\x74\x4f\xb6\x3b\x88\x0a\xd5\xba\x20\x99\x3d\x05\x8f\x4b\x70\x13\x85\xe3\xb5\xcd\x0d\x7c\x3f\x52\xf5\x18\x1c\x46\xdd\xdc\xd8\xcf\x42\xb5\x82\xae\xa4\x3c\x2b\xd0\x60\xd9\x54\x30\x7c\x31\x34\x8c\xcf\xb0\x56\xfe\x0a\xf4\xd8\xbc\x00\xf4\x02\x3d\xcc\xe5\x57\xb2\xe0\x01\x0c\x47\xb6\xa3\x4e\xc9\x24\x30\xd6\xb4\x19\x01\xcf\xb1\x42\x89\x45\x41\xa9\xc9\x3d\x9d\x5c\x8d\xab\xd7\xd5\xe4\x2c\x42\x64\x2a\xcf\x5c\x94\xa8\x59\x73\x18\x22\xb7\xfe\x11\xa4\xb0\x89\xaf\x0b\xa3\xc1\xf8\x34\xd6\xa6\x26\xcc\x9c\x70\x35\xa2\x2b\x97\xb1\x67\x91\x81\x1a\xd7\xd1\x30\x50\x7b\xd0\x75\xd3\x5a\x17\xba\x04\x28\x5f\xc4\xea\xdb\x3f\xd5\xbe\x7b\x93\xc3\x30\x81\x47\xb2\x47\x0f\xb2\x56\x7d\x63\x90\x52\x06\xd7\x52\x0a\xad\x06\xa1\x6e\xaf\x94\x1a\xf8\xed\x34\x61\xf4\x8a\xe0\x26\x14\xff\x4b\x6d\xc0\xc6\xfa\x45\x9f\x77\x83\xa0\x97\x84\x1d\x78\x28\x4c\x53\xf3\x5d\x1f\x81\xa3\x4b\xfb\xa7\xf5\x19\xcd\x65\xff\x8d\x5f\xaf\xa7\xd5\x1b\x75\xd4\x9b\xa0\x98\x28\xd6\x74\xeb\x30\xf0\x4d\xcf\x73\x5d\x16\x54\x0b\x94\x75\x54\x90\x88\xb6\x16\x96\xda\xb1\x9a\x2b\xbf\xca\x31\x6a\x2b\x71\x18\xdc\x3f\x2c\xe2\x78\x1f\x79\xe2\xb1\x58\xad\xd5\x57\x4f\xb8\x11\xc1\xe2\x5b\xb5\x9e\xdb\xdb\xf2\xc7\x8e\xf6\xda\x4a\xfa\x23\xca\x3c\x77\x40\x7a\xa1\xc4\x95\x4b\xea\x15\xc4\xde\x14\x21\x05\x16\xbd\x6a\xc4\x86\x37\xf0\x66\x91\x7a\x45\x72\x57\x82\xaf\xd2\x4e\xaf\x03\x9b\x69\xb3\xaf\x50\xd5\x20\x8d\x0f\xb6\x72\x20\x55\x50\xac\xf8\xc9\x4a\xda\x2d\x42\xe8\x38\x1a\xa0\x52\x49\xd3\x17\x31\x0f\x62\x65\x27\x83\xb4\x14\xbb\xb5\x8f\x40\x4d\x7a\xbe\xc6\x4d\x42\xe0\xc3\x29\x25\xaa\x4f\x35\xd0\x55\x4f\x15\x66\xfd\xb4\x76\x77\x4b\xb4\x3e\x5f\xca\xd1\x44\x6e\x18\xd4\xb3\x82\x99\xfc\xd4\xf0\xa9\x6f\x46\x6f\xc1\x4f\x9a\xd2\x05\x8f\x9b\x56\xb5\x1e\x4d\x66\x8d\xaa\x95\xee\x2e\xfd\x24\x14\xa9\xb8\xe9\x97\x9d\x48\xfd\x8d\xd0\x56\x98\x1c\xc4\x86\x4c\x4b\xfa\xe3\x6a\xf9\xd2\x13\xaa\x24\x06\x10\xeb\xda\xe5\x9e\xa8\x64\xd5\x00\xd6\x4b\xeb\xdc\x38\x24\x80\x4d\xb5\xc0\x61\x57\x4d\x37\x78\x6f\xb0\x7b\x54\xd3\xf6\x3b\x72\x96\xc4\x1b\xf3\x99\x67\x32\x34\x9a\xd7\xa3\x57\xb3\x09\x3f\xa0\x41\xa6\xdd\x2e\xe8\xdd\xb0\x2f\x90\x59\x60\xc6\xd2\x23\x63\x95\xb1\x91\xd0\x75\xb6\x6a\xb3\xf8\x08\x76\x61\x63\x52\x1a\xcc\x8a\x0c\x1d\x2d\x50\x50\xfd\xb7\x4e\xbd\x50\x3a\x67\x1b\x1d\x3b\x87\xbe\xf6\x5f\x93\x0d\x8b\x68\x3f\x3c\xbd\x98\x68\x95\xbc\xdc\xa4\xa9\x95\x5d\x93\xd2\xff\xbc\xb9\x61\x0b\xe4\xae\x12\x67\xfa\x76\x59\x9b\xc4\x13\x1d\xf8\x7b\x62\xc1\x85\x2d\x0a\xd3\xb9\x52\x39\xac\xdd\x52\xcd\x95\x5f\xe5\x0b\xd0\xea\xc7\xb5\x62\x0e\x55\x57\x89\x30\xac\x3a\x5c\x3a\xb8\xa4\xe5\xdb\xda\xdf\xd2\x5b\x82\x1c\x92\x8b\xd6\x75\xb2\x0e\xdf\xdc\x57\xd3\x53\x44\x2d\x63\x85\x0d\x7d\xfc\x89\x34\x01\xda\x7b\x08\x4a\x4b\xf1\xbb\xa5\x5e\x9c\x50\xa6\xd4\x0d\x6e\x19\x4b\x8b\x89\x75\x01\x52\x34\xda\xc2\x80\x44\x26\xce\x00\xe2\xf3\x76\x8a\xf4\xa9\x7b\xaf\xb4\x3b\x04\x9c\x38\x31\xbb\x9b\x1a\x5c\x28\x3e\xbe\x9b\xf0\xca\x9c\xb0\x9a\xf0\x56\xb4\xc5\xbc\x63\x95\xac\xcd\x60\x01\xd6\x36\xf8\x7e\x9d\x26\x97\x8d\x2a\xed\x68\x2d\x94\x77\x62\x6b\xcf\xc0\x8f\xee\x0a\x83\x11\x29\x94\x88\x43\x47\x51\xea\xa4\x00\xbd\x17\xef\xd1\x23\xb1\xff\x24\xec\x0b\x38\x4a\x74\x3c\xc4\xcc\x02\x0c\xa4\xd3\x49\x4d\x26\xbf\x4e\xa5\xf6\xe4\x2c\xe0\x0c\x28\x6a\xeb\xe7\x18\xa2\x83\x02\xdf\x50\xc5\xf7\xd4\x19\x60\x04\xc0\x96\x6c\xe2\x4b\x00\xe5\x6c\x67\x41\x37\x4b\x4c\x67\xfd\x36\x9a\xad\xb3\x7a\xde\x2c\xb6\x44\x87\x74\xeb\xe2\xca\x7c\x55\x1f\xea\x86\x1d\x75\x23\x54\x92\x6e\x79\xa7\x43\x2c\x97\x52\xd6\x2b\x71\x13\x39\xc3\x69\xc9\x96\x81\x9e\xac\xaf\xdf\x84\x03\xc5\x67\x26\x7e\xd1\x83\x5f\x5e\xb3\x50\x1b\xa0\xc0\xaa\xcc\x6b\x9d\xb5\xfc\x9a\x2a\x78\x8a\x35\x71\x52\x4a\x99\x84\x95\x6d\xa8\x70\x9b\x52\x2f\xc5\x47\xa7\x19\x91\x0f\x31\x5a\x59\xcb\x51\xca\x86\x93\x8e\xad\xa7\x84\xa2\x6c\x43\x0b\xaf\x2c\x87\x50\xb7\x31\x08\xd3\x71\xdb\xe9\xa0\x9d\x19\x38\x22\xdb\x41\x48\xeb\x67\x3b\xf0\x8f\xb5\x23\xf8\xbd\x7b\xfb\x0e\x95\x88\x9f\x8c\x40\x3d\x0f\xa4\x70\xd4\x80\xcc\x74\x43\x15\xa4\x9a\xa3\xe9\x63\x0f\xfe\xdc\x49\xf0\xbf\x66\xdd\x56\xc7\xa3\xbd\xc5\x50\x96\x9e\x8f\x15\x0d\xdd\xbe\xaf\xee\x93\xea\xd4\xcc\x52\x14\x70\x85\x7b\xa1\xd4\xdf\xd5\xe3\xb1\xb2\xe2\x72\x56\xd5\x29\x66\xca\x51\x3c\x29\x8d\x32\x65\x91\x5d\xa6\x6d\xb2\x2d\x7e\x5a\x23\x24\xa6\xe6\x16\xb3\xb7\x6f\x27\x34\xec\x7a\x52\x2f\x3e\x02\x3b\x16\x25\x86\xd8\xf7\x4e\x35\xf1\xf4\x33\xb6\xef\xb8\xd7\x94\x25\x39\xb0\x58\x6d\x36\x9e\x9c\x8d\xfd\x6d\x9b\x32\xcd\xf6\x68\x2c\x5d\x97\x19\x59\xa6\xdb\x5f\xba\xd9\x87\x66\xc2\x8d\x01\x40\x5a\x7a\x87\xb5\x7f\xb5\x44\x15\x51\xdb\x13\x95\x27\x06\xfd\x5b\xbd\x85\x5d\xeb\x63\x3f\x2c\x20\x4d\x82\x12\x4f\xa2\x62\x44\x06\x5a\x76\xdb\x03\x91\x6c\x53\xc5\xbf\x68\x39\x09\xa4\x83\xe5\xb4\x9f\x37\x37\x7a\x4d\x95\x2b\xba\x96\x49\xc2\xdd\x9e\x98\xde\xba\x59\x50\xa9\xff\xdc\x49\xb8\x8d\xc0\xd7\x8d\x60\xcf\x5b\x08\x94\x95\xaa\xb2\x42\x9b\x30\x0b\x22\x7e\x01\x92\x4c\x88\xf6\x15\x98\x88\x30\xe1\x69\xca\xfa\x5e\x91\x95\x3b\xe1\x68\x99\xe3\x67\x8c\xc0\xb7\x49\x7e\x1b\x13\xbc\xcb\x79\x3d\x9b\x23\x05\x5e\x46\x34\x79\xa1\x3f\xe2\x6c\x91\x4a\xa0\xfb\x06\x8a\xd7\x37\x1c\xa8\x34\x0a\x7b\x47\x3a\x28\xd2\x49\xa7\xe3\x7e\xf7\xc0\xeb\x2a\xe8\xc6\x7b\x09\x4c\xe2\x39\x59\x9f\xc4\xa3\x5e\xc0\xc5\x1c\xa7\xb9\xf2\xd4\x69\x59\x4a\x60\x54\x72\xd5\x82\xd9\xad\xae\x5a\x44\x21\xcf\x34\xba\x6d\xf7\x6d\x33\x80\xad\x43\xe7\x8d\xd8\x3f\x50\xc2\x2d\xd1\x0c\x82\x40\x06\xad\x9c\x90\xaa\x4c\x70\x18\x84\x31\x28\x42\x15\x0e\xd7\xc5\x7c\x36\x5b\xe0\x7b\x7e\x11\x39\x8f\x06\x24\x2c\x5f\x9d\x8e\x33\x99\x76\x57\xba\xbc\x6a\x5a\x55\x15\x4a\x18\xd0\x3f\xa4\xb1\x05\xad\x40\x27\x37\x37\x5c\x09\x3e\xcc\xca\x65\xec\x1a\xd2\xc3\xf1\x3f\x09\x71\x54\x34\xc4\x56\x54\xa7\xef\x2a\xe7\x3d\x4c\x9f\x3e\x24\x5f\xfc\x17\x44\xed\x14\x9b\xd6\x41\xeb\xa6\xc8\x3b\x64\xaa\xb5\x35\xd7\x5a\x6a\x30\xb9\xa1\xeb\x9c\xef\xb2\x78\x1d\xa3\xfe\x36\xd5\x8f\xf3\x3d\x9c\x6d\xd2\xf0\x32\xf7\xa2\x1f\x13\x3a\x7b\x7e\x45\xce\x1c\x9f\xc1\xc6\x1b\xea\xa5\xe1\x69\xce\x60\x7a\xc8\x95\x65\x2d\x05\x33\x92\x19\x99\x13\xc1\x71\x37\xca\x6b\x8e\x44\x1c\x10\xe4\xe7\x8b\x0b\xc1\xa1\xf0\x2e\x2d\xe1\x8a\x31\x79\xd0\x3a\x0a\x96\xb8\xad\x6e\x8b\xe2\x25\xaf\x6d\x09\x0a\xac\x6e\x08\x3e\xd7\xb7\xc3\x2f\xf6\xa9\xb0\x28\x82\x01\x52\x51\x87\x5a\x03\xb9\xd0\xbd\xb2\xd1\x33\xbf\x78\xb2\x15\x77\x41\x60\x29\xd2\x4d\x74\xb6\x6a\xfc\x89\x07\x6f\x85\x72\x60\x19\x2c\xb3\xbc\x62\x11\xd2\x91\x61\xa4\x05\x51\x43\x68\x6f\x80\xac\xef\x4d\x57\x86\xb0\x9d\x76\xaf\x5d\xdc\x96\xbe\x03\xa5\x65\xae\x0b\x91\x9e\xec\x75\xac\xd8\xa4\x05\xe4\x20\x72\x74\x5a\x8e\xf0\x9d\x52\x71\x44\x35\x29\xab\xe6\xa8\x44\x50\x59\xe6\xbe\x0a\x5f\xd1\x08\x2e\x1a\xac\xc2\xfc\xeb\x83\x7d\xa5\x90\x6a\x95\x23\xc3\x52\x06\xfd\xdd\xcf\xaf\xfd\x96\xb8\xf0\xc1\x70\xa9\x7b\x36\x9c\xcd\xa9\xee\x2b\x50\x73\x52\xca\xaf\x3b\x58\xd8\xcf\x97\xe7\xa5\x6b\x98\x72\x5f\xcf\x53\xcb\x1b\x95\x76\xaf\xfd\xe9\x12\xe1\x6e\xcb\x0e\xed\xe5\xd5\x6f\x5b\x89\x7e\xd8\x75\xa8\xab\x86\x0a\x5d\xfe\xae\xa0\x66\x57\x5b\x83\x6c\x35\x45\xfe\x4a\x4c\x41\xa5\x49\x06\xd5\x32\x5a\xca\x2c\x37\x17\xc1\xde\x52\x8b\xbb\x6f\x6e\x12\x0d\xd9\xdc\x4e\x67\x7b\xfb\x27\xe5\xd3\xc8\x66\x58\xbe\xd3\xaf\x6d\xca\xeb\xe2\xc1\x2c\xb5\xb2\x17\x69\x17\xdb\x08\xfa\xa8\x1a\x07\x64\x98\xa5\xf3\x16\x8d\x07\x7b\x3d\x27\xa6\xb3\xba\xd3\x5d\x2c\x76\x84\x7f\x7b\xe2\xa4\x65\x98\xeb\x56\x85\x64\xe8\x74\xf0\x83\xa8\x50\x67\xae\x9a\x18\x12\xbb\xcf\xb8\xe0\x03\xb7\xc2\xa5\x57\x2e\x2c\xad\xe8\x7d\x8e\xc7\xe1\x31\x2d\x13\xda\x5b\xd2\xb2\xb9\x19\x40\x0c\x89\xd6\x50\xca\x4f\xc0\x40\x49\x09\x6f\xd7\xdc\xd9\x59\x7b\x7b\x2d\x58\x44\xdf\xc9\xb6\x21\xcb\x25\x70\x63\xd2\xc6\x4f\x28\xaa\xbb\xe6\xaf\x94\xfb\xbc\x28\x69\x95\x42\xac\xeb\x9b\xec\x1e\x50\xa8\xe1\xf4\x52\xd1\x8b\x08\x3b\x93\x61\x33\x63\xd0\xfd\x37\xa5\x80\x98\xc1\x94\xac\xd3\xe9\x62\x31\x93\xc0\xe2\x0f\xa2\x7a\x20\x61\x7a\x05\x1b\x67\x8a\x6c\xd7\x06\xfa\x5e\x70\x1b\xb9\xa7\xb8\x48\xf6\x03\xf0\x78\x31\xa5\x10\x55\x7e\x82\x28\x29\x5a\x80\x9a\xf2\x11\xa7\xde\x5d\x5f\x27\xb3\x99\x21\x2e\x0c\x27\x45\xa7\x10\x1c\x78\x72\x7f\x37\x37\x12\xae\x84\x29\x57\x65\xfc\xf0\xd0\x76\x8c\xd6\x12\x28\xa5\xa6\x7e\xb3\xcc\x03\x62\x37\x56\x5b\x44\xc6\xea\xea\x84\x63\xdd\xe6\xb5\x4c\x76\xb8\xf4\x83\x60\x5b\xff\x75\xf2\xc3\xcb\xfd\x83\xc8\x71\xa2\x54\xf5\xce\xed\x7f\x86\x7e\xce\x03\xb7\xe6\xa1\xcf\x6a\xfb\x4d\x84\xf5\x89\xb9\x9e\x7c\xb7\xd2\xae\xc2\xec\x6a\xa1\x3d\x59\x03\x68\xd5\xa7\xbe\x17\x6d\x3c\xa5\x8d\x49\xd9\x6d\xae\x2e\x61\xb8\xff\x89\xfe\xa7\x03\x0f\xc9\x66\x5f\x48\x80\x74\x7c\x3c\x99\x8d\xc6\x18\xa8\x0e\x38\x85\xf9\x47\x59\x1f\xc3\xa8\xe1\x04\x87\x80\xa6\x12\xae\x13\x25\x3f\x77\x8e\x30\x51\x2c\x0b\x64\xcc\xf3\xaa\x69\xcc\xa5\xdf\xbd\x68\xde\x3a\x14\xac\x79\x53\xcf\xf5\x61\x8f\x04\xb8\x50\x78\xe9\x1a\x7b\x0b\x78\xc1\x20\xb5\x57\xec\x40\x11\x29\x86\x53\x77\x3b\x20\x6e\x6c\xde\x96\x19\x06\xa9\xc0\xe0\x14\x58\x90\xa2\x58\x8c\xb6\x2e\x27\x57\x6f\xeb\x69\x7f\xeb\x7c\xb1\xb8\x6c\xfa\xf7\xee\xbd\x35\xe3\xba\x3a\x01\x4f\xbb\xf7\x70\x02\x7f\x69\xe8\xdf\x5d\xf6\x29\xc8\x48\xfd\x9a\x50\x6b\x3f\x9a\x8b\xed\x7a\x07\x06\xca\x12\xeb\x75\xc5\x96\x4b\x9a\x21\x32\x2a\x42\x54\x27\x67\x96\xc5\x05\x33\x71\xf3\x48\x2c\xf4\xda\x6a\x60\xb3\x69\xa1\x1d\xc0\xfb\x62\x36\xbf\x3c\x37\x10\x3f\xd4\x5c\x46\xe4\x28\xfb\xf7\x1a\xf7\x2e\x0b\x78\x4d\x2c\xf7\x8a\x71\xdd\x80\xe3\xc9\x57\xe8\xc6\xd5\x17\x1d\x66\x96\xac\xc8\xb6\x2d\x47\xf8\x5c\xfa\x7b\xfc\xe2\x0f\x76\xcf\x75\x62\xef\xbb\xa7\xaf\x1f\x7e\xfb\xec\xf1\xf1\xab\x87\x2f\x7e\xfb\xf8\xf8\xe1\xf7\x4f\x9d\xc8\xd8\x6b\x50\x37\xd0\x5e\xcf\x8f\x0d\xb5\xec\xe6\x05\x9f\xb1\x86\x86\xbc\xad\x27\xd0\xe9\xf0\x28\x45\x5b\x14\x30\xb7\xeb\xd4\xf0\xb8\xb4\x9d\x58\x38\xab\xa7\xb6\x9c\xad\x88\x39\x61\x2d\x4c\x74\xae\xa6\x24\xde\x18\x99\x3c\x5e\x8d\x26\x4f\xe6\xa3\xb7\x18\xd7\x74\x5a\x55\xe3\xe6\xf5\xf9\xc7\x72\xcd\x30\x22\x03\xdb\xc6\x30\x11\xa5\x55\x71\xf5\x23\x76\xa0\xff\x3d\xc3\x5b\x62\x21\xc3\x04\x1b\xe8\xf8\xdd\x9b\xe7\xcf\xca\xec\x1b\x93\xf1\xe0\x9b\x7b\xf0\x37\x93\x6c\x7c\x0b\x41\x01\x85\x57\xb2\x39\x9d\xd7\x97\x0b\x53\x98\x7f\x64\xce\x51\x4c\x7b\x35\x20\x2d\x61\xc1\x01\x0c\x9b\x3f\x9e\xd7\xa6\xec\x25\x38\x6a\x75\x8b\xf6\x79\xe6\xf1\xc6\xa4\xf4\xb7\x78\x8c\x74\x0d\xdf\x85\x95\xbd\xf7\x61\x17\x19\xa6\xf3\xd9\xc4\x20\xae\xbb\x6e\xf4\x48\xab\x86\x53\x40\x5a\xe0\xc5\x6c\x5c\x81\x47\x3e\x43\x7e\x8c\xd9\x68\xa6\xe4\x0e\xcc\xb2\xc7\x25\x0f\x82\x92\x5b\xd4\xf4\x92\x8d\x6c\x2d\x5c\xbb\x93\xc1\xdc\x27\xb0\x2b\xd5\xe4\x4c\x84\xc7\x9e\xff\x02\xa9\x04\xaf\x2b\x93\x33\x72\x69\x89\xa0\x8c\x9f\x80\x0e\x7f\xbf\x84\x9f\x6a\x0d\xa0\x55\xa2\x02\x3f\xfe\x16\xce\xa5\x3b\xd6\xbb\xd9\x0e\x9c\xd4\x9d\x9d\x01\x56\x31\xbd\xcc\x17\x25\x95\xda\xc9\x76\xf1\x33\xa3\x2c\x83\xcd\x5c\x86\xf9\xc8\x54\xcc\xdc\xb3\xe5\xe0\xf7\xca\x57\x9a\x1d\xa2\x4b\x23\x05\x0c\x00\x74\xc3\x0c\x20\x8f\xfd\xc4\x4c\x59\x1e\x70\xe1\xa7\xb9\x08\x69\xb4\xf8\x25\x8a\xd9\xf4\x01\xcc\x3c\xfe\x62\x11\x01\xfe\xc6\xc1\xbd\x19\xbd\xc5\x0f\x28\x4c\x3f\x07\x5e\x43\x65\xcb\xb3\xb3\x54\xee\xe6\xe2\xc4\x93\xd7\x8a\x15\xa1\xb1\x39\xc3\x93\x0e\x74\x2f\x71\x63\x02\xfa\xa0\x45\x7d\x97\x95\xa8\xb1\xc6\x4e\x76\x77\x13\x50\xcb\x96\x03\x37\xf2\xcd\x9a\x37\xe5\x37\x6f\x1c\x58\x4f\x8d\xcf\x4c\xc3\xbc\x07\xae\x33\xdc\x29\x5a\xfe\x37\xb3\x19\x01\x1f\x96\x0a\x4f\x1a\xb6\xc0\xa0\x4b\x0a\x55\xae\x84\xb3\x6c\xf9\xf6\xe3\xd3\x31\xb5\x49\x2b\x41\xe5\x71\x0b\xd7\x14\x37\x33\x13\xa3\x6e\x1e\x0a\x0e\x03\xde\x90\x5f\x43\x4b\xa4\xc2\xd6\xa5\xae\x0d\xf7\x24\x99\x8f\xa7\x63\x54\x3c\xeb\x62\x27\x62\x83\xe3\x55\xa5\xfc\x54\x4d\x6e\x94\xab\x8a\x73\x64\x28\xb0\x1c\x08\x98\xfa\xc7\x33\xb9\x54\xb2\xac\x2c\x36\x94\x12\xdc\x15\x85\xe1\x42\x8c\x3e\x5d\x88\x89\xfd\x19\xa3\x75\xaa\xdb\x8a\xf5\x59\xf8\x44\x85\x48\x22\x04\xc8\xa5\x2b\xd5\xd1\xa5\xb3\x9c\xa2\x32\x40\x99\xa9\xc1\x21\x57\xda\x32\xb0\xe5\x40\x1f\x3c\xd7\x1a\x60\xb1\x0d\x20\xc3\x5f\x74\xaa\xc5\x89\xa7\x86\x96\x1e\x5d\x36\x55\x57\x62\x29\xf1\x0a\xac\x9b\x3d\xc9\x3c\xe5\x48\x77\x51\x8c\x35\xf6\x75\x77\xa0\x19\x18\xb9\x60\x89\x14\x36\x5d\x0b\xd0\xab\x01\x54\x4e\x5e\x38\x45\x0d\x77\xad\x00\xf9\x99\x77\x5b\xe1\xc0\x4f\x9a\x29\xe1\xf8\x95\x33\xe5\x83\x9b\x9a\x6b\x98\x65\xe7\xaa\x0e\xfb\x67\x9b\x2b\x87\xbb\x34\x4d\xbe\x9f\x8f\x2e\x9f\x8f\x2e\x4b\xb8\xe4\x0c\x4b\xd6\x3f\xda\x2f\x0c\x72\xc4\xdf\x5b\x17\x57\x93\x45\x7d\x39\x31\xe8\x50\x7e\xdd\x7d\x60\x98\x27\x83\x07\x31\xff\x01\xb0\x4b\xe0\x43\xcd\x8c\x96\xea\xc9\x17\x95\x72\x5f\xc3\x02\xbd\xa4\x53\x21\xfc\x49\x25\xf8\xa7\xc9\x06\xeb\xa0\xfe\xd1\x81\xcd\xfe\x06\x53\xb8\x14\xfe\xd4\xa5\xe7\xfd\xa3\xfb\x61\xd1\x6f\x16\x73\x2e\x3e\x7f\x90\xa8\x63\x8e\xc9\x5b\xf4\x93\x11\x77\x62\x4b\x4b\x19\x6a\xc7\x7e\xa9\x56\x2e\x46\x97\x34\x09\xf3\x83\x4a\xe1\x8f\x61\x21\xc1\xde\xfa\x47\x7b\x86\x29\x37\xff\x1b\x92\x4b\x46\x30\x1c\xc2\xc3\x04\x30\xe0\x0b\x32\x80\xf0\xac\xc7\x48\xb1\xf3\x27\x80\x8c\x95\x7e\x74\xb3\x7a\x8c\x2f\x90\xb5\xb3\x96\xe4\x72\xd6\x36\x4f\xea\x39\xca\x48\x6c\xf4\xc0\xb5\x3d\x9c\xe7\xe2\x6c\x66\x08\xd8\x76\x4b\x3d\x28\x93\x68\x86\x2c\xf6\xb0\x6e\x89\x68\x01\xfe\xbc\x21\x21\xc6\xbe\xa1\x1f\xf5\xac\x10\x1b\xc1\x4c\x50\x92\x0a\x55\x1c\x4f\x09\x5f\x4b\xf6\x4e\x69\x20\xe1\xa9\x25\x9c\xa2\x95\x70\xe7\xec\x62\xb4\x38\x3d\xaf\xd0\x96\x03\x3c\x31\xfb\x44\x6c\x7e\x0d\x05\x91\xee\xb2\x6e\xfc\xef\x75\x7f\x6c\x76\xf2\xae\xbe\xd2\xbb\x47\x7f\xbe\x3b\xdc\xc9\xef\xe6\xf7\xde\x3a\xde\x0a\x1b\x2e\xb0\x99\x06\x94\x46\x71\xf5\xb9\x37\xf2\x6a\x62\xa6\xcd\xf9\x43\xa7\xeb\x37\x7a\xbb\x84\xab\x8f\x96\x28\x20\xfd\x60\x80\xdc\x00\x4b\xaa\xf7\xac\xcb\x92\xd2\xcf\x59\x63\x31\x09\x0b\x84\xe3\x2f\xfd\xc5\x95\xf5\xe1\xc6\x70\x63\x0c\xa1\x9c\xe3\xee\x86\xd8\xe8\x8d\xc1\x03\x78\xd2\xbd\xd2\xfb\x66\x32\xd4\x76\x8f\xde\xa9\xa1\x08\xe3\x05\xbe\xa5\x71\x0b\xa9\x4c\x2e\xfb\x85\xbc\x05\x14\xf5\x88\x1a\xd7\x82\xda\xb2\xd1\x7c\x5e\x32\x22\x39\x52\x5d\xb0\x62\x6e\x6f\x31\x7b\x36\x7b\x5f\xcd\x1f\x8d\xcc\x2d\x95\x0f\x6f\x6e\xb8\x68\x4f\x0e\x0d\x79\xc3\xa9\x2e\xd1\xcb\xf6\x1c\x9e\x09\x08\x95\xc2\xc7\xfe\x10\x48\x50\xfc\x79\x80\x00\x21\xbc\x1a\x43\x42\xd6\x69\xce\x3f\x0e\xb2\x1d\xf8\x58\xea\x67\xa1\xd5\xdc\x8c\x06\x46\xbb\xc6\x44\x60\x42\x4b\x3b\x78\x25\xf9\x46\x2f\x25\x8e\x90\xac\x5c\xa4\x13\x01\x0b\xc7\x87\x2d\xbd\x21\xe2\xb6\x9e\x8b\xbd\x85\x14\x67\xfd\x03\x97\x11\x1c\xaf\xed\x20\x87\x55\xbe\x5c\x3b\x2a\xdf\xef\x39\xdd\xe4\xfd\x4e\x27\xc8\x40\x76\xc9\x9c\xf7\xd1\xfc\xe1\xa2\xbb\x87\x8e\xb7\xff\xfd\xff\xc8\x74\x1f\x8a\xbf\x4a\xd6\x25\x4d\xe1\x7d\x67\x6b\x23\xb8\x89\x18\x92\x6a\x34\x01\x10\x28\xb5\xc2\x82\xb9\xc5\xae\x79\xe6\xf0\xd1\x8b\x21\x05\x59\x57\x33\x0a\xdc\xfd\xb0\x90\x74\x84\xe9\x02\xa2\x1f\x48\x25\x72\xf4\x36\xec\x0a\xa0\x06\x71\x6b\xd8\x0c\x48\x48\xa7\x63\x95\x60\x76\xd3\xfb\xf6\x4f\x86\x6d\x4c\x97\x70\x8b\x0e\x02\xd2\x8d\xa8\x59\x9a\x93\xac\x4b\x77\x03\x2a\x81\xa3\x70\x1a\xe0\x5f\x4f\x3c\x39\x95\x17\x5c\x75\x7f\xb8\xe4\xfc\x1e\x4e\xec\xd4\xe0\x87\xd7\xf5\xc9\xa4\x9e\xbe\x2d\x26\xa3\x66\x31\xd0\x0b\xa8\xd6\x0d\x49\x41\xde\x00\x55\x87\xe1\x96\x68\x56\x95\xce\x57\x84\x2a\x08\x8d\x63\x6a\x89\xab\x0d\xe7\x16\x92\xc8\xc7\x8c\x5d\x97\xca\xde\x2e\xae\x2a\x51\x26\x27\x66\xa1\xde\x2d\x97\x98\xa9\xd6\x5d\xab\x0f\x13\x0d\x6c\x1b\xa6\x1a\xd8\xa5\x6e\x0d\x13\x34\x26\x8b\xe0\x81\xd0\x98\xcf\x1e\x45\xf0\xa9\x3b\xa6\xdd\x59\x6e\xbc\x16\x2b\x71\xae\x5b\x6d\x3d\xea\x55\x9c\xc7\x2f\x0b\x48\xf8\x0b\x9f\xe6\x33\xc0\x92\xeb\xd7\x61\x10\x1c\x0d\x5d\x02\x5a\x6c\x63\x7c\xf4\xf9\x13\xf8\xf4\x37\x4a\x6d\x51\xcc\xab\x60\x95\x4f\x81\x4c\x35\x54\xcd\xea\x10\x34\x25\x36\x62\x25\xf3\xb3\xf9\xe1\xd4\x3b\x8f\xc7\x53\x8f\x69\x83\xd3\x1b\x94\x86\x81\x0e\x56\x2e\x19\x41\xf5\xe7\x01\x52\x9d\x92\x5c\xa4\x35\x9c\xd3\xe6\x8c\x51\xb0\x12\x21\xfc\xfd\xac\xb5\x88\xb6\xe1\x67\xe0\xb7\x9f\xb5\x5c\xcb\x84\x18\x0f\xcf\x5c\xb8\x76\xa4\x4f\x06\xda\x4d\xfc\xa6\x40\x0a\xb8\x58\xb4\xd5\x99\x8a\xa5\x50\x97\x72\x2f\x51\xfc\x0e\x14\x51\xd0\x4a\xf8\xe5\x90\x92\x5d\x0e\x52\x83\x52\x9a\x2f\x9b\x8c\xad\xa5\x43\x12\x8c\xb4\xf5\x00\x95\x4b\x87\xee\x92\xa5\xec\xd1\x2f\x3d\x19\x64\xb2\xac\xa0\x9b\x52\xe3\x9d\x74\x49\x94\x4c\xd8\x03\x9e\x2c\xc3\x90\x5d\x2a\x08\x4f\x96\x13\x69\x66\xa9\xc5\x9a\xc9\x92\x24\x96\x2c\x95\x5c\x35\x55\x0a\xbc\x3f\xe2\xb2\x86\xe8\x7f\x8d\x7c\x30\x3c\x4c\x1b\x4b\x5f\x28\x64\x0c\xb5\x7e\x73\xb3\x8d\xf5\xd2\x5b\xa6\x37\xbd\x4c\x28\xad\xdb\xa1\x77\x73\xef\x29\x91\xa3\xfb\x8f\xa6\x10\xb2\xff\xb2\x9a\x43\x6c\xf8\xad\x99\x98\xbb\x36\x5b\xb3\xe9\xd6\xc8\x09\xe1\x29\xbe\x3d\x07\xf8\x47\x7f\x67\x18\xf6\xbe\x07\x16\x7f\x83\xf0\xf9\x4a\xbd\xab\xc1\xbb\x6f\xb5\x3b\xaf\x4e\x67\x6f\xa7\xf5\xbf\xf1\x83\x72\x2a\xba\xf0\xaa\xd8\xb4\xe8\xb0\x6a\x34\x31\x3c\x68\x76\xcf\x30\xf3\x3d\xf3\xdf\x17\xe6\xbf\x1d\xf3\xdf\xa1\xf9\xef\xc6\xfc\xd7\x35\xff\xe5\xe6\xbf\x23\xf3\xdf\xd0\xfc\x77\x6d\xfe\x5b\x9a\xff\x7e\xfc\x51\x02\x69\x36\xa7\xa3\xcb\xea\x55\xf5\xb6\xfa\x80\x6f\x07\xe6\xd7\xe3\x0f\x97\xdd\xac\x6b\x4a\xec\x48\x07\xbd\xbf\xcc\xea\x69\x37\xbb\x31\x69\xf9\x0e\xb6\xf7\x36\x53\x0a\x83\xa2\xa7\x03\x0f\x20\xf6\x94\xb3\x8a\x89\xdb\x10\x09\xdd\xc5\xc7\x0e\xca\x02\x21\x7d\x44\x7a\x9c\x14\x9a\x68\x98\xb9\x97\x5b\x78\x8c\xac\x4f\x5f\x57\x24\x2b\x22\x7d\x08\x3e\xd0\xf4\x51\xd2\x3f\x4b\xaf\xa0\x0e\xd9\x52\xa1\x36\xad\x0e\x52\xe1\xfb\x1c\xe2\x66\x54\x93\xc5\xe9\x79\xe0\x99\x81\xd2\x23\x9f\x0c\xa7\xe7\x92\xc3\xdc\x49\x9d\x3b\xcf\x41\xa0\xaa\x84\x46\x14\x73\xf0\x72\xbe\xa4\x68\xf0\x66\x81\xdb\x6c\xe0\xb8\x25\x11\x14\xa8\x2d\x81\x8d\xba\xb3\x0f\xf1\xe7\xe4\xd9\x76\x75\x1b\x06\xe8\xec\xfa\x7d\xf7\x71\x3a\xba\x70\x0b\x38\x75\x1e\xcb\x50\xed\x03\xfe\x2c\xfd\x32\x9b\xae\x9d\x9b\x68\x3d\x55\x53\x05\x20\x04\xfc\x33\x5a\xa0\x23\x58\xd2\x2a\x4c\x4e\x3b\xeb\x1e\xfd\xf9\xde\x70\x27\xcf\x52\xf3\x32\x97\xd6\xe8\xc2\xd9\x6d\xd2\xe7\x91\x1d\xf8\x50\xcf\x11\x04\x93\x2b\x27\xa8\x0a\xfc\xdc\xd9\x6d\x3e\xb9\xde\x67\x98\xd9\xe3\xcb\xa6\x9e\xcc\xa6\x32\xb9\xfc\x7a\xe9\xa7\xac\x9e\x0d\xbc\xc0\xb7\x0d\x2f\x39\x34\x95\xab\x06\x81\x7a\x95\x5d\xc4\x55\xa8\xcf\xd4\x60\x0c\x08\xb2\xa1\xc3\x54\x9f\x37\xbf\x07\xca\xd8\x90\x5c\x52\x66\x73\x75\x62\xc0\x12\xb8\x6f\x12\xac\xe1\xc0\x1b\xc9\x24\x3d\x38\x53\xc7\x8c\xb4\xb9\x9a\x2c\x12\x6e\x51\xa4\x4a\xec\x12\xc5\xb5\x67\x0b\x1d\xd5\x43\x12\x3f\x59\x71\x97\x64\xf5\xf0\xab\x7b\xef\xcf\x7d\x03\x77\x3f\x02\xe0\xdd\xb9\x87\xc6\x37\xd8\x2d\xc9\xd4\x00\xf7\x05\x27\x06\x6b\x81\x58\xca\x50\x47\x68\x76\x8c\x05\x6d\xea\x00\xd7\xa2\x37\xa6\x4a\xcd\xce\x8e\x55\x44\x48\x77\xfe\xe3\x17\xab\x7b\xd7\xb0\xbc\x59\xd7\x70\x81\xea\x7e\x65\x45\x48\x3c\x11\x75\xe0\x03\x90\xf5\x55\x17\x0f\x43\xa3\x5d\x2e\xac\xba\x5c\xd0\x64\xed\x5b\x19\x35\xe0\xe3\x6d\x70\x90\x63\x66\x63\xae\x0f\x4b\x82\xd1\x67\x29\x3f\x88\xba\x43\x82\x93\x02\xf1\x1e\x0d\x97\xa4\x87\xaf\x00\xdb\xd0\x01\xea\x84\xda\x16\x2d\x79\x4d\x35\x83\x96\x02\x18\x72\x19\x49\x28\x42\x61\xb2\x2a\x04\xbe\x75\xc8\x32\xe8\xf1\x5f\xaf\x46\x13\xd2\x01\xb4\xc3\xef\x39\x84\x60\x56\x39\x91\x3a\x90\x7a\xfc\x6f\xa7\x13\x34\xa0\x71\x8a\x6e\x42\xa7\x93\xd9\x11\xd6\x77\x9a\xaa\x28\x3b\xc3\x20\x53\xad\x6b\x62\xad\x5f\x1a\x67\x2c\x03\x1a\xb3\xb6\x94\x6d\x0d\x0b\x2c\xa9\x98\x6c\xba\xda\xb3\x70\x73\x08\x3a\xc8\xda\x04\x9d\x4b\xc8\xa8\x09\x23\xa2\x24\x62\x51\xb5\x54\x58\x7a\x7d\xd2\x11\xd5\x33\x58\xb7\x9f\x64\x3e\x54\x48\x9f\xf8\xa3\x61\xf1\x1d\x34\x6c\xc8\xbb\x08\x71\xac\xd8\xf4\xd4\x86\x2b\xe8\xd4\x9b\x85\xea\x17\xa8\x6a\x83\x33\x6e\x52\x1b\x9e\xfb\xca\x37\xec\x70\xdb\x64\x98\x1d\x1d\x57\x1f\x5e\xc2\x17\x94\xd9\xdd\x97\xc5\xaf\xc6\xb4\x3a\xa7\x2c\x98\x93\xd3\x9b\xee\x49\xc3\xc5\x46\x7d\x95\xab\xfa\x72\x87\x96\x72\x35\xb2\x6f\x0c\x9d\xf9\x7a\x36\xb9\x42\x32\x57\xe2\xf5\x7a\x00\x63\x8e\xbf\x29\xe3\x6c\x10\x46\xc5\x09\xc5\xd7\xe9\x29\x7c\x64\xc6\x78\xa2\xbf\x6d\x13\x5e\xa9\x5d\xaf\xcc\x32\x6c\x24\x6c\x16\x70\x8e\xdf\x30\xa4\xd8\xa6\x83\xf4\xdd\xa0\xa6\x6e\x5e\xd0\xb5\x6a\x4d\x92\xa2\xe6\x24\x63\x37\xac\xbc\xbc\x6d\x8b\x61\xd9\xdd\xb0\xe4\xf2\xb3\xce\x97\x8b\xed\x2d\x95\x56\xa5\xe5\x35\x00\x94\x78\x7b\x8b\xc4\xe9\x8b\x2f\xe1\x76\xe4\xa9\x8c\xee\xf0\x1c\xa9\x66\xd4\x09\xa4\x30\x6e\xd4\x25\xdf\x86\xa6\x5f\x17\x6a\xc8\x96\x44\x32\x61\xf6\x08\x1f\x42\x4a\xe6\x1f\xe8\x59\xe4\xe6\xc6\x11\x51\x70\x3d\xe4\xd7\x76\x5e\x4f\x80\xd8\x79\xa2\x6e\x0d\xfc\x35\xb0\x8d\xbf\xdf\x7a\xa2\x80\xfc\x95\xac\xc2\x2b\xba\xb6\xba\x7f\x05\x23\x9a\xef\x99\x30\x43\xcc\xa3\x52\x4a\xf5\x1b\x2c\xf1\x97\x61\x75\xd5\x2d\x8f\xbb\x7b\x0d\x84\xcd\x69\xd5\x47\x7e\x46\xb3\xde\x98\x5c\x34\xe9\x4c\xcc\xc3\xf8\x81\x61\x16\x24\x16\x36\xf8\xa4\x1a\x10\xc7\x35\x73\x73\x83\x17\x39\x8e\xc7\xcd\x86\x97\x68\x66\xe1\xcd\x10\x56\x98\x94\x92\x0d\x92\x69\x94\xf1\xdf\xbc\x21\x82\x91\x13\xf1\x37\x39\x2b\x19\x5d\x9a\x95\xac\xd8\x7a\x81\xb6\x0f\x73\x73\xeb\xe1\x8d\x4a\x94\xfb\x8c\x94\x61\x65\x98\x97\x5c\xb1\xd8\x01\x94\xc9\x28\x92\x70\xc6\x99\xb6\x10\x90\x7a\x48\x17\x49\x4a\x8f\xa8\x53\xa2\xa8\x41\xa5\x5f\x1a\xff\x8b\x69\xfc\xa2\x24\x1a\x8a\x5b\xfe\xcb\x37\x17\x83\xbf\x40\xcb\x4c\x7f\x63\xe6\xd1\x5f\x86\xc3\x52\xa6\x7a\xe4\x4f\x6c\x67\x07\xe2\xde\xc2\x0c\x08\x99\x5e\x73\xa7\x7d\xe9\x9c\xff\xe5\xee\xfb\xf4\x4f\x51\x37\x4c\x4f\xf6\xb7\xb7\xf5\x00\x96\xb9\x4f\x3a\xb9\x23\x3a\x1a\x8f\x85\xee\xf2\x8c\x62\x85\x08\xbb\x16\x92\x52\x08\xfe\x6e\x74\x8d\x12\x09\xe0\xd9\xcc\x7a\x46\x8e\x86\x7a\x80\xb2\xce\xe5\xab\xce\xc5\xf3\xf7\x0a\xa8\x73\xbb\x73\x9e\x95\x23\xb9\x4d\x99\xcd\xb8\x61\x4b\x38\x0c\x2c\x0b\x03\x6b\xbf\x1c\x04\x4d\x68\x8a\xce\x4c\x51\xdb\x8e\x82\xeb\x2b\x3f\x92\x5d\x6c\xee\x6b\x3b\x64\x00\xcd\xfe\x9c\x11\x1b\x52\x5e\x33\xbe\x33\xe7\x42\xf0\xa8\xf9\x89\x17\x48\x7f\x4f\x4c\x62\xe7\x80\xd2\x0a\xc3\xd3\xbd\x16\xfe\xe3\x88\x80\x47\xc8\x3c\xb0\x4b\x43\x53\x9d\x00\x22\x69\x74\x49\x78\x54\x4c\x8e\x82\x45\x8e\x65\x69\xf9\x1c\xc5\x3d\x51\xa4\x03\xcd\x42\x0d\xf4\x88\xd4\x6f\x8b\x2d\xf9\x3b\x0f\x40\x39\x64\x89\x2c\x34\x27\x59\xa2\xbf\x90\xf5\x19\x7d\x6a\x2d\xd2\x80\x17\x80\x50\x9b\x8b\x7a\x0a\x8e\x5e\x78\x41\x50\x4d\x6b\x0d\x20\x5d\xfb\xcc\x3f\x02\x95\xd9\xa1\x1d\xe0\x04\xfd\xaa\xeb\x20\x5b\x2a\x0a\x80\xe3\x67\x97\xf8\x46\x39\xfc\xf6\xd8\xd1\x8a\xca\xa1\xc3\x45\xed\xe3\xdf\xe5\xc0\x62\x11\x3c\xa8\xfc\x95\x93\x7b\x05\x9c\x97\x6f\xcf\x7d\xbb\x29\x2d\x13\x36\xd3\x73\x8b\x82\x9a\x41\xe0\x96\x2e\x90\xa8\x51\x3b\xd9\x9d\x2c\xf7\x0b\x12\x28\xe3\x5f\x31\x08\x2a\xf9\x44\x74\x3a\xfc\xa3\x37\x6a\x94\x64\x83\xe3\x50\x97\x82\x0e\x9a\xbe\x82\x1f\x0b\xf5\x82\x9d\x9a\xe5\xd2\x1d\x85\x27\xb3\x79\x18\xe6\xda\xc1\x73\xd8\x01\xf3\xe5\xac\xe1\xb2\x8d\x85\x12\xa2\xd2\x37\xe7\xd5\xbc\x22\x11\x28\x35\x84\x11\xcc\xc7\x5b\x12\xa6\x31\x71\xaa\x7a\xad\xd8\x5e\xe3\x59\xbf\x28\xc4\xae\x09\x10\x27\x44\xed\x46\x5c\x93\x0e\xdd\x4d\x91\xc5\xf5\x8c\x52\x92\x8f\x29\xfb\x92\xb7\xd7\x63\xcb\x62\x70\x48\xa2\x2c\xfb\x59\x8b\x91\x12\x84\xf0\xe7\xcf\x94\x7d\xdc\xf6\xa0\xd3\x7c\xe8\xac\xca\x6f\x39\x7e\xb2\x4a\x22\xb1\x5a\xda\x50\x4b\x4e\xe0\xb3\xcd\x02\x1f\x59\x97\x7b\xd9\x0e\xfd\xe4\x28\xe4\xa6\x1e\x46\xec\x37\xff\xf6\x3c\x12\x44\x3a\x63\xf6\x94\x7a\x42\x5b\x66\x92\x0f\x77\xe3\x4a\x85\x0f\x0a\x16\x0e\xb8\xc3\x22\xd1\x4a\x28\x75\xb3\x47\x40\x0c\x32\xeb\xb9\xc5\xd8\xef\xaa\x8f\x1e\xdd\x6b\xbe\x41\x96\x2f\x40\x61\xe7\x63\x06\xd0\xbc\x74\x21\x28\x30\x9e\x67\x7e\x0d\xb5\x09\x60\xe1\x7b\xb9\xc4\x6f\x64\x94\x02\x1a\xa7\x9a\x96\x98\xe7\x36\x14\x14\xab\x60\x4b\x4d\x32\x66\x89\xf0\x81\x6c\xec\x98\x3e\x91\xd8\x13\x6c\x78\x47\x26\x9f\x76\x1b\x65\x32\x50\x7f\xe0\xdb\xcc\x82\x79\xe0\xb5\xbe\x3d\x26\x25\xa6\xba\xab\x63\xe2\xae\x8e\x11\xd4\xfa\x9e\x1b\xda\xc9\x8e\x86\xd9\x4e\x56\x66\x3b\xd5\xf4\x74\x36\xae\x7e\x78\xf5\xf4\xd1\xec\xe2\x72\x36\x05\x04\x8e\x6d\x98\x9b\x25\x1f\xe0\x22\xd2\xd4\x6d\x75\x51\xda\x84\x3c\x03\x5c\x2b\x9a\xf0\xea\x5f\x52\x55\x5c\xea\x7a\xae\x02\xb5\xee\x29\xc9\x24\xff\x38\xcc\x76\xa8\x10\xbd\x4a\x74\x40\x3c\x8e\x77\x6d\x72\xfb\xff\xea\x12\xf5\xd6\xab\x64\x11\x45\x9a\x86\x34\xb1\xac\xc9\x48\x52\xad\xd2\x43\x73\x67\x11\x57\x1f\xb3\xc0\x33\x19\xb7\x55\x9a\xb6\x60\x57\xc7\x55\x34\x79\x28\x8a\xaa\x71\x26\xff\x19\x4d\xd3\xfc\xb2\xea\x77\xb4\x7f\x74\xff\x92\x11\xe4\x80\x57\xc5\x2d\xca\x3e\x5a\x43\x1b\x68\xc8\x80\x6e\xc9\x68\xc5\x4d\x29\xdb\xe2\x83\x83\x4e\x07\x1a\x25\xf5\x27\x9b\xbc\x7b\x40\x4f\x2e\x43\x90\x1d\x70\x47\x48\xf9\x30\x00\x8a\x87\xe8\x42\xd7\x40\x7c\xa7\xd6\x05\x01\x32\xbf\x0e\x53\x40\x80\xb7\x14\xc0\xad\x41\x23\xee\xb0\x6d\xf2\xfb\xc3\xbc\x6f\xb6\xd3\x41\x6b\xdc\x1a\x41\x85\x0e\xaa\x11\xf5\x97\x68\x5d\x6c\x46\x19\x3d\xa8\x2a\x20\x0e\x67\x7a\x34\xe9\x1b\x80\x79\x5f\x9f\xe0\x1c\x22\x03\x85\x2e\xf7\x8a\x49\xc1\x10\x03\xca\x47\x3e\x94\x98\x3d\x7b\x3d\x19\x35\xe7\xdf\x19\xbc\x70\x09\x8f\x8d\x48\x3a\x61\x30\x15\x3b\x46\xea\x6b\xe0\xda\x20\x76\x4a\xe4\x36\x06\xa6\x71\x9d\x5d\x3e\x8b\x8c\x60\x70\x0a\x54\xd9\x84\x9c\xe4\xea\xae\xf0\xce\x3e\x8e\x54\x3c\xac\x0e\x38\x90\x8b\x2b\xba\xa7\x46\xcf\xa3\xe0\xe1\x93\x3f\xc9\xe0\xf4\x78\x87\x86\x0e\x25\x84\x5e\x09\x51\x3f\x76\x03\x88\x1f\x7e\x2c\x79\xad\x4a\x35\x92\x01\x57\x35\xc9\x0f\xf6\xe1\x36\x70\xad\x70\xb2\x99\x63\xa9\x5b\xf3\x07\xed\x0a\x0d\x82\x35\xc6\x37\x18\x72\x17\x08\x78\xcd\xeb\x53\x2e\x4a\xde\xd4\xa4\xe0\x43\x0f\xa5\xce\x09\xc6\x3d\x41\x87\xa8\x6a\xd1\x8d\x2d\x62\x31\xb9\x25\x56\x4a\x46\x44\x00\x8b\xf8\xc0\x5d\x3b\xb6\x11\x25\x1c\x25\xaa\x66\xc9\x23\x0d\x24\x70\xf2\xcb\xaa\xed\x83\xac\x45\x12\x0d\x06\xb1\x92\xde\x4e\xc7\xe7\xe4\xd9\x6c\x5b\x2f\x98\x14\x41\x2a\xd4\xdc\x4e\x57\xf3\x53\x51\x8e\xdc\xfd\x0a\xb7\x00\x5e\xad\xee\xe8\x6d\xd8\x01\x92\x57\x34\xa4\xd7\x8b\x16\x96\xbe\x0d\xf6\x91\x44\x38\xcf\x86\x65\xc0\x0f\x3a\x89\xc5\x1b\xf4\x48\x43\xde\x20\x48\x17\x78\x5e\x80\x49\xca\xdb\xd1\x42\x9e\xf2\xec\x70\x88\xc9\xe4\x52\xac\xb4\x3c\xa7\x44\xa9\x52\xca\x8f\x25\x35\xac\x19\xcf\x45\x14\xb4\xa5\xf0\x1f\x83\x6d\x23\x5e\x93\x18\x1d\x8f\x7f\x77\x3a\xf2\xab\x07\xfe\x77\x1e\x8e\xc7\xaf\x98\x0a\x24\x77\x45\xc9\xdc\xae\x1e\x76\x8f\x7b\x96\xc0\x2b\x5e\x9e\xe1\x91\xba\x76\xca\x52\x04\xa5\xed\x76\x9c\xea\xc3\xbb\x21\x23\x32\xf4\x4f\xb3\x2b\x72\x54\x79\x3e\xfa\xa9\xda\x1a\x4d\x9d\xfb\x4a\xd6\x51\x50\x4f\x7c\x4d\x63\xe8\xd3\xc5\x6c\xeb\xbf\x2f\x66\xff\x3d\x8b\xc7\xe4\xbc\xa0\xea\x81\xd9\xc5\x2b\xbc\xe5\xf2\xfd\x71\x2a\xb9\xdb\x73\x6a\xd0\x8f\x63\x43\x0c\x34\xdc\xb3\xfc\x46\x44\x6e\xb1\x6c\x02\xaf\x2b\xfd\xb3\xe4\x26\x5a\xa5\x09\x38\x3a\x61\xf9\x74\x07\x47\x90\x33\x14\x3e\x6d\x59\xc8\xa4\x82\xaa\xe1\xc4\x1c\x20\x3a\x75\xff\x39\x72\x74\xc1\x64\xfc\xd1\x73\x6f\x02\xa0\xb6\xae\x35\xbc\xc6\xda\x2d\x30\xdf\x02\x6e\x1c\xfe\xf4\x31\x78\x1f\x03\x45\xaa\x96\x0c\x01\x6c\x6c\x36\x5f\xda\x87\x6c\xfe\x56\xdb\xe1\x8f\x05\x15\x71\x0c\xaa\xff\x3e\x7d\x0e\x43\xcb\x7b\x92\x65\x54\xcd\xa2\x1a\x3f\xf2\x8e\x10\xb8\xd5\x24\x3f\x3a\xaa\x41\xbc\x1c\x48\x23\xde\xaf\xe1\x7f\x77\xfd\x21\x49\x53\xf1\x70\xfc\x18\x5b\xe8\xbc\x95\xb0\x48\xd4\x69\x5c\x77\xb9\xf4\x84\x6d\x74\x40\x11\x48\x90\x0c\x29\x7c\x10\x12\x03\x89\xbd\x94\x60\x88\xc4\xb4\x21\xea\x37\xdf\x3b\x2a\x1f\x2e\x00\x75\x35\x2d\xa3\x2b\xce\xa4\x8b\x6f\x72\x60\x3a\xd9\x55\x8f\x1a\x85\x70\xf1\xcb\x81\xea\xd5\x71\xc7\x4a\xbe\x0f\x32\x41\x9a\xd0\xc9\xa8\xa9\xf0\x97\x5d\x00\x0b\xd3\x5e\xd8\x47\x3e\x7e\x72\xd6\xe9\xd3\xce\x15\x46\x01\xd8\x82\x92\xdd\x93\x7f\xc4\x05\xd9\x40\x6f\xdc\x22\x91\x95\x76\x10\xd6\x33\x78\xeb\x82\xeb\x53\x9a\x3b\x5b\x95\x79\x70\xa4\xf2\x6b\x37\x45\xd5\x44\xba\x70\x3c\x65\x02\x1b\x8b\x3e\x51\x09\x89\xf3\x0a\xd7\x1c\xc6\x28\x69\x95\x5f\x1a\xbc\x78\x19\xfb\xac\x29\x64\x66\xfe\x69\x48\x60\x0c\xa7\x22\xe4\x43\x7b\x96\xd9\xad\xf2\xd1\x69\x3e\x70\x73\x3e\x1a\xda\x42\xbe\x04\x95\x1e\xcb\xa2\x31\x84\x29\xa4\xe9\xc8\x60\xe3\xdc\x88\xc2\xb5\xc3\x89\x12\x1a\x35\xd4\x53\x9b\xdf\x63\x28\xdc\xad\xa7\x67\x33\x50\x55\xeb\xdd\x33\x54\xc8\x04\xdc\x98\xcc\x9b\x9f\x2e\xef\x99\x05\xba\xa8\x1b\x74\x7b\x92\xd2\x61\x5b\xe7\xa1\x64\x95\x8e\x1b\x6c\x51\x19\x34\xd1\x83\x44\xc2\xac\x95\x39\xfa\x51\x36\xa6\xb2\x2c\x76\x5e\x8f\x26\x66\x13\xa3\x32\x36\x87\x94\x79\x69\x02\xcf\x46\x27\xd5\x24\x2a\xaa\x33\xb1\xf4\xf7\x94\x50\x06\x33\x51\x24\x8f\xc3\xb4\x4c\x35\x3d\x35\x0b\xd7\x3d\x06\xef\x36\x22\x80\x80\x9f\x25\xa5\xa0\x93\x67\x1c\xb4\x0b\x8d\xd9\x58\xfd\xd7\x7a\x41\x03\xed\x52\xf2\x52\xb5\xa8\xef\xc2\xa9\x8d\x2d\x20\xa8\x03\x3f\x2e\xdd\x5b\x51\xc1\xb7\x05\xc7\x0a\x23\x5f\xc8\xf4\xe1\x7a\xf1\x75\x88\x26\x33\x4f\x90\xf2\x11\x9c\xbc\x14\x17\xe4\xa3\x84\x05\x23\x98\xd6\x33\x05\x81\x74\xb4\x1f\x5d\x2b\x3f\xdb\xc9\xfa\x5b\xd9\x8e\xd4\x01\x05\x06\xb5\x9c\xae\xf1\x09\x7c\x3a\xd5\x28\x55\xa6\x9b\x89\xe9\x3b\x35\x77\xd7\x34\x47\xa5\x41\xf0\xb3\xf8\x61\x3a\xaf\x0c\x55\xfc\x53\xd5\x16\xe4\x0d\xc2\x8a\xce\xe3\xc9\x69\xe5\xb9\x4b\xf7\xc2\x57\x70\x6b\xca\x87\xe9\xf9\xec\x6a\x32\x7e\xc4\x02\x97\x82\x27\x29\xda\x23\xd5\xe9\xbb\x27\xb3\xf9\xc3\x13\x03\xc0\x18\x41\xb7\xeb\xfc\x18\x7b\x99\x85\xdf\x4c\xce\x21\x49\x9e\x1b\xf6\x70\x12\x56\x9c\x5f\x4d\xbf\x75\xb9\xbf\x9b\xcd\xde\xd9\x5e\x8b\x8b\x54\x05\xb3\x0c\x58\xd4\x15\x43\xc5\xd8\xb6\xc6\x1f\xda\x4c\xbf\xed\x13\x83\xf2\x2e\xe0\xb1\x0e\x97\x33\xac\xe8\xe7\xda\x5a\xf2\x90\xc4\x87\xa2\xc7\xeb\xd7\xb5\x7a\x0a\x54\xdb\xdf\x51\x64\x44\x45\xb2\x9f\xe5\x79\xcf\xd0\xa4\xf0\x88\xa5\x17\x0c\x01\x33\x51\x17\xfd\x68\x6e\x99\xe5\xd9\x1a\x41\x39\x5b\x5b\x2d\x68\x6b\x5d\x5a\xd6\x2d\x5c\xc4\x4f\xea\xb6\x3e\xa3\x5e\x0d\xc9\x3c\xbe\x02\xf6\x78\xeb\xae\xea\xf7\xee\xd6\xb9\x59\x50\xdb\xf0\xc5\xca\xb1\x3c\xff\x1c\x83\x30\x17\xf4\xdd\x8b\x44\xd7\x6e\xff\x5b\xdb\x42\x28\xf8\x3c\x4b\x01\xa3\x70\x3d\x06\x43\x09\xe0\xa6\x7d\x6b\xa0\xd8\x96\x1c\xe6\x0c\xa2\x7b\xc4\x07\x21\xc2\x46\x1e\x16\xb2\xa1\xcc\x82\x84\x2e\x88\x0b\x0a\xf4\x9a\xca\xe3\xa0\xc5\x17\x20\xa6\xf1\xd8\xe7\x22\x8d\x1a\xcc\x10\x5e\x9f\x8f\x0c\x71\x6d\x87\x60\xf1\x60\xa6\x76\x1e\xdc\x23\xd1\x80\xfd\xc3\x15\x63\x4f\x99\x20\x16\x61\xed\x0b\x1b\xec\x01\xdf\x25\x45\x39\xbe\x39\x7f\xa5\xcb\xb6\xb4\x30\xd8\x74\xb4\x6e\x83\xcc\x60\xbd\x36\x86\xbc\x53\x31\x76\x94\x75\xf4\x8a\xdb\xc7\x94\xb6\xad\x7c\xfa\x76\x0a\xa7\xcc\xd0\xf0\x67\x66\xc5\x91\xed\x44\xc9\x9c\x61\x44\xc7\xac\x7a\x44\x70\x47\xc9\xb2\xd5\xc1\xc8\xe3\xa5\x03\xb0\x42\x5f\x91\x86\xe0\x97\x07\x31\xb8\x6b\xec\x14\x81\xbc\x82\x33\x99\xed\x48\xd1\x9d\x8c\x81\xd1\xfa\x61\xf7\xde\x22\xa0\x21\x22\xa7\xa3\xbc\xa5\xcb\xb3\xa8\x4e\x3f\x47\x6a\x90\xd1\x8a\x0f\x9c\x74\x24\x23\x18\x76\x3a\x51\x12\xc7\x89\x93\x27\x4c\x9c\x0e\x06\x21\xc2\x26\x3a\x1d\x7e\x05\xab\x9b\x37\xd6\xdb\xb3\x3c\x8d\x91\x53\xe4\x16\x9c\x4b\x45\x5a\xf7\x85\xc1\x89\x37\x43\x74\xc0\xb6\xce\x4c\xa1\xad\xd9\xb4\xda\x02\x8f\xcc\xe7\x8c\x1d\x71\xd9\x1a\xdc\x1a\xb9\x5d\x98\x88\xd0\x28\xa2\xfd\x96\xa4\x8e\x29\x0e\xf8\x75\xcb\x70\xfd\x3a\xdd\xfc\x36\xd8\x3e\x01\xab\xaa\xcb\x4f\x84\x4d\x79\x55\xc1\x69\xc7\x27\x70\xed\x61\x4e\x1f\x97\x32\x9d\x8c\x54\x5f\xcb\x01\x73\x3a\xe1\xa5\x97\xb3\x0c\xee\xe8\xf6\x11\xb1\xbb\x0d\xeb\x7e\xd4\xca\x7a\x2d\x31\xd4\x0d\x8b\x0e\x1c\x26\xb5\x76\x16\x6b\x91\x90\xad\x2c\x33\xe1\xbe\xfc\x4f\x6f\xae\x91\xde\x3b\xbf\x74\x79\x78\x97\xc9\x53\x70\xa4\xcd\x17\x42\x71\x2d\xf4\x6b\xd0\x37\xaa\x00\xf4\x6d\x73\x96\xfe\xd5\x27\xd4\xd7\xcd\x01\xed\x7d\x02\xbe\xd7\x10\x3f\xe7\xb4\x1a\x2b\x7a\x6f\x66\xe0\x4b\xbc\x97\xd3\x4f\xed\x55\x1f\xa9\x3e\xea\xb7\x41\xe6\xad\xc4\x42\x22\x89\xd1\x91\x5d\xcc\xa7\x20\x67\x2a\xc3\xce\x3e\xed\x48\x6f\x6e\x78\x88\x1e\x3f\x9d\x71\xdd\x2c\xef\x74\xb6\xbd\xae\x5a\xca\xd3\x9c\xb0\x38\xfd\x24\xa6\x52\x51\xb6\x05\xf5\x2f\xaf\xb9\xbe\x86\xbf\xad\x20\xea\x9c\xdb\xa3\x3f\x6f\x9f\xe4\xbe\x67\x3c\x4c\xf6\x57\xc2\xbe\x96\xc2\xf5\x3f\x62\x8d\xcd\xf0\x85\xd4\x0c\x6a\x74\xf4\x6e\x08\xba\x8c\xe6\x9f\xa0\xd1\xa5\x6e\xae\x45\x76\xac\xb8\x9d\xd5\x6c\xe9\x3d\x86\x18\x60\x4f\x53\xd9\x02\x34\xbb\x3e\x2f\x9b\x2c\x7b\x35\x4d\x96\xde\x3d\xf9\xb8\xcb\x5e\xe7\x6f\x5d\x0f\x17\xfa\x53\x19\xe4\xd0\x85\xe7\x2a\x86\x59\x8e\xab\x5a\xb8\x90\xa3\xd5\x8c\x2a\x54\x71\x2c\x94\xaa\xf4\xed\x47\xd2\xc0\x5c\xc5\xe5\xae\xa8\x8c\xb7\x68\x19\x0c\x5d\xd7\x3d\x77\xa5\x39\x2c\x4f\xef\x1d\xc5\xf5\x2b\xaf\x2d\x47\x97\x98\x0c\x9d\xe4\xfe\xaa\x6e\x0b\xda\xa4\xb6\x32\x34\x2f\x75\x08\xe2\xa1\xb0\x56\x88\x63\xd7\x1f\x99\xd4\xb2\x7d\xc8\xac\x23\xa2\x0a\xa0\xd8\x07\x6a\x75\x2d\x8b\x9f\xeb\x39\x0b\x82\x4b\x34\x2a\x48\x43\xe5\xb4\x9d\x8e\xb8\xf2\x9a\x43\xd2\x72\x0a\x8e\xb2\x5e\xef\x5e\xfa\x60\x7c\x4e\x41\xcf\x6d\xe0\xf8\x16\xf0\xdb\x5c\x9d\xa0\xbf\xd4\x10\x54\x7b\x92\xb1\x5a\xc6\x73\xb0\xa9\x8c\xe7\x7e\xdc\x75\xea\xb4\x49\xaf\x5d\x0d\xb5\xd7\x1b\xcb\x15\xdc\x2d\x0c\x2f\xa6\x29\xf2\xa0\x8d\xd0\xd0\x57\xaa\xbe\x85\xda\xc8\x45\xc7\xdb\x27\xe9\x44\x21\xfe\xd6\x4a\x58\xdc\x65\xcd\x58\xee\xfa\x16\x37\xb2\xba\xa6\xe0\x5a\x06\xb3\x5c\xee\x8c\xec\xec\x5a\x1f\x15\xe3\x95\x5f\x03\xfb\x1b\x60\xf5\x7f\xec\x73\x10\x4b\x43\x0f\x7c\x69\xe8\x2f\x70\x4e\xea\x26\xc6\xf4\x50\x90\xd3\x6f\x73\x96\x56\x5f\x43\xe9\x53\x65\x79\x93\x58\x2e\x10\xb1\x87\x9e\x48\x92\xba\x02\x66\xd1\x4c\xe9\xa7\x7a\x6c\xf8\x20\x16\x85\xb4\x09\xb4\xf4\x89\x02\x40\x4d\x88\x4c\xf9\xc2\x50\xea\xd0\x98\x42\xbf\x6f\x6e\x8e\x38\x58\x91\xd0\x8a\x94\x29\x87\x34\x25\xa6\x3c\xbe\x70\x52\x02\x92\xfc\x51\x0a\x53\x82\xa7\x8a\x00\x6e\x94\xca\x62\xd1\xca\xa4\x12\xa0\xc3\x0b\x2b\xaa\x08\xe0\x1e\x91\x9c\x2a\x87\x30\x3c\x90\xc9\x0a\xf1\x7b\xc3\x61\x89\x19\x96\x86\xa5\x6b\x13\x3c\x3b\xb0\xde\xbb\x1d\xb0\xc5\x06\x51\x8e\xc8\xc0\xa0\x49\xd4\x24\xd1\x9a\xf0\xdb\xa8\xc9\xa4\xc2\xf7\x58\xbb\x5d\x51\x6f\xb8\x77\x5c\x8f\xef\xdc\xeb\x81\xb1\xb8\xb8\x89\x57\x83\xe4\x01\xf6\xea\x31\xbd\x67\xc4\x59\x4b\x7f\xec\xed\xd8\x64\x35\xa9\xf0\xc9\x78\x85\xf1\xe1\x06\x68\xe5\xb3\x3f\x9c\xfc\x9d\xe3\x8d\x95\x64\x63\xfa\xac\xaf\x3b\x71\xc2\x79\xe2\xa9\xd2\x22\xfd\x15\x48\xc2\x3d\x5b\x7b\xda\x50\xe6\xf7\x20\x75\x0f\x7b\xc2\x23\x55\xcf\xbe\xdf\xb8\xb4\x42\xb5\x05\x46\x3a\x92\xee\xd9\x17\x25\xda\x25\x9d\x77\x96\x14\xd9\x40\x59\xea\x1c\x43\xf0\x53\xfb\xac\x55\x96\x2e\xae\xd6\x61\xa6\x72\xb2\x7e\x46\xf8\x6c\x53\xf9\xa0\x15\xae\x1d\xb9\xb1\x0e\xf3\xdb\x1f\x19\xac\x19\x9f\x18\xfa\xc7\x32\x67\x9e\xeb\x8b\xf0\x4e\x75\xaf\x8b\xbd\x7b\x2e\xde\x19\x79\xd8\x0f\x12\xc3\x32\x35\x7a\xb2\xbd\x87\x4a\xd7\xbb\x51\x7a\x4b\xe9\xab\xf9\xa4\xa5\x6c\x70\x66\x3f\xcb\x65\xff\xb3\xe2\x2f\x78\xdf\xbf\x59\xcf\x0c\x06\xc6\x3c\x6b\x10\xc1\x06\x0f\x9b\x50\x8c\xa5\xea\xe1\x7d\x2e\xd2\x76\x2c\x63\x2e\xde\x28\xdf\xa4\x11\x3e\x01\x8d\x80\x28\x17\x53\xc9\x5f\x1e\x05\xc2\x8b\x4a\x70\x7a\x0b\xce\xba\xbf\xc1\xcb\xef\xfd\xe8\xe5\xd7\x5c\x9f\x73\x43\xbd\xfe\x8b\x3a\x94\x61\x85\xb8\x08\xd6\x34\x58\x85\xe2\xa4\x4e\xea\x66\x11\x55\xf2\x72\x57\xe3\xc7\xfb\x29\xfc\xe8\x24\xbf\x64\xa9\x12\xc0\x4d\xb8\x25\x66\x69\xe9\x0d\x32\x80\xa7\x9e\x64\x04\x8d\x46\xe5\x5c\x56\x50\xf2\x21\xbd\xf1\xac\xa8\xc0\x25\xb0\x1e\x60\x90\xb1\xcb\x7a\x8a\x47\xa9\x0c\x80\x3a\x22\xfc\x5e\x3d\x5b\x59\xe5\xd7\x9b\xf1\x5d\xc1\xd1\xe8\x25\xca\xd0\x46\xcc\x2e\xcb\xc8\xca\x72\x76\xa9\x8c\x44\x11\x57\x59\x83\x37\x77\x7c\xd0\x9c\x27\x50\x66\xe4\x32\x10\xca\x2d\x27\xcd\x11\x4f\x45\x0d\x5c\xf1\x26\x9c\x8c\x04\x2d\xf7\x5a\xb4\x0f\xc3\x62\xa6\x35\xa7\x76\xe2\xb4\x40\x6c\x81\x42\xb4\x75\x9c\xc6\x92\x67\xc6\xb6\xbb\x0f\x42\x8d\xd3\x8a\x35\x68\x31\xbe\x36\x04\xc8\xc4\xa4\xc1\xee\x6e\x9d\xb4\x6f\x1b\xa8\x11\x58\x75\x91\xa6\xb8\x1e\x35\xbe\x2d\x96\xc1\xfa\xd2\xba\xb3\x7a\x23\xf5\xde\x9b\x1b\x3f\xc5\x26\x58\x8a\x91\x74\x51\xbf\x46\x5d\x54\xd2\x8b\xce\x30\x86\x6a\x6c\xe3\xc3\x4a\x2f\xde\xbd\xe6\x06\x28\xe5\x45\xa9\x45\x45\x26\xfd\xf6\x23\x01\x97\x6b\x8a\x50\xbd\x61\x3a\x21\x63\x6e\x40\xb7\xb6\x0a\x7f\xef\x47\xea\xf5\x05\x54\xaf\xd9\x9c\xc8\x60\x82\xfa\xa7\x2a\x38\x2e\xb3\xc9\x98\x8e\x69\x58\xeb\x30\x59\x07\x0d\xb5\x99\x41\x26\x8b\x4d\x32\xc2\x7e\x1f\x34\x4b\x97\x26\x45\xfb\x5e\xcc\x3f\xb2\xa9\xf6\x7b\xea\x8a\xc6\x4e\x4f\x49\x6f\x66\xe4\xc1\x41\xc6\x51\x04\xab\x62\xd5\x04\xf8\x2c\x84\x33\x1e\x38\xaa\x1e\x8e\x09\xf9\x9e\xe8\x4a\x57\x3d\x9d\x55\x48\x1f\x5e\x6a\xae\x54\xd5\x11\x47\x2a\xd4\xe8\xa1\x42\x3b\x44\xcf\xbe\xc7\xf6\xe4\x59\x08\x8b\x42\x7c\xd0\xa0\x04\x48\xa6\x70\x5e\xe3\x7f\x49\xda\x6b\xbb\xe2\x3d\x2e\x37\xf0\x04\xd6\xc9\x92\x1c\xf9\x1e\x65\x30\xab\x0a\xc4\x62\xee\xf6\x31\x1d\xbd\x1b\xd2\x9b\xdd\xd2\x3e\x46\x83\xd8\x25\xbd\xb6\xf8\x4e\x7d\x94\xa9\x55\xb0\xd1\xb8\xb3\x62\xd5\xe4\xd2\x99\x06\x53\xa4\x33\x78\x1e\x43\x09\x5c\x9d\x58\x4a\x18\x33\xaa\xc5\x87\x20\xdd\xe9\x24\x61\xda\x3f\x90\x61\x2e\x31\x68\x1e\x84\x23\x36\x75\x9f\x14\x36\x77\x90\x02\x0f\xf0\x35\x8d\x37\xf6\xbf\x04\x73\x59\xb5\x94\x29\x90\x2a\xbc\x01\xe4\x03\xef\x53\xee\xe0\x32\x99\x1a\xbc\x3a\xd2\x4b\x6b\x7e\x7d\x75\x39\x36\x7d\x98\x0b\xac\xeb\xd5\x2a\xdc\x41\x9c\x73\xa4\x37\x3a\xcb\xbd\x71\x3d\xf6\xd6\x2c\x91\x2a\x45\xd9\x4c\xf4\x77\xfa\x98\x85\x16\x90\xa4\xe3\xe5\x49\xef\x5c\x43\x5b\xa7\xb3\x8b\x4b\x08\xf0\x00\xd1\x3f\x9d\xc2\xac\xda\x95\xa5\x56\xa3\x0d\xb6\x82\xec\x73\x7c\xc4\x68\x6e\xb9\xab\x4b\x7e\x76\x6b\xfc\xd5\x97\x1e\x96\x6b\x37\xb9\x60\xac\xeb\x6a\xca\xdb\x7c\x0c\x53\x69\xf4\x89\x4f\xc1\xdd\xfc\x57\xcb\x64\xb6\xbf\x81\x9f\x61\x93\x9d\x11\x04\x42\xa1\x9a\x8e\xbf\xe9\xfc\x6c\xcf\x6e\x6f\x52\x7b\xf3\xba\x5a\x2c\x26\xd5\x96\xbb\x92\x84\x2a\xdc\x7a\x6f\x7a\xd6\xe9\x75\x63\xfb\x03\x5d\x98\xe4\x49\x04\xbf\xf8\x10\x06\xf1\xf1\x87\x1a\x83\xa8\x31\xa4\x04\x1b\x13\x00\xfd\x32\x09\x08\xa7\xf8\x02\xe8\x6e\xd5\x55\xdb\x06\xd3\xaa\xc8\xa9\x5d\xa3\x1d\x34\x39\xdf\x8a\xb4\x02\xd7\x4c\xaf\xab\x34\xff\x88\x3a\x5f\x9d\x2e\x35\xe9\xf0\x01\x1f\x4c\x44\x8c\xa5\x04\x50\x14\xce\x5b\x7f\x51\xe0\x75\xd7\x61\x00\x7f\xca\x5d\x41\xe2\x74\x11\x9e\x2e\x42\x78\xd2\x5a\x95\xe6\xa4\xbb\x09\x1b\xbe\x51\x8c\x27\xdf\x36\x25\x52\x30\xa4\x57\x2c\xd6\x16\x74\x87\x99\x62\xb1\xed\x14\x54\x39\xda\x1b\xa2\xf9\x94\x29\x20\xbb\x32\x9e\x85\xab\x8e\xca\x21\x86\xb1\x59\x9c\xcf\xc6\x18\x77\xdd\x40\x96\xc5\x3a\x7e\xa8\xf6\xc0\x08\xc4\x96\xb2\xfe\x29\x01\x1b\xc0\xb8\x00\xa4\x6c\xd0\xe2\x78\x4a\xb8\x3e\x0e\xb3\x41\x5a\x5b\x80\x77\x6d\x6f\x9d\x1e\x3c\x2f\xc4\x12\xc1\x47\x30\xc9\x9b\x15\x8d\xad\x68\x85\x5d\xb4\x9a\x91\x9f\x19\xd8\xd3\x51\x7e\xeb\x9f\x66\xb2\x95\xda\x35\x4d\x12\x3f\xdc\x86\x26\xd3\xf0\x5a\xc6\x20\x3c\x50\xda\x15\xbe\xb9\x28\x9a\xfb\xea\xa2\xbe\xd9\xef\xce\x4e\xed\x41\x3a\x32\x30\xba\x38\x90\xdd\xac\x28\xa1\x0f\x01\xc9\x36\x75\x8a\x12\x74\x89\xde\x6d\x41\xfa\x95\x20\xdc\x1e\x6d\xf1\x5a\x29\xdc\x92\x89\x93\x61\x64\xb4\x00\x60\x92\x5c\x5b\x97\x5e\x71\xbc\x41\x25\x26\xb4\xbb\x3f\xa4\x47\x1e\xbd\x07\x7d\xfd\x71\x73\xe3\xb5\xb1\x67\x8d\xe2\x44\x21\xb9\xe9\x1f\x0d\x3d\xcf\x36\x6d\x44\xc9\xcd\x4d\x13\x5e\xe9\x38\x71\x5f\x09\x2e\x26\xf8\x85\xce\xa7\xd8\x43\x16\xf2\xc1\x61\xf0\x27\x80\xb2\x1c\xc6\x8c\x9b\x49\xbb\xe7\xe4\x39\xba\x28\x93\x97\xb0\x25\x90\x55\x8d\x1f\x02\xbe\x88\xc5\x0a\xdd\x14\x0a\x29\xf6\x73\x0a\x4a\x38\xa9\xab\xb1\x15\x1b\x7a\x4d\x41\x28\x0a\x5f\xaa\xe8\x67\xef\x0f\x3f\x61\xc3\x51\x16\x68\x37\xc8\x1f\xc0\x52\x9b\x24\xa6\xf8\x10\x77\x8a\xd6\x71\x22\xf9\x9a\x23\x14\x9f\xb9\x0d\x0e\x52\x5c\x49\x2c\xeb\x39\x8d\x17\x4a\x9f\x23\xf7\x64\x91\xb3\x2c\xd7\x77\x1c\x20\x6a\x81\xb1\x77\x02\xed\x25\x6a\xd0\xc2\x95\x5a\x8f\x0a\x7a\x75\x45\x1f\x07\x8c\xbe\x11\x1b\xfd\x42\xd0\x23\xbb\x78\x7b\xb8\xe1\xbb\xf0\x5f\x42\x83\xe1\xe8\x18\x92\x5c\x10\x0d\xb1\xbc\x1b\xb5\xf5\xea\xc7\x98\x3d\x64\xe4\x4e\x4f\x56\xf4\x44\xa3\x55\x28\xe4\xf7\xcb\x93\xbf\x80\x01\x36\x38\x4b\x30\x44\x50\xdc\x89\xb5\xd8\xf5\x94\x8b\xa2\x01\x95\x71\xcd\xa3\xd6\xc6\x04\xab\xb1\x66\xa7\xd9\x47\x21\xae\xca\x58\xe0\x40\x19\x18\x60\x4d\xb7\x27\x68\x76\x5c\x7d\x60\x1b\x32\x00\x68\xaf\x31\x0b\xcb\x50\x48\xe0\x19\x7e\x5b\xaa\x06\xe1\x39\x31\x72\x2c\x35\x0c\xf8\xf6\x1e\x07\x74\xf6\xa0\x87\xed\x98\x81\x9a\xc7\xa1\x94\xc9\x21\x24\x56\xaf\x9d\x80\x8a\x37\x34\x31\x44\xeb\x4c\x00\xbb\xdd\xd9\xcf\x07\xfe\x3a\xfa\xa3\x88\x0a\xdf\x02\x63\x79\x7d\x3b\x9c\x25\x3f\x96\x12\x87\x21\x29\x38\xb1\x44\x73\xc3\x3e\xa6\xd4\xa8\x22\xb1\x89\xdf\x13\x72\xeb\xc4\xe0\x21\x15\x48\x67\xe5\xfb\xe6\xe5\xf4\x45\xf5\x5e\xa0\xce\x3e\x0d\x25\xb3\x8b\xa4\x4b\x34\x76\x40\x12\x1d\x3e\x52\xb2\x0b\x53\x53\x6e\x49\x3a\x9d\x64\x77\x69\x0f\x26\xc9\xa2\xe4\x64\x21\xea\x0c\x93\x2d\xdf\xb8\xa9\xcc\x28\x06\x18\xd0\x56\xf4\x05\x43\xeb\xd7\x07\x88\x50\x14\xa1\xa4\x7c\x18\xad\xa0\xc1\x3d\xc1\x4b\x1b\xf1\x4f\xc4\x01\x91\xdb\x64\xf8\x84\x64\xff\x31\x18\x0d\xd0\x28\x99\xef\xc5\x68\xf9\xfd\x2c\x4a\xcf\x8a\x63\xee\xe8\x8f\x61\x56\x84\xd7\xad\x88\xc2\xe3\x75\xf5\x30\x13\x62\x21\xa2\x8a\xd2\xe3\xf1\xdb\x02\x53\x04\x3d\x98\x67\xd5\x28\x71\xb9\x24\x06\x61\xb0\xec\x08\x94\x22\x50\xeb\x1a\xcd\xa8\xd7\x8c\x09\x97\x01\x9b\xcf\x56\xb6\x34\xf4\xb4\x4e\x7d\x31\x02\x89\x3b\x1c\xbf\xba\x50\x6b\xe2\x5d\x7d\xee\x82\xb2\x87\x96\x45\x25\x8d\x30\xba\x2c\x50\x10\xce\xd3\x56\x40\xe6\xb0\x1a\x7f\x22\xcb\x49\x61\x32\xad\x76\x83\x28\xf7\xae\xe7\x44\x7d\xe1\x30\x0f\x36\xfc\x26\x6e\x43\x7f\x94\x32\x13\xf2\xc0\x98\xe0\x54\xdb\x45\x44\x6e\x91\x7a\x66\xae\x44\x42\x5b\x1b\x5c\x10\x22\xc7\x6b\x43\xac\x9e\x55\xa7\x4e\xaf\x91\x7f\xe2\xd9\xe2\xfc\xe5\xfc\x07\xaa\xdb\x4d\x9d\x28\x7d\x97\xd3\xe9\x52\x5b\xbb\x4c\xee\x12\x35\xfb\xcb\x0c\x81\xd1\xb5\x1a\x81\x12\x7b\xe8\xd5\x97\x0d\x1a\xac\x58\xe5\xa4\x14\x7c\x40\x3c\x78\xb5\xd4\xcd\x6d\x26\xc9\xe4\x43\x90\x9a\x43\x52\x92\xa9\xe7\x11\x2a\xb2\xde\x7a\x65\x70\xd9\xa3\x73\xb7\xe2\x44\xc8\x25\xeb\xe5\xa9\x63\x81\x0d\x5a\xc3\x17\xda\x56\x75\x3c\xe0\xb3\xab\x67\x00\x82\x23\xfb\xd9\xe9\xb8\xdf\x3d\x43\x1a\xd3\xf3\xa2\x16\x70\x44\x6f\x8f\xcb\xe0\x68\x96\x89\x23\xca\x49\x56\xa0\xee\xc6\x13\xe6\x74\x73\x5f\xcb\xc9\x20\x2b\x57\x18\x3f\xbb\xa2\x79\xf5\x59\x27\x91\xd8\x26\xcf\x91\x21\x9e\x82\x81\xa7\x83\xaf\xf4\xf8\x03\xcc\x68\x25\xd0\x16\x2b\x5e\x33\x32\xb2\x14\x58\x1a\x86\x99\x56\xb2\xa5\x92\x37\xba\x66\xa6\x0c\xdf\xe6\x63\x10\x60\xe7\x09\xdf\xe2\x2f\x82\x46\xf8\x69\x11\x92\xf9\x58\xea\x26\x68\xdd\xc7\x02\x56\xf2\xa9\x00\x5e\x92\x0c\x23\xa0\x3c\xf0\xa8\x71\x26\xfd\xe4\xb9\xd9\x96\x6a\xe2\xe8\xb2\xd3\x51\x68\xaa\x11\xf6\xa3\xb7\xed\x0a\xdf\xdc\xb8\xdf\xb2\x02\xdb\xa5\xaa\x63\xcd\x06\xaf\xfd\xb9\x90\x8b\x22\x07\x47\x9c\x6c\x8b\x35\x82\xec\xac\xeb\x7d\xcb\x36\x80\xb7\x3d\xdb\xa9\xae\x80\x6b\x6a\xd0\x7a\x73\x5e\x9f\x2d\x74\x19\xe7\x45\xdc\x5f\x41\x6f\xf4\x9c\xe5\x8f\x9e\x13\x6f\x6e\xe2\xb5\xce\xaf\xfd\xc6\xe8\xc9\xd8\x8e\xc6\xdf\xf3\x68\x16\xf4\xe2\xe3\x4a\xdb\xbb\x08\x0b\x7a\x63\xa7\xfd\x8c\xf7\xd2\x6c\xb0\xda\xb5\x68\x83\xd7\xaf\x8b\xe7\x34\x52\x8a\xbb\x43\xe3\x44\x9c\xee\xac\x12\xa9\x6a\xd8\x90\xcb\xab\xc5\x0f\x22\xdf\xbd\x9a\x4f\x9e\xa3\xcc\xa7\x54\x87\xda\x26\x22\xc4\xd8\x2f\x4f\xa1\x51\x1e\x70\x5d\x2d\xc6\xf3\x1e\xef\x94\xe0\x8f\x15\x07\xe7\x8b\x05\xcf\xdb\x79\xd5\x84\xfb\xe3\x3a\x25\x82\xdc\xdd\xc7\x77\x7f\xf7\xdc\xaf\x59\xcd\xf3\x40\x68\x92\x12\x85\x28\xb9\x63\xf8\x72\x6c\xdf\xf3\xcd\x3d\x77\x7a\x5a\x35\x4d\x7d\x32\xa9\xbe\xfd\x68\xd6\x38\xbf\x76\xab\x48\xef\xa1\x24\x1a\x97\x55\x4b\xc8\x55\xd4\xb2\x1d\xff\x54\x63\x53\xab\x85\x81\x03\xde\x2c\x21\x8f\x36\x14\xc0\x0c\xf4\x48\x40\xff\xc0\x0a\xf6\xae\x6d\x43\x22\x2a\x27\x69\x38\xb9\xa0\xa1\xbc\x40\x50\xae\x5c\xcc\x24\x1e\x8c\x14\xa0\x39\xbc\x0c\x54\x19\xca\x6e\x23\x30\x51\x29\x4d\x65\x26\x3a\x3d\xad\x0a\x51\xcf\x1f\x6f\x19\x36\x87\xb4\x82\x31\x2a\xd5\xb8\x82\x47\x20\x8c\x52\x45\x70\x37\x90\x01\x80\x20\x58\xb5\x94\xe5\x83\xcd\x61\xb3\x85\x9f\xab\xfe\x5a\x26\xc6\x36\xd8\x98\xb0\x1f\x78\x97\xa5\xbe\x20\x3d\xd2\xe9\x7c\x33\x9a\x37\x56\xd9\x06\x59\x52\x57\x74\x9f\x34\xa9\x91\x2f\x93\xa7\x3e\x31\xc6\x1e\xcb\x09\x60\x57\x07\xfe\x58\x91\x53\x65\x3f\x7f\x3c\xaa\xf8\x11\x12\xde\xcf\x85\x7d\xe2\x95\x68\x9f\x81\xb0\x53\xde\x43\x70\x36\xfc\x9c\x2f\xc7\x00\x61\xab\xc0\xea\xcd\xab\x87\x2f\x5e\x3f\x7d\xf3\xf4\xe5\x8b\xad\x47\x2f\x9f\x7f\xff\xec\xf1\x9b\xc7\x3d\xa7\x0d\xbf\x09\x12\xe2\x64\x47\x55\x03\x62\xec\x56\xda\x1d\x6d\x44\xf4\xb0\xe2\x48\x4d\x42\xa4\xe0\x35\x26\x20\xae\x5d\xae\x6f\xd7\x5f\xc1\x7b\x57\x56\xe8\xcd\x2b\x6a\x96\x92\x25\x47\xe8\xed\x27\x3f\x26\x2f\x85\x76\x77\xe7\xd7\x7b\x04\xe0\xa5\x03\xf9\x40\x52\x5f\x08\x45\x6f\xfc\xaa\x77\x73\x03\x5e\x75\x51\x2f\x6f\xd4\x2c\x1e\xce\xdf\x52\x06\x5a\x94\xdb\xc1\x0c\x7c\x85\x99\x86\x95\xf2\xb9\x46\xa7\xc3\x3f\x22\x73\x4f\x55\x25\xcb\x3d\xcf\x99\xe5\xe5\xec\xd2\x0a\x3f\x9a\x3c\xd2\x2a\x26\x80\x86\x4e\xd4\x48\xc8\x83\x9c\x02\x8e\x0c\xb9\x06\xc0\x19\x58\x7f\x4b\xcc\x4b\xe3\xf7\xb0\xd6\xa3\x3a\xf8\xdc\x6f\x4b\x6d\x0f\x45\x7a\x86\xb9\xa5\x81\xa0\x4a\x1c\x99\x4a\x4f\xf1\xe1\x62\x51\x5d\x5c\xe2\x24\xe1\x7d\x54\xbd\xbb\x2f\x66\xe2\xab\x59\x4f\x22\xa1\xa1\xd8\x85\xfb\x0c\xfd\x8e\x73\xcf\x6d\x1d\xac\x6d\x7c\xd5\x0a\x31\x40\xa9\x87\x18\x4f\xc2\x05\xf2\xfd\x15\x0b\x22\xca\x22\xb4\x4f\xed\xef\x62\x01\x3c\x47\x0c\xa5\x92\xef\x79\xd7\x00\x9a\x15\x7b\x58\xe6\x3a\x50\x24\x73\x96\x1e\x51\xd9\xb4\xe0\xf9\x96\x4f\xa8\x41\x77\x86\x62\x49\x75\x05\x64\xe0\x0a\xd3\xe3\xe8\xc2\x6e\xe3\xce\x03\x85\x77\x64\xcd\xff\x25\xcd\x94\x5f\x7b\xda\x66\x7e\x39\x1c\xb6\x9f\x94\x32\x9c\xf6\x4b\x80\x1e\x99\x78\x7f\x66\x79\x54\x54\x80\xbc\x95\xe2\x2c\x54\x06\x39\x64\x03\xe3\xa3\xe0\x36\x0a\x67\xc3\x77\x50\xdb\x2a\x64\xe1\x74\x93\x1d\xa9\x45\x18\x06\xd7\x3c\x50\x3a\xab\x28\x3a\x08\x1e\x91\x9a\x40\xea\x5d\x30\xd9\x77\xcb\xd3\xe0\x5f\x2f\xd3\xc5\x81\xbe\x0d\x33\x8e\xfe\x7a\xd9\x43\xc9\xb7\xf9\xd7\x7a\x5f\xd6\x6c\x3d\xa4\xd3\xc8\x0d\xa4\xd1\x83\xf2\x9a\x69\x45\x4d\x2e\x97\x5a\xa3\x48\x95\x74\x90\xd8\xa2\xd8\x13\x52\x54\x81\x04\x39\x64\xf0\x5b\x11\x74\x81\xcc\x18\x68\xb5\x1a\x84\xca\x92\xda\xa7\xf8\x3a\x84\x42\x6f\x4e\x09\x64\xb8\x86\xf7\x76\x8d\x2b\x06\x5a\xf8\x71\xb3\xec\x29\x76\x0d\x58\xb5\x56\x3e\x7c\xe0\xf3\xe1\x31\xa9\x29\x1c\xb9\x2b\xe7\xf1\xb4\xec\x52\x41\x31\xb4\xf4\x22\xe0\xcd\xa9\x1e\xd0\x1b\x98\xdf\x4e\xcf\x99\x9a\x42\x54\x30\x5a\x8f\x04\x77\x0a\x77\xb2\x6a\x6d\x5b\x0e\x21\x27\x7a\x2c\x2a\xc9\x59\x75\xf1\x22\x5e\x92\x7c\xe0\xaf\x6b\x19\xbc\x66\x08\xa8\x9f\x9b\x25\x3d\xff\x86\xcb\xca\x72\x9e\xb3\x87\x61\x4e\x3e\x3a\x1f\xca\xa3\x9f\xa7\xbf\x80\x78\x6d\xe9\xa1\x3c\xa1\x54\xa3\x87\x01\x69\x6b\xf5\x53\xc0\x92\x82\x8d\xd1\x2a\xd1\x60\x1e\xec\x59\x32\xb4\xf5\xe9\xc3\xd6\x09\xd5\xd0\x02\x64\xa4\x96\x49\x3f\x2d\x28\x62\x38\x7a\xe2\x58\xe5\x6d\x78\x1e\x5b\x20\x25\x2c\x7c\xb4\x23\xc3\x8d\x6c\x7b\x56\xd9\xda\xac\xf2\x45\xe8\x3c\x1e\x87\xd7\xbc\x36\x60\x8b\x7c\xfd\xb1\x7b\xe3\xd1\x62\x54\xda\x5f\xa8\xf0\x12\x36\xa3\x2d\x0e\x94\x99\x1c\x1e\x66\xad\x98\x41\x31\xa3\xda\x2c\xba\xc2\x56\x37\x58\xc3\x76\x4b\x2b\xb4\x79\x4c\xa4\x07\xc9\xd6\xa8\xab\xd7\xe2\xcd\x03\x72\x7e\x96\x91\xe4\x3a\xfb\xab\x55\x7b\xba\xd2\x2c\x25\x61\x40\x15\x3c\x94\xaf\x33\xa4\x52\x88\x8e\xdd\x37\xac\xb3\x91\x4e\x99\x5b\x7f\x19\x98\x5b\xaf\x31\x69\xfa\xb2\xdd\xa4\x29\x06\xe1\x2f\xd7\x1b\x82\x7e\xa9\x0d\x41\x5b\x20\xcb\x1a\x74\x86\x0b\x5a\x28\xbf\x95\x9e\x02\x99\x76\x58\xc9\xee\x2b\xc3\xd8\x67\x1b\x99\x60\x2b\x0b\x6c\x3a\x4d\xba\x17\xb1\x15\x55\x49\x9e\x85\x76\xe3\x9b\x68\x2b\x13\x6e\x8f\xeb\xc2\x32\x5e\xb0\x01\xef\xcc\x39\xcf\x42\x22\x92\x57\xea\x50\xed\x36\x19\x9b\xaa\xfd\x28\xaf\x0f\x12\x3c\xca\x9b\x43\x9e\x17\x97\x57\xf3\x0a\xab\xdf\x5e\x01\xc8\xca\xf8\x5b\x34\x5e\xa4\x69\x88\x68\xa1\x94\x80\x10\x09\x6b\xe9\xa5\xe5\xef\x12\xec\xb8\xa7\x34\x15\xaa\x65\xd8\x45\x93\xfa\x45\xa4\x8f\x61\x3b\x8b\x18\x99\x22\x68\x2d\xb1\x17\xb7\x6f\x96\x5c\xa0\xc1\x05\x7f\x46\x92\x20\x16\x61\xf8\x5a\x26\x29\xbd\x19\x67\x81\xdf\x78\x0e\x3a\xac\xfa\x8b\xa8\xbd\x60\x14\x2a\x53\x83\xe8\x97\xf3\x90\xa4\x62\x35\x6b\x5f\xeb\xd5\x51\x61\x61\x79\xe1\x94\xdc\x0c\xbb\xe7\x8e\x04\xb3\x42\x11\xf1\x5d\xe5\x37\x1b\x0e\x46\x88\x29\x22\xd5\x75\xd9\x27\xa8\xd3\xb5\x1d\xb5\xc1\xf4\x61\xb4\xff\x81\x14\xda\xf7\x9f\x67\x35\xf6\xf0\x10\xb3\x66\xbd\xc0\x8b\x7e\x9d\x54\x93\x22\xce\xda\x27\x82\x51\xa8\x9d\x7c\xe8\xb2\x1d\x58\x8a\x10\xcb\x8a\xdd\x0b\x77\xa9\xfd\x15\x00\xbd\x03\x6a\x54\x0f\xca\x60\x51\xc0\x99\xb9\xd7\x08\x6d\x2e\x06\x84\xc4\xa3\xa5\xf2\xba\xda\x23\x4a\xa1\x7b\x61\x15\xb8\xa6\xf0\x47\x9f\x5b\xdb\x99\xa8\x07\x5f\xe3\xca\x1c\xc7\x44\xcc\xf7\xdb\x74\x15\x03\xbe\x84\xf3\xf9\x45\xe7\x87\x94\x65\x78\xa4\xc2\x6d\xf1\x3e\x03\x67\xb4\xa8\x17\x5f\x04\x45\xc4\x55\x87\x00\x04\x13\xa4\xa5\xdf\x7b\xa7\xe3\x7f\xeb\x57\xec\x24\x08\x20\x5f\x9e\xa8\x60\x4e\x8f\xeb\x24\x1c\xbe\xf8\x26\x58\xd3\x37\x95\x5a\xb6\x74\xe0\x9a\xd7\x71\xf1\xde\xcc\x7e\x68\xaa\xa0\xe1\x41\x12\x4a\x6f\x6e\x82\x86\x03\x17\x78\xdd\x60\x5f\xe2\xb3\xff\x1c\x43\x80\xd6\xd3\x6e\x5d\x84\x27\x60\xe0\x0d\xc7\xef\x28\xb6\x24\x02\xcf\x76\xd1\x8e\x7b\x2d\xe8\x8f\xe4\x6e\x7b\x05\xac\x5b\x96\x24\x0f\x69\x5f\x06\x75\x1d\x0a\x6a\x46\x10\xa9\xce\x77\x64\x45\xf1\x1c\xdc\x45\x72\xfb\x82\xbc\xb7\xde\x43\x94\x37\x09\x9d\x61\x5a\x05\xbf\x99\x26\x65\x64\xfe\xe3\x48\x94\x36\xca\x1b\xfa\xae\x04\xb7\x9a\x48\x42\x83\x2f\xec\xe0\x90\xe1\x40\xb6\xc3\xcb\x9f\x19\x02\x59\xe4\x47\xec\xdd\xbe\x45\xbf\x2e\xdc\x8d\x25\x3d\xdb\x25\x35\x47\x52\x16\x76\xa2\xf2\x9c\x56\x35\x09\x08\x1e\xf2\x65\xe6\x0c\x85\xb0\xc6\xb2\x88\x07\xdb\xa2\x71\x16\x21\x4f\x27\xdb\x09\xb2\x5c\x5c\xd8\x50\xfe\xb7\x99\x01\x45\xf0\x1d\xe6\xf7\x3c\xe7\x56\xa0\xb0\x55\xac\xc1\xa8\x41\xd8\x40\xc1\x72\xb7\xc4\xa9\xf4\x5e\x70\x75\xf1\x02\xdd\xf6\x68\xf4\xa2\x28\x04\x04\xd2\x41\x12\x46\x55\x81\x92\x73\x8f\xfc\x52\xf0\xbc\xa0\x1c\xfc\xa8\x0a\xb9\x6f\xa7\xb9\x09\x0e\xdf\xe0\x72\x92\xde\x2f\x67\x97\x5d\xa5\x8c\xb0\x06\xdd\xa5\x04\x17\x7e\x11\x1b\xd9\x8c\xbd\x94\x55\x01\x45\x25\xbe\xf4\x55\x7a\x74\x4d\xc5\xb5\x22\x32\x40\x2f\x68\x5b\x63\x60\x26\x9f\xce\xb1\x1e\x9c\x74\x60\x92\x60\x1e\x09\x85\x59\x71\x35\x98\x89\xf3\x31\x66\x85\xb4\xc3\x34\xd9\x02\xf1\x7c\xaa\x06\xea\x05\x3e\x35\x94\x6e\x7a\x27\x3f\x01\x60\x3d\x97\xb1\xd7\xa4\xa6\x93\x06\xd6\xf7\xe6\x9c\x1b\x9c\xc1\x79\xbb\xbb\x56\x00\xf9\x7d\xfa\xb6\xe3\xfd\x4e\x40\x41\xcb\x4d\x88\x6e\x63\x71\x34\x55\xf5\x6e\x05\xa8\xdb\x01\xbf\x70\x0e\xa4\x64\x58\xde\x41\x80\x76\x72\x1b\xf9\xd9\x56\x19\x96\x59\xb6\xe3\xc3\xb0\x00\x9e\x9d\x4d\x1c\xf6\x84\x2b\x27\xdb\xb3\xd5\x54\xa2\x04\xdd\x48\xc4\x6a\x1a\xd7\xe3\xe9\xdd\x85\xb8\x22\xdb\xaa\xa6\xb3\xab\xb7\xe7\x28\x89\x98\xbe\xbd\x67\x66\x52\xcd\xcd\x8d\x82\x2d\x55\xe6\x92\x68\xe0\x21\xa9\x19\x2d\xea\xe6\xec\x23\x2a\x01\xb0\xe3\xe6\xe4\xd5\x43\x51\x48\x25\xfe\xe8\x4a\x40\xc4\x0e\x56\xc2\x21\x4d\xd4\x79\xd1\x5d\xe6\x9b\xc8\x88\x5a\xfc\xeb\xfc\x7f\x12\xa2\x5f\x42\x42\x24\xf1\xf3\x43\x11\x0d\xa7\xff\xa7\xc9\x79\xf0\xb5\x74\x13\xa9\x0d\xe8\xef\x90\x48\x05\xec\x62\x3f\x49\x94\x92\x5f\x6f\xc4\x8a\x13\x7d\xef\x89\x36\xec\xcf\xae\x8c\x25\x8c\x09\xaa\x4c\x91\xb8\xbe\x26\x1a\x81\x9c\xe0\x16\xc6\x3f\xbc\x7a\x46\x47\xdc\x36\xe5\xcc\x6a\x9a\xef\xea\xb3\x33\x10\xfd\xa3\x0e\x89\x55\x68\x44\xfb\x20\x6c\xb4\xe5\x29\x8b\x99\x64\x2e\xf4\xc9\x3c\xb2\x52\x6f\x4d\x28\x6a\xdd\x6a\x3a\x01\x9f\xf6\xb3\xf0\x8a\x44\x7f\xd6\x46\x86\x9b\xb2\xf2\x36\xea\x22\xad\xec\xed\x99\x1d\x6f\x5f\x50\xd5\xb1\xed\x41\x2a\x64\x6f\x84\x43\x4e\x17\x0e\x29\x81\x15\x94\xb6\xec\xbd\x47\x99\x87\x84\x36\x28\xce\xcb\x73\x42\x72\x7f\x6c\x7c\x1e\xdc\x28\xfe\x2a\xf9\xdf\x9b\x9b\x2c\x55\x29\x73\x31\xfc\xcb\x74\x81\x44\x54\xa8\x18\x49\x1f\xc5\x3e\xd3\x3e\x6f\xa8\xa8\xcf\xec\x09\xbb\xd5\x47\x54\xca\x05\xd9\x41\xe0\x82\xec\xb3\x3b\x14\x4e\xbc\x12\xb1\x5b\x1f\xf2\x43\xaf\xbd\x00\x92\x06\x4e\x4a\x1c\x2d\xd1\x13\x2d\x05\xb7\x0c\xc9\x5f\xf5\x58\xa4\x5b\x6b\x91\xb2\x5f\xea\xdf\xab\x62\x37\x39\xe9\x2f\x92\x61\x59\x36\xf0\x1c\x40\x78\x3c\x60\xda\xc0\x03\x08\x7d\xdb\x00\x78\x4a\xc8\x24\xb8\x26\x24\xec\x94\x59\x2f\x5b\xea\xef\xf3\x80\x8c\x74\x6c\x69\x1c\x40\xca\x55\xcb\xee\xf6\x55\x08\xa9\x5b\xc5\x7b\x6a\xaa\xc9\x19\xb9\x63\x52\x34\xb2\x76\x1a\x79\xdb\x19\x5f\xde\xd2\xc4\xdf\xc6\x59\x10\xd7\x91\xa9\x28\x12\x4f\xd9\xe4\x54\x19\x0f\xbd\xb6\xee\x10\x06\xec\xdc\x4a\xfc\xba\xb1\x16\x63\xda\xe7\x6d\x5b\x14\x0d\x8a\xdf\xa4\x5d\x0a\x70\x58\x0e\xae\xf8\x72\x5a\x69\x16\x78\x5d\x40\x12\x9e\xac\x69\xe5\x28\x43\xe5\xc1\x6c\xc8\xcb\x84\xb8\x27\x55\x95\x9a\xdf\x22\xd5\xbf\x5c\xa1\xc4\x7a\x3a\xad\xe6\xaf\x83\xc8\x22\x1b\x47\x20\x69\x09\x74\x44\xe5\x74\x7c\x10\x37\x50\xe5\x2e\x66\xd4\x80\x16\x86\x5a\x5c\xbc\x46\xd2\xca\xa9\x5c\x7a\x59\x24\xe7\x25\xc1\x4e\x42\x55\x2c\xc2\xf0\x38\xeb\x48\xfc\xd1\x94\x7a\xb3\x63\x73\x0d\xac\x65\xb7\x05\x40\x24\x05\x37\x0f\x52\x22\x97\xc3\x44\xda\xee\x7e\x3f\x55\xbf\x65\xba\xd7\xd8\x7b\x1f\xff\xca\xf5\x0f\xfe\x17\x70\x42\xfd\xd6\x81\x1f\x45\x83\x76\xde\x23\xdc\x3a\xf7\xdd\x4f\xd2\xdf\xf7\x1a\x5c\xaa\x55\x64\xff\x74\xdd\x84\xeb\x52\xeb\xf6\xed\xe1\xc4\xec\xcd\xf8\xa3\x8d\x83\xd6\x3e\xb8\xd4\xfc\x87\x4a\xaf\x64\x70\xbb\xaa\x3b\x3b\x2e\xdc\x4b\x20\xcd\xdd\x8e\xc7\xe5\x1b\x69\x25\xea\x25\x3c\xe6\x38\x93\xac\x79\x35\xae\xcd\x2d\xaf\x8c\x16\x25\x25\xb5\x36\xd6\xd3\xb4\x60\x43\xcb\x47\x26\x8f\xdb\x5a\x5c\xb0\x0e\x0d\xb8\x0d\x4b\x36\xd2\xf5\xa2\x7e\x79\x58\xaf\x6c\xdf\xae\x40\xe1\x90\x21\x12\xc7\x93\x00\x9a\x65\x28\x5c\xbc\x25\x18\x24\x14\xa7\x2d\xda\x49\x2c\x9a\x5d\x59\x5a\x3b\x86\xd3\xd4\x6a\x7d\x4f\x59\xb0\x4a\xed\x21\xb7\x83\x2b\x7f\x15\xed\x86\x3e\x79\x43\x07\xbc\xad\x44\xdc\x2f\x4e\xb5\xa5\xe8\xa4\x04\x1f\xbd\x8e\xb8\x3b\x58\x41\xdc\x6d\xe2\xbf\x76\x9d\x8f\xda\x55\xfe\x6d\x37\xf7\xf4\x9a\xa0\xf8\x44\x21\x8a\x55\x73\xc9\x1c\x49\x21\x7c\xb7\x71\xec\x17\xd2\xf9\xba\xc2\xbf\xec\x58\x53\xcc\x8a\xf9\x1d\x01\x45\x13\xac\xff\x4d\x0e\x2c\xc8\xfa\x83\xfe\x09\xf5\x8c\xa8\x20\x3b\xfa\x63\x33\x08\xd1\x3d\xb2\x0e\x4f\x75\x84\x2b\x49\x8e\xd5\xd9\x79\xe4\xfa\x06\x2f\x83\xab\x81\x8a\x88\xfb\x38\xe1\xe3\x7c\xa7\xde\xa4\xc2\xc8\x44\x56\xd4\x55\xda\x10\x68\x8d\xfb\x98\x33\x8c\xbe\x4c\xbd\x28\xb2\x35\xe1\x3b\xa6\xb5\x11\xd1\x4f\xd7\x5a\xcb\xb7\xf7\x4b\x03\xe8\x5d\x63\x09\xad\x97\x48\x6f\xed\xb1\xe2\xca\x79\x8c\xe6\xd9\xeb\x19\xdb\x73\x28\x0c\x20\xe6\x20\xaf\x39\x6b\x67\x67\xe0\x6d\x07\x8d\x4a\x70\x93\x1f\x02\x12\x3d\x01\x26\x69\x1d\x72\x8d\xe7\x5e\x49\xdd\x15\x7c\x73\xd3\x62\xd9\x73\x0b\x23\x1d\x12\x95\xc6\x06\x1f\x62\xeb\xc1\x9d\x12\x39\xb1\x88\x5c\xf0\x85\x04\x46\xca\xe0\xa3\x95\x2e\x73\x2d\x87\xe1\x6a\x2d\x79\xf6\x50\xc8\x33\x17\x47\x39\x06\x6e\x15\x36\x82\x20\x3a\xe4\xcb\xec\xe9\xf7\xd6\x9c\xfd\xe8\xdd\x62\x09\x5d\xa8\xd5\x56\x4f\x90\x12\xa9\x73\x77\x8b\xea\xd0\xed\xd1\x0e\x23\x06\x8e\x55\xa6\x62\x18\xdd\x49\xa1\x9b\xd3\xda\xcd\xf5\xd9\xdf\x5c\xc6\x98\x2b\xc1\x3c\x46\xfa\x5d\xfa\xc2\xec\xef\x15\x31\x33\xea\xa3\x19\x96\x1f\x8a\xb3\x24\x54\x13\x6d\xac\x5a\x63\xa1\xc3\x25\x52\x26\x2f\x07\x65\x03\x02\xeb\x33\x27\xa2\xdf\x26\x9b\x2b\x94\x7f\x15\x67\xa3\x7a\x72\x35\x0f\x1c\x0b\x7b\x8e\x21\xc3\x92\xcb\x62\xe4\x07\x41\x74\x1e\x10\xe3\x3d\x83\x64\xeb\xa1\xcd\xda\xf7\xe9\x23\x5b\x04\xa8\x08\xc2\x94\x28\xe3\x11\x73\xc0\x64\x1b\xb3\x5c\xe3\xf5\xc4\x0b\x57\xa9\x3a\xf1\x2e\x02\x9f\x33\x91\x34\x6d\xcf\xa6\x6b\xa6\x8d\xda\xbc\xd8\xca\xe6\x63\xfe\xd1\x77\x43\x08\x4a\x5c\xfe\x11\xd3\x6d\x26\xac\x50\xd4\x5c\xac\x8b\x36\xf2\xb1\xe6\x1a\xbe\x60\x33\x51\x11\x3e\xb2\xb1\x26\x25\xfb\x43\x8a\x9c\xc4\xd4\x18\xf3\xf1\x89\xec\xef\x7a\x8f\x8d\x1c\x75\xc1\xab\x07\x66\x44\x27\xb3\xd9\xa4\x1a\x4d\xd9\x7d\x63\x8f\x94\x0a\xe4\xad\xc8\x2b\x4c\x2a\xd7\xda\x7b\x8a\xbf\xe5\xf1\x8d\x22\x0e\x90\xf4\xf5\xfa\x94\x9d\x21\x15\x5e\xe3\xe2\xa3\xe6\x6c\x36\x99\xcc\xde\xbf\x62\xb2\xbd\xd1\x9b\xa0\xed\x3b\x5d\xdf\x83\x04\x64\xaf\xe0\x63\x9d\xe9\x61\xab\xaf\xdf\x96\xfc\x5e\x30\xb4\x6e\x1e\x87\xa0\xf2\x98\x60\x70\xed\x33\x7b\x8d\xcf\x5d\x71\x8c\x29\x8d\xc7\xba\x72\x58\xb6\x38\x26\xb8\x7c\xef\x64\x79\x16\xc4\x2b\xb7\x72\xd0\xd5\xa7\xce\x85\x26\x4f\xa2\x3c\x53\x70\x3a\x2e\x93\x39\x42\x2f\x5a\x3c\x9e\xba\xcb\x6e\x63\xd9\x3b\xae\x16\x66\x55\xc0\xb2\x17\x5a\x51\xd6\x97\x69\x7f\x11\x09\xea\x91\xb3\xd6\xca\x80\xa3\x1a\x9e\x00\x38\xce\xd5\xca\xf6\xca\xf5\xbf\x5a\x17\xcd\x89\xd8\xa8\x03\xa5\x0d\x3f\x90\xae\x2f\xd8\x28\x9e\x5b\xc4\xb0\x30\x03\x72\x94\xe6\x40\x56\x71\x14\x44\xca\x87\x1e\xff\x1d\x29\x7f\x5c\x93\x39\x10\x12\x62\x54\x8c\x53\xf2\x6b\xc9\x73\x36\x1a\x1f\x2c\xf0\x53\x70\x20\x0d\x0f\x0c\xc2\x84\x52\x3e\xa0\xe5\x21\xbf\x56\x6f\x61\x2b\xc3\x8c\xd5\xe9\x6c\xb3\x5e\x77\x64\xa4\xc9\x39\x76\x54\x7a\xe5\x24\x53\xf2\x2c\x04\xd0\xa3\xc2\xf9\xa8\x39\x2f\x58\x58\x2c\x24\x29\x3c\xa5\x81\x09\x9a\x0b\x6b\x4a\xc1\x40\xc3\xe7\x6c\xf3\x23\x07\x61\x40\x73\x7e\x04\xbf\x87\x64\x45\x47\xbf\x59\xd9\x53\x9e\x16\x79\xe2\xa4\x71\x70\x73\xa3\x5f\xf1\x16\x33\x88\x8b\xc3\x83\x7a\x62\x8e\xf0\xf2\x89\xa2\x1e\xf0\x97\x86\xe9\x27\x1e\x03\x2b\x6f\x94\xa5\xbc\x55\xda\x96\x12\x6a\xcf\x23\xda\x20\x21\xf4\xf1\xb3\xd3\x19\x29\x33\xb0\xe2\xbc\x1a\x79\x3e\x44\x98\xe6\xef\x74\xcc\x1f\x50\xe4\xc3\xc2\x47\xe6\xc3\xd0\xf1\xfe\xd7\x6d\x8c\x6e\xbd\x7a\xba\x37\xe8\xde\xbf\x63\xc0\x3c\x0e\x5f\xf9\x76\xf7\xe5\x68\x1f\x85\x83\x1c\x6a\x35\x92\x23\xaa\x03\xd7\xae\xd9\x04\xbd\x54\x09\x25\xff\x84\x52\xbf\xa3\x30\x67\xf0\xec\xa5\xb2\xde\x30\xac\x76\xfd\x90\x46\xbe\x03\xba\xbf\x06\x36\x8b\x7c\x2f\xfe\x35\x70\x07\x07\x70\x3e\xbd\xba\x38\x01\xd1\xcd\x75\x94\x99\x65\x3b\x61\x9a\x55\x10\x62\x38\xee\x86\x05\x72\xad\x14\x06\x8e\x5e\xc2\x02\x91\x33\x90\xb0\x00\xbc\xbc\x25\x7a\x36\xc9\x4b\xed\xa2\x41\xd9\xec\xba\x0b\xa1\x79\x4b\xa6\xeb\x7c\xbb\x99\x32\xd6\xa9\x07\xd9\x4e\x13\xa9\xe0\x0c\xa8\xef\x5b\x3b\x28\x68\x4f\xdf\x57\xff\x25\xdb\x71\x37\x14\x3c\x3b\x40\xe3\xb4\xc3\xe6\x57\x69\x1d\x27\xa8\xea\x58\x62\x19\x60\x53\x40\xa4\x6e\x37\x4f\xea\xe9\xd8\xba\x20\x3a\x63\xc3\xbf\x13\x50\xbf\x46\x2d\x7f\x3b\x42\x39\x6a\xf6\x84\xfe\x44\xf1\xb8\x53\x14\x90\xad\x5e\x1c\xe4\x03\x17\xfb\x9c\x6a\xd8\x86\xa6\x1c\xba\x5c\x3a\x27\x52\xc4\x1b\x2d\x0c\xae\x84\x3f\x4a\x26\xef\xe9\xa1\x39\x92\x98\xc0\x89\x63\xd2\x19\x20\x22\x85\x97\xec\xe6\x86\x91\xa6\x72\x1c\x40\xd0\x6a\x58\xcb\xb0\x0e\x03\x5e\xaa\xce\x0b\xcc\x52\xe6\xbd\xfc\x38\x43\x87\xca\x05\x63\xf1\x41\x6d\x14\x58\x92\x76\x3a\x48\xcc\x6d\x97\xa5\xd4\xa0\x06\xc0\xa8\x98\x60\xcf\x9f\xbf\x3c\x1d\xca\x53\xa1\xed\x3e\xb0\x78\xf3\x75\x22\x63\x02\x4f\xd1\x5f\x5c\x13\x3d\xfd\x59\x50\xd3\x89\xdd\x75\x8d\x0d\xc2\x28\x7b\x9a\x80\x0d\x25\x10\xd4\x77\x40\x35\x73\x03\x91\xfa\xd2\x23\x7c\x19\x01\xf7\xe2\x3c\xa0\xad\x0a\x46\xb4\x75\x97\x54\x8e\x76\xb2\xbb\xbd\xad\x37\x56\x3b\x76\x3a\x63\xaf\x96\xd6\x1d\x4f\x46\x6a\x04\x58\xe9\x8f\xa3\x86\xf8\xc3\xb1\x52\x8c\x58\xeb\xc7\xa6\x16\xcd\xb3\x15\xaa\xa0\x36\x22\x62\x42\x70\xe2\xf9\xf1\x83\x61\x34\xca\x73\x19\x7e\x53\x48\x41\x6d\x6d\xee\x65\xa4\xc2\xf9\x83\x31\x05\x78\x06\xbd\x0e\x27\x86\x96\x99\x0a\xc5\x2f\xd1\xc2\x74\x3b\x28\xd6\xe9\x6c\x07\xeb\x1f\x2d\xfc\x0b\x73\x41\x83\x7f\x01\xea\x76\x8c\x1a\x60\xd1\xd2\x67\xc1\xe1\x14\xd1\x67\x44\xba\x46\x41\x5a\xe8\x92\x07\xa5\xfa\x97\x7c\x6a\xf9\x62\xf0\x54\x67\xae\xcd\x91\xe8\x5f\x2f\x0b\xf1\xeb\x75\x0d\x1c\x21\xc6\x16\x31\x3f\xc5\xf3\xa9\xa8\x35\x8c\x48\x49\x9f\xdb\xc3\x76\xc6\xe2\x73\x8d\x37\xbc\xfd\x9e\xb2\x43\xca\x57\x14\x52\xad\x03\xe8\xf0\x35\xe6\xaa\xb2\x46\x1f\x13\x30\x49\x67\xa8\x6c\x24\xbc\xaa\x88\x1b\x34\xbf\xef\xd1\xf4\x78\xe2\x74\xeb\xd9\x5e\xd8\x61\xea\x52\x8d\x47\xad\x29\x39\x02\x58\x33\x1e\xb9\x25\xfd\x36\xf3\x4e\x47\x32\x6c\x13\x72\x79\xea\x69\xea\xfb\x92\x4c\xa5\xe3\x74\x38\xde\x34\x09\xde\x48\x9a\x84\x5f\x76\xe0\xcf\x9b\x80\xd8\xc7\x9d\xc9\x4e\xdd\x25\x1d\x0d\x8b\xfc\x35\xf8\xdd\xb0\xb3\x86\x5b\x0f\x67\xb9\xd4\x4a\x9b\xaa\x60\xd4\xc3\xa7\x36\x2f\xbe\xe1\x25\xa3\xd3\xe1\x76\xbc\x23\xe6\xc7\x85\xf3\xe3\xc0\xe9\x77\x48\x27\xa8\x63\xfd\x09\xe6\x76\xc9\x7e\xd9\xaa\x28\x78\x6d\x7b\x2f\x0b\xe9\x97\x04\xab\x82\x77\x39\x02\x81\xde\xa3\x99\xb9\x0f\xe7\x57\xa0\x89\x55\x84\xf4\xf9\x23\xd1\xbb\x8b\x8a\x12\x49\x80\x4e\x5f\x5d\xf8\xf2\xe5\x23\x45\xca\x33\x89\x1e\xf7\xe2\xca\x88\x51\x81\xaa\xc6\x43\x10\x72\xe2\x91\x37\x39\xab\x75\x98\xd2\x32\x24\xed\xc4\x92\x74\x14\xbd\x5a\xc8\xdd\x11\x37\xe7\xb3\x4a\x64\x29\x2b\x96\xb1\x3a\xaf\x15\x81\x94\xad\x39\x11\x43\x4a\xca\x4e\x41\x74\xcb\x9f\x6f\x45\x4e\xbb\xbf\xea\xf5\x6b\x63\xb3\x77\x78\xd3\x43\xa5\xda\xf9\x74\x34\xf1\x8d\xdd\x7b\xf7\x6a\xdc\xb0\x0b\x09\x74\x69\xe8\xb9\xb3\xfa\xed\xdf\xe2\x7d\x8f\xc8\xb4\x97\xf3\x27\xdc\x7c\xa4\x92\x15\x16\x60\xbb\xe7\xd6\xf2\x2e\x8b\x74\x21\x67\xef\xa3\x22\x26\x8d\x0d\x2b\x65\xd2\xeb\xf4\x6e\x69\x3d\xa2\xc7\x3b\x4a\x1e\x28\x37\x1d\xa0\x2c\x7e\x8d\x14\xcc\xf7\x8f\x5f\x7c\xf7\xf4\xc5\x6f\xcb\x9f\x66\xf5\x78\x8b\x94\x6f\x9e\xfc\xf0\xec\xc9\xd3\x67\xcf\x1e\x7f\x57\xee\xd3\xe6\x3e\xfe\x6f\x8f\x1f\xbd\x31\x9f\x07\xf8\xf9\xdb\xc7\x6f\x8e\xdf\xfc\xee\xf1\x8b\xe3\xc7\xaf\x5e\xbd\x7c\x55\xda\xbb\x9d\xb0\x90\x77\x37\xbf\xe1\x47\x61\x38\xf0\xe4\x30\xce\x57\x74\x42\x01\xb5\x38\xde\xa2\x27\x37\xbf\x75\x7a\xd0\x28\xf1\xaf\x1c\x3f\xbf\x84\xe2\x8a\x4c\xfb\xd8\x21\x34\x5a\x20\x07\x60\xa0\x61\x72\x56\x4f\x26\x17\xce\xad\x58\x41\x32\x3c\x67\x0b\x41\xe3\x82\x3a\x84\x3e\x36\xaf\x18\x85\x1f\xd2\x5e\xb8\x88\xbe\x79\x62\x68\x21\x43\x11\xc1\xb0\x46\x27\x93\x4a\xd6\x02\x65\xf9\x90\x80\x3f\xd0\x63\xa5\xd9\xa0\xde\xa8\xf9\x38\x3d\xed\x6a\xc1\x04\x14\xbe\x73\x20\x5a\x5c\x23\x47\x62\x5a\xcd\x98\xd2\x9b\xb5\x6d\x37\xe4\x9d\xe0\x7d\x12\xeb\x5b\x92\x98\x9b\xa3\x80\x8a\x67\x5d\xa9\x69\xae\x1d\xae\x22\x4f\x41\x76\x18\xb4\xa6\xcc\x07\xf2\x02\xc5\xb9\xcb\x22\x25\x92\x5d\xd1\x39\x0b\x55\x5d\x43\x56\xc7\x88\x03\x4f\xc1\xa5\xe2\xb2\x7b\xc7\x78\xc1\xdc\xdc\x64\x5b\x57\xd3\x77\xe6\x8c\x58\x68\x92\x80\x53\xd4\x78\xa7\xc3\x10\xb5\xb2\xaf\xf0\xc1\x2c\x52\x5d\x32\xa4\x4d\xeb\xee\x99\x2b\x88\xe1\xf8\x78\x36\xa5\xdd\x10\x3b\x5c\x29\xd2\x3b\xa6\x47\xee\xb2\xb4\xa7\x2a\x0f\xd7\xae\x70\x85\xf9\x81\xd2\x4a\x1a\x6c\xfb\xd2\x8a\x9c\x45\x58\x49\x3d\x95\x96\x36\xae\xcd\xa5\xd4\x9c\xce\xeb\x93\xca\x8e\xa8\x70\xef\x6e\x09\x20\x59\x0b\x06\xab\x80\x60\x05\x08\x04\xa3\x75\x12\xf4\x70\xbd\x9f\x8f\x3e\x9e\x54\xd1\x8a\x5f\xe8\x54\x1c\xa8\x97\xa2\xd9\x67\x59\xb2\x53\x77\xb9\x8b\xb6\x50\x6a\x2f\xfd\x96\x69\x5a\xa8\xb0\x60\x92\x4a\x41\x61\x7e\x21\xd9\x5f\xb3\x1d\x3e\x2e\x8a\xa6\x99\x42\x66\x6e\x73\xb9\x0d\xbb\x1f\x31\x60\x24\x06\x47\xf2\x27\xb9\x3b\xb0\x8d\x5c\xe6\xd7\x86\x6d\xbc\x66\x08\xe5\xa4\xf7\x2f\xe8\x6f\x19\x29\x34\x05\x3b\x7d\xed\x40\xb4\xb4\x00\xd3\x02\x14\xd6\xba\x2e\xb8\x28\x19\xf8\x64\x0e\xe9\xfd\xdf\x04\xe8\x1c\x95\x7a\x75\x62\xc8\xd6\xf3\x57\x82\xaf\xdd\x0d\xa4\x4f\x14\x9f\xd8\xf8\x0c\xbb\x22\x72\x92\xb8\xc1\x6e\x8c\x23\xd2\x63\xb9\x8e\x4e\xae\x39\x4e\x7c\xd1\x5a\x14\x18\xf4\x42\xab\x37\x08\x0e\xbc\x45\x1a\x03\xaf\x49\x39\xd4\x73\xdf\x1d\x22\x39\x52\x86\x9b\xc4\x91\x0c\x60\x0e\x2d\xbf\xbb\x19\x8f\xb7\x1a\x67\x0e\xe1\xd1\xaa\x7a\x57\x10\x4f\x58\x95\x51\x80\x90\x3a\xc8\xb7\x9b\x31\xcd\x4d\x50\xd9\x20\x5c\x09\x6a\x73\x90\x1a\x91\xdd\xd3\x04\xbe\x76\xa8\x8e\xa8\x7b\xc3\xdd\xd7\x93\x71\x31\x9b\x3e\x71\x77\xb9\xf9\xb2\x4d\xf0\xad\xea\xd6\xb2\xa4\x7a\xde\xfa\x8a\x4a\x0e\xac\x71\xbc\xec\x03\xa9\xe1\xa1\x7f\x55\xee\x88\xca\x0d\x4b\x1c\x4b\x22\x67\xc7\xee\xb0\x61\xbe\xf5\x48\x53\x65\x65\xc5\xa0\xa8\x9d\x06\x3f\x0f\x30\x10\x40\xd0\x7f\x9e\x04\xa9\x23\xa5\xf7\x15\xcb\x24\xce\x8c\x3b\x2a\xd1\xda\x24\x80\x8f\xde\xa9\xf0\x8e\x1e\x97\xfe\xee\x0e\xd6\xc2\xa2\xd4\x53\x37\xe3\xa1\x82\xcf\x7e\x46\x90\xe6\x81\x2a\x10\x12\x2d\xb0\xaf\x24\x85\xb4\xef\x36\xe0\xf4\xb8\x5a\x8c\xea\x49\x19\x40\xd9\xc0\x57\x7e\x4a\xec\x6d\xbd\x03\x12\x72\x6c\x4c\x6f\x3d\xe8\x3e\x49\xdb\x7e\xfa\x0e\x4f\x09\x75\xa3\xb0\x1e\xfa\x22\x98\xbd\xab\x1e\x89\x08\x96\x4b\x14\xc9\x21\x32\x7e\xb3\xf2\x5a\x49\x5d\xae\x3a\xf8\x7b\x6e\x0f\x15\x15\x2e\x1a\x0d\x0e\x2a\x71\x65\xde\xbc\xfa\xd3\xf1\xa3\x87\x6f\x1e\xfd\x6e\x1d\xed\x6e\x88\xca\x47\x48\xdc\x86\x43\xd4\x44\x7c\x34\x50\x4b\x0f\x07\xfd\x08\x15\x2f\x14\x7c\x90\xad\xc0\xb0\x65\xb9\x04\xdb\x44\xa3\x21\xf9\x69\x23\x15\x4a\x75\x33\x5a\x41\x39\xb3\x02\xa4\x74\x85\xca\x30\xd5\x18\x88\x1f\xd3\x40\x35\x26\x29\xaa\x6d\x00\x5a\x34\x85\xcb\xd6\xf9\x43\x79\x2a\x52\x96\xc1\x34\xcc\xcd\x87\x4d\x12\xa5\x49\x53\xc6\xa2\x34\xfd\x01\x55\xc3\xbd\x60\xd2\x8c\x87\x62\x7d\xee\x47\x57\x69\x80\x6c\xf1\x3d\xfd\xe3\x25\xab\xd3\x67\x0f\x85\xd6\x69\xec\x56\x98\x1f\x53\x10\x6a\x5b\x95\x89\xd1\x62\xab\x19\x5d\x54\x96\x2a\x72\x31\x75\x97\x42\xeb\xc0\xa8\x68\x76\x83\xd6\x21\x25\x90\xba\xbd\xd0\xd5\xf2\x75\x3a\xb6\x85\x95\x84\x23\x54\xa3\xc5\x8a\xe6\x18\xd0\x48\x09\x2c\xb1\x96\xc2\x70\x75\x5a\xa9\xe5\x88\x66\x70\xe6\x9d\xac\xeb\xa1\x6e\x38\x9c\xc6\x5c\x40\x9f\xbe\xba\x21\x65\x24\xd5\x56\x53\xcd\x45\x70\x8f\x4a\xad\xb5\x64\xb2\x62\x35\xfd\xe5\x0a\x24\xe5\xc0\xda\x97\xf0\xc7\x93\x1c\xf1\x68\x44\xdd\x3e\xc8\xc3\x37\x29\xfa\xc7\xcb\xe1\x65\x2e\xf9\xdf\x41\x20\xf5\x22\x4c\xe4\x50\xa0\x97\xcf\xf7\x49\xc9\xff\xa6\xf2\xec\x0d\x56\x86\x09\xbe\x44\x2c\xdc\x99\x32\x4a\x09\xca\x6b\x14\x52\xfa\x9f\x5e\x49\x27\xe7\x70\x64\x96\xce\xb7\x72\x0f\xf9\x11\x8a\xa9\x4c\xa3\xbb\x0c\x6c\x24\xa8\xaa\xd0\xe8\x7d\xb4\x00\x5d\x4f\xf3\xa9\x55\xd3\xff\x66\x9a\xe8\x8f\xed\x18\xd6\x29\xa3\x5f\x8c\xde\x55\xc4\x61\x8f\x5f\x11\xe5\x15\xb9\x81\x0c\x4b\xb4\xea\xba\x27\x84\x51\xb3\xe3\xd3\xd8\xa6\x1b\xc4\x51\x92\xe1\xae\x9b\x87\x93\x09\x77\xd3\xd5\x92\x5f\x43\x26\xcc\xeb\xaa\x29\x58\xd2\x4c\x91\xc4\x1a\xb0\x85\x55\xa5\x92\x35\x28\x6e\x13\x1b\xcb\xb9\xd6\xb5\x24\x98\x07\xd1\x75\xeb\xa5\x65\xc0\xa9\x3a\x71\xdf\xa5\xab\xdc\x52\x03\x56\x90\x17\x37\x5e\xcc\x74\x15\xf6\x25\x63\xd6\x05\xf1\x7c\x19\x69\x96\xe9\xe7\xb4\x91\x6d\x62\xeb\xe2\xaa\x59\x6c\x9d\x54\x78\x17\x98\xcf\xf7\xf5\xe2\x7c\x6b\x34\xdd\xc2\x57\xdf\x2c\x6f\xb5\xb9\xb0\x9b\xe0\x9a\xea\x06\x0b\xaf\xba\x55\x3b\xf5\xbd\xa0\x20\xaf\xb0\x08\xfb\x97\x89\xc3\x42\x87\xe4\xf2\x76\xb6\xb4\x6d\xb0\xfe\xab\x0d\xcd\x2e\x36\x98\x36\x3f\xad\xfb\xb3\x15\x9d\xbf\x30\x3f\x9e\x58\x33\xba\xfc\x24\x0d\x2f\xa1\xe0\xd6\x0f\xd1\xf4\xe0\x28\x91\xd1\xfc\x2d\x2a\x8e\x5c\x55\x8e\xbb\x10\xf4\xa6\x93\x77\xf6\x87\xf0\x5e\x3e\xe0\xaf\xf2\xc0\xe3\x14\x0e\xf2\xeb\xe6\xf4\xbc\x1a\x5f\x4d\xaa\x27\x13\x50\x99\x00\x4d\x42\x54\xc8\x98\xcf\xde\x37\xd5\xfc\xb7\x93\xd9\xc9\x68\x52\xb2\xe2\xc2\xfb\x7a\x3a\x9e\xbd\x07\xdb\x56\x2b\xad\xc8\x0e\x29\xb1\xcf\xce\x4e\xbe\xa5\x7a\xcf\xaf\x16\x08\xbb\x2f\x4f\xcc\x87\xb9\x28\x4b\xaf\xbd\x5e\x98\x7d\x73\xe3\xe7\xff\xb1\x3a\xf9\x7d\xbd\x08\x4b\xb1\x30\xfd\x8f\xb3\x39\x38\x1e\xe6\x31\xfd\x50\x4f\x17\xbf\x79\x34\x19\x5d\x5c\x82\xdf\x47\xb3\x41\xfe\xf0\x3a\x1d\xd1\x87\xbd\x80\xb5\x7d\x6d\xee\xa8\xcb\x45\xd3\x52\xe6\x39\xa9\x18\xc2\x9b\xd7\xb4\x9a\xf8\x85\x1c\x9a\x32\x1b\xf8\xa2\xfa\xb0\x78\x53\x1b\xd2\xd4\x79\x66\x77\xc7\xf3\x12\x6c\x9c\x9a\xa6\x37\x95\x42\x67\xb0\xb2\x9a\xcc\x30\x2d\x84\x73\x63\xbd\xd7\x7a\x01\x78\xc4\xa4\x37\x6c\x02\x3b\x93\x05\x84\x63\xd7\xb2\xb8\xdc\x01\xbf\x20\x8c\x0d\x1d\x37\x3b\x45\xee\x8a\xb5\xdc\xde\x98\x81\xbc\x30\xe9\xdd\x2c\xcb\x07\xd2\x60\x8f\x7f\x74\xa1\x46\x01\x3e\xa4\x41\xff\xaa\x9a\x7f\x07\x9a\xe6\x48\xf7\xe5\x91\x06\x0e\xc4\xec\x1f\x57\x64\x6b\xa3\x46\xba\xb3\xe3\x3e\xfe\xe9\x20\x98\xa7\xb7\xa4\x3c\xcb\x53\xfa\xc2\x39\xf9\x05\x06\x9c\xd5\x83\xcd\xda\xef\xcd\xa6\xa2\xfd\x89\x53\x4c\x0c\x48\x97\x3f\x30\x7f\x9b\x05\x37\xd8\xdd\x0b\x56\xdc\x20\xac\x37\xf5\x45\x35\xbb\x5a\x24\x77\xad\x71\xd9\xd8\x57\xb1\x9f\x93\xe2\x20\x1e\x26\x1c\x2a\xbd\x57\xef\x57\xf7\x95\xc5\xee\x19\x9d\x9a\xeb\xc8\x88\x86\x79\x47\x96\xda\x5b\x56\x91\x8e\x26\xbb\xbe\x30\xe7\x52\x12\xcc\x31\x1d\x28\x15\x9d\xb7\xf9\x40\x4a\x3a\xc9\xe0\xc0\x95\x75\x89\x4b\xcb\x01\x22\x1b\xae\x0f\xb3\xd2\x06\x67\x98\x0c\xe1\xfe\x7a\x19\xe8\x7d\x72\x39\x4f\xfb\x93\xd3\x86\x59\x80\x2b\x4a\xef\x20\x58\xba\xbb\x05\x48\x13\x95\xe3\x33\xa0\x64\x9b\x74\xca\x53\xb5\x02\x88\x62\x36\x2a\x2c\xa6\xb7\x3b\x42\xd6\xf2\x62\x88\xd4\x1a\x2a\xc3\x7c\x8e\xe7\x4f\xd4\x66\x7a\x83\x26\x10\xeb\x88\x2e\x7e\xa2\x53\x92\x90\x3e\x3b\x3a\x57\x8d\xf4\x2e\xea\x0f\xf5\x94\x05\x28\xb9\xd6\x87\x84\x84\xab\x79\x45\x7e\xb1\x9c\xb4\x91\x7d\x54\x65\x2c\x87\xca\xac\xdc\xc7\x4c\x45\x8c\x8f\x3c\x9d\xb8\x16\x95\xc0\x03\xa9\x48\x2a\x42\xc4\x87\x7a\x1e\xc2\x74\xb6\xcf\x7a\xf0\xcc\xf8\xb1\x31\xce\x01\x03\x03\xfb\x2b\xdc\x17\xf3\x21\x8f\xd3\x9f\x89\x3e\xf8\x4c\xe4\x01\x0e\x4c\xfb\x8a\xc0\x84\xb9\x61\x2f\xcd\xbd\x27\xbf\xad\x19\x15\x20\x0b\xe1\xe9\xb4\xd5\x19\x70\x5d\xfc\x80\x08\x71\x30\xb8\x56\xc8\x96\xa9\x0c\xc5\x93\x2d\x99\xf0\x10\x1c\x28\xa5\x22\xd8\xd6\xdc\x87\xff\x6c\xae\xde\xd3\x3f\x8d\x01\x59\xb5\xc8\x56\xf5\x3b\x7a\xe1\x26\x6d\x6f\x2a\xe3\xc9\xf5\x13\x65\xbd\x7c\xbe\xd0\x0c\x2b\x1b\x1a\xc7\x22\x6b\x4b\xaa\x5c\xb8\x44\x61\x3e\xb3\xb1\xe8\x0c\x85\xd9\xd7\xc8\x19\x0a\xb3\xb3\x9e\x84\x33\x2a\xe5\xd8\x5a\xff\x49\x3c\x2c\xe7\x58\x47\xef\xa9\x3c\x32\xea\x15\x61\xb7\x7e\x73\x0f\x0b\x71\x3a\x96\x79\xf8\xed\xcb\x57\x6f\x8e\x5f\xbe\x38\xa6\x9a\x4f\x5f\xbe\x20\xb9\x92\x3e\x57\x89\x32\x71\x92\xd2\xb6\x0f\x19\x10\x0e\x1e\x6e\xee\x4e\x32\x43\x54\x6f\xc5\xf1\xa3\x25\x9b\x9f\x93\xe5\x9a\x7e\x48\xc0\x5a\x7d\x0e\x11\xa2\x50\x85\x14\x75\x72\x5c\x12\x67\x48\x51\x0f\x79\xc4\xbc\x68\xcc\x2e\x39\x41\xa7\x05\x74\x8f\xf9\xc3\xe8\x87\x64\xdc\xf6\x92\xe5\xe3\x3e\xeb\x28\xaf\x84\x9a\x83\x53\xbf\x7d\xfb\x52\x38\xca\x9a\xcd\x04\xc8\x93\x93\x48\xcd\x79\x3d\x95\xde\x97\x75\x76\x7d\xec\x3c\x83\x9a\xc1\x75\x71\x88\xb9\x1b\x8f\xf9\x2a\xf1\x2f\x35\xc9\x78\x18\x53\x44\x0c\x4d\x45\xe7\xd5\xc5\xa8\x9e\x82\xae\x4f\x22\x13\x04\x22\xdd\xdc\xf6\xa9\xc5\xe2\x22\x2a\xd3\x53\x2b\xa4\x49\xf5\x4e\xac\x2b\xaa\xdf\x37\x37\x7b\xdc\x87\x20\x97\x4a\x75\xa4\x46\xb5\x69\x67\x16\x42\x50\x8a\x95\x28\x18\x70\xbf\x5d\xb0\xf8\x4c\xb1\xe8\xc1\xca\x3a\x2e\x99\x96\x58\xae\x2b\xd1\x35\xa4\x54\x73\xc9\xae\x6a\x6a\x33\x96\x1b\x1b\xdc\x22\x4b\xbe\xc6\x72\xdd\x97\xe4\x04\x71\x0c\x2c\xf7\x43\x61\xb9\xd3\xbd\xc1\x76\x95\xa1\xed\xa1\x3c\x7e\x39\x72\x53\x6d\x43\x3b\xf7\xae\x04\x10\xe9\xce\xec\xbe\x95\x81\xa1\x5d\xbc\xd9\xda\x0b\x40\xa9\xb7\x86\xb5\x90\x60\x99\x15\xe0\x7a\x2f\x28\x91\xa2\x02\xe3\xb2\x4e\x47\xd1\xc4\x3b\x32\xd7\x6a\x74\x7a\xfe\x78\xba\x98\xf3\xbe\x80\xa6\x33\xf8\xec\x6e\x9b\x82\x94\x76\x53\x00\x99\xc3\x47\xf1\x49\x7b\x5a\xb6\x1e\x6f\xf2\xa2\xe9\xbf\x29\x63\x5d\xd2\x36\xc5\x9f\x5a\x53\x00\x1c\x71\x74\x3a\x94\x1c\x8b\xbc\x39\xdd\x7b\xec\x63\xa1\x14\x21\xaa\x87\x8b\xae\xae\x5b\xd4\x05\x7f\xc6\x67\x0d\x23\xe2\x13\x7e\x33\xb5\x4e\xad\xe1\x35\x8d\xce\xb9\x30\x0f\x0e\xda\xee\xee\x40\x83\x0b\x70\x09\xf4\xed\x04\x4d\x5d\x8b\xb4\xa5\xff\xf6\xa5\xb5\xe3\x76\x4b\x2b\x23\x57\x46\x17\x49\x98\x48\x69\xa7\xd8\x95\x8a\x47\x6d\x71\x86\x87\x27\x3b\x9d\xb5\x8a\x2d\xfa\xe9\x7f\xed\xd4\xfd\xc1\xa3\x8e\xfa\x4a\x4c\xd5\x82\xa4\x5a\x56\x4b\x09\xf3\xda\x96\x8b\xd1\x05\x5d\x71\x2d\xcd\xe8\x9d\x2f\x43\x6d\x2f\x01\x6a\x47\xcc\x91\xc3\x0c\xf5\xba\xcd\x05\xdb\xf5\x78\x5c\x5d\x0d\x99\x1a\x2c\xc2\xe7\x08\xfb\x00\x91\xae\x2a\x9b\x63\x6a\x2a\xcd\x9d\x90\xfc\x64\x76\xea\x96\x92\x30\xf5\x04\x33\xae\x3e\xbc\x3c\xb3\x82\xae\xa6\xd5\xd6\xc5\x96\x48\xa9\x6a\xdb\x4c\x00\x10\x67\xfd\xe2\x6e\x04\xd1\x88\xde\xdd\x57\xae\x0c\xa4\x12\x04\x07\x99\x29\xcb\x01\x9b\xc1\x7e\x7c\x7b\xc7\xbc\xfc\xf2\xa2\x80\xe6\x79\xdb\xb6\x58\x7e\xbd\xbe\x06\x38\x51\x08\x9e\x50\x9b\xb6\xb0\x50\xd7\xc8\x09\x2a\x0f\xa2\x3c\x36\x6e\x9b\xdd\xa9\x98\x7f\x07\x92\x72\x76\xc6\x49\x67\x67\x92\x66\xcd\x27\xd0\x52\x9f\x6d\x28\x5a\x47\xe7\xa4\x0e\xe2\x14\xfa\x84\xd8\x90\x99\x1a\x07\x6e\x36\x3a\x06\x3f\x55\x4f\xa7\x73\x90\xa6\xba\x96\xbc\x55\x45\x9f\x1c\xb6\x74\x33\x70\xeb\xa4\xeb\x1c\xd9\x86\x87\xed\x0b\xdb\x52\xa1\x3c\x1a\xa2\xcf\xfe\x76\x38\x32\xf0\xb0\xbb\xaf\x5a\x22\x63\x31\x9b\xbd\x34\x73\x3c\x3b\xfb\x8c\x93\x2c\x70\x2c\xde\x44\xf2\xeb\xf6\xd1\x0b\x6f\xbe\xc1\xd2\x50\x50\x93\xf6\x99\x0e\x64\x21\xb6\xc3\x29\x37\x97\x68\xb2\x8f\x99\x28\xea\x8a\x3d\x0f\xb8\x79\xcf\x2e\x51\xb6\x77\xdb\x69\xcb\xaf\x37\x57\x97\x13\xf5\x6a\x0f\xe6\x75\x06\x05\x0f\xf4\x29\x6d\x9b\x62\x28\x58\x8b\xcf\x3c\x9c\x77\x2b\x5d\xd3\xa7\xde\x89\xd3\x64\xf8\x60\x06\x11\xa2\x2b\x83\xff\x17\xb1\xc8\xe1\x67\x3e\xd4\x7d\x06\x17\x51\x2d\x3a\xe3\x07\xb1\xce\xf8\x2a\xa6\xfa\x20\xc1\x54\xaf\x13\x75\xd0\x8a\xc8\xfd\x02\x81\x32\xe1\xfb\xc9\x74\xc5\xc3\x88\x2d\xcb\x8f\x3f\xe8\x70\xc4\xbf\x8e\xc8\x2c\x6f\x5b\x69\x66\x48\xbb\xb9\x36\x0f\x53\x7a\x0d\xe0\x5a\x1c\xc9\x6a\x08\x55\xb1\x35\xda\x52\xef\x20\x3c\xc6\xbb\xcd\x56\x53\x19\xb2\x6d\xbc\x25\x32\xac\x1e\x1b\xe4\x31\x55\x4b\x3d\x6b\xba\x96\x2a\x56\x63\x45\x60\x4b\x5c\xc3\x16\x09\xae\x01\x2f\xa9\x04\x57\x89\x8c\x9a\x67\xa5\x63\xf4\xeb\x15\x91\x2a\xe9\x15\x91\x5c\xd1\xe9\x16\x83\xb4\x78\x50\xec\xa4\xf8\x99\xbc\x11\xd9\x41\xde\x39\x80\x61\xde\x39\xb0\x03\xbd\x73\xc0\x37\x9f\x6b\xfc\xc8\x24\x3a\x7b\xa1\x23\xdb\x0e\x0b\xf4\x1a\xcc\x1f\xd8\xe4\x9d\x1d\xb8\x90\xb4\x03\xe7\xd2\xe6\xc9\x25\x20\x36\x43\xa9\x9b\x1f\xcc\xef\xfd\x87\x70\x7d\xa0\xd2\x8f\xe2\xbb\x50\xe9\xf3\xbf\x8c\xdf\xc6\x09\xfa\x86\x07\x72\xf5\x33\xf9\xc1\xba\x67\xf2\xdf\x99\x79\xae\xf3\x7e\xde\xf2\x66\xbf\xe9\xa3\xfa\x97\xc9\x47\x75\xe8\x38\xf5\xaa\x4e\xd7\xf9\x2d\x1e\xd5\xb9\x82\xf7\xa6\xae\x1a\x4f\x3d\xaa\xab\xb9\xeb\x57\xf5\x64\xad\xd5\xcf\xea\x2d\x55\x56\xbe\xab\xb7\xd4\xb9\x15\x97\x7f\xee\xda\x68\x7b\x59\xe7\x08\x18\x1b\x3c\xad\xab\xc6\xba\xfe\xf2\xab\x8e\xf5\x7e\xc9\xdb\xba\x57\xb8\xf5\x69\x9d\x8e\x52\x78\xee\xa2\x83\xe6\x1d\xc4\xbf\x17\x8f\x88\x6d\xa7\x24\x01\xfb\x09\x71\x67\xa8\x5a\x92\x10\x7f\x6e\xb2\x37\xed\x9b\xa2\x86\x77\xcb\x4d\xd1\xa6\x6a\x47\xda\x56\xed\x17\x24\x31\x12\xf6\x5f\xfb\xce\xfe\x2b\x65\x67\x76\xa0\xec\xcc\xe8\xbd\xf3\x68\xfd\x9b\x88\xd2\xe2\x75\xa4\xa2\xd5\xd1\x64\xc5\xd7\xb3\xee\xbe\x21\xb7\xb1\x4d\x22\xb3\xc9\x91\xbe\xaa\x40\xae\x43\xfb\xd7\x6f\xaf\xea\x71\xdf\xca\x12\xe0\xeb\xf7\xd5\xc7\x1d\x9b\x50\x8f\x0b\x5b\x49\x55\x27\x95\xc5\x7e\xa0\xd6\x4b\xdd\xff\x16\x5a\xc4\x5f\x10\xff\x26\x68\x18\xd3\xb1\x59\xdc\x41\xd7\x02\x7e\x16\x8b\xfa\xa2\x7a\xbd\x18\x5d\x5c\xf6\xcd\xba\x74\x73\x70\xd5\x76\xfa\xae\xef\x30\x83\x5f\x3c\xef\x61\xbe\xd9\x7d\xff\x21\xd9\x97\xb5\xa1\x14\x26\xa0\x33\x68\x65\x34\xb5\x81\xa5\xdc\x3b\x31\xbf\xe0\x89\xff\x05\x92\x24\xe1\xbb\x1f\xfd\xb4\x4e\x6d\x75\x4b\xe5\xde\xb2\xf8\x0a\x1e\xc0\x43\x70\xbc\x20\x25\x95\xbf\x37\x5a\x37\x7e\x3a\x3a\x88\x9e\x8e\x36\xa1\x87\xd7\x81\xac\x99\xbe\x23\x56\xcd\xc7\xe7\xa7\x6a\xb1\xd1\x4f\x21\x69\x4d\xc5\x4f\xa0\x67\xdb\x29\xc7\x76\x72\xd6\xc5\xdf\x28\x71\xb4\x6b\x48\x59\x2e\x2e\x57\x7e\x4c\xf7\x81\x4e\xc8\x3f\x1e\x50\xad\x7f\xf1\x85\x79\xd5\x67\x1f\x51\x41\x06\xf6\xb7\x90\x5d\xc1\xd0\x4c\xcc\x0c\x73\x2f\x5e\x16\xbb\xcf\x20\x15\x8f\x06\xef\x34\x79\x80\xf0\x9b\x18\x44\xbd\xd5\xd5\xf8\x49\x52\x40\x1f\xbe\xd2\x5b\x65\x1f\x74\x9a\x73\x9b\xed\x97\x4a\xb0\xff\xb6\x55\x70\x2d\x44\xf6\x6e\x30\x52\xe4\xcd\xb7\x79\x6e\x9d\xce\x36\x4d\x02\xbc\x4c\x79\x0b\xe0\xd4\x4b\x40\x76\x3e\x9b\x90\xee\x01\x93\x43\xd7\x9c\xd6\x7b\x3f\x9a\x4f\xbb\xd9\x77\xd5\xe5\xbc\x3a\x45\xb2\xab\xbf\xf5\xea\xf5\x1f\xbe\xef\xb9\x05\xce\xb7\xc6\xb3\xaa\x81\x18\x52\x23\xf0\xbc\x87\xb6\x24\xe0\x1c\x04\x9c\x82\x64\x3b\x77\x33\x18\x54\xb6\xc5\x62\x03\x43\x72\x7d\xbc\x98\xcd\xab\xde\xd6\x0f\x06\x30\x3e\xce\xae\xac\x09\x19\x3a\xef\xe9\x42\xca\x1b\x10\x44\xe0\xfd\x54\x8d\xc6\xbd\xbb\xf9\x92\xa7\xe5\x6f\x93\x13\x26\x43\x16\xba\x5f\x4c\x80\xbf\x2c\x57\x78\xfe\x25\x1d\x78\xb8\x98\x52\xe8\x5a\x7d\xf1\x41\xa8\x22\x3e\x8f\x34\x01\x22\xf9\xa3\xb7\xf5\x86\xd3\x4b\x6e\xfe\x28\xb5\xf1\x66\x34\xad\x3c\xe2\x9d\x03\xe1\x12\x47\xb8\xfd\x86\xf9\xd3\x00\x60\x3e\x97\xce\x9e\x78\x44\x61\x91\xb1\x27\x32\x0e\x18\x51\x50\x65\xe5\x17\xd9\x73\x81\x6c\x55\x77\x46\xe2\x7e\x4e\xde\x32\xc8\x5b\x0f\x8a\x9b\xf6\x73\x5d\x0e\x80\x8a\xc3\xae\x9d\xfc\x45\xa2\xb5\xb1\x9f\xd2\x87\x32\xb0\xd2\xab\x6e\x23\x06\xd1\x19\xbf\x73\x9f\xc2\x0f\xdd\xb9\x8f\x33\xbd\xff\x8d\xb7\xc1\xf6\x5a\xbd\x73\x1f\x01\x9f\x5d\x07\xb9\x02\x66\xd2\xf7\x31\x80\x1e\xeb\xb9\x84\x7d\x63\xfe\x52\xe6\x61\xca\xe5\xf2\x6e\x49\x29\xf2\xbe\xe0\x60\x21\x10\x25\x0e\x04\x77\xb0\x97\x1d\x06\xb6\x42\x01\x0f\x84\x21\x4b\x9c\xfe\xde\xf1\x31\xf2\x2c\xc7\xc7\xa5\xb4\xe1\x34\x3f\xa2\xd2\x11\x4e\xf6\xa9\xfe\x84\x52\xba\xd6\x05\xf9\xbb\x54\x4b\xdf\x44\x3b\x62\x53\x7d\x8c\x5b\xe8\xa0\x6b\x4a\xff\x73\xb0\xcb\xe8\xca\x97\xaf\xce\x96\x2b\x47\x75\x39\x48\x72\xcc\xeb\xb4\xd4\x93\x95\x56\xf3\xd3\x2d\x55\x56\xbe\x49\x83\x4f\xa4\x96\x7a\x9b\x3d\xc2\xc3\x97\xd3\xc7\xc5\xa2\xee\xc2\x58\xd7\xf6\x66\xfc\xba\x60\x6e\x80\xfb\xf5\x0c\x7b\x4b\x8f\xad\x8f\xe5\xb7\x78\x15\xd7\xc4\x99\xe1\xa5\x02\xdf\x84\xbc\x30\x2b\x1e\x4f\x3b\x1d\xd2\xf0\x48\xba\x55\x12\x29\x1d\x31\x54\xa2\xb8\xd3\x37\x99\xc4\x14\xf4\xe9\x3d\x1d\x9d\x37\xb1\x16\x2b\x93\x11\x41\x80\xb6\xf0\x55\x34\xa2\x2c\x3f\xe9\x75\x3f\x8e\xf3\x16\xbe\xf7\x8b\x9f\x72\x7c\xbf\x97\xc0\x69\x3c\x8d\x04\xd7\x62\xe9\xca\x80\x83\xb6\xaa\x9b\x91\x4b\x98\xb4\xd2\x9b\xa5\x50\xef\x9d\x8e\x9a\x85\x97\x80\x76\x09\xea\x7b\x3e\x3a\xad\xfc\x04\xc2\xf9\x41\x1a\x05\x3f\xfd\x65\x84\x96\xee\xfb\xab\xe0\xfb\xeb\xe0\xfb\xd7\xc1\xf7\x6f\x82\xef\x7f\x0e\xbe\xf7\xf7\x3e\x83\x0c\xa1\x4d\xdb\x35\x21\xb2\x69\x71\x5d\x93\x0a\x00\xb9\xca\xc1\xce\x97\xb7\x74\xb0\xf3\xe5\x7a\x07\x3b\x5f\x2a\xc1\x47\xa4\x69\xf8\x95\xaf\x69\x48\x5a\x9a\x61\x01\xd1\xda\x6c\xd1\x46\xfc\x6a\xbd\x36\xe2\x57\x1b\x69\x23\x7e\x15\x69\x23\xc6\x26\x71\x61\xf9\xd8\x44\x8e\xea\x79\xa6\x71\x71\x25\xcf\x54\xae\xfd\x9e\xfd\x2a\xba\x67\xe1\x54\x95\x01\xa0\x86\x3b\x3c\x0a\x66\xff\xeb\xb8\x08\x9c\xbd\x32\x80\xe7\x96\x10\x2a\x65\x00\xe6\x71\xb1\x68\x47\x00\xf8\xc3\x62\x2c\x14\x2a\x11\xdd\x1c\x67\x3b\x28\xf3\xd9\xc9\x76\xe5\x2c\x5c\x01\x0e\x81\xe7\x17\xeb\x3b\xa9\xaa\xc6\x12\xe9\x62\xde\xdd\x90\xdd\x17\x06\xc0\xe3\xfb\x81\xc9\x39\xab\xe7\xa6\x94\x90\xa6\x10\x20\x17\x52\x19\xcb\x6c\x29\xc5\xa4\x4c\x39\x3a\xc0\x21\xbc\xa8\xde\xb7\xf5\xfe\x04\x2d\x6b\xa1\x31\xdb\xc0\xd6\x5d\x86\x83\xbb\xfd\xad\xef\x27\xd5\xc8\x34\x0e\xe7\x1e\x3a\xbb\x6b\x6a\xdf\xdd\x82\x5b\x06\xe8\x83\x02\x19\x41\x3e\x8d\x7a\x00\x62\x59\xec\x6e\xd5\x91\x16\x64\x80\xbc\x62\x35\x95\x13\x51\x5a\x96\x53\x0a\x94\x34\xc7\x25\x2f\xbb\x44\xfc\x20\x49\x5b\x89\x7f\x45\xdf\x4a\x79\x26\x38\x1a\xae\x77\x36\x90\x11\x19\x35\xce\x28\x34\x08\xa8\x09\xc0\xf9\xde\x2e\x4b\x67\xde\x1b\xc8\x73\x6c\x86\xe1\x1f\xfc\x3d\x47\xcf\x97\x48\xd1\x6b\xbf\x33\x3c\x2b\x29\x8e\xfb\xb3\x8c\xcd\x8a\xd1\x3b\x9d\x6d\x7b\xb9\x14\xba\x05\x4f\x10\xfc\x19\x28\x1e\x14\x1e\xc7\xed\x37\x1e\x0e\xf8\xe3\x52\xf8\x28\xf0\xd0\x54\x3a\xc2\x3e\xab\xa2\x4a\xaa\xa3\x2a\xaf\xd5\xbe\xf6\x45\xaa\x6d\x16\xbe\xef\x54\x8a\x44\x5a\xda\xe7\x7f\x0b\xda\x04\x5d\x82\xd4\x7b\x55\x02\x5d\xe7\x5e\x11\xb7\x4d\x3a\x99\x15\xe8\xfa\x91\xf6\x51\x20\xf2\x74\x61\x53\xd8\x21\x94\x1f\x02\xa3\xd5\xb3\x47\xa1\xd4\xf5\xc9\xd5\x05\xe9\x50\x25\xbd\x75\x58\x8f\x11\xc8\x52\x23\x78\x9d\xb6\xa8\xfd\x22\x8e\x46\x0a\xc8\x73\xb2\xa1\xa8\x26\x9b\xc1\x44\xd4\x06\x80\x79\x3e\x42\x93\x9c\x42\x3b\x2d\xc9\x97\x29\x1d\xec\x4e\xc7\x9b\x71\x9b\xdb\xb0\xd8\xe9\x04\xaa\xa8\xa5\xbc\xa1\x88\xc2\x5b\xe4\x2c\x6a\x43\x0f\x2a\x56\x8d\x09\xca\x2d\x0b\x0e\xca\xa0\x77\x28\xda\x13\x1d\xcc\x01\xe5\x2a\x18\xdb\x24\x2e\x68\x5a\x33\xd0\x62\xa6\xf0\x51\xb5\x67\x35\x49\xd4\x06\x6b\xed\xcd\x70\xf7\x06\x51\x6f\xa1\xaa\x9c\xb3\x6a\xb1\x9e\x20\x6d\x48\x21\x2b\x93\x09\x25\x40\x81\x9a\x5f\x4a\x8f\xee\x13\xdb\x25\x7c\x4e\x8d\x40\xbb\x62\x72\xda\x42\x17\x5b\xa3\xda\x4f\x79\xdc\xfb\xf9\xdc\xfa\x26\xa6\xb5\xed\xa6\xc4\x4a\x8b\x1f\x91\xa2\x94\x54\x8c\x73\xeb\xe3\x9a\x4f\xcd\xa3\x4b\x4b\x4b\xa5\xff\xec\xc9\xa7\x08\xbe\xcd\x66\xce\x35\xdb\x46\x4b\xac\xc5\x91\x8e\xfc\xde\xfb\xbb\x30\xce\x49\x12\xd1\x09\x2f\x95\xbf\x84\x19\x4f\xbc\xd6\x07\xeb\x89\xeb\xc0\xd4\x67\x53\x33\x9e\x75\xa2\xa5\x75\x00\x0d\x1b\x18\x42\x34\xb4\xfb\x28\xc0\x41\xc4\x8c\x7b\xfa\xf4\xab\xcc\x49\x88\xf2\x20\x69\x2e\xb7\x9e\xaf\x73\xfe\x12\x90\x98\x6c\xe7\x0f\x44\x1f\x0c\x52\xf9\x79\x91\x11\x68\x61\x00\x77\x22\xc2\x00\x3b\x3f\x0f\xd3\xaf\x71\x65\xa2\x2a\x39\x4f\x6b\x6b\xfc\x98\x7c\x8a\x4c\xc1\x5d\x4a\x8f\x12\xc8\x94\x67\x02\x4f\x58\x4a\x21\x7a\xfd\x8d\xb5\x0e\xb1\x08\x83\x7f\xf4\x49\x27\x74\xd5\x89\x8c\xce\xc3\xbe\x3e\x0f\xc7\x09\x60\xdf\x77\xc0\xbe\x16\x40\x75\x80\xa2\x55\x10\xba\x31\x6c\x1e\xa7\xb7\x32\x04\xae\xf6\x75\x64\xb4\xfc\x9f\xb0\x90\x49\x2c\xde\x4b\xf8\xc0\x69\x59\x4a\x2b\xfc\x57\xf2\xdf\xe4\x5a\x5a\xaf\x86\x56\xc6\xe9\x02\x3d\xb0\xcc\xd1\xd0\x6e\x1c\x7e\xc6\x33\x36\x79\xa4\x9d\x54\xfa\xea\xd6\xb7\xd8\x20\xff\x7c\xb2\x8a\xf8\xba\x1d\xb2\x97\xd1\xdf\x99\xc1\x2d\xe2\xd8\x55\x0e\x39\xa2\x02\xf1\xd4\xdc\xe1\xfd\x7b\x9b\x5c\xea\x7c\xae\x0a\x32\xd6\x3e\x45\x77\xae\xfe\xee\xe6\xa8\xde\xc8\x5a\xe7\x18\x97\x49\xcc\x11\xc9\xe1\x5b\x5b\x94\xac\x1f\x20\xb6\x6b\x2f\xab\xb4\xde\x8e\x4f\x8a\x0f\xbc\xcf\x70\xa4\x9f\x16\xe5\xcb\xdd\xa0\xa1\x4b\xd4\x0f\x61\xb0\x19\x88\x10\x9d\x49\xf9\xcc\xc6\x93\xf9\xe0\x61\x18\xd0\xf5\x47\xf7\x72\x5e\x70\xaa\x50\xae\x1a\xc9\x51\x9d\x5a\x57\xb3\xe9\x00\x96\xbe\xcb\x7a\xdb\xb6\x22\x17\x55\xab\xbe\xf9\x5d\xba\xe9\xd5\x93\x08\xe9\xce\x14\x9d\xf9\x0f\x1c\x0f\x4d\xe4\xd3\xdf\x41\x78\x45\xf3\x43\x05\x27\x93\x61\x42\xb0\x8c\x2d\xc8\xcf\x21\x52\x03\x80\x6b\xd7\xd7\x3b\x85\x7a\xa5\x08\xb4\xed\xb3\x67\x5b\xcc\x33\x6d\xe2\x34\xd3\x8f\x5d\xcb\xc1\x4c\x3f\x3f\x92\x5b\x48\xb9\x98\x82\xb0\x67\xd2\x89\xfc\x08\x4e\x05\xf3\x65\x61\x8c\x6e\xcf\x56\x4c\xbe\x49\x93\x48\xbe\xe4\x49\x26\x76\xb2\x26\x89\xf6\x91\x46\xe9\xbf\xea\xaf\x44\x0d\x41\x26\x92\xc0\x1e\x27\xe4\x53\x3d\x2e\x39\x7d\x39\x57\xd9\x3d\x01\x79\x37\x8c\x7c\x8b\x31\x89\x1d\x34\xfa\x84\xfa\x07\x7d\x1d\x52\x09\xe1\x08\xf7\xc3\x21\xee\x87\x63\xdc\x0f\x07\xb9\x1f\x8e\x72\xff\xeb\xcf\xa5\xe9\x75\x8b\x87\x28\xab\x73\xb4\xee\x1d\x2a\x7c\xa5\xf8\x32\x59\x84\xf5\xb4\xc3\x57\x91\xb5\xef\x19\x89\x67\x91\xf3\x50\xf3\x39\xf1\x2e\xa2\xf4\xc7\xd7\x3d\x8f\x30\x9c\xaf\x7b\x1e\x41\xe8\x5f\xfb\x3a\x92\x7a\x0b\x0c\x1e\x03\x9d\x6f\x97\x96\x52\x26\x8b\xcd\x28\x02\x6a\x3d\xb1\x4b\x49\x9a\x3d\xb1\x49\x29\x26\x29\xb1\x51\x74\x2a\xcb\x10\x1a\xa3\xfd\x6c\xc2\xa1\x05\xdb\xa4\xe5\xac\x25\x94\x1e\xa8\x77\x1c\x90\xbd\xfa\xbe\xd9\x3c\xb1\xac\x97\xa5\x99\xe6\xae\xf2\xd1\xe3\xc2\xd3\x99\xef\xc2\x45\xf5\x55\xe5\xcf\xce\x54\x85\xb3\xb3\xd6\x1a\x4e\x35\x2f\xe5\xb3\xcd\x32\x28\x94\xd9\x3b\x3e\xfe\xfe\xd5\xcb\xe7\x4f\x5f\x3f\x3e\x7e\xfa\xe2\xf5\x9b\x57\x3f\x3c\x7f\xfc\xe2\xcd\x43\x50\x9b\x3f\x3e\xf6\x54\xfa\xe8\x8d\x4f\x4c\xf6\xd6\x57\x1e\x38\x4f\x45\x99\x7e\xa0\xc7\xe0\x62\x56\xb5\xc0\x2a\x73\x83\x66\x84\xb2\xf4\xd4\xf6\x81\xa1\x1e\x84\xad\x93\xe7\xd7\x49\x13\x4d\xcf\x88\x30\xf0\x32\x22\x78\x45\x9e\xa4\x74\x9e\x46\x26\xea\xb7\x57\x46\x9e\x64\x82\x34\x39\x9a\xee\xa7\xef\x61\xd5\x3e\xdc\xe8\x54\x3c\xf7\xf0\x27\x4a\x95\xe6\xd4\xef\xc0\x63\x2b\x1d\x71\xfe\xd7\xcb\xa3\x73\x8d\x7f\x83\x74\xc1\x7f\xf6\xd7\x3a\x17\x4d\xfe\x65\x6f\x08\x47\xdf\x2f\x2b\x18\x1a\x83\x8d\xf1\xcf\xf7\x33\x2b\xe7\xca\xfc\xf5\x63\x27\x99\x63\x69\xfe\xf3\x7d\xd2\xd2\x91\xa6\x7f\xd0\x51\xdd\x5f\xaf\xea\x79\xf5\x7c\x06\x2e\xc0\xba\x59\x45\xe1\x3c\x97\x79\x37\x1f\xfc\xca\x51\xf3\x6f\xd1\xb9\x60\xe2\xa2\x39\xfe\x76\xd4\x54\x5f\x7f\x59\x52\x81\x1e\x7d\x91\xea\x63\x35\x6f\x80\xa4\xcd\x0e\x7a\xfb\xbd\x5f\x53\xe9\x93\xab\xb3\x33\x0a\xbc\xc7\xa7\xe8\x02\xbb\x0d\x8f\x18\xa5\xf6\x78\xd0\xf9\x35\x55\x2b\x79\xa8\xdd\x8c\xbe\xb3\xbc\xf7\x2d\xfe\x40\x7a\xf1\xe4\xeb\x2f\xc1\x11\x5f\x53\x66\x0f\xbf\x7d\xf4\xdd\xe3\x27\xbf\xfd\xdd\xd3\xff\xf6\xfb\x67\xcf\x5f\xbc\xfc\xfe\x5f\x5e\xbd\x7e\xf3\xc3\x1f\xfe\xf8\xff\xfb\xd3\xbf\x8e\x4e\x4e\x4d\x27\x6f\xcf\xeb\xbf\xbc\x9b\x5c\x4c\x67\x97\x7f\x9d\x37\x8b\xab\x9f\xde\x7f\xf8\xf8\x6f\x7b\xfb\x07\xf7\xbf\xfc\xea\xeb\x5f\xff\xe6\x9f\x77\xee\xf1\x50\xbf\xfe\x72\x31\x3a\x71\x94\xdd\x49\xcd\xfe\xee\x41\x9b\x6b\xe0\x9b\xd3\x9b\xbc\xd0\x90\x7e\x71\x04\x89\x30\xa2\x87\x8b\x6e\x9d\x0f\xcb\xda\x3e\xa5\x2c\xbb\x32\x56\x7a\x10\x3b\x33\x67\xe9\x91\xf9\x7c\x04\xfe\x07\x99\x72\xd6\x69\x74\x4b\x9c\x1c\x5f\x2d\x66\x6a\x3c\xa7\x74\xca\xb9\xdf\x6f\xc4\x59\xde\x69\x79\x8a\xbd\x42\x45\xd3\xf3\x9e\x95\x62\x9c\x9e\x7e\xb3\x7f\xf0\x9b\xc3\xd3\xbe\xf9\x71\xb0\xf7\xe5\x6f\x0e\x75\x17\xdd\xfd\x7f\x3e\xb8\x39\x3d\x7d\xf0\xe0\xc1\xd7\xf9\x8e\x9f\x71\xf0\x1b\x93\xd1\xf9\xfa\x7e\xde\xf7\xd2\x0f\x0e\xbe\xa4\x0a\xfb\x07\x9d\xfd\xaf\x92\x95\xa0\x35\xa8\xd8\xd6\xa0\x0b\x15\x62\x46\xfd\xf5\x57\x5f\xdd\xff\x7a\xa7\x1b\x0c\x7e\xf7\xab\xaf\x0e\xfe\xf9\xeb\xfc\x8b\xfd\xbd\x83\x2f\x83\xcc\x7d\x93\xf9\xf5\xfd\x03\x37\x41\x7f\x78\x5f\xee\xf1\xf0\x7e\xd3\xf9\x75\xdb\xe8\xcc\xd0\x5b\x86\xb7\x76\xe8\x4b\xbe\x45\x69\x53\xee\x1d\xfd\x78\xf5\xdd\x6f\xf6\xf6\x76\xcd\x3f\xdf\x3e\x79\x32\x84\xcf\x47\xf4\xf9\xc4\xfc\xdf\xf0\xe6\xe8\xcf\x3f\x7e\x80\xef\x0f\xbf\x7e\x32\xbc\x47\xd7\xbe\xbf\x9b\x57\x96\x9b\xba\x32\xe7\xfc\x72\x02\x12\x1a\x6e\xbd\xe0\xad\xcf\x97\x02\x08\xe6\x86\x05\x50\x71\xa0\x70\x7a\x2a\x4f\xb5\x63\x88\x89\x7c\xb4\x57\x1c\x14\xfb\xc3\x23\x93\xce\xe0\xf1\x4f\xf7\x87\xc5\x6c\x3e\x2e\x21\xc5\x5b\xe0\x6f\xbe\xd9\xff\xfa\xa6\xeb\x0a\x3e\xd8\x3f\x0c\xca\xec\xe7\x7d\x28\xf6\x1b\xaf\xd4\x41\x58\xea\x00\x4a\x15\x74\x00\x8f\x04\xbc\x05\xfc\x4d\xcf\xb8\x13\x79\xd1\x92\x83\xfb\x50\xd0\xe8\x1f\x94\x07\x87\x59\x99\xf5\xd3\x45\xbf\xf6\x4a\xee\xb7\x95\x84\x52\x43\x0b\xf9\x98\xf9\x97\x59\x3d\x05\x2f\x9e\xec\xa3\x75\x31\x1b\x09\xce\x82\xdf\x87\xee\x9c\xdb\x9d\x50\xd9\x26\x75\xd9\x4f\x14\x39\xb1\x9b\x65\x40\xa0\xf9\xf1\xf5\xf0\x7a\xbf\xb8\xbf\xbc\xf7\xb6\xb0\xbb\xc4\xfd\xc9\x9e\x11\xe6\x3a\x8c\xf7\xbd\x7b\x15\x08\x36\xa9\xa4\x4e\x3c\xbc\x42\x23\x2a\xca\x30\x35\x73\xcb\x68\x1b\x8c\x88\x78\x37\xd3\xa3\x74\x20\x85\x33\x00\x10\x82\x4a\x34\x9e\x10\x84\xae\x8a\xab\x79\xdd\x8c\xce\xec\x83\xee\x36\x7f\x1f\xf2\xc8\xbb\xdc\x93\x69\xa1\x1f\x27\xa9\x65\xd8\xf9\xf1\x9e\x01\x71\xc7\xae\x5d\xd8\xd0\x12\x5b\x17\x7b\x06\xcf\xef\x64\x87\xd9\x6e\xd6\xcf\x8e\xb3\xa5\xaa\x56\x9a\x2a\x76\x73\xa8\xf9\x1f\x5e\x3d\x4d\x9d\x0f\xee\xfb\x8a\x28\x21\x7b\x0e\xcd\x1c\xaf\x50\xca\xfb\xaa\x7a\xfb\xf8\xc3\x65\xf7\x28\x3b\xfa\x8f\xff\xb1\xfb\x1f\xff\xff\xe1\xd1\xbf\xff\x8f\xdd\x7f\xff\x7f\x86\x86\x97\x3c\xfa\x8f\xff\x6d\xf7\x3f\xfe\x4f\x49\xb8\x3e\x58\x62\xda\xff\xb5\xfb\x1f\xff\xb7\x4d\xbb\xbf\xcc\x86\x0c\x29\x37\x59\x5e\x64\x6f\xb3\x5c\x0e\x1d\x76\xa0\x8f\x9c\x39\x73\xcd\xfb\x1a\x43\x1c\xb8\x93\x01\x0e\x15\xcc\x0d\xf9\x65\x1f\x6b\x5d\x96\xdd\x5f\x77\x4e\xa3\x43\x07\xa7\xce\x9c\xa7\xaf\xef\x47\x79\xfb\x98\x77\x90\xcc\x3b\x80\xbc\xaf\x6f\x12\x39\xe6\x44\x18\x3a\xc2\x30\xec\xe5\xe9\xe5\x2e\x22\xd2\x24\x4e\xec\x52\x21\x38\x70\x7b\xf9\x0e\x61\xd6\x9d\x54\x89\x8e\x41\xb7\x06\xf7\x31\x7a\xc5\x09\xdd\xef\x27\x5b\xdc\xff\xaa\x65\x7a\xe9\x29\xec\xb7\x4e\xc1\x4c\x6e\xc0\xec\x42\xba\xa7\xfb\xfb\xe9\x9e\x92\xad\x81\xad\x84\x3d\xe7\x6a\xd7\x52\x07\x97\x61\xa7\xe0\x2d\x76\x58\x76\x5c\x45\x58\xf6\xd4\xc5\x9d\x57\x7b\xce\xe8\x08\x34\x80\xff\xe9\xcb\x62\x5a\x76\x31\xcc\xfc\x21\x11\x10\x47\x76\x6c\x38\xe2\x21\x6c\xbd\x41\x95\x37\x58\x68\x3f\x55\x68\x1f\x0b\x1d\xd8\x42\x07\xa9\x42\x07\x50\xe8\x6b\x5b\xe6\x7e\xaa\x8c\x41\x81\x0a\x29\x7b\xcb\x39\x05\x20\xf8\x3a\x2f\xa2\xc4\xdf\x74\x0e\xbe\xfa\x2a\x4c\xc7\xb4\xe1\x80\xf0\x28\xc7\x60\x86\x4b\x86\xaf\x19\x9a\xfe\x4a\x74\x3b\x82\xcb\x8e\xf1\x29\xfc\x76\x08\x70\x14\xa2\x5b\xc8\x36\xa9\x0a\x91\xb9\x22\xa3\x04\xba\xfd\x92\xd1\x2d\x6d\x97\xa0\x5b\xde\xbc\x10\xdd\xda\xa6\xba\xa3\xf5\xe8\x76\xa4\xd1\xed\xa8\xb0\x38\x56\xe1\xdd\xf4\x30\x01\x8e\xba\x3c\x0f\x1e\x50\x08\x4c\xae\x30\x0f\x55\x90\xe9\x48\xe3\xd2\xdd\xe3\x95\xa8\x74\xd7\xa0\xd2\x1d\x83\x4a\xef\x79\xa8\xf4\xe8\xcf\x0f\x77\xff\x75\xb4\xfb\x6f\x7b\xbb\xff\xfc\x23\x23\x63\xb3\x0f\x3c\x8e\xe9\xec\x91\xe1\x4e\x26\x86\x7c\x0f\x15\xf4\x93\x74\xbc\xf7\x55\x32\xad\x2f\x1b\x4d\x5f\xcb\xa0\xd0\xf5\x1f\x1e\xbf\x7a\x6d\x58\xd8\x3e\xd3\xff\x05\x2c\x44\x1f\xfe\x14\x70\x0f\xf5\xe1\x0f\xc2\x17\x95\xef\xd3\xf4\x8b\xc5\x8c\xbf\x09\xbf\x17\x70\x5d\xf5\x91\xfc\xa1\x04\x49\xb7\x77\x43\xdf\xfe\x82\x76\xaf\xfa\x78\x88\xa9\x31\x69\xd3\x4d\xb6\xef\x7e\x2e\x15\xf7\xc1\xc2\x5d\x62\x3c\x84\x41\xf6\xe4\xf4\xb4\x36\xd3\x19\xa8\xda\xb8\x15\xfb\xc9\x3a\xf3\x64\xd7\x9d\x05\x2b\x0f\x9d\x4c\x2a\x72\x46\x5c\xbc\x9f\xd7\x0b\xfc\x44\x65\x1c\x61\x09\x6d\xca\x32\x58\x36\xc3\xeb\x2c\xaa\xe9\x98\xa3\xd1\xaa\xad\x49\x0e\x91\x81\x45\xc5\xd7\xcd\xdc\x8a\x66\x05\x0d\x37\xa1\x6d\xc5\xa0\x46\x1a\x9c\x06\xe3\x6e\xda\xb8\x6c\x4e\xdc\x74\x40\x35\xc8\xed\x8c\x2a\x1c\x92\xf7\x29\x3d\x99\x6d\x5d\x31\x0f\xdd\x0b\x91\x01\x39\xaa\x78\xd1\xcc\xc4\x53\xde\x51\xf6\xbc\x5a\x54\xb3\x79\x36\xcc\xaf\x53\xd0\xbd\xbc\x77\x6f\xeb\xd1\xec\xf2\xe3\xbc\x7e\x7b\xbe\xe8\xbb\x9f\x5b\x07\x7b\xfb\xf7\xb7\xbe\x9b\x9d\xbe\xfb\xd3\x68\x3e\x2e\xb6\x9e\x3d\x7b\xd4\xdb\x1a\x4d\xc7\x20\xa9\x33\x03\x3e\x31\x50\x69\x10\xdc\xaf\xb6\xd5\xb8\x1e\x03\xd7\xdc\xfb\x83\x35\xb7\x69\x4a\x4a\x41\x53\xb9\x4b\x50\x27\x61\x2b\x24\x7b\x3a\xb2\xfd\xde\x9e\xf9\xff\x93\x6a\x31\xea\x1d\x98\xf3\xbb\xec\xe6\xc5\xaa\x06\x7b\xec\xcd\xbd\x29\xcd\x22\x18\x56\x59\xe9\x7e\x2e\x0a\x92\xf8\x50\x9d\xa7\xfb\xbf\x99\xe6\xbc\x4e\x2e\xa5\xb7\x60\x5d\xd0\xa6\x97\xed\x40\x05\xd2\x46\xd2\x14\x53\x76\x7d\xdd\xed\x7d\x71\x68\x16\xd2\x50\x3e\x55\x99\x65\x72\xce\xeb\xde\xa2\x6a\xd8\xd5\x28\xdf\xd1\xcd\xd1\x02\xe2\x90\x77\xab\xb2\x36\x90\x5b\x9d\xc6\x99\x47\xfb\xc3\xbc\x08\x53\x2d\x92\xaa\x8b\xe6\x08\x84\x4b\x85\x64\xf6\xaf\xeb\xe9\xe9\xe4\x0a\x10\x46\x3f\xab\x9b\x2d\x50\x94\xc6\x14\x70\x08\x5a\x4f\x51\xcf\x1a\x22\x69\x67\x45\xf5\x41\x97\x9b\x57\xe8\xff\x7c\x9c\x15\xf5\x14\xad\x9d\x30\x95\x7f\x67\x74\xee\xe6\x17\x64\x3b\x9b\x89\xa9\xec\x05\x28\x59\x6e\x5d\x5f\x8f\x16\xb4\x9d\xe6\x34\x66\xc5\xe8\xf4\xb4\xba\x5c\x54\xa6\x01\xb1\x7d\x92\x14\xd3\xe7\xc5\xe5\xe2\x63\x3f\x3b\x1d\x41\x6d\x93\x83\xdf\x59\x71\x32\x19\x4d\xdf\xa9\x64\xfc\x86\x60\x6b\x66\x50\xd3\x85\x6b\x88\xd3\x17\xb3\xd9\xb3\xd9\xf4\x2d\x8e\xd0\xfc\xde\x9a\x98\x8f\xad\xee\xc5\xe8\x43\x7d\x71\x75\xb1\x65\x12\xaf\xaf\x51\x6f\x7b\xb9\xdc\xb2\x21\x05\x9a\x1c\xeb\xbd\x3e\x9f\xcd\x17\xb6\x62\x03\x5f\xa6\x66\x3d\x5d\x53\xf3\xfd\xdc\x74\x41\x5e\x88\xa8\xb2\x59\x45\x4c\x63\x35\xa6\xad\xae\x69\xea\x6a\x32\x86\x41\xb6\x34\x61\x36\xe2\xe1\x8b\x2b\x80\x23\xbb\x2f\xa3\xad\x29\x26\x50\xe6\xf4\xe9\x74\x51\x81\xf3\x33\xb7\x6e\x60\xa4\x85\x69\x59\xf1\x16\xc1\x7e\xfe\xe6\x7c\x34\x75\x05\x38\x11\x82\x6b\x4d\x5d\xbf\x5e\xe1\x97\xf3\xc7\x7f\xbd\x1a\x4d\xde\xcc\x5a\x6a\xcd\x0c\x97\x00\x05\x40\x5d\x4b\xb5\x50\x85\x95\x52\x85\x26\xe6\x24\xf9\x03\x82\x94\x68\x34\x52\x2c\x31\x14\x57\xbe\x65\x1c\x33\xb3\xd2\xc1\xa4\x31\x29\xea\x64\x36\x56\x00\x67\x3e\x32\xf4\xd4\xa1\xc6\x6f\xbe\x32\x83\x49\x27\x6a\xf5\x11\xb6\xb7\x7e\x78\xf5\x2c\x33\x38\x6f\x1d\xda\x40\x65\x37\x41\x47\x8c\x85\xe9\xae\xe9\x5e\x73\xf4\x5f\x41\xc7\x0a\xa3\xf8\x5a\xc6\x86\x25\x30\x48\x86\x9a\x00\x5f\x41\xa4\x67\x97\xf3\xf9\x7e\x0b\xb9\x68\x8b\xeb\x8f\x85\x64\x65\x54\xeb\x39\xf8\x60\xb4\x38\xb0\x6e\x70\x84\xfd\x18\xb1\xef\x81\xfd\xbf\x34\x9a\xb1\xf9\xa2\x19\x7f\x96\x1b\xca\xec\xc2\x20\xd2\x45\x37\x67\x09\xe6\xb7\x1f\xbb\x19\x37\x94\x15\xdb\xfb\x39\x55\x21\xb8\x36\x64\x27\x5c\x2a\x74\xc9\xa8\x66\x7a\xff\x15\xec\xe8\x7a\x52\x2d\x2f\xea\xe6\x29\xa3\x0d\x1a\x27\x74\x62\xf0\xc1\xb8\x67\x56\xda\x35\x6f\xae\x97\xa2\x29\x15\xbe\xad\xe5\xdd\x77\x81\xbd\xd6\xf9\x60\x61\x50\xdb\xc5\xec\xa7\xca\xc6\x63\x30\x18\xce\xac\x4f\x4f\xf5\x0d\x16\x87\x1c\x5b\x90\x3a\x13\x85\xc5\x59\x7e\xe8\xee\x87\x0b\x73\xb1\x4d\xfa\x8b\x42\x86\xdf\xaf\x01\x89\x99\xfd\x5a\x7c\x4b\x46\xfc\x06\x36\xa0\x88\x41\xe3\xf5\x32\xef\xcf\x0c\x0e\xad\x4b\xbd\x71\xa8\xcd\x69\x06\x86\x91\xf4\xd1\x45\xc0\xc0\xbb\x0d\x34\x70\xa8\xd1\x4d\x66\xa7\xa3\xc9\x51\x33\xbc\xb9\x59\x59\x0c\x66\xb9\xa8\x4c\xb9\xa5\xb9\x22\xa8\x24\x4e\xc2\xc0\xd0\x87\x8f\x02\x58\x8b\xe2\x5a\xac\x5a\x13\x7b\xec\x7b\xf5\x36\x24\x74\x71\x9c\x2a\x4d\xe0\xe3\x80\x81\x57\xc1\x40\x02\x29\xe7\x77\x33\x5b\xcd\xa4\x81\x81\x2a\xa8\x9f\x50\x10\xf6\x60\xca\xe8\x33\x01\x54\x11\x0c\x98\x62\x3c\x07\x30\x2a\xc9\x30\xac\x21\xcf\x2b\xdc\x7e\x93\x31\x6a\x54\x9f\xcb\x7c\x10\x2f\x0b\x02\x75\x0a\xc0\xcd\xfc\xa1\x87\x7e\x64\x0d\x8c\x66\xc5\x5d\x3e\x37\x95\x3e\x99\xf1\x91\x95\xc6\xb8\xb4\x7d\x5c\x5b\xb8\xa2\xbf\xaf\x3e\x82\x2b\x54\x2a\xe0\x26\x53\x46\x27\xb5\xa0\x65\x49\x1d\x2e\xe8\x31\x83\xab\x5c\x37\x82\x14\xcc\xf5\x92\xbb\x3e\xb9\xaa\x27\xe3\x3f\xd8\xe6\x65\x44\x0a\x2a\xce\x66\xf3\xc7\xe6\x60\x75\x35\x1c\x2e\x7a\xa3\xf1\xd8\x1e\x07\x21\x3e\x8e\x86\x64\x40\x54\xc4\x20\x1b\x8d\x7a\xb0\xb6\x1b\x73\x0e\x6b\x7b\xd0\x61\x76\xf6\xc3\x4c\xa8\x29\xd1\x92\xe1\x74\x64\x0e\x28\x2f\x76\x9e\xd3\x62\xf1\x0c\x00\xaf\x29\xaa\xc8\x56\x2e\x80\x3a\xe6\x92\xcb\x22\x98\x7e\x04\xa3\xf8\x16\xb0\x20\x22\xc5\x5f\xc2\x3c\x4c\x00\x12\xc8\x67\x3b\x09\x21\x1c\xba\x75\x7e\x75\x35\xa9\x6c\x67\x66\x71\xfa\x2e\x8b\xca\xea\x4c\x1e\x9c\x57\xa7\x1f\xad\x2c\x0e\xb0\x49\x0d\x10\x08\xb5\xd4\x18\x83\x17\xc3\xc6\xc0\x47\xb8\x17\x0a\x9b\xd5\xa6\x40\x88\xbf\x60\x8b\x2d\x0a\x5b\x88\x17\xd4\x7e\xa2\x33\xc0\x25\xb9\xcc\x24\x98\xa2\x37\x17\x41\x9a\x2f\x66\x53\x22\xfd\xf9\xe6\xc9\x69\xf5\x34\xb4\x2d\x08\xc6\x9a\xbc\xdf\x30\x93\x60\x3a\x58\x8d\x64\x06\x2d\xd8\x29\x30\x30\x61\xdf\x35\x35\x63\x7e\x86\x9e\xcc\x22\x1c\x04\xb9\xc5\xa8\x9e\x36\x5d\x73\x27\x1d\x2a\xfc\xc3\x4a\x89\x75\xde\xaf\x97\x1b\xe0\x3c\xb5\xd4\x9f\x0b\xdf\x6d\xc0\x64\x5c\x1a\x92\xb8\x9a\xaf\x60\x5f\x90\xcd\xad\xcd\x55\x51\x9b\x7d\xbd\xf7\xe7\xee\xee\xcd\x8f\x3b\xf9\x61\xf7\xb0\xff\xe3\x78\xe7\xe6\xc7\x31\x8a\xbf\xcd\x57\x61\x7e\xde\x5f\xe6\x3b\x39\xe4\xf4\x7e\x1c\x7f\x91\x1f\xde\xb9\xc7\xf4\xf2\xbd\x3f\xff\xd8\x7c\x71\xe7\xde\x06\xa3\x89\x50\x5a\x34\x9e\xbc\x58\x7f\xa9\x7d\x62\x5d\xba\xe9\x5a\x2b\xdf\x62\xf0\xc8\x6e\xa6\x29\xb0\xe4\x35\xa1\xd0\x52\xd6\x4a\x75\xb5\xde\x07\x31\xf2\x17\x9b\xae\x31\xfa\x08\x18\x4d\x0c\x6a\xcf\xea\xb3\xac\xef\xee\x02\x3e\x9e\x3d\x93\x0a\x46\x00\x40\xde\x26\x72\x29\x23\x63\xcc\xd8\x23\x32\xc4\x3b\x76\xec\xdb\x81\x90\x28\x1d\x3c\xef\x38\x99\xaa\xaa\x3c\x38\x3e\xfe\x2e\x3d\x8b\xf8\xea\x6c\x99\x6e\xfa\xea\x69\x19\x5e\xcb\x90\x08\xcf\x6b\xc2\x00\x90\x5b\x7a\x64\x6f\x66\xcf\x11\xc1\xad\x20\x54\xb0\x63\x78\x37\xb0\x77\x6e\xeb\xe8\x8f\xbc\x15\x1b\xc2\x2d\xbc\x69\xd9\x78\x9f\x81\xdc\xdc\xb0\x32\x2d\x0b\x40\x62\xd3\x5d\xb9\xbc\xfe\xb2\x80\x82\x48\x3f\x54\xf0\xcd\x5e\x00\xab\x7e\x71\x39\xa9\x40\x41\xa5\x1a\x6f\x67\xcb\x62\x15\x63\xc1\xf4\x69\xb4\x5c\x82\x40\x0f\x05\xaf\xf7\x69\x01\x0d\x7d\xcb\xec\x42\x40\xa3\x21\x13\xae\x09\x8b\xfc\x97\x41\xf1\x04\x48\x11\xa2\x3f\xac\xfb\x29\xec\xde\x8a\xdb\x75\xe7\x3c\xe6\xd3\x49\x35\xb2\xe4\xe0\xe9\x68\xfa\x07\x3b\x24\xbe\x6f\x51\x7f\x56\xf0\x14\xf7\x43\x6a\xdf\x6e\xfd\x2c\x93\x72\xb8\xbd\xd7\x37\x77\x4e\xb0\x63\xb6\x51\x3d\x96\xfa\xac\x2b\x9a\x49\xdb\x12\x0c\x32\xc2\x12\x2c\x44\xda\xde\xb3\x91\x27\x74\xee\x11\xa0\x90\x21\x35\x65\xa5\xa5\x65\x6b\x63\x5c\x5c\x2f\x42\x9c\xdd\x75\x07\xb7\xf0\x00\x16\x45\x7a\x59\x83\xd2\xc2\x4d\x3b\x69\x1b\x15\x36\x7f\xd4\x52\x77\x78\xb8\x41\x99\x2e\x13\x65\x04\x18\x08\xac\x2d\x23\x21\x0d\x07\x50\xa7\x8e\x4a\x30\x36\xf5\x16\x79\x93\x85\x0c\xea\xb5\xe5\xff\xdc\xa5\xf4\xbb\xb9\xe5\x5a\x72\xe5\xe1\xe1\xf6\x26\xa5\xcc\x72\x6e\xaf\x5b\x4f\x19\xce\x32\x16\x33\xac\x27\x00\x7a\x0f\xcd\x0d\x30\x3d\xad\x12\xac\x56\x70\x49\xaf\xbe\x97\x7d\xf6\x8d\x6f\x45\x83\xdf\xb7\xf7\xf8\xb8\x36\xea\xb6\xcc\x0a\xe0\x9f\x7c\xbe\x4b\x2e\x52\x16\xe5\x26\x6a\x49\x56\x96\xa0\x4d\x44\x00\xdc\x23\xf9\x6f\x37\x63\x39\x63\xe6\x8d\x07\x48\xe9\x10\x4f\x0b\xe5\xfc\x18\x31\x66\x6a\xad\x2d\x74\xe4\x37\x37\x1a\x43\x29\x2a\x3f\x35\x83\x84\xd4\x67\x93\xed\x40\xb9\xea\xe8\x7f\xc2\x1d\x71\x12\xe3\x75\x5b\xe2\xf5\x4e\xd5\x0e\x57\x6e\xcc\x76\x30\x62\xaa\xc3\x03\xde\x70\xb7\xfa\xd9\x7e\x26\xed\xb4\xf5\xd3\xe9\xec\xaf\x2f\xb2\x6e\xa4\x76\xfd\x7f\x49\x30\x7a\xa4\x64\xfb\x3f\x17\x90\x66\xf3\xfa\x2d\xf8\x4a\xb0\x6f\x80\x31\x29\xeb\xe4\x0c\xde\xd7\x4e\xa6\xc7\xc1\x1b\xef\xc3\x65\x2b\xed\x1a\x2d\x4b\x30\x8a\x24\x5c\x77\x53\x80\x6d\x5f\x32\xfa\xc9\x86\x96\x5a\xe0\xe1\x6a\xf1\xf2\xf7\x37\x80\xec\xd3\x78\x92\x36\x34\x48\x2b\x7c\x07\x10\x12\x4d\x6f\x43\x40\xfb\x25\x81\xe8\xb1\xbc\x26\xfd\x22\xa8\x28\x10\xf6\xb0\x4f\xd8\xd4\x56\x18\x82\x8d\x19\x32\x4e\xfb\xa5\x51\x95\x7d\x46\x5b\x8f\xab\x90\x82\x2e\x9a\xc1\x6d\xae\x91\xc3\xf4\xe0\xd1\x49\xed\xb7\x20\x06\xb8\x25\xe6\xd2\xa9\x47\xb0\x58\xc3\xc3\x5d\x40\x54\x34\xa6\x3b\xbd\x7a\xaa\x42\xfe\xb5\x8d\xaa\x88\x5b\xb9\x25\x8c\x79\xe3\xe8\xcd\x47\x53\xd8\x88\xee\xa2\x8c\x93\x8f\xf6\x86\x45\x93\x4a\xdf\x1f\x16\x2b\x07\xf9\xa0\x5c\xac\x41\xb0\xdf\x94\xcd\xed\x46\xfd\x69\x47\xc3\x70\xe7\xe6\xbc\xff\x2d\xce\x05\x3d\x40\xb7\x1c\x0c\x90\x74\xfd\x6d\x8f\x86\x7d\x3d\xfe\x9c\x74\xd5\x2f\x7b\x20\x70\x91\x86\x9d\xce\x76\x2a\x59\x3d\xdf\xb7\x0f\xef\xd3\x4f\x01\x8b\x22\x79\xfc\x41\xea\x26\x7d\xff\x0d\xd0\xfc\xd3\xe9\xff\xa2\x68\xde\x6a\x55\xfc\x03\xa3\xf9\xf2\x1f\x14\xcd\xaf\x1e\xe5\x37\x0b\x66\xb5\x5a\x2f\x82\xe6\x96\xa3\xfe\xb4\xa3\xc1\xf1\xb1\x3e\xfd\x5c\x08\xdc\x9c\xb1\x1b\x2a\x77\x46\x32\xd6\x13\xf1\x85\x06\x3c\xec\xf4\x01\xa9\x9b\x5b\x1d\x8f\x54\x2b\x36\x8f\x18\xbe\x45\xb9\x37\x58\x7c\x43\x2b\x4d\x19\x40\x7b\x77\x73\xeb\xc7\x77\x67\x27\xe7\x1d\xf4\xf2\x8f\x16\x43\xee\x3b\x60\xbd\x8e\x9a\xa1\x8f\xeb\x4c\x42\x80\x01\x48\xaf\xcd\xbb\xc6\x23\x39\xb9\xab\x9c\x14\x4b\x0f\xbc\xe9\x2e\x66\xef\xaa\x69\xfd\x6f\x12\x81\x32\x4a\x56\x86\xe9\x4a\x77\x03\x23\x15\x2e\x50\x0b\x77\x59\x3c\xfa\xdd\xe3\x47\xbf\x7f\xdd\x87\x15\x36\x1b\x92\x15\xac\x3d\xd4\xcf\x1e\xc0\x07\x29\x21\xf5\xb3\x6f\xca\x6c\x59\x3c\x7f\xfc\xfa\xf5\xc3\xdf\x3e\xe6\xc2\x4a\x89\x48\xd5\x12\xa5\x24\x55\x97\xf5\x9b\x4c\x03\x06\x98\xff\x80\x8a\x91\x6d\x1a\x25\x32\xf9\xe8\x3d\x94\x56\x2e\xc9\x0a\xbb\x3a\xf9\xcd\xcd\x5e\x3f\x48\x5b\x16\x6a\xf7\x12\x72\x57\x82\xef\x77\xb0\xb5\x58\x53\xe6\x08\x88\xf0\xbc\x3a\x7d\xb7\x61\x35\x5a\x45\x53\x89\x10\xec\x73\xea\xf3\x49\xea\xd9\xb5\xa8\x4b\xd2\xf3\xb1\x4f\x29\xb8\x26\xf0\x28\x17\xbc\xc8\x0a\x52\xae\x0d\x30\x84\xa0\x36\x48\x2c\x9b\x85\xf0\x23\x6f\x2a\x66\x15\x92\xea\x1b\xe1\xa5\x10\x56\x82\x50\xc9\x3c\x1f\xc4\xd9\x3c\xa9\x36\xe1\xb5\x7d\x2c\x6a\x68\x9b\xc2\x95\x00\x91\x74\x16\xa0\x50\x06\x9b\xb6\x0a\x9c\x9d\x39\x99\x7f\xcb\xe5\x54\xd4\x03\xab\xe8\xb8\xd9\x0d\x95\xaf\xbf\xa1\xba\xc1\xb4\x18\x2f\x07\x63\x5f\x83\x8c\xe3\xf5\xeb\xe6\xf9\x00\x03\x36\x60\x98\x05\xbb\xd9\x0c\x41\x8c\x72\xe8\x0b\xc2\x77\x7b\xfb\x5e\xe3\x5b\x10\x6a\x67\x5a\x8f\x22\x19\x6f\x42\xb6\x93\xc6\x01\x6b\x16\x82\xf1\xdd\x4e\x66\x1a\x68\xf0\xaf\x0f\x96\x35\x3c\x20\x75\xd7\xc8\xff\xa2\xad\x33\xb5\x3e\xed\xda\x79\xa1\x1e\x92\x7f\xfe\xe5\x63\xe0\x22\xbe\x7e\xf4\x32\xa1\xf0\xe4\xd0\x4b\xb9\x5e\xf6\x57\x10\x71\x82\xc2\xbb\xb5\x07\x38\x45\xd0\x44\xb8\x6d\xa6\x97\xbc\xe8\xae\xbe\xb3\x6e\x6e\x56\xe7\xf7\xf4\x23\x7b\x1e\xc2\xa7\xd5\x03\x6e\x69\x3b\x18\x93\xd2\x1b\xf6\xde\xee\x37\xa0\x1d\x9d\xea\x67\x24\xf1\x49\xdf\x8c\xbd\xd9\x74\xf2\x91\xd5\x41\x3b\x9d\x35\x93\xf4\xca\xa6\xa7\xa8\xcb\x24\x60\x24\x39\x60\x51\x47\x0d\xe9\xdd\x42\x5e\xc6\x23\x5c\x2e\x4a\x42\x47\x19\xea\x5f\x66\xa8\x72\x39\x14\xc2\xa1\xd1\x74\x42\x5d\x36\x88\x2f\x9b\x17\xa3\x17\xdd\x60\xe7\xf3\xcd\xae\xfb\x3a\x7d\xdd\xb7\x90\x1a\x80\x07\x56\xaf\x23\xa1\x8a\xa4\x2c\xa4\x2e\x5a\x66\x1c\xc1\x14\x5e\x53\x61\xcf\x79\x1a\x8e\x00\xc8\xd7\xef\x45\xed\x2f\x7f\x0b\xbc\x60\xbf\x9d\x8e\x59\xb0\x6a\x51\x6d\xc5\x59\xb9\x23\x5b\xac\x66\x2f\x98\x67\xf8\x6a\xc5\x0f\xda\x34\x87\x81\xb2\x71\xca\xbe\xdf\x24\x55\x7a\x91\xe0\x69\xbd\x6d\x8a\xea\x17\xb8\x6f\x6e\x41\xd3\x07\xb8\x60\x20\x01\x80\xda\x35\x77\xbc\x0a\x9b\x70\xdf\xb9\xbc\xee\x26\x0e\x31\x8a\xf2\x6f\x6e\xee\xfd\xf9\x68\xe7\xc7\xdd\xe1\xe1\x8f\xe3\x9d\x3b\xf7\x3e\xad\xcd\x31\xc4\x11\x1c\xcd\x9b\xca\xb4\xbc\x86\x7b\xdb\xdf\xcb\xff\xe9\xc0\xac\xdf\x5e\x7e\xab\x85\x32\x5d\xb8\xf5\xf1\x8a\xc0\x81\xbe\x5d\xef\xdb\xb7\xee\x1d\xfa\x50\xd7\xfd\x22\xbc\xee\x2b\xef\xba\x6f\x65\x2d\x16\x70\x98\xb7\x09\xbf\xe0\x80\x9f\x4c\x66\xa3\x98\xfe\x35\x07\xb8\x6e\x9e\xc0\x5d\x58\x45\x79\x87\x4d\xd8\x64\xdf\xef\xab\x9d\xac\x46\xa5\xc9\x35\x65\xf2\xa2\x5e\x49\x96\xb4\x2d\x2c\x52\x1c\x15\x51\x1f\xa6\x8d\x75\x84\x46\x4c\xe9\x0e\x85\x9c\xba\x1d\x54\x38\x60\xfe\x94\xea\xde\xe9\xfb\x24\x3a\xe7\x7b\x7c\xa4\xfd\x65\x9f\x3a\xbb\x01\x51\xb2\x56\xa6\x94\x9c\xed\x26\x37\xac\x58\xb2\x78\x57\xeb\xcf\x13\x8c\xfe\x0d\xa4\x7f\x3f\xcc\x27\xb7\x58\xfe\xb9\x01\x96\x0f\x97\x7d\xf4\xaa\x4e\xbf\x8f\x6b\xfe\x5c\xbd\x33\x09\x25\xeb\x50\x64\x97\xff\x5c\x79\xde\xd5\x7c\x12\x51\x36\x2b\xfa\x45\xcb\xba\xd3\xd9\xa4\x49\xf7\xec\xb2\x8b\xa3\xec\x7c\xb1\x00\x8f\x6b\xf0\x4f\x63\xe8\x9f\x01\x29\x4e\x65\xdd\x83\xaf\x8e\xf6\x76\xbf\x1a\xde\x1c\x98\x7f\xbe\x1c\x9a\x3f\xff\x3c\xbc\x31\x7f\xf7\xe9\x27\x7f\xef\xbb\x9f\xf0\x37\xcf\x0c\xbd\x95\x75\x0d\x4e\xd8\xc9\xba\x3f\xfe\xd8\xc3\x1f\x39\xa8\x84\x66\x06\x7f\x64\xdd\xa3\xd1\xee\xbf\x3d\xdc\xfd\x57\x30\x51\x35\x17\xcb\x8e\x29\x91\xef\x48\xe2\xf0\xfa\xa0\x80\x72\x55\x99\xfd\x13\x34\x36\xda\x3d\x7b\xb8\xfb\x84\xec\xf5\x67\x65\x66\x6b\xde\x31\x55\x8f\x7b\x3b\xdb\x5f\xdc\x35\x6b\x3f\xe8\xff\xd7\x8e\xb9\xed\xa7\xd0\x76\xb6\x33\xdb\xc9\x86\x37\x88\x6e\xf2\x2f\xb2\x62\x5e\x66\x7f\xce\x06\xf1\xe2\x8c\x67\x10\xbb\xe9\xa5\xc1\x10\x59\x4e\xfc\xc1\x7c\xa7\xac\xfb\x5d\xf3\x17\x87\xbe\x6a\x35\x9d\x93\x00\xd3\x47\xff\xc7\x1f\xef\x99\xff\x65\x45\x5c\x05\xef\xfd\x1f\x0c\x21\xf8\xfd\x08\x54\x27\xe5\xc0\x62\x17\x6a\x15\x82\xb9\x74\x4a\x19\xfe\xce\x7f\xcd\x0f\xb3\xbc\x30\xe5\x5b\xda\x7e\x7a\x29\x83\x87\x31\xd7\x3b\x66\x48\xc0\xde\xe5\x59\x9f\xbf\xf3\xd6\x61\x7d\x0f\xe2\x1b\x7f\x48\x7d\xdc\xbd\x1d\xe9\x13\xf6\xce\x4c\x8b\x17\x64\xba\x43\xdf\xf0\x23\xff\xc2\x94\x91\x22\x87\xbc\xe6\xf7\x0e\xed\xaa\xab\xdc\xff\xd2\x9e\x6b\xfb\xb9\xc3\x83\xa4\xf3\xa6\xad\x12\xe7\xb9\xce\x31\x27\x51\x67\x36\x6d\x62\xec\xd5\xef\xca\x09\x9a\x2e\xcf\x5b\x16\x09\x69\xb6\x6c\x13\xa5\x86\xf4\x81\xa7\x5b\xe7\x5a\x68\x92\xf4\x06\xea\xd6\xed\x44\x99\xd0\xca\x45\x69\x0e\x8f\xf9\xa7\x0c\x40\x35\x2b\x6d\xae\xbe\x7c\x5b\x1a\x62\xe5\xab\xc1\xbd\x7b\x5b\xcf\x46\x0d\xc4\xb6\xb9\xb8\x30\xf8\x70\x6b\xef\xe4\xec\xec\xab\x93\xd3\xad\xee\xc1\xde\xfe\x97\xbb\x7b\x5f\xee\x1e\x7c\xbd\x05\xfe\x0b\xbe\xee\xef\xfd\x7a\x6b\x77\xef\xab\xbd\xbd\xfc\x57\xbf\xfa\x95\x6f\x6c\xfb\xef\xff\xbb\x29\x7c\xb0\x8b\x96\xb6\x8f\xe7\xf5\xbb\xad\x6f\xe7\x1f\xa7\xc5\xd6\x9f\x46\x97\x97\x5b\x4f\xa7\xa7\xbd\x62\x8d\xc1\xad\x75\xeb\x56\x75\xab\xc2\x09\x17\xe1\xbd\xa4\xd3\xa9\x7a\x1f\x50\xed\xf6\x03\xfc\x24\xbb\x90\x8f\xce\x11\xdc\xc2\x12\xf8\xd3\x62\x2e\xaf\x1d\x2a\x9e\xc8\x4f\x75\xf5\xbe\x77\x75\x09\x6c\xd9\x23\xb0\xff\xf9\xe0\xe2\xab\x3d\x26\x25\xd7\xd0\x84\xc5\x5c\x04\x65\x4d\x86\x06\x59\xc5\x45\x72\x83\x8b\x08\xea\xb8\x6e\xc1\xb2\xdb\x63\x9b\x30\xc5\xc1\x76\xab\xae\xc9\x33\x3b\xc2\x20\x39\xbf\x9a\xf6\x9a\xd3\xf3\x8a\xdc\x71\x11\xde\xcf\x34\xcf\x48\x91\x45\xfe\x00\xa3\x44\x17\x76\x6f\xe6\xa3\x69\x63\x88\xce\x8b\xc2\xcc\xa8\xf7\xc1\xfc\x27\x4f\x20\xb6\xab\x72\x6a\x2d\x5f\xc8\xb7\x2a\x5f\x87\xe0\x9d\x8d\x7e\x99\x6b\x81\xaf\x9f\x67\x75\xb3\x78\xba\xa8\x2e\xa0\x83\x56\x0b\xa7\x8d\x68\x14\x70\x63\x3a\xae\xc7\x4f\xa7\x06\xfd\x2d\xdc\xd2\xc1\x99\x05\xdb\x34\xd4\xa9\xef\x1f\x91\xc7\xb1\x5d\x30\xee\xdd\x35\xf4\xec\xc5\x2e\xac\x7f\x36\x2c\xec\xe0\xe9\xea\xa5\x0d\xf9\x5e\xd2\x6c\xd7\x15\xf7\x6d\xa7\x5a\x05\x73\xe7\x8e\xd1\xce\x2c\x48\xeb\x2f\x22\x6a\x42\xc3\x55\x7e\x5d\xf5\xde\xd7\x93\x89\x37\x01\x00\xa9\x28\xb1\x9b\x6b\xf0\xc2\x8a\xe1\xc4\xa1\x5e\x98\xa6\xab\xd5\x0c\x95\x75\x31\x2b\x26\xc5\xf9\xc0\x50\xd9\x11\x44\xd5\x06\x5a\x26\x36\xfd\x94\x80\x33\xe3\xe5\xe6\x90\x3f\xaf\xaa\xd3\xab\x79\x53\xff\x54\x4d\x3e\x76\x33\x18\xe8\x23\x50\x32\x7e\x45\x60\xc4\x45\x49\xa2\xf1\xf0\x6c\x51\x71\xc6\x03\x95\xfc\x6d\x65\x60\xa9\xa2\x74\xa1\x14\x4f\x5d\x1b\xd5\xf8\x11\x84\xaa\x31\x20\x68\xd5\x9b\x30\x76\x0d\x80\x8b\x34\x51\xb6\x34\x97\x17\x93\xc3\xee\x8c\xe1\x89\x92\xc8\x81\x9b\x69\x6a\x56\x2a\x01\xe3\x9b\x19\xa7\xcf\xf2\x82\x5b\x8b\x7b\x79\xb0\x57\x9c\x33\xce\x24\x0b\x19\x3d\xf5\x0a\x4c\x42\x8b\xda\xe4\x4c\xab\xf9\xef\xde\x3c\x7f\x56\xce\xe8\x37\x3f\x30\x78\x5f\x5d\xb0\x13\x32\x5d\xcd\x83\x15\x2f\x6a\xbb\xb6\xe6\x88\x21\xe4\xbc\x99\xc1\x9b\xea\x77\x2f\x9f\x9b\xb5\x6c\xef\x7d\x01\xbd\xe7\x7d\xdd\x7d\xc6\xe1\xc8\xa7\xee\xe8\x15\x22\xd4\x82\xc3\xa7\xec\x4b\x2b\xb9\xc4\x8e\x86\x86\x58\xaa\x7a\x38\x73\x5a\x90\xc6\x37\xf4\x21\xd3\xcb\xd9\xe4\x23\x44\x6a\xb0\xb6\x10\xa4\x36\x5e\x17\x61\x83\x86\xf0\x0a\xf5\x7e\xab\x41\x7d\xb8\xa0\x58\x98\x55\xde\xaf\x7a\x23\x7a\x5d\x05\x09\xdf\x42\xb9\x70\x89\x31\x83\xd0\xd3\x80\x85\x98\x70\x6e\x41\x1f\xc5\xb5\x87\x4b\xfb\xf1\x34\x23\x80\xde\x0c\x29\x7b\xa8\x51\xa3\x22\x73\x9b\x02\x8f\x33\x0f\x9a\x2d\xaa\xbc\xa8\xe0\x18\xd6\x0d\x34\x31\x9f\x4d\x26\x00\xe1\xba\x18\xa5\x41\x49\x67\xfe\x37\xaf\x42\x7f\x0b\xc2\x73\x68\x4c\xfd\xd2\xb0\x78\x01\xb6\x86\x57\x95\x63\xee\xfc\xbb\xda\x1c\x1b\x78\x17\x66\xb9\xeb\xcc\x99\x09\xbb\xf1\xe9\x21\xc4\xc6\x5a\xe8\x18\x4b\x01\xcf\xc2\x01\xcf\x40\x4e\xd4\x55\x03\x0e\x46\x3e\x75\x9f\x56\xe2\xf4\x81\xee\x9f\x88\x05\xb2\xf9\x15\x83\xa8\x81\x63\x2f\xf4\x8a\x33\x32\x86\xa2\xbc\x71\x65\x85\x26\x1d\x75\x53\x83\x33\x14\xdf\xa8\xc3\xd6\xed\x89\xe9\x6d\x11\xbd\x42\x6d\x6f\x3b\x22\x25\x2c\x0d\x80\xdb\x02\x6e\x6c\xb3\x6d\x2e\x88\x6e\x3c\xa6\xc2\x99\xfa\x0e\xa6\x06\x7e\x00\xd3\xf2\x39\x17\xbe\x0a\x83\xac\xf0\x89\xbf\x9c\x57\x70\x0b\x3f\x99\xcd\x61\xcd\xe1\xed\xa4\x58\xac\x6c\x15\x30\x89\x69\xb3\x0e\x60\x6f\x91\x80\xbd\x1a\x60\x2f\xe8\x80\x57\xe9\xf7\x6b\xae\x2b\x08\x2f\x8e\x21\x72\x85\x64\xac\xac\x9f\xca\x05\xe2\x11\x76\x42\xd5\x5b\xcc\x7e\xb8\x84\x00\xc7\x86\xed\xed\xe6\x3b\x95\x0d\x11\x5e\x40\xa0\xc6\xf9\x37\xd6\x99\xe5\x1c\xc2\xc7\x90\xc1\xce\xf4\x68\x3e\xdc\xc1\x70\x6c\x8d\xd7\x85\x0d\xfc\x8e\x2e\xe7\xa9\xab\xf1\xec\x14\x8f\x2d\xc3\x86\xdc\x76\x86\x18\xf8\x09\x6e\x31\x43\x8e\x35\x8b\x8f\x93\xca\x50\x48\x47\xd9\x1f\xab\x93\x77\x35\x00\xff\xf3\xd9\xbf\x99\xbf\x2f\xcd\x7f\x17\xe0\xee\x7b\x6e\xf6\x29\x5b\x08\x69\x93\x81\xfc\xde\x24\x98\x41\x37\x97\x10\x88\xe6\x27\x43\x90\x9a\x3b\x03\x3a\x85\x10\x84\xc5\x44\x7e\x36\x0a\x59\x01\x6c\xff\xae\x9a\x98\x4a\xe5\xb5\x6d\x0a\xb4\x4f\xfb\xf3\xc2\x27\x9d\x12\x6f\x9d\x33\xe7\x35\xca\x90\x14\x60\xf2\x5f\xd1\xb0\xcd\x42\x94\x34\xb2\x09\x00\x3e\xb2\xb6\x97\x1f\x8a\x2d\xe4\xb6\x2e\x3f\xe4\x99\xf2\x09\xe5\xd7\x34\xeb\x7e\x59\x62\x21\x73\x34\x38\x69\x52\x9d\x19\x6e\x05\xd3\xd0\x99\x03\x8e\xeb\xfe\x77\xab\x46\x36\xd9\x6c\x64\xf7\xc7\xd1\xd8\x8a\xad\x3d\x18\xde\x7f\xce\xd4\x42\x5f\x15\x0a\x76\x05\xbb\x4d\x34\xca\xc6\xc3\x88\x08\x7b\x34\x1e\xe3\x4d\xe7\xbd\xa8\x84\x24\x17\x93\x0f\xe4\x84\x81\x82\xeb\x1b\x7c\xdf\x1b\x1b\x86\x67\x3e\xfb\x18\x92\x5a\x0e\x83\xcf\x00\x73\x53\xb7\xc7\xe0\x40\xf7\x91\xa5\x33\xbc\x88\xa1\x1e\x9b\x31\x31\x5f\x32\xc8\xa7\x06\xe5\x7f\xc8\xf2\x5d\x33\xf6\x30\xcd\x55\x9f\x3b\x41\x15\x60\xe2\xe9\x6c\x51\x9f\x7d\x7c\x7e\xb5\x40\x31\x0f\x80\x6a\x65\xe8\x84\xa6\xd3\x09\x86\xe5\xaa\x14\x59\x4b\x1d\xdd\x4b\x13\x2d\x24\xda\xc8\x41\x7d\x5e\x4a\x1d\x6e\xd3\x35\x0e\x6b\x4c\x2b\xf7\x64\x3e\xbb\xf8\x1e\xf9\x0b\xbd\x60\xb3\x75\xed\xc6\x06\x45\x15\x3a\x07\x32\xeb\x64\x18\x1b\xd8\x07\x0e\x2c\x88\xf8\xc0\xae\x30\xec\xd0\x79\xd4\x22\xdc\x1a\x34\xb6\x47\x86\x72\xc4\xf5\x1a\x57\x0b\xda\x50\x21\x48\x39\x5e\xc2\xf8\xb1\xd4\x2a\xe5\xaa\xb9\x9a\x36\xe7\xf5\xd9\xc2\x82\x00\x51\x5d\x13\x75\x71\x9e\x2b\xaa\xeb\xb4\x7c\x3e\x5a\x9c\xc3\x13\x7f\x31\xe2\x9f\xa3\x0f\xc5\x15\xfd\x3c\x9b\xcc\x66\xf3\x62\x4c\x1f\xa7\x55\x3d\x29\x2e\xca\x55\x74\x57\x71\xc6\xd9\x12\x71\x9e\x27\x81\xf6\xe0\xd5\x1c\x67\x82\x22\xa4\x6e\x0e\xb2\xa7\xe7\xa3\xe9\x08\xc5\xd2\x67\x78\x9f\x98\xab\xb9\xd4\x87\x0b\x8e\xd6\x9d\x6e\xd6\x53\xec\xd1\xa9\x34\x95\xe5\x52\xc5\xd0\x6a\x05\x04\x54\x2d\x7c\xac\xb7\x82\x71\xe3\x3b\xff\x11\xb0\x60\xfd\x76\xc2\xa1\xb0\x1b\xa2\x4b\x62\x4e\x1b\xf7\xc6\x8c\x9b\xb5\x45\x60\x87\x25\x50\x0a\x11\x82\xc9\x73\xd3\xee\x9f\x15\xcd\x29\xdc\x79\x6f\x0c\x3a\xde\x2b\x4e\x66\x8b\x05\x80\xde\x18\x5d\x9c\xec\x41\xb0\xd4\x66\xf1\x18\xeb\xe3\x61\x32\x49\x97\x94\xf9\x08\x55\x6a\xf6\xd7\xc8\x62\x99\x03\x4d\x32\xa0\x54\xd0\x1c\x75\x98\xaf\xdd\x9e\x3f\xd6\xe3\xc5\xb9\x35\x96\x9e\x5c\x5d\x4c\xb1\x27\x4b\xb9\x59\x76\xc7\x47\x12\x36\xd9\x8c\xee\x11\x9d\x7e\x1f\x57\x01\x15\xd8\x92\xc7\x8b\x7a\x82\x2c\x92\xad\xa0\xe6\x54\x11\x29\xcf\x94\xa8\x43\x8b\x45\x48\x92\x22\xcb\x89\x64\xfc\xdd\x6f\xcc\x2d\xbb\x85\x5b\x54\x66\x49\xd8\x79\x70\x37\xf7\xac\x54\x10\x4d\x62\xdd\xec\x9b\x7b\xa6\xf2\x03\xb0\xf0\x8e\x58\xdc\xc0\x7c\x54\xd1\x60\xe7\x15\x88\x74\x32\x73\xd0\x55\xe2\x7c\x66\x6e\x5e\x4a\xcf\x5d\x88\x65\x8e\xbc\xf7\x70\x4b\xe0\x74\x4b\xfc\x1c\xf1\x79\xde\x02\xb5\xe1\xad\xd1\x16\xb5\x89\x32\xa0\xd1\x96\x6d\xab\x97\xe5\x03\x6f\x9b\x97\x05\x02\x56\x44\x44\xf2\x90\x0a\xc3\x00\x8f\x41\x6b\x2d\x24\xa3\xe1\xea\x2a\xa6\x03\x87\xcf\x64\x0e\x86\xaa\x96\x24\xaa\x0a\x62\x1c\x7b\x2b\x81\x04\x17\xc4\xd7\x19\xf0\x11\xdd\x7a\xa7\xe4\x7a\x7d\x14\x6b\x5e\x7e\x18\x40\x03\x9c\x83\xd5\xfb\x7c\x83\x9a\x0c\x4b\x89\x41\x10\xf1\xad\x69\x3e\x0d\x9d\x6c\xcc\x73\xaa\x39\x07\x8f\x8e\x3b\x48\x6e\x65\x03\x67\x6f\x5c\x83\x0f\x22\x3e\x30\x91\x0d\xb6\x5e\x5c\x5c\x51\x83\xca\xe7\xf3\x7a\x5c\x81\x5b\x2a\xd3\x3c\x10\x12\xe8\xfc\xeb\xa7\xba\x01\x67\x55\xd4\x10\x2e\x6f\x65\xd8\x4a\xa4\xa7\x26\x1f\xb7\xe0\x1d\xfe\xed\x68\x81\xb5\x8e\xa9\x0c\x83\xed\x9b\x19\x00\xc5\xb1\x1d\x00\xd3\xa3\x45\x58\x2a\xe6\xee\x60\xa1\x8b\x79\xd1\x14\x33\x10\x6a\x9c\x19\xf6\x7f\xd4\xdd\xb3\x8c\x81\x45\x01\x86\x72\x9b\x51\x8d\x2b\x2c\x20\x6b\xbe\x98\x2d\x46\x13\x81\xa4\xdd\x70\xbb\xf2\xc1\xac\x3c\xed\xce\x8a\x2b\x10\x13\x44\xc4\x83\x21\x19\x27\xdd\xf3\xc2\xfa\x84\x2a\x58\x2c\x0c\xf1\x12\xe7\x0b\xc1\x2c\xdd\x46\xae\x9b\x88\xdf\x8c\xd6\xa0\xb8\x76\x38\x6b\x26\x7e\x99\xfa\xe7\x85\xd7\x60\x7f\x51\x54\x0a\x71\x9d\x76\x47\xdd\x66\x77\xbf\xd8\x33\xfd\xd3\x9b\xc2\xf1\xf4\xea\xc2\x21\x10\x43\xe3\xc3\xbf\xe0\xe9\xbe\x9b\xeb\x40\xb8\x81\x0f\x2e\xe9\xb8\x9c\x19\xda\xd8\x35\x99\x9c\x12\x0a\x1f\xd7\x76\x66\x40\xf9\xb4\x3b\x2f\xa6\xd0\x0a\x33\x39\x88\x76\x5f\xeb\xb6\x0c\xd3\xe2\x65\x2a\x9c\x7c\xd8\xd5\x82\x27\x43\x03\xe0\x10\xff\x44\xe8\x72\x8c\xf7\x38\xbb\x27\xe9\x3b\xd9\x66\x37\x62\xd7\xb1\xe9\x39\xb0\x39\x91\x64\x29\x1a\x4d\xb9\x28\x92\x43\x29\xeb\x62\xdd\x58\xec\xab\xa8\x65\xed\xcd\xbf\x0e\xba\xd2\x8c\xa8\xe1\x61\x18\x7a\x0a\x85\xd2\x00\xc6\xec\x05\x61\xbe\xbc\xcb\xab\x15\xdb\x08\x4f\x16\x02\x6a\x4f\xc1\xa7\x64\x29\xf4\x69\x76\xc9\x55\x70\xbd\x6a\xc4\xe4\xf7\x9f\x17\xe3\x6e\x75\xaf\xce\xbf\x58\xec\x4c\xcd\xa4\x8f\x99\x97\xc4\xc5\xb5\x0c\x65\x70\x73\x04\xfc\x2c\x9c\x75\xb7\x23\x26\xf9\x91\xa2\x6b\xfb\x3e\x95\x42\x42\x4b\x3c\xe3\x83\xba\xe5\x10\x32\x89\x87\xa1\xc6\x0c\xc2\x33\x54\x13\x0d\x74\xee\x8b\xc8\x4d\x47\x04\xbf\x0b\xb8\x92\x7c\x89\x2f\x3c\x04\x9d\x47\x64\xb7\x19\x40\x61\xc9\xe6\xf8\xfc\xb6\xce\x21\x33\xc3\x55\xdb\x24\x5e\xa1\xa6\x65\xcd\xe1\xde\x1e\x2e\xf4\x20\x98\x9f\xef\x42\x04\xf5\x70\xb0\xab\x50\x9e\x55\xde\x75\x6b\x40\xb7\xe9\x1f\xe9\x72\xb9\xb9\xd9\x57\xdb\xfb\xde\x25\x4e\x5b\xf6\x7c\x9e\x84\x90\xa6\x9c\x7f\x71\x65\xf6\x7c\x0a\x2c\x71\xf5\x4f\xd3\x2f\x16\xc5\xf5\xc7\x7e\x53\x7c\xe8\xcf\x96\x20\x83\x92\xe3\x4f\xa4\x53\x0c\x9e\x1b\x81\xe6\x5a\x6c\x72\x8a\xf0\xb0\x2c\xd4\x88\xa3\x43\xc5\xf7\xb1\xbf\x0c\xc9\x03\x13\x8f\xc9\x5f\xba\xc4\x4d\x5d\x83\xd8\x6f\xf1\xa0\x3a\xbc\xea\x2e\xee\x55\x79\x7f\xdf\x40\x7f\x8a\x92\x0b\x65\x70\xe9\xf3\x6a\x2f\xad\x46\x61\xbf\x47\xae\x39\x59\x12\x8b\x98\xcd\xda\xaf\x3b\xa8\x86\xb9\x78\x2d\xc5\x33\x7d\x67\x39\x19\x7f\xb2\x2f\x83\xf3\x1b\x64\xa8\x9a\x7b\x33\x90\x9f\x7c\x51\x19\x48\x38\xed\x4e\xad\x80\xda\xde\xcc\xf6\xbd\xd4\xdd\x17\x26\xc5\x46\x37\xb2\xa2\x73\xcd\x6a\xba\xd7\xa6\x91\x7b\x12\xf0\x9e\x9c\x5a\x88\xe5\x65\x38\x53\x3d\xbf\x76\xa2\x4c\xdf\xe9\x89\xbd\x8f\x77\xde\x23\x02\xd4\xc6\x5b\xaa\x0d\x49\x8a\x5d\x14\x5b\x1f\xd7\x0d\x02\xa8\xe5\x0c\x23\x78\x4f\x32\xb1\xee\xfd\xb0\x95\x47\xde\xb7\xf7\x60\xf4\x14\xd1\xe9\xec\xa5\x32\x6b\xc0\x0f\x2f\xcf\xba\xe0\x64\xa8\xf5\xe4\x24\xce\x63\xfa\xba\x48\xd0\xa8\xe9\x6b\x42\x33\x4a\x3e\x01\xeb\x6d\x16\xdc\x12\x8b\xfc\x8b\xe9\x4e\xfd\xc5\x14\x68\x3b\x8f\x86\xd9\x00\xa9\x35\xa5\x55\x3c\xa9\x0e\xdb\x10\x47\xbf\x8a\xcf\x49\x9d\x1c\x7f\x3b\xca\x83\xe3\x6c\xae\xb3\x69\x31\x73\x74\x0f\x10\x2e\x33\x44\x36\xd8\xdf\x1f\xe1\xa1\x4b\x1f\xee\x76\x9e\x0a\xd7\x78\x90\x90\x35\xd1\xe3\x00\xc9\x41\x52\xe2\x26\x5d\x94\x7f\x6d\x82\x52\x34\x0f\x57\xd4\x6d\x0c\xdd\xb4\xaa\xc6\xcd\x6b\x8f\xb3\x4c\x3c\x15\x84\x7c\x4d\xb0\x54\xc0\x67\x0a\xff\x9e\x42\xf3\x6e\xd2\x9e\x14\xc0\xa1\xf7\x84\x7c\x86\x2e\x68\xa5\x20\x80\x7c\x80\x3f\xd0\xa8\x2b\x82\x95\xf3\xe2\xf4\xff\x25\xef\x59\xd7\xdb\x36\xae\xfc\x6d\x3d\x05\x8c\x4d\x2d\x50\x02\x2f\x72\x92\x26\x4b\x9a\xd2\xda\x96\xd3\x7a\x63\x3b\xf9\x6c\xb7\x69\x3e\xd7\xdb\x0f\x22\x47\x12\x6c\x12\x60\x01\x50\xb2\x2a\xf2\xad\xf6\x09\xf6\xc9\xf6\x5c\xe6\x8a\x9b\x48\xc9\x6e\xb6\xdf\xa6\xae\x4d\xcc\xf5\xcc\xcc\x99\x73\x9b\x33\x67\xc2\x28\x5c\x86\xd3\xf0\x34\x5c\xd0\xa3\xa2\xba\xfb\xfc\x98\xcd\x72\x20\x9a\x81\xda\x53\x4d\x27\xf1\x80\x14\xcd\x65\x33\x4f\x9a\xd6\xed\xe4\x30\x2e\xef\x43\x9a\x9d\x40\xdb\xa0\x14\xff\xfe\x29\x33\xa7\x99\xae\x26\x5f\xa6\x20\x18\x8e\x29\xb7\x57\x71\xd2\x20\x74\x47\xe3\xc9\x7e\x0c\x08\x0b\xc3\x1f\x0b\xfd\x38\xc4\x38\xeb\x26\x21\xee\x92\x85\xf1\x4f\x5d\x1c\x0e\x3a\xa8\x10\x9e\xd7\x4b\xd6\xe1\x29\x3e\xef\x7e\x78\x3a\x3a\xdd\xdf\x0f\xcf\xf1\x35\x29\x65\x62\x50\xcb\x1b\x9c\xcb\xc6\xe6\x0c\x98\xa0\xbb\x5e\xf8\x9c\x05\xc9\xf3\x2c\xcf\x8c\xb6\x93\xad\x27\x0d\xb2\x75\x6d\xea\xfe\x22\x0c\x70\x50\x4b\xeb\x36\xc3\x12\x26\x2a\xb5\x31\x5c\xa2\x4a\x95\x75\x34\x11\xbd\x0d\xb8\xbd\x8b\xf2\xc0\xf3\x41\xda\x91\xae\x16\xcd\xe6\x32\x3c\x7c\x49\xe0\x4f\x0f\x74\x78\x2d\x85\xc4\xae\x98\x0b\x93\xd3\x00\x96\x12\x05\x08\x97\xe7\xa4\xc9\xcf\xcb\x44\xad\x45\x76\x42\x8d\x56\x38\xea\xda\x99\x28\x94\xcd\xcd\xc1\x3f\x3c\x1a\x91\x68\x93\x34\xe0\xd8\xf9\x38\xb9\x59\xb1\x43\xe1\x60\x19\x9e\xe3\x16\x99\x80\x06\x0c\x24\x9e\x0e\x4b\x46\xd3\xc3\x74\x94\xf2\x7d\xc7\x77\xe9\xef\xd4\xa5\xa3\x66\x31\x39\xc8\x89\xc8\xd6\x82\xdb\x18\xd9\xd7\x30\x40\x23\x2c\x57\x36\x5b\x53\xed\x86\x99\xe9\xe5\x38\x30\x14\xbf\xe9\x84\xba\x42\xee\x7f\xe4\x74\x43\x8f\xab\x3a\x0a\x3a\xfb\x38\xbb\xb8\xfe\x7c\x2f\x08\x8a\xc3\x26\x5d\x78\xb5\x92\x17\x49\xcb\x9b\x01\x4d\x37\xc9\x78\x10\xce\x4d\xfb\xad\x74\xc6\xe6\xae\x59\x53\x6f\xfb\xc9\x8d\xcb\x03\x62\x20\xb0\x8e\xfd\x7d\xa9\xbf\xb8\xfc\x85\xa2\xeb\x13\x35\x6d\x5c\x2a\x69\x46\x3b\x6a\x30\xaa\xcb\xd3\xce\x4a\xba\x39\x54\xe1\x7e\xd5\xad\xbd\x9b\xce\xac\x6b\x7d\x8d\xac\x53\x6a\xd7\x54\x5e\x39\xae\xb6\x8e\xaa\x61\x1b\x0f\xaf\xb5\x83\x90\x9f\x89\x59\x44\x67\x82\x21\x1a\xbe\x4e\x67\xe9\xe5\xd0\x8f\x96\x45\x0a\x1c\xb2\x7b\x49\x07\x8c\x5d\x95\xd1\xe5\x2d\x8b\x0c\x06\x6f\xac\x2e\x27\xc8\x46\x5b\x32\xd7\xe5\x93\xc2\xba\xe3\xc5\xb2\x23\xd6\xdf\xaa\x96\x3a\xa5\x29\x8f\x45\x59\xe4\x1f\xe1\x61\x73\x6c\x09\xec\xc8\x62\xcb\x66\xeb\x7a\x0f\xc7\xb0\xae\x39\x5e\x33\x56\x5c\x59\x1a\xc7\xdd\xc4\x72\x56\xe0\xea\x0b\x8e\xcf\x49\x21\x41\x20\x71\x55\xde\x25\x0a\xe2\x0e\x59\xd1\x39\xc7\x77\x2a\x4b\x2b\xb1\xe4\xd8\x4d\x70\x8e\x8a\x2a\x88\xba\xf5\xa2\x83\x8f\x60\x36\x36\xcf\x3f\xaa\xbe\x5e\x5a\xd9\x11\xbd\x82\x9e\x18\x35\x93\xa7\x6b\x95\xe6\xbe\x0a\x43\x49\x6f\x2a\xdc\x14\x6d\xf3\x23\x81\xc7\x52\x40\x36\x11\xf9\x9a\xdc\x43\x9a\xd4\xab\xfa\xb5\x42\x01\xd1\xd5\x7c\x1a\x0a\x56\xe7\xbc\x81\xb4\x29\x25\xbe\x2a\xe0\x1c\xf9\xfe\x50\xd4\x6b\x5b\xed\x8c\x95\x18\xea\xb5\x34\x83\x17\xeb\xba\xcb\xa0\xae\x8f\x02\xb5\x37\x4f\x81\xa2\xfd\x72\x2e\xc4\x4c\x9e\x3e\x64\xf4\xe2\xec\x31\x3f\x06\x52\xf2\xa6\xe3\xa3\x30\x90\x7d\xe8\x4d\x59\x75\xf0\x89\x0f\xc0\xf5\x88\x39\x92\xa7\x57\x4d\x01\x9f\x7a\xb9\xc4\x5e\x60\xb6\x7b\xf4\x03\xcb\xda\x07\xc1\xb2\x71\x16\xfa\xdb\xdb\xaf\x2b\x73\x73\x17\x84\xb4\xf2\xb5\xdf\x0a\x84\x53\x68\x16\x1b\x0d\xf1\xd2\x68\x53\xa1\x39\x14\x02\x94\x69\x2d\x73\x1a\xa2\x96\x01\x38\x36\xc3\x62\xf6\xb1\xb3\xe9\xbd\x0e\xfe\x3a\x00\xea\xca\xd5\xc0\x50\x57\xac\x09\x8c\xdc\x39\x3c\xb7\x3d\x72\x0a\x29\xbd\xa2\x2c\x66\x9f\x37\x1b\xad\x93\xfd\x56\xd0\x88\xfb\x16\xe9\xb1\xc8\x31\xe2\x06\xda\xe9\x78\xe7\x2b\x65\x14\x2f\x78\xb1\x73\x73\x02\x39\x67\xf4\xbc\x31\xb0\xb5\x8a\x2b\xca\x05\x59\x07\x5f\xe2\xb2\x3d\xe3\x17\xf4\xd1\xd3\x0d\xcf\x12\x4d\x5a\xe0\x4f\x40\x94\xfe\xe8\xc3\x20\xf0\x8f\xe8\xa1\x31\x31\x3c\x08\x89\x46\x0b\x91\xfc\x45\xff\xfa\x15\x19\xee\x2c\x86\x3a\x7f\xd1\xbf\x7e\xc5\x49\x28\xb2\xd9\x8f\xe2\x0a\xb1\x72\x56\xf0\x0f\x3a\x95\xe6\x9f\x73\x51\x44\xf8\x6b\x10\xa2\xcf\x0a\x30\xf0\xde\x34\xce\x17\xf8\x26\x0d\x77\x5f\x74\x34\x47\xa5\xb3\x6b\x4b\x91\x9a\xa3\x2a\x35\xee\xc7\xc9\x62\x59\xac\xd0\x24\x19\xc1\xb0\x56\x39\x50\xb5\x09\xe8\xc8\xe1\xd9\xd8\x87\xad\x89\xf3\x44\x98\x0b\x64\x40\x3e\x53\xbd\x5a\xc9\x65\x3b\x96\xf3\x41\x93\xf9\xe0\x81\x9a\x1e\xdb\xe6\x51\x57\x72\x74\x76\x04\x9a\x98\x6f\x35\x1d\xce\x6a\x1c\x16\xd1\x0d\x44\x2f\x52\x4c\x81\xac\xd4\x3a\xc5\x7a\x81\x62\xbd\x40\xab\x55\xc0\xe7\x01\x92\x7e\x8b\x8c\x26\xe0\x8f\x51\x32\x9d\xe1\xeb\x33\x4c\x7c\x90\xc9\x3c\x11\x67\x71\xf2\x46\xb2\x27\xd5\x09\x4c\x65\x11\xcf\x05\x08\x4d\xf3\x45\x1d\x15\x41\x36\x2a\x61\x46\x5c\xf5\x41\x76\xae\xb0\x12\x24\x65\x71\xb2\x14\xad\x6d\xaf\xc3\xb9\x6c\x07\x36\x81\x0f\xea\x5f\xa5\x19\x20\xa9\x6f\x94\xe8\xb0\x5a\x21\xfe\x4a\x67\xd2\xd6\x91\xe1\x83\x5f\xba\x5f\xab\xb7\x53\xd9\x1b\xef\x25\x1f\xf4\x4a\x47\x60\xbc\x75\xc3\x9d\x21\x2e\x22\xd1\x2c\x58\xe1\xa4\xbc\x86\xa0\x97\xa2\x8d\x4b\x00\x1d\x8b\x27\xe7\xd6\x9a\xf2\x0a\x16\x7a\x05\x8b\x3b\xae\xe0\x3b\xf1\xfe\xe6\xb5\xa3\xc5\x23\x58\x37\x5d\xbc\x72\xb3\xb4\x6c\xd4\xc2\x72\x51\x5e\xb5\xbb\xad\x0e\x35\x9a\x2e\x8b\xf2\xd2\x20\x97\x40\xcf\xa9\x29\xbf\x7c\x0e\xb3\x73\xeb\x7e\xd0\x96\xa9\xac\x8f\x59\xb1\x8c\x66\x48\x65\xdf\xd8\xcd\xe4\x1b\x39\xe6\x3b\x91\x3b\x1a\xfd\x21\x42\xff\x24\x56\x60\xa8\xe6\x7d\xcb\x8b\xa2\x2a\xe8\xa9\x7a\xcb\xa4\xb9\x66\xed\xa8\xc7\xd7\x44\x40\xd4\xcb\x0c\x40\xff\x70\x7d\xd5\x27\xe8\xac\x30\x1f\xea\x6b\x42\x11\xac\x61\x0f\xa8\x84\x08\xf8\x0f\x32\x59\xf5\xad\xc2\xb7\xdb\x1e\x01\xd4\xa9\x12\x47\x4b\x31\xc3\xd3\x44\xfc\x12\x61\xd0\x70\x25\x06\xc2\x82\x45\x53\xbc\x02\x06\x32\x4b\x75\x20\x55\xdb\xb1\x52\x52\x95\xcc\xfa\xcc\x38\xe7\x8f\x9b\xc7\x3c\x2a\x98\xc5\x85\x75\xb3\xb5\x4d\x27\x45\x5b\x27\x2c\xce\x84\x59\xed\x6b\x4c\xae\x14\xa6\x0f\xed\x46\x62\x2c\xf8\x32\x10\x0e\x00\xcf\xd7\x8c\xdf\x03\x7d\x6a\xab\x73\xc6\xdf\xae\x74\x28\x34\x28\xa8\xd5\x1d\x03\xf6\x26\x18\x6c\x2c\x0f\xb0\xf1\x18\xb5\x53\x51\x3e\x93\x15\x99\x29\xa6\x85\x69\xe9\x1c\x5f\x8c\x03\xed\x84\xa5\xb5\xc6\x4e\x45\x6d\xb4\x76\xc4\x6d\xb4\xc7\x1b\xb6\x55\x78\x6d\x53\xf3\xe1\xfd\x83\xf0\x6f\x46\x5e\xe5\xcb\x28\x1b\xa8\x9f\xe7\xf1\x74\x2a\x12\x50\x1f\x37\xf0\x53\x82\x91\x2d\x17\x0a\x08\x27\xf1\xe7\x25\x2a\x27\xaf\xc5\x69\x26\xf2\xf3\xc0\xb8\x60\xe0\x15\x09\x74\x9b\xda\x58\x37\xb5\x3c\x4a\x43\xa7\xbb\x3a\x85\x8d\x55\x13\xbd\xb4\x74\xe3\x4e\x83\x67\x59\x56\x40\x80\xb3\x34\x0d\xed\x21\xdd\x9b\xd9\xf6\x3e\x7d\xff\x05\xdf\x36\xb0\xa0\xc7\x23\xfb\xaa\xb6\x85\x07\x5a\x25\x6d\x3a\xa8\x6f\x10\xc4\xa7\x2e\xf9\x4a\x5f\x6b\xa5\xfd\x2f\xb8\x58\xfa\xeb\x69\x8a\x8f\x12\xb8\x81\xef\x8b\x32\x36\x42\x39\x44\x42\x59\x14\x03\x65\x21\x00\xba\x10\x51\x4b\x58\xe5\x68\x16\xff\x43\xa8\x29\x40\xbc\x27\xb5\xb0\xba\x44\x95\x85\x5e\xd8\xb9\xda\xe2\xae\xdd\x18\x63\x22\xc5\x3f\x97\x0b\x19\xa7\x32\x74\xcd\xd1\x2a\x9f\xc8\x4a\xf8\x80\x08\xd1\xd0\xc4\xcd\x90\xd4\x9b\xfc\x5b\xa0\x96\x40\x71\x87\xe8\x48\x1e\xd6\x17\x56\x77\x05\x30\x77\x54\x5f\xa4\x81\x15\xb5\xea\xd0\x75\xfa\xb3\x73\xce\x52\x46\x1b\x4d\x45\x8d\xd2\x0f\x38\x73\xb0\x27\xaa\xf0\x28\x8d\x9b\x9f\x6f\x68\x9d\xf5\x61\x93\x0b\x73\x52\x33\x4c\xba\x0e\x11\xb1\xbf\x3a\x69\x4f\x89\xc1\x2d\xd5\x8b\xd3\xba\xdf\x71\x2f\x2a\xde\xdc\xe8\x81\xd3\xe8\x54\xdc\xd8\xac\xe3\xfe\x1c\x34\x8d\xe6\x7e\xb2\x5a\x25\xea\x85\x09\xeb\xb4\xa6\x9a\x4a\x67\x35\x28\x08\x1a\x5e\x70\x0a\x44\x2f\x3f\x2f\x21\x6b\xd8\x38\x96\x8c\x13\xc8\x79\x06\x2f\x4e\xad\x37\x2b\x49\xd3\x49\xc2\x84\xea\x03\xbd\x7c\xe4\x2d\x2b\x83\x7c\x1a\xaa\xda\x99\x69\x40\x78\x46\x88\x90\x9d\xdc\x37\xb0\x80\x5b\x8c\xdb\x32\x80\x83\x1a\x64\x9f\x2c\x2b\x7b\x4c\xa5\xb7\xa3\xca\xd1\xb1\xba\x91\x31\xac\xda\xd4\xab\x6c\xf4\x95\x40\xed\x78\x0b\xb3\x94\xf1\x79\x47\x01\x4a\x9f\x26\xd6\x9e\xd0\x77\x5a\x6d\x91\x04\x5e\x1d\x79\xd6\x27\x32\x87\x5e\x83\xe9\x08\x26\x87\x2d\x88\x96\x6a\x50\xb2\xdb\x57\x74\xab\x31\x10\x78\x4a\xac\x25\xe3\x64\x3e\x2f\x0b\x9f\xbd\x69\x4a\x2a\x2c\x65\x6a\x17\x15\x5b\x71\x68\x72\x68\x1a\x55\xba\x3f\xaa\x6d\xf9\x25\x70\x7d\xaa\x3a\x54\xc1\xc2\x6c\x3e\x57\x0f\x8d\xae\x63\x0e\x7a\xac\x2a\xf1\xfd\xf1\x38\xc1\x2b\x6c\x3a\xa6\x93\x34\x4c\xa8\x42\xb9\x1c\xa9\x32\xa4\x62\x1c\x52\xa9\xa7\x75\xf4\xdc\x64\xe6\x40\xd3\x9a\xc0\x01\x72\x0d\xad\x73\x34\x19\x57\x0d\xa4\xcf\x40\x8a\x12\xb5\x66\x55\x9e\x2d\x1d\x7c\x82\x0c\x8c\xb8\x29\xdd\x66\xb4\x85\x75\x40\xbb\xe9\x00\xd5\x32\x23\x4e\xd5\xfa\x19\x18\xb7\x29\xd0\x45\xc9\x7c\x7f\x1c\x67\x82\xca\x3d\x4f\x00\xa9\x41\x92\xc7\x8b\x0a\xc7\xe2\x02\x36\x09\x99\x88\x48\x29\x38\x16\xb3\x22\xfa\x75\x2f\x28\x8e\x7a\xdf\x0f\xbb\xbd\xef\xf5\xdc\x6a\x58\xfe\xa6\xed\xbd\x8b\x7d\xe8\xe7\x70\x3c\x78\xf0\x20\x79\x54\x29\x64\xbb\xb1\xe8\x80\xfb\xee\x78\x9e\x5c\xc1\x78\x62\xa2\x41\x78\xdd\x25\x5d\xa0\x1f\x6f\x74\x16\xf1\xb6\xe8\x00\x19\x6b\x8a\x54\xc2\xe2\xfa\x49\x44\x4f\x8c\x9d\xa1\xe9\x2c\x63\x41\x2d\xb0\xdc\xb5\xfd\xca\xe5\x4d\x9c\x8b\xf3\x28\x3f\xa7\xe1\xe2\x8f\xb7\x57\x0b\x01\x14\x4e\x5d\x7d\x03\xf9\x0b\x0f\xf5\xf3\x50\x05\xd3\x92\x9f\xb1\x2e\x10\xbb\x05\xd4\xa7\x6e\x01\x48\xb8\x69\xcd\xc7\x41\xfb\x56\x6d\xff\xf9\xb1\xe5\xc4\x9c\x50\x7c\x23\x0c\xf3\xd4\xef\xca\x88\x50\x49\x87\x01\x55\x38\x2b\xdf\xf6\x9e\x44\x73\x81\xc2\x13\xe4\x8f\x0a\xbc\x5f\x54\xbc\x4b\xde\x87\x31\xfe\x8a\xf1\x97\x02\xd7\xfa\x8d\xe9\x6b\xe7\x9e\xab\x35\x67\xe7\x34\x57\xe4\xa2\x3f\x63\x94\x30\x47\x5e\xa1\xef\x0a\xc0\xec\xf6\x89\xab\x00\x6a\x2a\x3f\x3d\x3e\x35\x57\x54\x30\x36\x0c\xd6\x5f\xad\x7c\x0a\x13\x73\x9e\xe6\xf8\x1c\xd2\x58\xa5\xf7\x30\x21\x01\xf0\x1f\x3c\xf0\x0f\x1e\x7e\x47\xcf\x75\x1f\xd4\x16\x50\x41\x37\x5f\xa4\xb8\xef\x7a\x97\x51\x06\xd2\xcd\xaf\xe9\xd2\x8b\x32\xe1\x01\xbd\x4d\x60\x22\xbc\xc8\x5b\x64\xe9\x74\xc9\x1c\x96\x1e\x3b\xf4\x94\x83\x91\x07\x29\x1a\x04\xf2\xca\xbe\x4c\xf1\x49\x69\xc0\x79\x01\x4c\xde\x9b\x0a\xa0\x99\x33\x31\xf5\x28\x5e\x83\xa7\x83\xc2\x78\xcf\x4f\xbd\x2b\xe8\xe6\x32\x4a\x0a\xef\x14\x98\x4a\xa9\x80\x07\x42\x6d\x94\x0b\x6f\x49\x61\x8f\x84\x97\xa4\x49\x17\xa3\x59\x9e\xc6\xd0\x16\x83\x00\x30\x5d\xc4\xf8\xc6\x76\xca\x6f\x6c\x33\x3c\xb0\xe9\x40\xb7\x11\xe8\x6f\xdf\xdf\xbb\xbf\xe3\xed\xf1\x85\x82\x58\x78\x5d\xfe\xe5\xf1\x32\x68\x5b\x6e\x8e\x65\xf0\x09\x7a\xef\x24\x4d\xfe\x91\x7a\x14\x44\x66\xd8\xef\x9f\xc5\xc5\xf9\xf2\x04\xf5\xef\x3e\x74\xd2\xa7\x4c\x2c\x6a\x35\x89\xc8\x1c\x78\x28\xa2\x85\xde\xee\xfc\xaa\x4b\xc9\xbb\x5e\xc7\xeb\x1e\x7a\xf8\xb6\x7b\x9f\xde\xd3\xb7\x2b\x44\xd3\xa9\x5d\x01\xb4\x13\x5d\xc9\x2e\xc6\x16\x6a\xbb\xe4\x32\xc1\x99\x12\xd3\xda\xe2\x05\x2c\xde\x4c\xd4\x41\x02\xa5\xfa\x3b\x3b\xfd\xbd\x0f\x28\x78\x14\xde\x49\x96\x5e\x02\x37\x1c\x12\x74\xa1\x87\x37\x9f\x26\x85\xfa\x22\x3c\xe3\x0f\xac\xd5\xdf\xe3\x17\xe7\x3d\xc6\xbe\xa1\x47\x83\xa1\xf6\x02\x63\x08\x97\x26\x57\x18\xf3\xf5\xce\xce\x2e\xae\x16\x37\xba\x3b\xa2\xb0\x19\xf5\x33\xbe\xf1\x74\xef\x68\xb9\x8e\x1a\x7a\x2d\xce\x02\x4f\x5f\xe1\xa1\x3e\x3d\x4f\x59\xd1\xad\xd7\xe0\x83\xff\x5a\xfd\xf5\xaf\xf9\x7e\xc7\xf7\xf6\xad\xe2\xfb\x1e\x86\x74\xc9\xf7\x57\x5f\x75\x00\x39\x76\xd6\x06\x40\xdc\x74\x1e\xa8\xb5\xe8\x82\x80\x31\xd0\x24\xd8\x73\xba\xee\x83\x12\x01\x96\x8c\x66\x18\x15\xfe\xec\x1c\x6f\x18\x9c\x08\x98\x8d\x38\x0b\x09\xef\xa2\x45\x0c\x95\x27\x1f\x73\x48\x9e\x44\x38\x05\x71\x21\x77\x01\xbf\x74\xe3\xcd\x97\xb3\x22\x06\x84\xe6\x76\x01\xb9\xa3\xc2\x43\x39\x66\x07\x89\x0e\xe0\x10\xa9\x28\xa1\x87\x57\x6d\xf8\x17\xaf\x3f\x7d\xc0\x3c\xc6\xa7\x5e\xe0\xed\x6a\x48\x77\x91\x80\xe9\xc3\x01\xf5\x43\xca\x2e\x72\x52\x54\xa3\xde\xd8\x5a\x2a\x46\x8f\x89\x2c\xa2\x67\x0e\x93\x7b\xba\x75\xf3\x08\x28\x96\x1c\x41\xc1\x35\xfe\xa5\x60\x6b\x6d\xb0\xd4\x12\x21\xbb\xdd\x88\x35\xac\x6d\xda\x51\xbb\xc1\x34\xb5\xde\x21\x07\xa2\x6d\x47\x6a\x21\x91\xd7\x61\xd2\x6f\xf5\xc5\x38\xb5\xdd\x88\x69\x69\xee\x2b\x18\xec\x7c\x55\xc2\x2b\xf7\x30\x2e\x27\xec\x7b\xbb\xf0\x3f\xc0\xd4\x11\x55\x58\xdf\x7e\xb6\x6a\xdb\x87\xe9\x5b\xcc\xa2\x89\x08\xdc\xe1\x87\xd4\xab\x99\x50\xb3\xd5\x98\x9a\x54\x06\x84\x9d\x21\xbe\x9e\x26\xd0\x45\xdd\x88\x8f\x1c\x88\x87\x7a\x02\xb1\x8b\x53\x1b\x6e\xea\x0e\x9b\x52\x94\x79\x4c\x8d\xc3\x1e\x23\x46\x80\x6c\x29\xb7\x56\x76\x68\xb6\x88\xb5\x2c\xa6\xfd\xd0\x9d\xab\xa1\xfd\x81\x79\xd6\x78\x86\xf6\x47\xc8\x7d\xe6\x18\x0a\xdc\xee\xb4\xd2\x5f\x5d\x57\x0d\xbd\x38\x1d\xec\xac\x99\x08\xd2\xad\x64\xa4\x2d\xbc\x93\x25\x0f\x67\xb2\xea\x81\xf8\xe9\xed\xaa\xb9\xdf\xf5\x1e\x3c\x90\x19\xbd\x68\x3e\x95\xb3\x0e\x4d\x3c\x7e\x79\x0c\x3f\x38\x27\xd0\xf3\x86\x33\xe9\xe9\x9d\x00\xc5\x24\x7d\xf7\x98\x72\x43\x9a\x3c\x10\x33\x13\x2d\x7f\xd1\x12\xac\x3b\x86\x7c\x8f\x80\xde\xef\x21\x4f\xa1\xbb\xba\x31\x4b\x09\x3f\x7c\xea\x7d\xc8\xbd\x8b\x03\x94\x1f\x30\x0f\x69\x35\x90\xea\xcb\x4b\x68\x31\x9d\x82\xd4\x88\xb2\xcc\x1c\x72\x30\xf3\x05\x08\xb4\xa0\x6a\x4d\x89\x8f\x64\x44\x19\x5f\x3e\x7f\xeb\xcd\x38\xb9\x57\xaa\x9f\x2e\x20\x35\x5d\x66\x13\xd1\x4b\xb3\xb3\xbe\x2c\x95\xf7\xe7\x71\xd1\x55\x55\x16\xe7\x0b\xd9\xb6\x8e\xbe\xe4\x61\x9c\xa6\x10\xbe\xa9\xf7\x56\x98\xfa\x3b\xa3\x26\x3e\x75\xaf\xc4\xa8\xee\x21\x32\x02\x21\x45\x1a\x0a\x73\x24\x27\xad\x89\xc4\x86\x3b\xf7\xee\x21\x3f\x48\x62\x7e\x53\xca\x13\x78\x17\x0d\x95\x1c\xc2\x22\xc8\xc5\x2c\xd0\x3d\x48\xf1\x91\x7b\xd2\x67\x65\xe0\xb1\xaa\x04\xd9\x3e\xf6\x8c\xb3\x7e\x0f\x86\xc1\x36\x5f\x2f\x3d\xf9\xa0\x61\xc6\xf4\xfe\xce\x3d\x63\xda\x60\xb3\xb0\x17\x85\xde\x09\x8d\xe3\xde\x3d\x94\x69\x69\x53\x7e\x14\x57\xc8\x15\x54\xfa\x3d\x90\x6e\xbd\x93\xf2\x35\x3d\x2a\xd5\x51\x45\xee\x45\xef\xe0\xfb\x3d\xc0\x76\x42\x3f\x46\x98\xb8\xde\xe1\xff\x4b\x82\x19\x41\xe2\xda\x82\xf2\x95\x83\x1c\x8d\x90\xba\xc5\x02\x4f\xc6\xe3\x92\x3d\xf3\xc9\x8c\x4c\x1a\xeb\x61\x5d\xaf\x43\x27\x8c\x2e\xe2\xe4\xbd\x7b\x2a\xd7\xce\x09\x3d\xa7\x88\x32\x47\xc6\x45\xd0\x69\x87\x57\x56\x93\xe0\xba\x99\x7c\xbd\x19\xf7\xa6\x05\xdb\x35\x2f\xb5\x34\xc2\x21\xe7\xa7\xf3\x45\x29\x91\x9a\xea\x1e\xda\x02\x50\x2a\x88\x16\xf4\x5c\xda\x94\xeb\x4d\xf9\x48\x30\xc7\x8a\x58\x45\x63\xd4\x49\x3a\xbd\x82\x22\x97\x19\x96\xcf\x80\x56\x3a\x39\x12\xc1\xb0\x86\x14\x87\x21\x41\xfe\x82\xb2\xbb\x57\xe9\xfd\x5d\x59\x66\x16\x81\x10\x5d\x10\x49\x19\x7a\x67\xb0\xfb\x67\xab\xa8\x28\x22\x34\x3b\xae\x40\xe7\x58\xa5\xd0\x48\x06\x45\x65\x39\xa8\x4c\x85\x54\x75\xbe\x41\x99\x93\xcc\x83\xdd\x61\x80\x0a\x16\xb1\xb9\xc2\x90\x8b\x61\x36\xd5\x53\xc9\x5e\x0e\x12\xbf\x58\xe5\x33\x90\xbf\x57\x67\x22\x89\xc5\xea\x83\x98\xcd\xae\x4c\x71\x05\x85\xae\x71\x3a\x8b\x17\xab\x93\x14\x50\xe4\x0a\x7f\x9a\x92\x04\xa2\x2e\x76\x92\x7e\xca\x17\x14\x7a\x68\x35\x49\x33\xf8\x47\x7c\x5a\x80\x56\xb1\x9a\xa5\x11\xba\x2c\x4e\xe2\x6c\x02\x1d\x83\xa8\x38\x3f\xa1\xde\x33\x6e\xa8\xd7\xeb\x21\xb2\xd0\x70\x70\x94\x94\xa7\x46\x89\x2b\x05\xca\xb6\x87\xca\x0d\xb4\x11\xb2\xaa\x11\xa2\xd0\x36\x81\x59\xe5\x42\xb4\x82\x40\xe7\xa5\xec\x97\xe4\x5d\x9c\xd4\xae\xae\xa3\x12\x58\x4d\x81\x3f\x2a\xc1\xb4\x82\x9f\xd8\x39\x15\x51\x9d\xc7\xa7\x34\xb3\x4b\x24\xcb\xd3\x54\xe4\xc9\xff\xfc\x77\x01\x7d\xa4\x5a\xaf\xb1\xb0\x08\x1f\xf3\x05\x05\x46\xb2\x16\x10\x23\x25\xa5\x41\xdb\x31\x95\x3e\x4d\x31\xec\x1e\xaa\x64\x78\xda\x8a\x5d\x16\x33\xe8\xf1\xf7\x83\xc1\x40\x76\x87\x0a\xe5\x49\x04\xc2\x28\x7c\xa6\xc9\x53\xea\x67\x68\xc8\x20\xec\x40\x25\x0c\x91\x38\x3f\xf2\xd6\x21\x95\xfc\x09\xf0\xf6\x86\x82\xb0\xb5\x6c\x8a\x85\x1b\xce\xa1\x00\x94\xc2\xc7\x0d\x1c\x01\x0f\x11\xc0\xcb\x53\xa0\x7f\x40\xa2\x6e\xdc\x75\xb4\x83\x6d\x41\xa7\xa3\xb6\x1f\xdb\xf9\x3d\x8c\x45\xe5\x71\x98\xfb\x65\x26\xd4\xc6\x4f\x8a\x53\xa8\xd4\x10\xb6\xc5\xdb\x9d\xc6\x17\xbb\x16\x99\x80\xd2\x8e\xa8\xb4\x0b\xab\x08\x28\x87\x8b\x89\x22\x98\x4d\x65\x7a\x72\xcf\xa0\x78\x06\xd9\x8c\x5b\xd5\x52\x12\xe7\x64\x29\xc2\x88\x4a\x19\x4c\x45\x10\x28\x1c\x0d\xda\x16\x00\xaf\xb1\x73\xfb\xbe\x3b\x03\xd2\xa5\x3c\xff\x70\x17\x8b\xeb\xa2\xfb\xe3\xda\x37\x34\xca\x65\x76\xf9\x0e\x7c\xa5\xee\xee\xa3\x1c\xf6\x90\xd5\x11\xa1\x9f\x7f\xf8\xa8\x8f\xe9\x87\x56\x2d\x3d\x47\x3a\xf8\x17\x80\xa9\x9a\xc2\xc5\x27\x74\x24\x1a\x47\x6a\x10\x10\x2b\x4f\x92\x0e\x45\x23\x0d\x09\x01\x7e\xa4\x5f\xd4\x62\x42\x57\x22\xfe\x2a\x59\x1e\xcb\x70\xb8\x35\x49\xea\x01\x08\x97\x1d\xe8\xc2\xa7\x71\x96\x17\x64\xc9\xc6\x75\x95\x84\x36\xce\xe7\x31\xec\x5a\xde\x29\xef\xf4\xbc\x17\xb3\xf7\xf3\x5c\x4d\xbc\x98\x21\xa6\x90\x71\x5d\x01\x22\xeb\xe1\x2e\x82\x71\x8a\xe2\x2d\xec\x2a\x58\xf3\xa0\x8c\x84\xc4\x4f\xb1\x01\x36\xc4\x0b\xcd\x43\x29\x4d\xb6\x42\xdc\x47\xb2\xd0\x12\xec\xd8\x81\x06\x96\xf0\x9c\xe4\x85\xdc\xe1\x5e\x7c\x84\xcb\x3c\xac\xb2\xd1\x54\xf9\x0d\xf6\x10\xb7\x53\xdd\x49\x35\x93\x60\x4d\x9d\x4d\x88\x6c\x4c\xf8\xfb\x52\x64\x57\x6f\xc8\x4b\x0b\x85\x8d\xdd\x9e\xc2\x1f\xd8\x56\x55\x6f\x3e\x54\x53\xe3\xc9\xc7\xdd\xd0\xa5\x24\xa5\x69\xf2\xd6\x5e\x65\x94\x20\x86\x5f\x56\x28\xe2\x4d\xe3\xa5\x4a\x95\x81\x12\xec\x72\xa1\xc6\x64\xcf\xc0\xb1\x96\x6d\x2b\x06\xcd\x90\x08\x9c\x23\xbf\x60\x42\xe1\xd8\x6a\xdc\x52\xd8\x9f\x4d\x4e\x4c\xdc\x79\xa4\x9f\xd5\xa5\x53\x93\xbb\xed\xb8\x54\xbd\x4d\xd6\xd0\x1d\x2d\x13\x6b\x1a\x85\x88\x32\x8d\xcf\x65\x6c\xef\xdc\x3c\x23\xd6\x58\xdb\x76\x86\x33\x5b\xb4\xce\xd5\x39\xc5\x72\x16\x6f\xda\x51\x1b\xc7\x4c\x1f\x31\x2a\xde\x40\xb0\x77\x1e\x7e\x6b\x76\x0b\x6f\x69\x47\xd8\xce\x15\x83\x44\xda\x4f\xa6\x24\x9c\xdf\xe3\x9f\x5e\xca\x09\x22\xe9\x5a\x4b\xda\x3f\x24\xae\xf6\x7c\x61\xcb\xc8\xe2\x42\x1e\x3d\x78\xf7\xc7\x63\x0d\x3e\x94\x70\x78\x1f\x96\xa6\xc9\xa9\xf3\x1c\xf5\xca\xd2\x7e\x58\x05\x80\x29\x83\x33\x66\x45\xce\xa4\x1a\x89\xf4\x8c\x57\x80\x0b\x13\x1a\x99\x5d\x58\xdd\x68\x1b\xf6\xea\xa0\x23\x8a\x37\x40\xb6\xa5\x5d\x8f\x54\xde\x45\x34\x11\x12\x1b\xa5\xda\x53\x92\x99\xc7\x25\x21\x1a\xda\x83\xdd\x6b\x2b\x8e\xb2\xde\xe3\xc5\x42\x85\x18\x5a\xe0\x7d\x2e\xb6\x33\x2b\xdf\xae\x2c\x4d\xf5\x19\x9c\xff\x6f\x30\x74\x3f\x9c\x2c\x33\x8c\xd6\xf4\x73\x84\xc1\x46\x7c\xed\x33\x66\xd7\x36\x12\x45\x16\x5c\x23\xbc\x43\x1f\x70\x11\xaf\x99\xa0\x81\x5f\x67\x5a\xee\xf2\x21\xb9\xb2\xd1\x81\xab\x29\x09\x4d\xf6\xde\xc8\x2f\x1d\xf4\xcf\x0a\x3e\x8e\xf9\x67\x76\x15\x7e\x99\x08\xef\xf7\x61\x56\x5e\x93\x15\xfa\xec\x70\x81\xf9\xaf\x61\x63\x00\xe0\xf3\x68\x11\x94\x8f\x17\x33\xc1\x4a\x6e\xe0\x4f\x27\x7e\x78\xbd\xa0\xb1\xf6\x87\xf0\xb1\xae\x04\x92\x30\x65\xf1\xfc\x13\x24\xd6\xdc\xd4\xd0\x29\x35\xd5\xb0\x77\xa8\x03\xdb\xd5\x94\xdf\xc3\xc9\xf2\xd7\x9d\xb5\x0e\x41\xad\xda\x4e\xd2\xa9\xdd\x30\x7f\x6e\xd8\xea\xb0\xb1\xd5\x8f\x17\xa6\x14\xfc\x6e\x6c\x2f\xe6\x08\x06\xaa\xa8\xaf\x5b\xaa\x1d\x04\xa8\xa5\xe5\x12\x62\x8a\x11\xf7\xec\x12\x7d\x4a\xaa\x03\x2a\x9a\xcc\xac\x91\xd2\xd7\xa6\x03\x8d\xa7\x76\x8b\x5c\x04\x1b\x00\x12\x8a\x07\xe9\x53\xb7\x59\x9d\x5a\xaa\xb1\x4c\xa2\x65\x71\x9e\x66\x80\xa2\x56\x0d\x27\xb5\x0a\xb5\x41\x5b\xb3\xf8\x32\xa5\x02\x52\x75\x3a\xd7\x9d\x11\x63\x3b\xe1\x8b\x13\xf3\x52\xbf\x12\x70\x1a\x51\x10\x8b\xa7\xf8\x76\x5c\x5e\x0a\x8e\xe4\xbe\xb7\x41\x9b\x82\xcb\x3d\xcd\x60\xb7\x01\x05\xf7\x75\x50\xef\xe6\x12\xfb\xe5\xac\x5f\x58\x8b\xf2\x6d\xf7\x1a\x3b\xdf\xba\xc5\x0e\xf2\xdd\x0c\x76\xd3\x93\xab\xc0\x7f\x53\x44\xc5\x32\xc7\xab\xc2\xba\x65\xae\xa4\xae\x27\xee\xd7\x96\xbe\x54\x9d\xb9\x85\xd7\x3a\x88\xba\xe9\x35\x5c\x20\xf3\xaa\x9b\x0a\x3b\x70\x79\xdd\x74\xfc\xcc\x15\x7d\xf9\xfa\x6c\x5d\xce\xb0\x3a\xca\x3a\x70\x17\xaa\xfc\x06\xe0\xd2\x73\x7f\x37\xbc\x71\xc7\x81\xad\xa2\xfc\x07\x7b\x95\x39\x56\xfe\x81\x05\xac\x33\x72\x7c\x0a\xc0\x53\x80\x58\x70\x9f\xba\x6d\x40\x21\x99\xe2\xd7\x82\x47\xc4\xa4\x15\xae\x57\x44\x6e\x9c\xc1\xc9\xa4\xb0\x0c\x72\xd9\xff\xf5\xac\x02\x0f\xde\x4a\xe5\x09\xfd\x51\x5c\x95\x8b\x03\x63\x88\x72\x68\x1d\x29\x56\x47\x12\x6a\xec\x6a\xcb\x2d\xd1\x80\xeb\xe4\x7d\x3b\x5d\xc2\x7e\xad\x3a\x60\x64\xe6\xd6\x20\xc6\x55\x94\x0b\xad\x30\xdc\x20\x33\xac\x48\xb6\x5a\x69\x74\xc5\xcf\x23\xb1\x7f\x30\x14\x6b\x18\xd8\xad\xb0\xf5\xff\x1d\xc2\xdd\x0e\x67\x92\xe5\x5c\xd2\xc7\x4a\x05\x89\x35\x2a\xdb\x5c\x84\xce\x37\xab\xe0\x6f\x80\x91\x80\x84\x1a\x23\xa1\x58\x2d\x42\x56\x9f\x53\x91\xb7\x47\x2f\x4c\xd2\xf0\x1a\x3b\xb9\x5e\xc8\x57\x7a\x86\xf7\x07\xeb\x75\x08\x0c\x91\x6a\x95\x3b\xa7\x30\x03\xc0\x3e\xf9\xd5\x04\xa8\x08\x90\x5e\xe0\xe3\x89\x1b\x94\xa6\x47\x16\xa1\x3c\xb4\xfd\x0b\x3f\x8d\xcd\x71\x36\x5b\x11\x82\xba\xd0\x67\x4f\x36\x1a\x60\x55\x06\xc0\x77\xb1\x8e\x13\xe3\xfc\x87\x74\x56\x0a\x5a\xed\x50\x63\xe7\xb5\x18\xaa\x73\x74\xff\x00\xb9\x5f\x35\x43\xfa\xa2\x75\x0f\x6a\xfb\x79\x91\x4e\x3e\x8a\x69\xeb\x28\xde\x00\xea\x43\x16\x76\x31\x18\xde\x3f\xb0\x5b\xd1\x59\x21\xa0\xd7\xc7\xb7\x29\x49\x81\xd5\xc6\x6e\x80\xeb\x08\x44\x27\x52\x63\xfd\x21\xfe\x62\x59\xa6\x02\x2b\xad\xd4\xb1\x98\x00\xea\x4c\x4b\x4e\x4c\xca\x52\x5f\x0e\x93\x73\x20\x6f\x46\x93\xf0\xca\x2b\x88\x2e\x5b\x45\x87\xdc\xc0\x1d\x90\xe4\xfa\xe2\x45\xca\x00\x9f\x13\xfa\xfd\x37\x12\x0d\xd5\x43\x92\x35\x89\xca\xcd\xd7\x6e\xa0\x87\xba\x18\x97\x45\xff\x5e\x6b\x14\x16\x06\x01\xea\xb4\xdf\x1b\xa0\x11\x8f\xac\xc9\x13\x66\xb6\x28\x90\x10\x7c\x2f\x4f\x38\x68\x2b\x3a\x66\xc9\x01\x43\x2e\xf9\x33\xf1\xb3\xc1\xfd\x3a\xcc\xd2\xa8\xd7\xd6\xbd\x02\xd1\xc7\x50\xd3\xfc\x18\xa1\x25\x9c\x2c\xd2\x05\x86\xe3\x90\xf1\xe5\xfb\x48\xa1\xfa\x35\xeb\x75\x96\x45\xc9\xf4\xe7\xcf\xd7\xdd\x66\xdd\x4a\x9a\xf2\x78\x32\xab\x67\x72\x71\xfe\x0a\x5f\x99\x4c\x93\x1a\x2c\x8d\x20\xf9\x0a\x9d\xdb\x5c\x6c\x45\xcf\x29\xdc\x5d\x40\x5b\xac\xde\x30\x55\x76\xa6\xd4\xaa\xfa\x1e\x97\xc9\xc7\x24\x35\x27\x50\x8e\xcb\x9c\x8a\x47\x8c\xce\x43\x6f\x8a\x34\x03\x0e\xf3\x4e\xbc\x27\xcf\xf4\x3f\x35\x56\xb3\x30\x5e\xbd\x82\xf3\x0a\x1f\xeb\x28\x3a\x47\xd2\x03\xab\xd4\xde\xb0\xf4\xad\xa2\xf0\x71\x48\x62\xd5\x83\x0c\x93\x8a\x31\x63\xf0\x85\x0f\x11\x65\x15\x47\xd1\x13\xf4\xf4\x74\xcb\xa3\x29\x4b\x79\x95\x89\xf1\x00\x03\x7d\x58\x9d\xe9\xc7\x37\x0f\xc5\x48\xa8\x38\x28\xb8\x1b\x9d\x42\xb0\xfe\x18\xe9\x77\xe4\x24\x12\x04\x81\xb9\x63\x55\xe9\x16\x34\xcf\x91\x3e\x6d\x03\xed\x83\xee\x3f\xca\x1b\xc1\xb0\x3f\x9e\xa6\x69\x36\xc5\x0b\x37\xfc\xcb\xb8\xbe\x01\x90\xe9\x78\x30\x4a\x1f\x89\xde\x9f\xc5\x44\x41\x98\xaa\x50\xe9\xd9\x98\xd2\xdf\xa5\xef\xbb\x85\xfc\x31\x4a\xf6\xc7\xd9\x5e\xb6\xe6\x48\xea\x74\xc3\x25\xff\x3b\xc5\xb3\x00\xe1\x9b\xdd\x6c\xf7\x0b\xf9\x23\x8c\xc7\x39\xa4\x3e\x9e\x7e\x58\xe6\x05\x12\x23\xc8\x31\x1f\x3a\x1a\x28\x46\xf0\x0a\xf2\x71\xdc\x09\xa9\x39\x50\x65\x00\x55\x0e\xc4\xb7\x7b\x79\xa7\x7f\x30\x18\x18\x6f\x6f\x74\x85\x8f\x8a\x3f\x65\x33\x0a\xd8\x9d\xe8\x95\x67\x02\x96\x50\xe0\x0a\x9f\x6e\xf2\xa8\x68\x55\xfe\x91\xdf\x39\x1c\x1c\x21\x91\xd8\xf7\x1f\x4c\x27\x63\x7f\xbf\x08\xf9\x83\xd4\x76\xf8\x4e\x3a\x43\xce\x3e\x6a\xc8\x0e\xc5\x1a\x11\x1b\xe9\x18\x91\x74\xf5\xe6\x07\xfe\x36\x0f\xad\xa5\x29\xed\x6c\xdf\x47\x87\xdc\x29\x1d\x7c\xd3\xd5\x85\xfb\x07\x21\x59\x4c\x61\x53\x47\x73\x60\xd1\x2c\x0d\x0c\xaf\x25\x23\x64\x26\x0d\x5b\x8b\x89\xc3\xe3\x64\xfa\x07\x24\x15\x8b\x12\x3f\x15\xce\x5b\x50\xb2\x33\xe5\x12\xaa\x3e\xd3\xb1\x4d\xee\xd4\xf4\xa6\x56\x9c\xb4\x20\x95\x94\xa3\x18\xa7\x2e\xed\xe8\x84\xba\xdc\x81\x55\x2e\xa9\x96\xbb\x96\xb0\x15\x36\x51\x1b\x26\xc0\x3e\x5f\x03\x1c\x8a\xed\xae\xf1\xb1\x09\x34\x64\x1d\x2f\xd9\x7a\x53\x7a\xcb\xdc\x79\xe8\x48\x05\x9d\x36\xb2\x73\x12\xa6\x78\x5f\xc0\xd0\x7f\xf2\xc9\xd5\x81\x81\x52\x74\xbd\xc5\x85\x09\xa3\x89\x14\x7d\x98\xe7\x3a\xc4\x15\x26\x8d\xf9\xc5\x91\x74\xb3\xb6\x1f\x3e\x51\x5c\x16\x65\x0e\x09\xb4\xc5\x57\x56\x2b\xed\xe0\x2e\x67\xb7\xb5\x0d\x21\x75\xbb\x4a\x36\x5b\x27\x04\x3d\x37\x45\xe4\x91\x62\x9d\x30\x1a\x39\x48\xa5\x11\x89\xde\xf9\x6a\x7c\xbc\xfd\x2b\x9c\x92\xff\x7c\xf3\xd3\xab\x00\x5f\x78\x5e\xce\xfe\x98\xe6\x05\x2c\xcb\xc5\x41\x1f\xa6\x38\x9a\xa5\x67\x7d\x90\x05\x01\xad\x92\x82\xc2\xa9\xf7\xf0\x00\x31\xa8\x21\xb2\x02\xef\x86\x90\x25\xf5\xa5\xdb\x1f\x14\xe1\x7b\xb3\x8e\x2a\x20\x83\xa7\xb8\xc3\x33\x46\x29\xf4\xd8\xd6\xc6\xaf\xe3\xc9\x16\xc3\xd3\x78\xdd\x68\x71\x73\x1f\x89\x79\xfd\xe6\xcf\x3f\x93\xc7\x70\x70\x3d\x9d\x0c\x45\x6f\x3a\x09\xa7\x13\x25\x83\x6f\x39\x39\x52\x3b\x2d\xd7\x35\x44\xa6\xdc\x4a\x8c\x15\x93\x68\xd6\x5f\xc6\xd2\x4c\x16\x12\x04\x45\xa7\x66\xa2\xd5\xab\x37\x86\x77\x3b\xe6\x40\x8a\x51\x42\x81\xaa\x95\x1e\xaa\xec\x90\x82\xae\xcb\x16\x14\xef\x11\x68\x75\x9c\x40\xe2\x36\x50\x9a\x5a\x37\x03\x69\x61\x83\xba\x02\x66\x9e\xf4\x28\x6d\x56\x61\xbd\x87\x42\x57\x66\xa1\x55\x12\xb0\x30\x55\xf6\x54\xf4\xe8\x87\x4e\x86\xb5\xe1\x82\x26\xc9\x1a\x94\x4f\xfe\xda\xfa\x53\x17\x89\xf3\x63\xe0\x6f\x78\xab\x5b\x3e\xac\x42\x37\x69\x14\x7e\xfd\x78\x71\xe3\x1e\xe2\x80\x79\x2f\xcb\x3b\xa9\x6d\x07\xdb\x5b\xdd\xea\xea\x0d\x64\xde\x06\x9d\x89\x8f\x2b\xfa\x4c\x85\xf0\x81\x79\xb4\xf9\x76\x70\x31\xd2\x5b\xe0\x3b\x34\x08\x34\x17\xdf\xbf\xde\x02\x19\x3e\x5e\xf4\x29\x6c\xf7\x11\xd6\x7b\x90\x0b\x90\x1a\xf0\x95\xd0\x71\xdf\x0f\x91\xc4\xde\x15\x6f\x61\xb2\xb4\x41\x1f\x49\xaf\x58\x2b\xe4\xbd\x19\x9f\xe4\xd5\x26\x9a\xa8\x54\x4b\x98\x75\x6c\x90\xdc\xed\xe9\xe5\xef\xb1\x75\xe8\xe2\x30\x96\x80\xf3\x43\xfa\xc7\xc2\x35\x8d\xab\x98\xab\xd3\x8d\xca\x09\x5c\x8f\x3f\x74\x9e\x2b\xa9\x63\x01\x2b\xc5\x42\x51\x64\x76\x98\xcb\xbf\xcc\x46\x10\x97\x54\xad\x34\x3b\x1d\x5d\x40\xe2\x58\x23\xc6\x3d\x03\x8e\xf1\x45\x30\xae\x75\x86\xf1\xaa\xf5\xed\x68\x70\x12\x52\xa1\x61\x86\xa8\xb9\x35\x66\xe2\xd5\xa4\x16\xc2\x54\x9e\x45\x9c\x42\x29\xfb\xc6\x20\xf6\x32\xdf\xe9\xf0\xa6\xc0\xbf\x20\x6f\x1e\xe7\x62\xbc\x25\x18\x0a\x09\x1a\xf6\x49\x2d\x84\x9f\x71\x9f\x34\xf0\x61\xdd\x30\xc0\xa4\xae\x29\xb2\x85\x02\x54\xb0\xcd\x47\x98\xb3\x59\x02\xb8\xd7\x69\x0a\x63\xe5\xe6\xa4\xad\x82\x59\x83\xe0\x75\xae\x8c\xd2\x96\xd0\x64\x2b\xe3\x02\xa3\xa1\x00\xf8\x68\x94\xfc\x7c\xfb\xdb\x12\xf4\x36\xde\xea\x95\x9d\xeb\xee\xf6\x7f\xc6\x66\x47\xe6\xc4\x27\x33\x25\x02\x53\xbf\xc9\x75\x35\x69\x28\xc2\x6b\xe9\xfc\x53\xef\x7f\x65\x36\xdc\x4a\x42\xb4\x4c\x08\xd5\x8d\xbf\xb1\x68\xb5\xad\x04\x64\x89\x7f\x9f\x41\x02\x92\x03\xaf\x08\x41\x1b\x4a\x25\x06\x98\xa2\x32\x97\xb7\xe5\xe1\x0d\x13\x9a\x7c\xce\x09\x3d\x17\x78\x8b\x44\xcd\x25\x6d\x4f\x3c\x52\x25\xed\xf6\x8b\x08\x95\x9b\xed\x5a\xe8\xa1\xa8\x34\x9d\x8c\x13\xbc\x0b\x02\xfb\x30\x10\x7a\xbd\xde\x46\x67\x39\x36\x8d\x99\xac\xda\xd6\xd1\x71\x7d\x6a\x26\x64\xd1\x65\x12\xff\x3d\x50\x0f\x4f\x87\x9e\x5f\xb3\x89\x75\x52\x11\xe1\x0e\x33\x7b\x84\xce\x87\x3e\xe3\xa2\xb6\xad\x28\x50\xae\x7f\x57\xff\x01\x87\xec\x9a\x8f\x7c\x3c\x08\x63\x9e\x28\x4b\x86\xad\xd1\x64\x11\x47\x71\x4d\xc7\x30\x6c\x04\x9d\x82\x47\xb4\x56\xe1\xf0\x45\x5c\xfa\x3e\x30\x76\xfc\x57\xc1\xaf\x6d\x3b\x40\xbb\x3b\xa3\x98\x57\xfb\x1a\xa5\xee\x21\x17\x0c\x55\x09\x8c\x60\x17\xe6\xfb\xe3\x22\x4c\x0f\xf1\x3e\x2b\xd0\x60\xc0\x80\xc3\x8c\xae\xe2\xf2\x2e\x89\x39\x14\x69\x83\x52\xae\x1a\xea\x16\xfa\x27\xb1\x2d\x3a\xb2\x8d\xc2\xc9\x38\x56\xf1\x5d\xed\x37\xa6\x82\x49\xff\xa1\xde\x08\x93\xc3\xc1\x51\x34\x9e\xfc\xee\xe1\x51\xfc\x6e\xf9\x5e\x37\x33\x0c\xe0\xb3\x7b\x60\x12\xf6\x9d\xec\x4e\xff\xe1\x30\x88\xd8\x34\x85\xaf\xf8\x29\x47\x10\x57\xf0\x28\x88\xba\x91\xec\x81\x32\xc8\x3c\x05\xd2\xbd\x38\xbf\x1a\x5e\xab\x66\xf2\x61\x1c\x26\x43\x0d\xe4\x3c\x4e\x86\x40\xfe\x73\xf1\x1c\x38\xce\xc1\x60\xb0\x97\x92\x75\x29\x9c\x83\x8e\x1e\x95\xb2\x22\x99\x15\x7d\x72\xd3\x33\x36\x48\x91\xe6\x78\x07\xc5\xd1\xda\xe7\x44\x51\x6e\x90\x80\xdc\x8d\xbc\xbe\xbb\xe2\x7a\xc7\xfe\x6f\x96\x59\xb6\x97\x4e\x0c\x58\xd8\x19\x21\xf2\xb6\xb2\x09\x88\x0c\xa1\xb8\x8d\x1e\x8b\x5d\x96\x99\x73\x6e\x71\x67\xc3\xd7\x0d\x9a\x61\xb6\xf9\x6a\xd2\x83\x1d\x92\xf5\x2f\xc0\xd3\x95\xc1\xe0\x4b\x99\x34\x36\x5c\x1b\x35\x8b\x7a\xfe\x1e\x4f\x66\xff\x57\xa7\x2f\x9a\xcc\xfa\x7c\xcb\xfd\xd6\xb3\xe6\x9e\xb5\x88\xde\xf3\xe3\xa3\x42\xbd\xfd\x17\xc8\xe1\x5b\x53\x39\xb4\x66\xd9\xcd\x51\x93\xac\x8d\xa2\x74\x5e\x5b\xab\x54\x3c\x78\xf0\xcd\x80\x0d\x7d\x39\xb9\x01\xd4\x99\x37\xa7\x93\x9e\xe3\xcc\x04\x42\x3f\x56\xfb\xda\xaa\x56\x6b\x18\x84\x7a\x8e\x4b\x53\x27\x24\x23\xf7\x46\x4b\xcf\x2e\x5a\x8e\x3e\x0d\x63\xf4\xc3\xd2\x60\x3b\x0e\x6a\xfc\x56\x12\x5e\x89\x21\xc1\xbc\xcf\xb6\xa0\xca\x88\x39\x5a\x29\x8b\xa7\x4d\x32\x9f\x45\x88\xed\xd5\x66\xd5\xf7\x36\xe4\x0e\xfa\xb5\x64\x64\x1e\xdf\x6d\x2c\xd2\x95\x49\x22\x07\x48\xf2\x36\xb3\x5c\x36\x0d\x60\xce\x89\xa0\x49\x36\x67\x83\xfc\x3c\x91\xe5\x04\x6a\xf5\xa9\xdd\x2e\x2d\x27\x51\xdf\x3a\x71\xb6\x93\xf1\xa8\x59\xc6\x8c\xc9\x4b\x39\xda\x46\x5d\x01\xab\x06\x20\x7a\xc7\x62\xf8\xce\x8f\xcc\x68\xfc\xf7\x61\xc5\x3a\x89\x47\x3c\xc6\xb0\xdc\xe0\xe4\x61\x5e\xc7\xa0\x78\x34\xec\x7c\x22\x5d\x55\x5a\x1d\x0e\x98\x16\x36\x78\x17\xa9\xdd\xbc\x5f\xd4\x7a\xcb\x94\xfd\x86\x64\x5b\x36\x08\xd2\x39\xed\xf3\x81\x50\xf2\xea\x69\x02\xa1\xc9\x8f\xa8\x7c\x1c\x5e\x9d\x2d\xdf\x7e\x79\xc0\x29\xa0\x1d\xed\x46\x1b\x7a\x23\x0d\x8e\x84\xe5\x50\x34\x2c\x2c\x17\xa4\x46\x98\xd9\x6b\xea\x16\xae\x4f\x83\x23\x5f\xf7\xe4\xb7\x75\xb3\x89\x0f\x53\xcd\xb4\xa0\x23\x93\x26\xfc\xf2\xf2\x71\xc5\xf8\x4d\xc9\xfa\xfe\x67\x8d\xa5\x1d\x16\x0c\xbd\xf4\x31\xb9\x52\xbb\xd5\x38\x0f\x3b\xeb\xc7\x0b\x24\x1e\x9b\x6f\x78\x6d\x0e\xfa\x51\x5c\x35\x38\xcb\x98\x59\x35\xd3\x2b\xcd\x31\x9d\x23\x6d\x66\x19\xda\x4e\x44\xeb\xd0\xe6\x46\xaf\x04\xe4\xe4\x15\xff\x24\x87\x05\x80\x2e\x57\xa8\x97\x3e\x53\xe9\x89\x94\xa8\x24\x62\x0a\xfc\x4b\xef\x71\xd2\x0b\x9b\x79\x84\x62\x01\xd1\x87\xe8\x13\x90\xb5\x0c\x88\x67\xbb\xfd\x51\x48\xc3\x23\x1b\xe5\x43\xba\xbc\xe9\xff\xe1\xd9\x5b\x7f\x5d\xe6\x07\x1c\xf5\xcf\x0c\xef\x35\xbb\xfd\x5a\x07\x91\x50\x05\xd1\xcc\x61\x21\xdf\x0c\xbe\x71\x79\x76\x6b\x1b\xa4\xcf\x17\x6a\xb5\x5f\xf0\x3d\xcb\xd2\x11\x0c\x72\x5c\x6b\xa1\xcb\x2b\x7f\xa3\xd7\x9a\x22\xad\x30\xbb\xef\x43\xe0\x9d\xcd\x44\x53\xc6\x88\xea\x91\xa6\xae\xc1\x41\x9a\xab\x91\x9d\x59\x62\xc9\xaf\xc6\xc6\x58\x33\x86\x81\xed\x70\x1c\x16\xea\x9c\x53\x5a\xed\xe9\x61\xf6\xaa\x57\x5a\x32\x0e\x64\x6a\xc9\x5e\x88\x52\x4a\x0b\x92\xb4\x63\x89\xb6\x89\xc0\x82\xf8\x7d\x9f\x7f\xc8\x69\x27\xdb\x61\xae\x48\x2a\xdb\x45\xc3\xad\xd1\xca\xae\x6e\x63\xd6\xcf\x7f\x7a\xeb\x13\xc7\x1a\x16\x8e\xbb\x56\x2d\xb6\xc9\x2d\xc7\x2e\x78\x9a\x6c\xb6\x22\x90\x03\xf6\xb0\xa9\x2c\x1f\x8d\xbb\x43\x14\xb5\x58\x57\xc6\x68\x23\xd5\x90\x7c\x2b\xb9\x88\x1f\xfa\xaf\x39\xc6\x90\x8a\x2d\x74\x79\x1e\xcf\x04\x46\x05\xc2\xeb\xb8\x88\x34\x1e\xce\x09\x6f\x82\xb7\x80\xa1\x24\x3d\xb1\x97\x50\xd5\xc3\x70\x2b\xfc\x69\x20\x12\x1a\x9b\x2a\x78\xd3\x26\x62\xaa\x10\x0d\x69\x72\x1a\x67\xf3\xc0\x7f\x9c\x09\x8a\x8c\x94\x2f\xe5\x0f\x0a\x91\x54\xa4\x9e\x0a\x37\x85\x77\x84\x4e\x69\x00\x47\x78\x54\xbf\x3d\xf9\xa9\xa0\x3c\xd0\xa3\x4c\x80\xe0\x94\xa3\x8f\x20\x3d\xc2\x44\x88\x73\xfc\xec\xc5\xb3\xb7\xcf\xea\xa8\x92\xbb\xc8\x0e\xd1\x0d\xf2\x2f\xbb\x82\xee\xd1\xd9\x06\x44\xe9\xda\xa1\x22\xb7\xa4\x44\x9a\xf8\xb0\xd4\xba\x3d\xf1\x69\x45\x1c\x5b\xc0\x21\xf1\x9b\x90\x89\x70\xae\x0d\x73\xee\x46\x21\x84\x59\xe8\x0a\x85\xb0\xfd\x4d\x6b\x09\x45\xcd\x70\x6b\x76\xae\xd0\x05\xb7\x5f\x77\x51\xde\xb9\x1c\x4d\x1b\x17\x7d\x93\xa9\x0f\x2b\x8a\x6a\x85\x6c\x39\x47\x54\x4a\x26\xc1\xa3\xdb\xfa\x36\x0f\x34\xf5\xb8\x0b\xeb\xb9\x89\x74\xa8\xe5\x4f\x38\xa1\x0c\xdc\xe7\x15\x44\x6c\x8f\x5b\xd8\xf8\xe9\xdd\x36\x7e\xf2\xe5\x37\x3e\x3e\x21\x57\x2b\x74\x92\xe7\x6c\x8b\x4e\x87\xb7\xef\x4a\x8a\x9d\xed\xa6\xf7\xce\xe7\xc3\x0c\x28\x94\xeb\x4b\x47\xca\xaf\x6f\x2b\x42\xa1\x6b\x0d\xef\x0f\x50\xb4\x7f\x46\xe1\x2b\xf8\x93\xfb\xc0\xf1\x0c\xfd\x1f\xe8\xb7\x77\x72\x45\xd7\x30\x7d\x99\x87\xfe\x84\x0c\xc0\xd0\x8f\x92\x2b\x4f\x01\xc3\xff\x0a\xd2\x4e\xad\x64\xad\x57\x84\x5a\xd7\x40\x85\x15\xa5\x35\x7c\x89\x0b\x26\xab\x4d\xd7\xb2\x61\x8f\xec\x2b\x9b\xb6\x06\xad\x1c\xb1\xa7\x13\xb6\x71\xf2\xe6\x41\xf1\x72\xb5\xc2\x44\x75\x12\x67\xd2\x6d\x1d\x67\xa3\x2e\xe4\xd8\xc5\x54\x86\xd2\x6e\x83\x59\x2e\x93\x4b\x32\xe5\x74\x28\x9a\x29\x65\x18\x8c\x10\xa9\x2f\xc0\xd4\x59\x92\x0b\xbb\x49\x76\xcb\x2f\xd2\x17\xe9\xa5\xc8\x9e\x46\x78\x19\xb9\x37\xc7\x77\x4d\xe8\x5d\x0d\x2b\x15\x4f\x44\xf2\xcb\x18\x73\xa0\xa9\x09\xa4\xe9\x55\x18\xaa\xd7\x45\xad\x5b\x37\x15\xe5\x10\x09\xc9\x88\xaa\x69\xf5\x70\xb3\x6a\x40\x50\x64\x3c\x19\x5d\x61\x6d\xcf\x75\x15\x83\x69\x0a\x7a\xff\x21\xa2\xc9\xb9\x5f\x51\x16\x9f\x6a\x44\xbd\x49\x6b\x34\x1b\xc1\x70\x5f\x7d\x28\xb7\xb9\xfa\xe7\x6c\x45\x56\x7e\x6f\xc5\x81\xf1\x49\x3a\x8e\x3d\x8a\x40\xdc\x9a\x10\x1b\x3e\xdb\x4e\x99\x3f\x93\xe8\xa6\x60\x66\xf1\x0d\x87\xbf\xb5\xf0\xa6\xbd\x1a\x75\x63\x40\x18\xea\x98\x38\x1a\x22\x7b\x7c\x41\x22\x3e\xbd\x0a\xae\x8f\x8d\xb5\x2a\x0f\x69\xd2\x0a\x5a\xc0\x75\x1d\x67\x67\x47\x6f\x51\x25\x11\xca\x2c\x64\xdb\x88\x46\x2d\xe5\x6c\xd3\x7e\xde\x72\x58\x2c\xe4\xc1\xe7\x58\x01\xc5\x0f\x2f\x54\x18\xb7\x6c\xf7\xcb\xaa\x07\x71\x22\x2f\x58\x09\xe9\x32\x53\x13\x64\xb8\x01\xc1\xca\xc6\x05\xc3\xc9\x6f\x6f\x5a\xd8\x18\xc1\x0c\xdc\x8c\x60\xf2\x28\x6b\x6b\x1c\x53\xe7\x73\xf2\x95\x44\xd4\x16\xca\xaa\x64\x0d\xce\xdc\xf5\x18\x30\xe7\x13\xc0\x06\x17\xc5\xa2\x7c\x52\xc7\x87\x92\x55\x59\xb3\xf8\x5c\xb2\xa6\x43\xe5\x2c\x0a\x57\x15\x3f\x8c\x92\x81\xb4\xb6\x81\x96\x69\xcc\x75\xfc\x54\xee\xde\xae\xf6\x82\xb1\x6e\xfe\xe4\x5f\x4c\x34\x7a\xdf\x22\xbf\x60\x10\xa0\xe7\xc7\xb0\xcf\x41\x20\x9c\x9c\x3f\x89\x32\x14\x77\xf8\x2c\xe7\xc9\xb2\x28\x60\x1b\xc1\x37\xa2\x10\xb6\x67\xc2\xaa\xa2\x94\x45\x0f\x8f\x6d\x67\x15\x6a\x99\x12\x3a\x4f\xea\x58\xd2\xd4\x17\x93\x86\xb0\xa7\xdf\x52\xe8\x69\x91\x6f\x98\x84\x4b\xaa\xc3\x17\xa0\x37\x92\x6c\x46\xd6\xfd\x1a\xb4\x4f\x1d\xe5\x4a\x1f\xc4\x0b\x5f\x9b\x0a\x47\x4a\xba\xaa\x95\x4d\x1a\x44\x12\x36\xe9\x01\xb6\xdc\xc5\xa4\x87\x07\x87\x77\xe3\xe7\xdb\x50\x4a\x3c\xce\x63\xb0\x37\xe3\xc2\x45\x95\xd9\x16\x65\x7d\xea\xb5\x09\x34\xa1\x6d\x6b\xcf\x8f\x8d\x29\x70\x9b\xe3\xe9\xbc\xe6\x78\x51\xe3\x46\xad\xc3\x57\xde\x72\xce\xac\x2c\x75\x84\x74\x6c\x32\xde\xd8\x78\xc7\x57\xed\x82\x7a\x42\x4c\xbd\x60\x40\xbb\xc7\x4f\x5f\x94\x39\x72\xf8\xbd\xf8\xba\xb1\x9f\x75\xf9\x44\xf8\x96\x92\x28\x51\x8c\x5b\x1b\xa5\xdb\x69\x9a\xc6\x6f\x18\xc1\x46\x98\x7d\xdd\x22\xa9\x8e\x5a\xf1\x7a\x1d\x9f\x06\x1b\x4b\x0b\x1c\x54\x3d\xc6\xb8\x94\x80\xf8\x14\x85\x11\xb2\x33\x4b\x6a\xe8\x5c\x5f\x37\x46\xbe\x21\x9c\x5c\xd7\x62\xae\xe1\x48\x8d\x46\x94\x50\xa1\xc3\xab\xf4\x12\x00\xa1\x58\x86\xe4\xd5\x45\x8b\xff\xfc\x38\xfc\x1a\x16\x7d\x8d\xb7\x30\xd3\xe4\xb7\x95\xee\x6f\x1a\xe1\xd6\xd4\x02\x47\xd4\x97\xa3\x2c\x91\x8c\xdb\xd3\x86\xda\xed\xa1\x27\xf9\x0d\x07\xa7\xc4\xb8\xca\x57\x1e\x01\x30\xf5\xe4\x32\x7e\x83\xf3\xfc\xc5\x84\xe9\xc6\x6d\x1b\xfa\x6c\x44\xf3\xff\x55\x34\x37\x63\x74\xa7\xca\x5b\x8b\xd4\xb8\xf4\x46\x9c\xde\x68\xf1\xd5\x7b\x1b\x9f\x85\xe2\xa7\x27\x1f\x90\xe0\x87\x55\x82\x5f\xe3\x88\x84\x85\xdb\x7c\x91\x28\xbf\x8d\x4d\x54\x65\x29\x92\xc8\x6c\x6f\x1f\x6c\xa3\x4e\xf3\x6c\xc4\x77\xff\x26\x2c\x07\xde\x21\x17\x6a\xaa\x82\xba\x12\xc6\xfb\x4c\x4c\x7e\x13\x34\xe7\x83\x82\xbb\x88\x34\x9f\x03\xcf\xb7\x45\x54\x86\xfa\xd6\x12\x8d\x9e\xd6\x96\x85\xe2\x2e\xea\x17\x6a\x4b\xe1\x81\x9a\xba\x93\xf0\xa0\x1c\xa2\x36\x17\x1e\x34\x4f\xc7\xb0\x2b\x9b\x71\x75\xeb\x49\xb9\x06\xba\x93\x55\x09\x0f\x35\xaf\xd8\x32\x03\x49\xa4\x27\xa8\x8d\x14\x50\x76\xfb\x6a\x88\x78\xd7\x16\xcd\xce\xf0\x0c\x99\xc7\x20\xf0\xd2\x34\xb2\x73\x9a\xca\x11\x3b\x59\x59\x0f\x5a\xda\xef\x58\x5e\x83\xd0\xb8\xc0\xa7\x65\x5f\x51\x00\x3f\x94\xba\x74\x08\xde\x1c\xbe\xa5\x7f\x49\x8e\xc9\xf1\xe4\xa3\x63\x71\xf9\x4a\xbf\x93\xdf\xe9\xc5\x20\x8d\xf5\x4c\x69\x98\x8b\xaf\x02\x7f\x39\xd3\x49\x5d\x10\xbf\x96\xb0\x43\xd0\xa1\x25\xd0\xce\x0b\xa8\xf7\x6d\x06\x18\x0a\xb7\x7e\x49\x49\xdf\xac\xa6\x89\xce\x57\xbd\x8a\xb2\x55\x0b\xe5\x06\xe4\x4c\x6f\x0e\x7f\x5f\xc6\xc9\xf6\x6d\x0b\xc6\x66\xd5\x65\x24\xc0\x92\x7d\x77\xf3\xba\x4e\xd5\x3b\x03\xfe\xe3\x45\xe9\x89\xd4\x96\xfa\x18\x70\x50\xe9\x02\x88\x38\x4f\xa2\x6c\xb3\x8a\xbc\x97\x4f\xa2\xcc\xd4\x9f\x6d\x5a\x73\x96\xfb\x25\x05\x64\xe3\x9a\x7e\x89\xf8\x6c\x8a\x22\x3a\x0a\xa0\x89\xfd\x21\xf7\xac\x08\x23\xf5\x9c\x19\x28\xee\x92\xc8\xd8\x01\x67\xf3\x07\x0f\xea\x52\xad\x58\x11\x5f\x05\x75\x05\x3a\x3d\xe1\xde\x55\xc1\x8e\x22\x13\xca\x57\x5e\x0f\x49\xe8\x9d\xd5\x52\xd8\xff\x6b\x19\xa6\x7a\xe8\x3f\x5a\x1c\x92\xd7\xd3\xa3\x3e\xfc\x08\x65\xa8\x77\x9f\x22\xca\xfb\x21\x07\xd0\x86\xf1\x61\xc8\x76\x5f\x32\x1d\x0e\xd9\x0e\x5f\xc5\x6c\x18\x41\x27\x09\xc9\xbc\x81\x7e\xc2\xdf\x01\x12\xa5\x9b\xda\xd1\x91\xa0\x92\xd8\xcf\x52\x6a\x17\x7e\x7a\x32\xff\x27\x7c\x65\x50\xfa\x86\x45\xcc\x65\x1f\x17\xc0\xdf\x4e\x48\xf4\x40\x9e\xd7\x25\xcc\xc6\x38\x64\x5d\x4f\x7a\x4e\x94\x4b\xa8\xfb\x27\x58\x0a\x94\xe3\x91\x0e\x45\x0e\x65\x65\xc4\xd3\x27\x57\xcf\xa7\xf6\x6d\x02\x6a\xb5\x8b\xce\xc0\x40\xae\x74\xa8\xed\x71\xb4\x6e\x78\x32\x0c\x9d\x35\x12\x31\x03\xbc\xae\x3e\xae\x16\x29\x83\x4b\x34\xd6\x07\x51\x18\x03\xc3\x3f\x39\xeb\x9e\xe1\x43\xff\xfe\x10\x7f\x02\xbb\x48\x50\xc2\xc1\x75\xb2\xda\x7f\x13\x9d\x0a\x19\xd0\xc9\x89\x46\x4e\xfd\x75\xa1\x88\xb7\xbb\x1f\xed\xef\xfa\x2a\x48\xb8\x79\xda\xbb\x06\x48\x14\x43\xff\x89\x30\xd2\xa3\x8c\x50\xa2\x4b\x8e\xe7\xf8\x6a\xd1\x6c\x1b\x68\xa5\xb2\xfb\x8a\x8f\x5f\x5b\x20\x66\xe1\x18\xcb\x1d\xf9\x14\x49\x1d\x91\x19\x84\x65\xc4\x67\xfe\x1c\x5a\xe9\x58\x4e\xe7\x78\x8f\xf2\x79\x34\x9b\xd9\x15\xf8\xbb\x65\x8c\xd1\x26\x50\xbf\x14\x45\x54\x03\xf5\xd8\x99\xa0\x39\x14\x42\x14\xf5\x0f\x77\xa1\xff\x27\xe2\x3c\xba\x88\xd3\x0c\x70\xf9\x44\xfe\xe4\x69\xf2\x95\x55\x13\x9d\xd2\x44\xef\xed\xdb\x17\x20\x65\x44\x63\x98\xc8\xfa\xc6\x42\x0f\x9b\x83\x62\xd0\x12\xfc\x2d\x1b\xe9\xdc\x7a\x48\x40\x11\xcb\x8b\x80\x54\x46\x01\x85\xb3\x7f\x14\x0d\x9b\x5b\x17\xfb\xbb\x72\x9e\x35\xf6\x82\x4c\xd9\xe5\xf7\x62\x92\xb4\x4b\x87\xad\x87\x88\x19\x66\xfe\x5b\x01\x62\x11\xf9\xf5\x72\x86\x47\x57\xd5\x13\x2b\x09\x92\xff\x0a\x84\x34\x2c\xe3\xa9\xe7\xf9\xf0\x9e\x77\xdb\xca\x11\x4f\x7f\x1b\x9d\x69\x75\xa3\xe6\x34\x4c\x06\x67\xe3\xe6\xe9\x2a\xe4\x90\xe9\x7a\x5b\xd3\x86\xb2\xfc\x01\xff\x2e\xcf\x24\x53\x68\x73\x99\x71\x64\x2e\xfb\xd5\x5f\x47\x34\xf9\x87\x1c\x65\xc9\x24\x28\x8a\x5f\x8c\xa3\xfe\xc3\xee\xf7\x61\x36\xde\xe5\x57\xae\x1e\xe5\x17\x67\x1e\xbd\xc6\x3a\xf6\x79\x17\x7a\xfc\x26\xab\xfa\x3c\xf4\xe4\x7f\x8f\xce\xd4\x3a\x59\xf7\xab\xf8\x91\x24\x9c\x79\x48\xc6\x9f\xc8\xf8\x02\xa8\xd9\x7f\xb8\x8f\x37\x46\xe9\xc7\x6e\xc7\xb4\x82\xed\x58\x1f\xf0\xc9\x6f\x83\xa8\xb6\x31\xd0\xf8\x19\xc5\x96\xf2\xbd\x0c\x61\x28\x00\x86\x7e\x5b\x8d\xe8\x53\x9c\xcb\xb2\xbd\x87\xdf\xee\x6d\x55\x7e\xcb\xe2\xdf\x6d\x50\xfe\x24\xcd\xd0\x05\xb3\x1e\xf8\x47\xfd\x33\x67\x26\x0c\x4d\x4c\x00\x69\x0f\x77\x49\x69\xd4\x8b\x8c\x81\xb9\x54\xb0\xaf\xf8\x14\x44\xea\xe4\xf0\xeb\xdf\x0f\x18\x31\x66\x63\xf8\xd9\x87\xa4\x51\x3e\xae\x39\xa6\x35\x3b\x11\x03\x2f\x46\xab\x55\x34\x1e\xc7\xdd\x83\xd5\x8a\x63\x77\x01\x2e\xa6\xf3\xa0\xf3\x68\x86\xd7\x4b\x75\x27\x6b\xe3\xd1\x50\xc1\x2e\x6a\x70\x5f\x61\x8d\x84\x1f\xc1\xb6\x31\x20\x4b\x0b\x5e\x7e\x80\x6d\x2f\xea\xc7\xb8\xf2\xde\xd5\x43\x9c\x89\x6e\xb1\x17\x98\xa1\xf5\x93\x0e\x62\x9a\x66\xd5\x58\x82\x2f\x15\xea\x64\x55\x94\xb3\xf4\x15\x54\xc8\x4e\x13\x7a\xcd\x15\x1f\xbe\xb7\x71\xd1\x88\x06\xa8\xf4\x74\x46\x30\xf1\xbb\x30\x3c\x17\xe8\xc6\x05\x88\x4e\x04\x88\x86\x6d\x0b\xbb\x48\x63\x50\xd1\x70\x5d\xbf\x2d\x63\x80\xd9\x19\xa0\x08\x35\xec\x89\x01\xd2\xdf\x62\xaf\x0b\x38\x5a\xda\x10\x66\x2a\x3f\xc1\x54\x7d\x37\x28\xb5\x0e\x99\x05\x88\x96\xde\x27\xc8\xfb\x16\xa6\x73\xec\x0f\x60\x8a\xe0\x9f\xde\xd7\x0f\x41\xf3\x01\x0a\x19\x24\x87\x83\x23\x7d\x03\x16\xf6\x40\x42\x17\x60\x87\x03\x98\xe4\x79\xfe\xa8\x8f\xd5\x5d\x80\xfb\x67\x77\x18\xc0\x17\x86\xff\xdb\xc1\x17\x86\xff\xbb\x2f\x3c\x80\xef\xbe\xe4\x02\x74\x0f\x90\x04\x7d\x49\xf0\xf1\x06\xb5\x81\xdf\xdf\x00\x7e\xfb\xcb\xfc\x06\xa6\x7d\x71\xd6\x2a\x32\x65\xc8\x95\xfe\x37\x00\x00\xff\xff\xc3\x7f\x7a\x9a\x82\xc1\x0b\x00") +var _web_uiStaticApplicationMinJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\xfd\x6b\x7f\xdb\x36\xb6\x28\x0e\xbf\xdf\x9f\xc2\xe4\xce\x66\x89\x08\xa6\xa5\xa4\x9d\xb3\x4b\x05\xe6\x49\x73\xed\x9e\xa4\xc9\x34\xe9\x74\x66\x28\x36\x3f\x5a\x82\x24\x36\x34\xa0\x92\x90\x2f\x35\x35\x9f\xfd\xf9\xad\x05\x80\x04\x29\x3a\xed\xf3\x3f\xe7\xc5\x79\x61\x8b\x04\x71\xc7\xc2\xc2\xba\xe3\xec\xa1\xf7\x1f\x27\x0f\x4f\x7e\xfd\xdb\x9e\x57\xb7\x27\xff\x93\x5f\xe5\x1f\x96\x55\xb1\x53\x27\x6f\x8a\x8b\x2a\xaf\x6e\x4f\xae\x66\xd1\x6c\x1a\x3d\x82\x4c\x5b\xa5\x76\xf1\xd9\xd9\xaf\xbf\x41\xde\x68\x29\x2f\xcf\xfe\xe3\xe4\x21\x7c\xf8\x5e\x2c\xcb\xfd\x8a\xd7\x27\x1f\x8a\xdf\x7f\x2f\x79\xf4\x6b\xed\x64\xaf\x31\xed\xd7\xda\x2d\xf0\x4c\xee\x6e\xab\x62\xb3\x55\x27\x8f\xa6\xd3\x6f\xe8\xc9\xa3\xe9\xec\xb1\xed\xc3\x4b\xb9\x17\xab\x5c\x15\x52\x50\xa8\x38\x3a\xc9\xc5\xea\x44\xaa\x2d\xaf\x4e\x96\x52\xa8\xaa\xb8\xd8\x2b\x59\x61\x0b\x3f\xf2\x92\xe7\x35\x5f\x9d\xec\xc5\x8a\x57\x27\x6a\xcb\x4f\xde\x7e\xff\xf1\xa4\x2c\x96\x5c\xd4\xfc\xb8\xcb\xb2\xda\x9c\x75\x1f\xe1\xfb\xf3\x5c\xf1\x18\x9b\x3f\x9d\xfe\xaf\xd3\xe9\xe3\x8f\xb3\xc7\xf1\xd7\xff\xfd\xaf\xff\x38\x79\x78\xf6\x1f\xde\x7a\x2f\x96\xd0\x8f\x90\x53\x45\xee\xec\xdb\x89\x08\x39\xb9\xbb\xca\xab\x13\xc5\x78\x54\x72\xb1\x51\x5b\x2a\xd8\x52\x45\xea\x76\xc7\x43\x4e\xe6\x15\x57\xfb\x4a\x9c\x2c\x55\x54\xd4\x3f\x17\x62\x25\xaf\x43\x4e\x12\x6f\x16\xcf\x18\x63\x3c\x12\x72\xc5\x3f\xde\xee\x78\x10\xa8\xc4\x9b\xc6\x7e\x5e\x55\xf9\xad\xcf\x18\x13\x4d\xe3\xdb\x56\x7c\x8f\x31\x11\x04\xe1\x94\x31\xa6\x9a\xc6\x17\xfb\xcb\x0b\x5e\xf9\x8c\x41\x23\x72\x7d\xa2\x82\x40\x9d\x4f\x83\x40\x9d\xce\x4e\x0a\x71\xc2\xc9\xa1\xed\x5f\xd5\xf5\xef\xb3\x4a\x79\xc6\xee\x0e\x4e\x97\x78\xbe\xdc\x86\x3c\xba\xcc\xd5\x72\x1b\xee\x14\x69\x9a\x34\xa3\xce\x48\x05\xb9\x53\xa9\xc8\x98\x37\x3d\x10\xaa\xba\x5a\x0b\xf8\x46\x2b\x5a\x90\xbb\x62\x1d\x2e\x55\x94\x2f\x97\x7c\xa7\x9e\xe7\x2a\x0f\x39\xd1\x0d\x4a\x9a\xd3\x1a\x66\x82\xdf\xec\x72\xb1\x92\x74\xef\x0c\x97\x96\x6c\x9f\x2c\x55\xb4\xcc\x97\x5b\x1e\x73\xba\x64\xfb\x84\xa7\x75\x16\xc3\xbf\x20\xa8\xe7\x50\x6d\x10\x94\xe9\x32\x0b\x82\xb0\x68\x1a\x78\x8a\x56\xb9\xca\x49\xd3\x54\x9e\x9e\x86\x5a\x55\x85\xd8\xf8\x9e\x9d\x06\x41\xec\xc8\x9a\x26\xb4\x35\x32\xa5\xa2\x9d\xdc\x85\xa4\x69\x96\x2a\xda\xec\x8b\xd5\x64\x12\xd7\x84\x42\x85\x4d\x13\xc2\x0f\xdb\x27\x77\x87\xf8\x4e\xc9\xff\xf9\xf0\xee\x87\x78\xa9\x22\x21\xe5\xee\x40\x68\xe8\xcb\x8b\x5f\xf9\x52\x75\x13\xdd\x5b\x94\x2e\x95\x40\x1f\x13\xac\x0a\xc7\xab\xb8\x58\x61\xcd\x54\x90\xb8\xed\xf9\xe0\x1b\xa6\x51\x41\x08\xcd\x19\xe6\x2d\x9a\x26\xcc\x31\xb5\x7d\x60\x77\x07\xf8\xac\x5f\x08\xc5\x81\x07\x41\x98\xa7\x38\x75\x97\xbc\x7c\x96\xd7\x3c\x14\x24\x63\x15\xa1\x76\x3e\xba\x7e\x25\xa1\x64\x79\x2a\x32\x2a\xf6\x65\xc9\x98\x0c\x02\x4c\x18\x16\x26\x24\x96\x2c\xa7\xf2\xd0\x2d\xb0\x04\x30\x87\xe5\xbf\x77\x79\x2b\x5a\x50\xe9\xae\x68\xce\xa4\xbb\xa2\x7b\x26\x13\x9e\x76\xcb\x9f\xc5\xdd\x33\xac\x6e\x9e\xee\x33\xac\x1e\x06\x54\x31\x91\x40\x42\x0c\xff\xf4\x60\xc9\x1d\x6e\x99\xa7\xb0\x1f\x42\x45\x12\xc5\x54\xb4\x94\x62\x99\x2b\xe8\xd0\x65\xbe\x0b\x15\x75\x07\x42\x48\xac\x00\xf8\xab\x44\xb1\x54\x65\x71\xa8\x58\x6f\x9c\x8a\x50\xc5\x4c\x0e\xf8\xae\xa2\x7a\x57\x16\x2a\xf4\x4f\x7c\x42\x68\xc1\x94\xd9\xbd\xf3\xb5\xac\xc2\x79\x71\x7a\x3a\x27\x2b\x5e\x72\xc5\x4f\xaa\x54\xa5\x45\x96\x41\xa7\x45\xe2\xd5\x61\x45\x62\x0f\xfb\xf6\xe2\x72\xa7\x6e\xdf\x21\x88\x84\x15\x31\xc0\x77\x08\x45\xd3\x84\xa6\x68\x3b\x1c\x5a\xeb\x01\x13\x00\x15\x3d\x4f\x25\xcf\x05\xce\x68\xca\x33\xea\x4d\x09\xcc\x4f\xbd\xdf\xed\x64\xa5\x22\x5d\xfc\x85\x9e\xad\xa6\xc9\x3d\x96\x47\xd7\x88\x3c\x12\xa7\x66\x9c\x2d\x06\x6b\x4b\x0e\xce\xda\xe5\x7a\x73\xe2\xe4\x56\x0c\x21\xa6\x8f\x6b\xf4\x02\x16\xcc\x87\x9e\x9d\xfa\x13\x11\x55\x7c\x57\xe6\x4b\x1e\x7e\x50\xd4\x3f\x7d\x30\xf3\x49\xa4\xe4\x1b\x79\xcd\x2b\x9c\x3a\x32\xc7\x9a\x78\xb4\xe1\xea\xa9\xd2\x48\x97\x87\xc5\x08\xc4\x55\xe4\x4e\x55\xb7\x77\x15\xf3\x55\xb5\xe7\x80\xc6\x2a\xc4\x6a\xeb\xbc\xac\xed\xeb\x2c\xf6\xa1\xcb\xfa\x0d\x9e\xe2\x49\x35\xf1\xf5\xeb\xa4\x8a\x5f\xa8\x48\xf1\x1a\x26\x14\x66\x69\x97\x57\x35\x87\x6d\x09\xb3\x5e\x1d\x96\x88\xa8\x24\xb9\x3b\x2c\x15\xce\xab\x19\xea\x81\x97\x35\x3f\xa9\x98\x3a\x18\x0c\x50\x75\xd3\x51\xb7\x18\x10\x97\x56\x69\x0c\x59\xac\xc3\x10\xc7\xef\x6b\x64\x72\xbc\xa2\x3c\x55\x19\x2c\x97\xaf\xf1\x02\xe6\x33\x6b\xec\xcd\x0c\x0e\xf5\xa6\x5d\x3b\xfb\x90\xdc\x1d\xa7\x96\x5d\xea\xac\x4b\x5d\x86\x66\xa2\x74\x6f\x5f\x45\xf9\x52\x15\x57\xfc\x45\xc9\x2f\xb9\x50\x66\x98\x9c\xdc\x39\xab\xba\xd6\x07\xcf\x4a\x9e\x70\x06\x5d\x9b\x5f\x6f\x8b\x92\x87\x3c\x08\x66\x5e\x6f\x71\x2d\x7a\xe7\x5d\xd9\x5d\x7f\x37\x17\xf5\x4b\x8b\xe2\x15\x21\xdd\x69\xb0\xa9\x38\xe4\x74\xf0\x7f\xd5\x76\xde\x83\xbd\x54\x96\x90\x46\x39\x81\xf3\xe8\x80\x60\xa1\xba\x86\xbf\x50\x91\xad\xe6\x84\x03\x3c\x76\xa5\x8f\x00\x48\x61\x1f\x1f\x18\x18\xe8\xf5\x6e\x5d\x94\x8a\x57\xa1\xa2\x70\x2c\xcd\x71\x77\x77\x49\xe4\xf0\x67\x5a\x87\xb1\x0b\x8d\x51\x60\x32\xcf\xd9\x54\x77\xa5\x9b\xa9\x55\x77\x5c\xfe\xd4\x62\x88\xc6\x27\x54\x30\x1e\x2d\x2b\x9e\x2b\xfe\x5c\x2e\xf7\xb0\x4a\x2f\xab\x7c\x03\xbf\x7a\x7b\x08\xf3\xd5\x2c\x21\x41\x2c\xd2\xe2\x14\x32\xf8\x1c\x9a\x33\xa9\x5d\x2c\xd1\x75\x61\xab\x17\xba\xeb\x32\x4c\xf0\x0f\xf9\x25\x0f\x39\xf5\x55\x7e\x51\x72\x9f\x04\x81\x9b\x0e\xbb\xbb\x5b\x87\x44\xc5\x30\x33\x55\xad\x9e\x6d\x8b\x72\x45\x7d\x55\xf9\x24\xc1\xcd\x6b\x5a\xaf\xbf\xbb\xfd\x98\x6f\xb0\xa8\xaf\x2e\xe4\xea\xd6\x27\xe9\x34\x6b\x1a\x1e\xe5\xbb\x1d\x17\x2b\x2c\x17\xf2\x48\x5e\x0b\x5e\xd9\xe1\x0e\x06\x60\x0b\x92\xd8\x81\xb3\x8d\xbb\xd2\x48\x01\xb1\x10\x76\xb8\xc7\xf4\x6a\x89\x55\x94\x2b\x55\xe1\x40\x6e\x77\xdc\x27\x64\xe2\x9f\xf9\x13\x9d\x95\x3a\x15\x5d\x76\xcb\x20\x45\xc4\x6f\xf8\x32\xd4\x99\xda\x09\x53\x89\x69\x40\xa5\xb3\x2c\xe6\x51\xc5\x2f\xe5\x15\xef\xb0\x93\x69\xc0\xad\xf4\xd6\x90\x6e\xb2\x0a\xa1\x6a\x41\x2b\x36\x9d\xeb\xee\x85\x82\xf1\xb4\xca\xc8\xbc\x9a\x4c\xc8\x52\x45\x9f\x10\xb7\x08\xea\x6f\x4a\x79\x91\x97\x2f\xae\xf2\xd2\xa7\x9e\x42\x12\x42\x7f\x53\x69\x95\xf5\x3e\x13\x07\x8a\xae\x74\x4b\xc5\x7a\xb0\x34\xb8\x6c\xdb\xbc\xee\x1d\xa4\x48\x47\x51\xc9\xda\xaa\x39\x1c\xf9\x5d\x43\x54\x12\x5a\x33\x19\xf1\x2b\x58\x3a\x80\xb5\x9a\xdc\xd9\x53\x20\xda\xe6\x62\x55\x72\x9a\x9b\xcf\x40\xde\xc1\x00\x05\x60\xb9\x1a\xa1\xb0\x62\x53\x5a\xb0\x3a\x15\x99\x85\xc6\xe2\xbc\xb2\x03\xc5\x52\x51\xbe\x5a\x85\x8a\x0a\x0a\x99\x60\x1a\x0e\x9a\xe0\x00\x4a\x63\x48\xb9\xdc\x1d\xa8\xa1\x46\x88\x83\x9c\x2e\xf4\x80\xdb\xe1\xcc\x8f\x86\x8e\xb3\x21\x58\x07\xb5\xfd\x13\x86\x7a\xce\xe9\x27\xe4\xb3\x52\x0a\xfe\x02\xfa\x16\x04\xca\x25\x22\xc8\x5d\xe1\x4c\x0d\xc1\xb1\x56\x30\xd6\xc2\x4c\x00\x0c\x4a\xc3\x02\x16\x0f\x15\x74\xc7\xcc\x12\x99\xab\x23\x38\xe9\xea\x26\x07\xbf\x46\x6e\x07\xa9\xef\x20\x00\x1c\x74\xa3\x10\xb7\xc2\x43\x12\x6e\x42\x45\xf0\xd1\xa4\xd0\x4b\x40\x50\x71\x47\x24\x32\x91\x84\x78\x64\x71\xa1\x7e\x90\x2b\x1e\x04\xa1\x8a\xe4\x5e\xf1\xea\xf5\xc7\xb7\x6f\x18\xef\x9e\x09\x75\x86\xbb\x55\x97\xe5\x37\x38\xe2\x20\xe0\x51\x21\x84\xce\x13\x04\x30\x27\xaa\x2a\x2e\x43\xd5\xa5\x12\xac\xb4\x7d\x65\x4e\x01\xe8\x4b\x21\x76\xfb\x76\x00\x42\x63\x51\xb3\x73\xa0\x6f\x2b\xbe\xce\xf7\xa5\x7a\xb6\xe5\xcb\xcf\x7c\x05\x14\x95\x79\xe2\xf6\x89\xaa\xe8\x2a\x2f\xf7\x1c\xc7\x8d\x4f\xd8\x20\x3e\xd9\x14\x1c\xf4\xce\xd0\xc0\x4c\x24\x6d\xbd\x1f\x78\xc9\x97\x0a\x2b\xae\xed\x23\x1f\x7e\x8c\x43\xa7\x97\x4d\xe3\xc3\x54\xe6\x15\xcf\xf1\x5d\x0f\xcf\x94\xf8\xbb\x69\xd4\x7d\x75\xa1\xee\x46\x73\x28\x1d\x35\x3a\xa5\xb9\x3d\x48\xc6\xf1\x9d\xc7\xd8\x3f\xef\x43\x85\xd0\x97\x87\x3e\x89\xdb\x0a\x90\x4d\xd4\xbd\x96\xd5\x53\xc4\x62\x50\x78\x98\xdc\x15\x04\xa8\xf7\x72\xdc\x74\x39\x4b\x33\x5a\xe1\xb4\x16\xe5\x0a\x80\xa1\x6e\x1a\x6e\xb1\x4d\xc1\xaa\x54\x66\x64\x2e\x27\x13\xe2\x09\xc4\x2a\x2d\x32\x2f\xa8\x20\x49\x1e\xed\xf6\xf5\x36\x2c\x90\x28\xbc\xe4\xd5\x86\x87\x39\xbd\xc1\x6f\xdd\x91\xa1\x99\x41\xd1\x3f\x0b\x60\x46\x92\xb6\x10\x90\x96\x39\x89\xf3\x6e\xce\x80\xfb\xbc\x1b\x40\x46\x10\x84\x7c\x08\x1a\x2d\x40\x38\x68\xed\x63\x8b\xd6\x0c\x11\x65\x71\xf1\xbc\xc5\xa9\x08\x52\x79\xf5\x54\x85\x53\xa0\x21\x7f\xda\xed\xec\x0e\x9f\xa8\xa8\x06\x76\x3b\x9c\x11\x5a\x31\x45\x0b\xf6\x59\xb4\x08\x09\xa8\x6d\xa8\x96\x7d\x16\x69\x91\x4d\x04\x1d\x36\x70\x4c\xd6\x3d\xeb\x1d\x93\x1c\xa6\x82\x53\x5f\x48\x81\x74\x26\x10\xd8\x75\x0d\x07\xcd\xaa\xa8\x77\x65\x7e\xeb\x13\x4d\xe3\x2d\xa5\x50\x79\x21\xea\xe1\xf1\x46\x5d\xa6\xf9\x87\xa3\x93\x02\xc1\x2b\xcd\x68\xce\xa6\xb4\x6e\x39\xfd\x79\x7d\x9e\xcf\xf3\xc9\x84\x54\x8c\xa7\x79\x46\xab\xa8\x56\xb7\x25\xec\x18\x99\xe6\x59\x87\xa8\x2a\xea\xcb\x72\xd5\xf6\x84\x0a\x66\x72\x46\x26\x8d\xaa\x04\x8b\x00\x6f\x0f\x23\xf0\x70\x6b\x84\x83\x5c\xcc\xf7\x09\xd5\x94\x72\xff\x43\x10\x3c\x0b\x2b\xf2\x07\xcd\xd2\xa7\x61\xd5\xc2\x09\x21\xc0\xf4\x61\x8b\x61\xc1\xa0\x34\x0d\x45\x10\xb8\xad\x7b\x85\x26\x33\x46\xeb\x2a\x12\x11\x9b\x39\xae\x9c\x39\x26\x44\xa3\xe4\x9c\x4d\xef\x9f\x1b\xe5\xb4\x73\x34\x10\x7f\x24\x75\x64\x26\x54\x62\xa6\xcb\x8f\x75\x5d\x64\x8c\xee\xfd\x6c\xe9\x5e\x44\x11\xec\xca\x90\x12\xaa\xcd\x5b\x25\x6f\x73\xb5\x8d\x2e\xf3\x9b\x70\x4a\xab\x74\x96\x9d\xc2\x6e\x9e\x12\x32\x09\xab\xf4\x11\xd4\xbf\xbb\x81\x9d\xdd\x55\xf9\x42\x57\xa9\x65\x1f\x16\x40\x24\x83\xcd\x18\x56\x89\x7f\x21\xab\x15\xaf\xfc\xd8\x07\x38\xe3\x42\xf9\x24\xf9\x3a\xf6\xaf\x8b\x95\xda\xc2\xba\xa9\x64\x16\x03\x92\x9a\xce\xbf\x3e\x97\x73\x39\x61\x8f\x88\x7f\x99\x57\x9b\x42\x18\x9c\x1d\xe6\x93\x0e\x76\xc5\xe4\x07\x91\x4a\x60\x0e\x69\x41\x08\xad\x92\xb0\xad\xd6\xe6\x3e\x75\x20\x7d\x97\xaf\x56\x40\x4c\xf7\x4b\xd9\xfa\xbd\x91\x12\xa6\xb7\xba\xc0\xc4\xff\x19\xbb\x69\x0a\x92\xb8\xd7\x97\xd1\xda\xbb\x54\xef\xb8\xf7\x5f\xae\xdd\xae\x80\x83\x9a\x3e\xf4\x57\x0b\x32\x32\x77\xea\x78\x24\xd7\xeb\x9a\x2b\xac\x28\xb6\x6f\xaf\x79\xb1\xd9\x2a\x2a\xd9\x5a\xb4\x94\x93\x3d\x59\x2f\xe4\xcd\x87\xe2\xf7\x42\x6c\x82\xc0\xf4\xe6\xf4\x42\xde\xf4\xf1\x43\x9b\xc7\xa7\xde\x8c\x4a\x24\xe6\xa7\xe7\xac\x68\x1a\x2d\x34\xd1\x22\xae\x82\xed\x50\xf2\x07\xc4\x58\x38\x3d\x77\xbe\x06\x41\x58\x30\xae\xc1\x13\x38\x46\x7a\x61\x90\x6b\xd1\x32\x2f\xc5\xbc\x62\x40\x4c\x8d\xf5\xec\x47\x5e\x16\x40\xd3\x37\x4d\x81\x3c\x7a\x57\x4f\xc1\x90\xf9\x7d\x59\xca\x1c\x2a\x6b\x9a\xa9\xe5\x71\x8a\x89\x81\xc2\xa6\x09\xf3\x31\x98\xa3\x15\x95\x64\x02\xb0\xdb\xcd\xee\xd3\x8e\xa4\x7e\x45\x05\xbb\x16\x29\xcf\xda\xa3\xa4\x69\x42\xc1\x7e\x45\xac\x47\x3b\x1c\x10\x04\xf0\x61\x29\x58\xb8\xc4\x43\x2a\xf4\x9f\x14\xeb\x2a\xbf\xe4\x27\xf8\x5f\xb7\xcb\xbe\x9a\x7e\x75\x82\xab\x84\x4f\x5b\x5c\x0e\x78\x3c\x3b\xf7\x09\x4e\xb2\xbf\xac\xeb\x8f\xfc\x46\xf9\x2d\xa2\x88\x2f\x4a\xb9\xfc\x7c\xe2\x15\x97\x30\x19\x39\x74\x99\x18\xde\xe3\xa3\x84\xf3\xdf\x20\x65\xcb\x4c\x51\x05\x5d\x48\xa7\x59\x64\x86\xa8\x05\xa9\x4d\xd3\x4b\xb4\xa8\x9c\xb4\xe5\xa9\x8a\xae\xab\x02\xb8\x81\x27\xde\x4a\x2e\xe1\xb0\x3b\x01\x6a\xeb\xfc\x89\xfe\x0f\x2c\xcc\xb9\x4f\xa8\x8a\x96\xa5\x44\x32\xb4\x9d\x85\xa5\x88\x56\x5c\xe5\xcb\x6d\x48\x08\xc5\xc9\x62\x82\x50\x87\x4d\xfb\xd5\x21\x79\xd9\x12\x38\xba\x3e\x83\xc4\xfb\x43\x82\xa6\xe0\xe0\x33\x80\x07\xfd\x76\xf0\x66\xbb\x10\x86\x3e\x0d\x09\x75\x8e\xba\xe7\x16\xe7\x18\xc1\xcd\xdc\xb2\xf1\x56\x38\x46\xac\x28\x57\x75\x5c\xaf\x02\x04\x25\x9a\xe6\x83\x3d\xeb\x49\x02\x8c\x57\x41\xe2\xe7\x21\x9f\xf8\xa9\x3f\x39\x16\x6f\x16\x89\x8a\x7d\x9f\x4c\xfc\xcc\xa7\x85\x16\xac\x90\x39\x8a\x56\x80\x78\x6f\x1a\x5b\x40\xf3\x73\x28\xe1\x06\x16\x1d\x67\x42\xe7\x03\x8c\x58\xc0\xd9\xad\x88\x6d\xa6\xc0\xea\x54\x5a\x64\xba\xc6\x76\x58\x6f\x1c\x6e\xd1\xe9\xb6\x20\x77\x47\x92\x5d\x15\x04\xc0\x3c\x50\xc5\x80\xd2\x9a\x1b\x8a\x8f\x4d\xa9\x64\xaa\xcf\x48\xf4\x65\xd9\xf3\x23\x81\x87\x20\x9a\x35\xaf\x98\x4c\x8b\xc9\x24\x9b\x13\x7f\x82\x27\x6a\x3a\xcd\x92\xb0\x82\xa3\xc7\x50\x29\x48\xd5\xd1\x10\xf8\x42\x64\x0e\xa1\x3e\x12\xed\x45\xbd\x2d\xd6\x0a\xea\x89\x87\xdf\x90\x66\x13\x2e\x85\xfa\xba\x5b\x39\x47\x76\x5e\xeb\x75\xdc\xdb\x55\x97\x69\x9d\x01\xba\x6b\x05\xf2\x69\x9d\x0d\x25\xf1\xa6\x4c\xc9\xea\x50\x57\x68\x0a\x1f\x4d\x55\xd9\x34\x79\xd3\xc8\xb4\xcc\x92\x3c\xf1\xc2\x3d\x2b\x49\x7c\x25\x8b\xd5\xc9\x34\x0e\xb5\xcc\x0c\xd8\xb1\xba\x1d\x48\x49\x68\x01\xff\xbc\x19\x39\x10\xba\x3f\xe8\xf3\x0c\xd8\x3c\xc6\x19\x63\xbf\x0b\xdb\xcb\xc2\x2d\x9e\x4e\x33\x20\xa8\x64\xea\x3f\xf4\xb3\x20\x28\x42\x58\x97\x6e\xdc\xbf\x0d\x29\xf3\xa5\x8a\xf2\x5f\xf3\x9b\x0f\x5c\xa9\x42\x6c\xea\x68\x5d\xe6\xea\x1d\xb2\x10\x75\xd3\x18\x9e\x15\xe1\x46\x10\xa0\x00\x8d\x9c\x3b\x94\x69\x91\x25\x3c\xae\x80\x02\x60\x77\x07\x42\xd2\x22\x63\x90\xa1\x3b\xc1\x91\x46\x31\xcc\xa9\x37\xa5\x9c\x56\x3d\xa6\xff\x93\x15\x86\xda\xb3\xba\xa0\xa8\x98\x40\x6d\x84\x41\x1c\x35\x2d\x81\xcb\xb0\x63\x9b\xfb\x0f\x01\x22\xca\x74\x9a\xcd\x49\x19\xe9\x69\x22\x54\x6a\x51\x6a\x28\x19\x8f\x2e\x8b\x4b\xe4\x6a\x9b\x46\x00\x33\xf1\x23\xaf\x77\x52\xd4\xfc\x35\xcf\x57\xbc\x0a\xfd\x67\xba\xde\xd3\x8f\x5a\xc8\x01\x50\x28\x11\xec\x6a\x18\xe2\x1e\x48\xdd\x3d\xea\x39\xe0\xbf\xde\x9e\x92\x90\xbb\xb2\x5d\x94\x9a\xcc\x2f\x2a\x9e\x7f\x3e\x14\xeb\x10\xfa\x51\x88\x93\x8a\xe4\xba\x4b\xb0\xcf\xee\xda\xca\xb4\x98\xd7\x2b\x8d\x00\x67\x29\xc5\x15\xaf\x14\xaf\xea\xb4\x9e\xf8\x27\xfe\x04\x3e\x64\xe4\x2e\x67\xb5\xad\x11\x29\xbe\x9a\x1c\x72\x96\x37\x4d\x61\xcf\x94\x3c\x09\x73\x4f\x0f\x3a\x08\xba\x8e\xe4\x84\x56\x69\x9e\x59\x10\xea\xe6\xf5\xed\x00\x27\xd9\x59\xa5\x25\xc0\xce\xd2\x9d\x4f\xb3\xa3\x70\x1a\x96\xe9\x2c\xd3\x0c\x12\x12\xf8\x4e\x7f\x49\x99\xe6\xfd\xad\x9c\xb1\xde\x78\xf2\x0c\xa1\x44\xb2\xa5\x5d\x92\xb9\x44\xae\x81\x47\x95\x99\xff\x97\x05\x2f\x57\x75\x2a\x33\x40\x17\xe9\x48\x7a\xc6\x14\xa1\xde\x3e\x08\x2a\x60\xb5\xa1\x87\x2f\x51\x84\x08\x54\x29\x73\x13\x42\x45\xbb\x11\x10\x42\xf7\x4c\x52\xa7\x65\x68\x56\x43\x89\x24\x92\xed\x5b\x1c\xe9\x3f\x04\xdc\xb8\x0f\x82\xbd\x07\x9f\x60\x69\x60\xd5\xf6\xb8\x14\x32\x6b\x9a\x32\xf5\x1f\xe2\x23\x35\x8c\x22\x02\x7d\x09\xf5\xd5\xac\x70\x54\x12\xb4\x4e\x67\x19\xd3\x3a\x9b\xae\x0a\xd8\x77\x5d\x2d\xf8\x46\x60\x71\x19\xf3\xa6\x09\x64\x2b\xb2\xb8\xd4\xfb\xc7\x9b\x22\xac\x42\x1e\xba\xec\x00\x0b\xe6\xdf\x01\xae\x1c\x73\x42\xf3\x79\x10\xf0\xd4\x57\xdb\x4a\x5e\xd7\x7e\x46\x14\x43\xf9\x0a\x0e\x4c\x55\xb7\x77\xfa\xdd\x48\xa6\xd7\x16\x6f\xdf\xd5\x2a\x57\x3c\xf6\x91\x52\xa9\x78\x55\xc9\xca\xa7\xf8\x13\xe7\xc9\x3a\xf6\x7f\x90\x27\x7a\x05\x6b\x14\x61\x57\xf2\xf2\xc4\x9f\xc0\x50\x94\x84\x59\x38\x1c\x0e\xfd\x7a\xea\xfd\x72\xc9\xeb\xda\xa7\x30\xf5\xb1\x72\x30\xe9\xbb\xbe\xc4\x5c\xf0\xeb\x13\x1e\xfd\xe3\xed\x9b\xd7\x4a\xed\x7e\xe4\xbf\xed\x79\x6d\xc5\xe6\xaa\x27\x36\x7f\x39\x56\xee\x29\x4a\xdb\xff\x61\x04\xfd\xfe\xdb\x62\x59\xc9\x5a\xae\x15\x56\xf8\xf1\xe3\x7b\x9f\x8c\xd6\xf5\x5d\x2b\xcb\x3f\xa9\xb9\xfa\x58\x5c\x72\xb9\x57\x61\x8b\xa4\xc9\xdd\xbf\x04\x53\x07\x42\xff\x85\x0a\x60\x21\xaf\x43\x07\x25\xbe\xb7\xd4\xad\x45\x44\x70\x80\x85\xb2\x4a\x95\x39\x3d\x8c\x72\x4b\x56\x88\x53\x89\x11\x67\x14\x96\xd5\xcc\x91\x61\x98\x10\x54\xc5\x14\xa9\xcc\xb4\x3c\x5e\x50\x60\x5d\xc9\x31\x7f\xfc\x63\x8f\x9a\x6e\xc5\x23\x45\x65\xb5\xd4\xa8\x9b\x7d\xce\xd7\xbc\xaa\xf8\x2a\x24\x51\x5e\x5e\xe7\xb7\xb5\x3b\x1c\x23\x64\xdc\x47\xbc\xe4\x97\x70\x38\x30\xe7\x23\x10\xc5\x9d\x3a\xc4\x0e\x4a\xb1\x7f\x89\xa6\xf9\x0e\x29\x29\x87\xb5\x2a\xa3\x5a\xe5\x15\x4e\xd9\xa4\x8c\x56\xfb\x0a\x55\xfa\xa7\x0a\x28\x22\x71\xd6\xa5\x34\x0d\x1c\xe9\xb3\xd3\x0a\x19\xed\x3d\x2b\x23\x75\xcd\xb9\xa8\xed\x24\xec\x0d\x4f\x69\xd3\xd3\x3c\x8b\xaa\xbd\x08\x65\x7b\x1e\xd4\x91\x90\xaa\x58\xdf\xfe\x5c\xa8\x6d\xc8\x69\x5a\x52\x49\x45\x46\xe8\xec\x5c\x06\xc1\x3e\x11\x71\x58\x03\x5a\x90\xe5\x15\x6f\xb3\x64\xfa\xf4\xa3\x25\xab\xa3\x5d\x25\x2f\x8b\x9a\x87\x77\x30\xe6\x98\xd3\x5d\x25\x77\x75\xdc\x93\x7f\x2a\x42\xe5\x4e\xb9\x89\xde\x94\xde\xd5\x3b\xbe\x2c\xf2\xf2\x45\x5e\x17\x62\x13\xdf\x1d\x0e\x54\x10\x2a\xab\x62\x53\x88\xbc\x7c\x5f\xc9\x1d\xaf\x54\xc1\xeb\x58\xb5\x89\xe6\xfc\x8b\x05\x6d\x27\x27\xb6\xb3\x67\x27\x24\x16\xed\xdc\x50\x3d\xe4\x38\xcd\xa8\xa6\x34\x3f\xc2\x7b\xdc\xa7\x9c\x34\xeb\xb4\x54\x11\x7e\x0c\x39\x2d\x23\xe8\x2b\xa2\x6a\xfd\x18\xf5\x3a\x8a\xd0\x67\x3e\x70\x4c\x69\x67\xb2\x9d\x7b\x24\x6b\x2a\xa0\x48\x69\xad\xe4\xce\x69\xd1\x92\xbf\x53\x5a\x31\x95\x0c\x16\x2b\x9e\xce\x1d\x18\x39\x51\xdb\xa2\xd6\xc7\x3c\xf3\xa6\xf3\xea\x5c\xcc\x85\xbb\x90\x42\x2f\xe4\xcc\x11\xf0\x1f\x2f\x14\x55\x19\x89\x21\x19\xf6\x6d\x2f\x95\x42\xf5\x87\x03\xa1\x4b\x56\x46\xb8\x66\xd8\xd6\xcf\xe1\x72\x74\xd8\x64\xb0\x9d\xaa\x76\x3f\x95\x94\x53\x5b\xa6\xdb\x56\x8e\xc9\xc4\x65\xbe\x0b\x97\xf4\x3d\x2d\x51\x86\xeb\x50\x96\xb6\x1d\x58\x4b\x02\x67\x68\xf7\x6a\x55\x67\xba\xcc\xfa\x26\x52\xc5\x25\xaf\xc2\x0e\x80\xf6\xd4\xc2\x5b\x2e\x8a\xcb\xb8\xa4\xbf\xed\xf9\x9e\xc7\xa6\x0e\x7c\x39\x10\x42\x71\x68\x9b\x8a\xd7\xb5\x6d\xcd\xbe\x03\xcf\x23\xb8\x4d\x85\x67\x3b\xee\xa5\xbc\xdc\xc1\x36\x26\xd1\x3a\x2f\x4a\x9b\x03\x9e\xdb\x2d\x6f\xd2\xf4\x9b\x83\xb2\x7e\x1e\x48\xf5\xe1\x8c\xef\xb4\x0b\x5c\xcf\xdd\xc0\x98\x80\x16\x0c\x55\x23\x92\xf1\x54\x64\xd4\x61\x53\xa4\x66\x95\x65\x3a\xb3\x5f\x99\x04\x32\x92\x0a\x8f\x31\x38\x81\x91\x9a\x96\xd4\x60\x1d\xc8\x60\xd8\xf9\x65\x5d\xbf\x96\xf2\x73\x0d\xf5\xe6\x41\xe0\x6b\x81\xbd\x5f\x88\x93\x9c\xdc\x49\x96\x1b\x09\x7e\x28\x49\x57\xb8\xca\xba\x9e\x4a\xa2\x3b\xdc\x34\xa1\x69\x56\x64\x14\xed\x5a\x0a\xa3\x39\x86\x2e\xb3\xa2\x1b\xf9\x83\x23\xe4\xd9\x52\x37\x00\x68\x74\x09\x44\xce\xda\xb2\xeb\x74\xd7\x33\xe4\x79\x16\x72\x42\x57\x8e\x3e\x87\xfa\xeb\x9b\x7a\x2b\xaf\x7d\x32\x17\x7a\x31\x9b\x26\x44\xf4\xfb\x09\xdf\x70\x70\x3a\x9b\x4f\x8c\xad\x06\x10\xe8\xf8\x71\x15\x04\x61\xf7\x82\x58\xb1\x8e\xf8\xe5\x4e\xdd\x46\xeb\xa2\xe2\xd4\x7d\x71\xf1\x73\x57\xa6\x69\xf6\x21\xd0\xf6\x5d\xca\x64\x42\xcb\x11\x7c\x3f\x96\xd6\x15\x3a\x3d\x85\xd5\xc4\x67\xdb\x57\xb3\xd3\x9b\xc6\xed\x04\xb4\x05\xc0\x3a\xb4\x6f\x0a\x7d\x2d\x1b\x80\x75\x53\x4d\x63\x24\x3b\xc8\x2a\x02\xb9\x16\xc9\x2b\x5e\xad\x4b\x79\xcd\xd2\x75\xfb\x4c\xbb\xc7\x7f\x38\xcf\xff\xcc\xa8\x5f\x88\xb2\xb8\x57\xd6\x6b\x25\x8c\xbd\xaf\xeb\x52\xe6\x0a\xbe\xb9\x82\x18\x5d\xcd\x77\xa5\x5c\x7e\xfe\x81\xf3\x55\xfd\x26\xbf\x95\x7b\x15\x04\xb6\x7e\x8f\xb1\xa7\x21\xef\xe4\xa6\xc9\x3a\xfa\x5d\xca\x4b\x36\x8b\xd7\x9d\x58\x56\xe7\x3d\x45\xa9\x86\x4f\x08\xed\x06\x13\x04\x61\xd7\x6d\xe6\x6f\x8b\xd5\x8a\x0b\xdf\xd5\xfe\xd4\xdb\xaa\x10\x9f\x7f\xae\xf2\x1d\x76\xa2\x06\x74\x7c\xbc\x0c\x4e\x25\x5d\xe5\x40\xda\x39\x13\xe4\x7e\x99\xb9\x5f\xfe\xe9\x7e\x79\x94\x1d\x88\xa3\x37\x53\x04\xa5\x5b\xb8\x67\x55\xa5\xe5\xa3\x05\xc1\xe3\xdd\xec\x25\xb3\x9d\x65\xd3\xf8\x4a\x6e\x36\x25\xce\x6a\x41\x0b\xc6\x58\xb8\x4b\x60\x48\xdc\x8f\x7d\x0d\xdf\x04\x38\xaa\x42\xec\xf9\x7c\x09\x3b\x6a\x15\x04\x2b\xe4\x8e\x61\xbc\xb0\x53\xd0\xa4\x00\xe8\xce\x63\x73\x8b\x25\x21\x77\xab\xc4\xce\x50\x21\x4e\x00\xf0\x77\x6c\x15\xe9\x14\x12\x8f\xee\x28\x7a\x77\x20\x14\x68\x64\x9b\x8f\x79\x3b\x42\x77\xc9\x52\x85\x9c\x44\x90\x25\x24\x71\xa9\x91\xa3\x33\x9d\xfa\x33\x74\x1d\x77\xc6\x71\x06\x6d\x2f\x02\x0d\x6a\x81\xcc\xf3\xe1\x46\x6e\x4d\x49\x96\xc4\x19\x9c\xa2\xcb\x54\x65\xe4\xe0\x4c\xf0\x92\xe4\xec\x7d\xb8\x4b\x60\x22\xe2\x29\xad\xe0\x10\xc0\x0f\xab\xa6\x09\x21\x91\xe5\xfa\x90\xa0\x3b\xd4\xb7\x72\xb1\x6a\x53\xcc\xaf\x23\x05\xad\x9a\xc6\x6e\x23\x34\x98\x99\xc5\xd3\x9e\x22\xf6\x7b\x57\x3c\xed\xd0\xbc\xdf\xc3\x49\xa1\xa4\xba\xdd\xf1\xa8\x10\x85\x72\xb2\x75\x85\x7f\xef\xe1\x7b\x76\xa7\x1b\x8a\xf9\x81\x16\x6c\xaa\x47\xac\x25\xd8\xf3\xaf\xcf\x8b\x79\x31\x61\x8f\x4e\x15\x11\xec\x07\x60\xc8\x69\x95\x5a\x49\xf3\x44\x64\xac\x4a\x3b\x81\xb1\xc8\x18\x6f\x4f\xf5\x20\x08\xab\x48\xee\xf2\x65\xa1\x6e\x59\x15\x69\xc1\x21\xef\x89\xbb\xfe\x31\xb0\xd8\x70\xcc\x26\x79\xfc\x6d\x0f\xab\x24\x9d\x72\xb0\xe0\xd7\xc0\x00\x6b\xed\xab\x2e\x11\x7b\x33\x14\x67\xfc\x44\xff\x4e\xff\xd9\x8a\x92\xe8\xff\x30\x1e\x95\x72\xa9\x89\xaa\x57\xc0\xf6\x59\x71\xe1\xdf\xd8\xab\xa1\xec\x91\xfe\x95\xf1\x48\x1b\xa3\xd2\x7f\x31\x1e\x3d\xa0\x5c\x01\xf2\x57\x8a\xa5\x19\x15\x8a\xf9\xda\x24\xd6\xa7\x95\x62\xca\x9a\xa8\xd1\x02\x5f\x80\x72\xa2\x12\x1f\x91\x07\xa6\x39\x3e\x17\x62\xc5\x6f\xde\xad\x69\xad\x18\x57\x91\x92\x1f\x50\x84\x43\xf7\xf8\xba\xcd\xeb\x77\xd7\xc2\x10\x8c\xb7\xb4\x54\x4c\x68\x2d\x30\x5d\x2a\xd6\x37\x42\x75\xd6\x17\xc8\x0a\xd1\xad\xec\xdf\xc9\x81\xae\x15\x3b\x4b\x27\xa7\x59\x12\x26\xf1\x62\xf5\x70\x11\x35\x64\xb1\x9a\x84\x49\x9c\xf2\x17\x19\x7e\x58\xac\x26\x0d\x39\x8b\x6a\xb9\xaf\x96\x9c\xee\x14\x3b\x5b\x7c\x98\x9c\x6d\xe8\x4a\xb1\xb3\x5f\xd2\x45\xbd\xd8\xbf\x7c\xf1\xf2\xe5\xe2\xe6\xe9\x34\x9b\x34\x83\xf7\x07\x67\x1b\xba\x85\x7c\x50\x7b\xfd\x30\x7c\x92\x2e\xae\x17\x3f\x67\x93\x73\x92\xfe\x72\x9e\x3d\x6c\xfe\x33\x4c\x17\xd7\xa7\xd9\x43\x42\x1e\x9c\xd1\x0d\x64\x7c\x12\x2e\xae\x27\x64\x51\x3f\x5c\x9c\x25\xe7\x61\x12\x3f\x59\x9c\x2d\x66\xe7\x0d\x7c\xbf\xd4\x0d\x66\x34\xbe\x3b\x2c\xea\xec\xe1\x83\x33\x7a\xab\xd8\x59\x98\xc4\xbf\x34\x71\x43\x89\x6e\x63\x91\x12\xe8\xdd\x15\xf4\x73\x01\xe3\xf0\x17\x8b\xc5\xd9\xc5\x5a\x54\x2a\x6b\xf6\xe9\x62\x95\x9f\xae\x9f\x9e\xbe\xcc\xee\xbe\x3e\x90\xb3\x0d\xbd\x50\xec\xcc\x4f\x7f\x81\x4c\xd5\x42\x64\x0f\xfd\x46\x55\x7b\xde\xa0\x29\x1a\x4a\xef\x9b\x53\x3d\x35\x93\x7b\xa7\x66\x43\x6f\xa0\x67\xa7\x97\xf5\xe9\x19\xbd\x56\xec\xec\x34\xc4\x66\x7e\xcf\xc8\xd9\xa6\xa0\x1f\xef\x59\x10\xd5\xd7\x7c\x1e\xe8\x33\x37\x23\xb9\x0b\x5f\x45\xf9\x6a\x85\xf6\x09\x6f\x8a\x5a\x71\xc1\x61\x5b\x97\x32\x5f\xf9\x08\xdd\x0a\x25\x4b\xbe\xa5\xdc\x20\xf1\x55\x54\xf1\x7c\x75\xfb\x01\xd8\x64\x38\xc1\x7e\x50\x21\xd2\x92\x98\x1a\x12\x72\xa0\x3f\x28\xf7\xf4\x3f\x6e\x21\x09\x5f\xb9\x86\x11\x36\x39\xf4\x9f\xbf\x7b\x6b\xe4\x55\x6f\x64\xbe\xe2\x2b\x9f\x3e\x53\xc0\x0f\x51\x3e\x9e\x1f\xfb\x69\xf2\x90\x38\x7c\x65\xe4\xe4\xda\xdc\xc2\x97\x02\xbb\x84\xfc\xfc\x72\x9b\x8b\x0d\x87\xbc\x50\xd9\x20\x9b\xad\x86\x90\xc3\x1c\xa1\x17\xd0\x7b\x8b\xa4\xd8\x9d\xb6\xd2\x8e\x85\xa2\x4b\x29\x6a\x55\xed\x97\x4a\x56\xf1\x52\x51\x00\xf2\xd8\xb5\x51\x76\x64\x50\xa8\x81\xe7\x3d\x96\x63\xcc\xca\x8c\x1b\x9d\x8e\xff\x44\x4f\x78\xab\xb2\x0e\x02\xff\xbc\x97\x64\x35\xbd\xa7\x33\x12\x04\xf6\xe5\x9c\x3d\x4e\x52\x80\x20\xca\x91\x5a\xcb\xe2\xad\x32\x46\x4a\x84\x7a\x45\xd3\x78\x45\x3a\xcb\x82\xc0\xda\x23\x7b\xa2\x69\x44\xa4\x07\x94\x84\xa2\x69\x2a\x82\xc6\x50\x21\x27\x31\xf4\x31\x72\x46\x18\x8a\xf6\x1b\xb2\x4f\xe9\x2c\x33\xa6\x33\x40\xc3\xd6\x2a\x17\x4b\x18\xc1\x52\x25\x22\x9d\x66\xb1\xa0\xad\xae\x5f\x13\xa6\xc6\x64\xf2\xf5\xc7\xb7\x6f\xb0\x30\x15\x41\x20\x3a\x7c\x29\xfa\x5a\xef\xa6\x11\xf1\x2b\xea\x4d\x09\xa1\x1b\x63\x73\x87\x2d\xa2\x50\xb5\xa8\xdf\x97\x79\x21\xcc\xf9\x6c\x04\xe7\x46\x48\x3b\xb0\x22\xdc\x16\x75\x5a\x64\x24\x31\x0f\x21\x8a\x68\xf5\xd8\xd0\xe0\xab\xa0\x3d\xa1\x2d\x32\x6b\xc5\x3a\x94\xec\x95\x63\x8b\xf1\xdd\xed\xf7\xab\xb0\x48\x1f\x65\x78\xa2\x4b\xc7\x90\x06\x67\x40\x46\xc5\xca\x63\x0c\x33\x58\xbe\xac\x9d\x2a\x6c\x4a\xaf\x0e\x9b\x21\x33\x98\x4e\x33\x26\x0f\x4e\x83\x5a\xda\x7b\xa3\xd8\x2b\xfc\x6e\x2c\x54\x64\xc5\xb8\x66\x1e\x5b\xbb\xb5\x76\xb2\xc2\x5e\x31\x5b\xa9\xce\xde\x6f\x0c\xed\x34\x9c\x09\xe1\x24\xa9\xcc\xde\xe4\x24\x0e\x79\xdb\x98\x11\x6c\x0f\x3a\xd0\x3e\xd2\x5e\x8b\xdc\x3e\xe1\x56\xbf\xcc\x3f\xf3\xd6\x76\x11\xda\x24\x07\x6a\xcb\xc5\xbe\x4f\x2d\xd7\x4d\x95\xc4\x6c\xb1\x83\x0e\xac\xa2\xc1\x70\xa2\x58\xfc\x40\x37\xdc\xdd\x48\xdd\x79\x82\x0c\x08\xc7\xc5\x8c\x4c\x65\x21\x89\xa7\xe7\x3a\x29\x75\x86\x3f\xe1\x19\xae\x72\xca\xb3\x03\x85\xd3\xee\x83\xca\x97\x9f\x7b\x95\x6a\xa9\x50\x0f\x4a\x7b\xf0\x4e\xa8\x63\xd4\x17\xed\x2a\x7e\xa5\x01\x4e\x33\x5a\xaa\x37\xfd\xf6\x85\xaa\x03\xe5\xf9\x72\x1b\x8f\xa2\xdf\x56\x19\x06\x15\xc0\x87\x03\xc5\xa5\x18\x1b\xab\x45\xa1\xad\xdc\xc7\x30\xd2\xdc\x48\x14\x28\x9e\xdb\x23\x53\x89\xdd\x69\x47\x1c\x4a\x15\xe5\xbb\x5d\x79\xab\x1b\xcd\xab\x0d\x6e\x2f\x5c\x23\x34\xc5\xbc\xaf\x06\xfe\x5b\x38\x25\x07\x5a\xe6\x5f\xcc\x72\x3a\x23\x07\xca\x7f\x1b\x99\x57\x67\x2d\xa8\x60\x13\x3e\x09\x71\x99\xe2\x69\x6f\xaf\x39\x1d\x15\xe7\x6c\x1a\x04\xea\x5c\x24\xb8\x8e\xa9\xc8\xb2\x38\xcd\xc8\x81\x5e\xe6\xbb\xb1\x09\x1a\x14\xb7\xa6\xf7\x30\xca\xbe\xe4\xa9\xdd\x3e\x1a\xc2\xa8\x80\x89\x87\xf1\x73\xb1\xba\x77\xfe\xda\xd5\x6e\x9a\x63\x44\x88\x76\xed\x08\x55\x71\xa1\x68\x2d\x2b\x15\xa7\x59\x04\xbf\xb4\xde\xe1\xb2\xc0\x2b\x3e\x1d\x68\x47\x00\x39\x87\x08\x26\xd2\x56\xcc\xa2\xdf\xed\xcb\x80\xda\x37\x0e\x2d\x9a\xd3\x67\xed\x0a\xa2\x5e\xe5\xee\x40\xf7\x6c\x46\xcb\x2e\xd9\xce\xf9\x92\x19\xe1\xa7\x7f\x21\x65\xc9\x73\xc7\x2b\xa4\x06\x46\x93\xd5\xbd\xca\x66\xb6\xb2\x47\x84\x1e\x69\x5f\x6b\xe4\x93\x1c\x2c\x52\x13\x94\x13\x00\x8b\x53\x32\x54\x2b\x84\xb5\xde\x16\xa7\xa7\x7b\x32\x2f\xcf\xf7\xf3\xbd\x16\x61\x19\xbb\x32\xe9\x34\xb5\xcf\x1c\x84\x2d\x09\x67\x35\x52\xe9\x4c\xc2\x4f\x6d\x44\x2e\x4b\xd4\x84\x84\x47\xc8\xbe\x22\x68\x11\xe0\x48\x6f\x2a\x42\x48\x12\x8a\x24\x14\xcc\x9b\xd1\x9c\x71\x73\x44\x18\x8c\x04\xa4\x79\x9a\x91\xb8\xfb\xe0\x56\x87\x9f\xef\x0e\x14\xba\xe0\xd8\x92\x2e\x69\x4e\x2b\x42\x62\x8b\x15\xf1\x73\xd5\xd9\x86\xd4\x07\xea\x08\x5e\x8d\x99\x66\xec\x6b\x6a\xdc\x9f\x84\x42\x4d\x50\xc6\x5c\x41\xfa\x65\x48\x48\xeb\xc7\x70\xb6\x78\x7e\xb6\xa1\xbe\x4f\xa8\x90\xcf\xa4\x58\x97\xc5\x52\xf5\xe4\x96\x2d\xb4\x3e\x40\x11\x01\x5a\xc0\x3d\x60\xff\x22\x54\xc1\x31\xaf\x5b\xe8\xbe\x98\xf7\xbf\x02\x1e\x3e\xd0\xa2\xfe\x11\xd1\x89\x37\xd3\x78\xe5\xe7\xbc\x50\xf1\x8c\x6e\x65\xb9\xfa\xf1\x08\xcf\xf0\xc4\xa2\x18\xc8\x36\x99\xc4\x2d\xd1\xe6\x4d\x47\x11\x53\xb1\x0e\xb9\xd6\xe7\x78\xa7\xa7\x6e\x59\xe3\x74\x82\x4d\x68\xa5\xdf\x2b\x6d\x55\x70\xac\x92\xb0\xc5\xc8\xbc\x2b\xc2\xbc\x29\xe5\x46\x2f\xd4\xaf\xf8\x7c\xda\x34\xe1\x4f\x3d\x61\xeb\x2b\x9a\x2e\x55\x46\xcc\xae\x52\x55\xb1\xd9\x70\xd4\xb4\x86\xaf\x88\x7d\x0d\x7d\xac\xc1\x27\x91\x5c\xaf\xdb\x17\x72\x80\x09\xb2\x20\x3c\x82\x51\x5c\xff\x29\xc7\x4f\x0e\x4a\xe9\x63\x0b\xff\x5b\xc8\x6a\x9a\x91\x1a\x5a\x1f\xb9\x7e\x71\xc3\xf4\xdd\x73\xa2\x79\x00\x99\x1c\x48\x3b\xed\x48\x03\x25\x7e\xd8\x5f\xf2\xaa\x58\x8e\x14\xf1\x8a\xfa\x87\xfc\x87\xd0\xb1\xc0\xe1\x84\x04\x41\x51\xbf\x04\x14\xa3\x5b\x84\xa6\xbf\x74\x7e\x6a\xb6\x0e\x08\x80\xa3\xad\xce\x47\xfd\xc8\x78\xc2\x55\x5a\x5b\x69\x31\xc9\x3a\x83\x8b\xd6\x28\x15\x7a\xed\xec\xac\xa3\x13\x41\x68\x0a\x78\xd4\x54\x83\x13\x60\x90\x2d\x75\x63\x90\x4d\xcb\x5b\x77\xba\x1c\x55\xdd\x22\x14\xba\xd8\x38\x08\xbc\x7d\x2b\xc6\xf6\x9d\x0f\x3e\x71\x3f\xb9\x45\x3a\x3c\x4c\xfd\xa2\x7e\x6f\x5f\xde\xad\xfd\xae\x2d\xa3\x66\xab\x1c\x1f\x19\x6d\xb1\x61\xa5\x63\xf2\x5a\xbc\xc9\x6b\xed\x4e\x21\x7a\x36\xa1\x5d\x77\x04\x71\x85\xd2\x03\xf3\x58\x37\x1b\x4c\x9e\x23\x72\x3a\x3e\x4e\x5d\x07\xa1\x63\x4f\x1f\xa3\xd8\x74\x4b\xa1\xba\x14\x19\xf0\x17\xf0\x0d\xc1\xa2\xa5\xbf\x7b\xd4\x89\xf1\xbe\xc1\xa5\x19\x9a\x6c\xb4\x63\x02\xc8\x99\x1f\x9f\x24\x9d\xf5\x0b\xb0\x65\x0a\x86\xf5\x4a\xdb\xc0\xb0\x4d\xc7\x78\x14\xcc\x13\x41\x90\x66\x9d\x6d\x63\x3a\xb4\x49\xaa\x80\xb6\xcf\x62\x2d\xb5\xbf\xd8\x17\xe5\xaa\x75\x62\x49\x79\x46\x15\x2d\x08\x2d\x70\x9b\x17\xa4\xb3\x44\xea\xac\x89\x33\x5a\x39\x06\xcd\xc4\x0e\x16\xdd\x26\x47\xb1\x2b\x7c\x01\x84\x0a\xbf\x9a\x31\x49\xdc\x97\x50\x91\x58\xef\x16\xa6\x12\x15\x1f\x7b\x03\xa1\x5e\xbe\xb5\x82\x47\xec\x7c\x69\x7d\x83\x5a\x64\x7f\xa5\xa8\xff\xbf\xfd\x0e\xf9\x5f\x28\xea\x67\xce\xfb\xad\x82\x93\x80\x90\x04\xd6\xa9\x3d\x5c\x7d\xd3\x49\x7f\xa2\x48\x68\xec\x1b\xe0\xb4\xc1\x75\xf4\xbf\x17\x57\x79\x59\xac\x4e\x70\x68\x98\xc7\x8c\xf5\x1f\xee\xba\x76\x0a\x02\xdc\x76\xe2\x4b\x3e\xa9\xb8\xb6\xb0\xb5\x78\xf4\xfc\xdd\xdb\xf7\xa8\x30\x4f\xc2\x82\x41\xa7\xda\x04\x5a\xb1\x42\x4f\xcd\xcb\x4a\x5e\x1a\x04\x22\x28\xda\xc8\x9f\xdd\x5c\x96\x3e\x70\xdc\x15\x96\xf9\x92\x0e\xfb\xf9\xbb\xb7\x3e\xa1\x55\x94\xd7\xb7\x62\xc9\x8c\xf7\x1d\xad\x22\xe0\xb9\xff\xf1\xf6\x0d\xf0\x72\x9d\x2b\x9d\xeb\x35\x17\x04\xd5\x50\x00\x16\x04\x5e\x75\x8f\xef\x90\xab\xf5\xef\x74\x01\xc7\x93\x08\x73\x76\xe2\x4f\x04\xaa\x10\x85\x74\x55\x88\xe4\xee\x40\x3b\x27\x9a\x1e\x10\x29\x24\x24\xcc\xca\xe3\x31\x0c\x90\xae\x1d\xd2\x9d\x63\x41\x91\x3b\x1e\xf1\xab\xbc\xb4\xfb\x1c\xc8\xce\x10\xd6\xab\x55\x4b\x8d\x21\x69\xde\x82\xc7\x8d\xa2\xfe\x65\x7d\xea\x00\xcc\xb5\xa2\x1f\xa1\x02\x2b\xf4\x1f\x67\x33\x3a\xa5\x00\x40\xf8\xb8\x5b\x0b\xba\xc0\xf4\x52\x46\x18\x17\x47\x7e\x81\x2a\x7a\xde\x69\xe8\x85\x11\x03\x68\x2b\x1f\xed\xcf\x33\xcf\xcf\x25\x6a\xd2\x2c\xcb\xc1\x53\x99\xd1\x8a\xd0\x02\x4e\xf7\x99\xf6\x2a\xe8\xac\xf1\x64\xab\xab\x1b\x29\xc1\xb0\x84\xb6\x06\xb1\x36\x2c\x47\xad\xe8\x79\x85\x22\x92\xc2\xcf\x9f\x6b\x69\xa4\x94\xd3\x5a\x67\xac\x4d\x61\x85\xe3\x12\xe0\xac\x34\xa5\xfc\xc5\x7e\xcd\xd7\xeb\xc5\x4d\x3e\xf5\x49\xf2\x85\x13\xd6\xf7\xe3\xb2\x3d\x2e\x0f\x5f\x3a\x8b\x7d\x3f\x0e\xf9\xc4\x77\x16\x79\x85\x58\x01\xf8\x1e\xc3\x56\x0f\x56\x59\xe3\x57\x85\x56\x84\x43\x32\x22\x14\x61\x4b\xd9\x3a\xde\x16\xd5\xb1\x43\x2c\x4f\x52\x9e\xc5\x9c\xc4\x85\xe9\x67\x45\x39\xc1\x7d\x60\x1c\x11\x8f\x0e\x09\x6c\x17\x3d\x2b\xb5\xf9\x90\xf5\x39\x3d\xc9\x2d\xf3\x4e\xdb\x23\xaf\x6a\xbd\x96\xa9\x60\x22\x99\x9e\x8b\x9e\x3d\xfb\x44\x90\x58\xc4\x9d\xb2\x1d\x18\x05\xd4\xf9\x04\x01\x6a\x3f\x19\xeb\x4e\x1e\x83\x02\x4e\x67\x07\x8a\x83\x89\xfb\x51\x00\xf4\x6c\x58\x87\x0d\x5a\x74\x40\x2a\x19\xea\xf9\x8f\x62\x12\x54\xc6\xce\xd2\xe8\xd9\x39\x5a\x5b\x32\x91\xca\xac\x83\x98\x39\xbc\x02\xf1\x3f\x77\xbe\x4f\x26\xed\x84\xdb\x46\x58\x41\xf9\x81\x6e\x2a\xbe\x1b\x9f\x2e\x5a\xb0\x34\x1b\xec\x1e\x4d\x13\x30\xcf\x13\xad\xae\xbf\x62\x9e\xa7\x0c\x4c\xb6\x6a\xe7\x42\xdb\x37\x20\x88\xb6\xa6\x8e\x43\x76\xf8\x0f\x37\x29\xdd\x33\x6d\x6d\xda\xed\x1e\x6d\x5e\xc0\x6c\x83\xb0\xdf\x34\x00\x15\x41\x10\xee\xd3\xbd\xa9\x20\x63\xc5\xc8\x1e\xfa\x73\xc5\x2c\xda\xb6\xfb\x3a\xcd\xe8\x9e\x1c\xe8\x66\x5f\xac\xe2\x19\xdd\x55\xf2\xe6\x76\x6c\x1d\x81\xcb\x1d\x98\x8f\x76\x31\x03\xb4\x85\x23\x06\x0d\x60\x9c\x72\x26\x87\x76\x0e\x9c\x24\x61\xc5\xac\x28\xa9\x65\x38\xe9\x23\xd8\xe1\xc7\x8c\x3e\x37\x7d\x13\x9a\xc5\x07\x0a\xc2\x18\x3a\x0d\x6b\x20\x40\x50\x14\x18\xa2\x81\x71\xf7\xc7\x89\xdc\x40\x0b\x12\xab\x03\xcd\xd1\x4c\x6c\x20\x05\xb6\xcc\xbb\xb1\xae\x65\x53\x34\xeb\x6c\x19\x75\x8d\x0a\x70\x6b\x39\x2e\x7b\x96\x38\xae\x08\xb9\x93\xcc\xd3\x6a\xae\xbd\xb6\xac\x34\x81\x0f\xb4\x2f\x06\xdd\xd3\x2a\xdd\xa3\xe3\x03\xb4\xd1\xa2\xcb\xc2\xb3\x66\xa1\xda\x82\xd7\x99\xa9\x42\xf3\xef\xde\x94\xd0\x25\xb0\xb7\x49\x28\xec\x21\x55\x10\xd8\xb1\xfb\xb2\x24\x71\xb8\x64\x82\x0a\x36\x04\x6c\x2b\xa0\xd2\x25\x10\xd5\x00\x09\x4b\xe0\xbf\x86\x31\xcb\xff\x8b\x90\x43\xc7\x2a\x5a\x27\x45\x5c\x58\xc4\xbb\xcf\xe8\x9e\xda\x4f\x8e\xc3\x85\x4c\x78\xbc\x4c\x6c\x47\x48\x5c\x26\x90\x69\x0a\x99\xe2\x1c\xce\xbc\xeb\x63\x69\x4d\x88\x44\x4a\xae\x38\x01\x4a\x00\xb8\x4c\x38\xc8\xea\xeb\xe1\x1e\xe9\x9b\x83\x5a\x5f\x54\xa9\xf5\xcc\x79\x2a\xb3\xd6\xc1\x41\x66\xb4\x7b\x64\x0a\xb0\x42\xc1\x84\x3d\x9e\x68\x85\x26\x71\x6e\x69\x27\x37\x54\xd4\xed\xd4\x43\xa7\x07\xb1\x42\x3c\xe6\x12\x07\x40\x98\xfd\x04\xa8\xef\xa7\xbe\xbd\x1b\xbd\x5f\xbf\x32\xca\x49\xdb\xf5\x3e\xd6\xac\x90\xe3\xa4\x2f\x6a\x55\x8e\x33\xbb\x2a\x15\x6d\xdf\xfb\x2a\xca\xd5\x9f\xd2\xaa\x0c\xb2\xb5\x5a\x95\xb9\xb6\xcc\x32\xec\x9c\x30\xd0\xcf\x23\xf4\xdc\x68\x49\xbb\x23\x75\x67\xc7\x90\x1d\x50\x71\xb0\x92\x1f\x96\x95\x2c\xcb\x20\xf0\x1c\x03\x76\x3d\xab\xae\x38\x02\x1b\x69\x73\x87\x7e\xc9\xd7\xaa\xb5\xa2\xe4\x63\x66\x93\x05\xfd\x66\x4a\x0e\x03\x3d\xd6\xe1\x10\xb6\x9e\xfc\x3f\xb5\x32\x59\x24\xe6\x8c\x50\xd7\xff\x4e\x73\x47\x27\x3f\xe0\x79\x73\xa2\x69\xe4\x96\xac\x3f\xc1\x43\x15\x61\xf5\xe4\x47\xbe\x79\x71\xb3\x3b\xd1\x27\xb5\x66\xd0\x7c\xd7\xc2\xb6\x7f\xde\x73\x95\xfa\xa9\xc6\x0b\x40\xef\x4f\xfc\xcc\xcf\x8e\x88\x37\x42\xff\xce\x50\x08\x42\x4d\xa8\x24\x1d\xe3\xe8\xe4\xd9\x87\x0f\x27\xd6\x25\xf4\xe4\x85\xd8\x14\x82\x8f\xc4\x4a\xfa\xa3\xe0\x47\xff\x8f\x84\x3d\xc2\x78\x47\xf7\x87\x3b\xba\xc7\xec\x9b\x2e\xe9\x9a\x6e\xe9\x06\xf0\x6b\xa8\x12\x35\x54\x34\xa9\xf8\x47\xe2\x31\xf6\x3a\x08\xde\x98\x58\x2c\x4d\xf3\x1a\x90\x20\x7a\x3a\xfc\x01\x5f\x8c\xfe\xe4\x1e\x63\x61\xed\xba\x94\x07\xc1\xb7\x1e\x63\xb5\xc9\xa5\xcf\xdf\x4f\xc0\xaf\x18\xf5\xde\x45\xcb\x1c\xa3\x81\x33\x6b\x95\x69\xdf\x32\x28\x86\x4a\x25\xa6\x86\x1a\xa8\x9c\x50\x4f\x36\x8d\xd7\x53\x40\xb9\x1d\x91\x51\xb1\x62\x8c\xe5\x6d\xa2\xa6\x20\x80\xa4\x68\x4f\x85\xc1\xf0\xf1\x7c\x18\xa4\x1d\xb7\x4b\x82\xe0\x3b\xf4\xf7\x0f\x82\x3f\x6a\x03\x07\xe8\x68\xc2\xb8\x25\x01\x04\x55\xe3\xdc\x1a\x90\x9d\xd8\x7d\x9c\x88\xc7\x19\x09\x82\x67\xfd\x9c\xcf\xca\xbc\xae\x35\x3f\xa3\xee\xf9\xf2\xc7\xcd\xb5\x59\x61\x3c\x54\x1c\x8a\x75\xf8\x2c\xfa\xad\xce\x83\x20\xf4\xde\x36\x8d\xf7\xd6\x7a\x23\x69\x1b\xa3\x35\x5b\xb2\xf7\x74\xcb\x14\xdd\x30\x5c\x95\x20\xe0\x68\x39\x56\x07\x81\x23\xc2\xba\x2f\x6c\x80\xb6\xa6\x2e\xd9\x0e\x4e\xc7\x70\xa9\x17\xd3\x09\x02\x51\xac\x7c\x42\x92\x35\x5b\xb6\x64\xff\x47\x45\xfd\xc5\xe2\x41\xe0\x93\x58\x45\xf5\x30\x33\x5d\x13\xba\x66\x7e\x5a\xac\xd8\x57\xfe\x64\x3d\xf1\xbf\xca\x4e\x7c\xb4\x43\xb6\x06\xc8\xa7\xa7\x73\x52\xa6\xfb\x8c\xad\x27\xab\x10\x1e\xc8\x7c\xcb\x56\xca\x8e\x0a\xa6\xae\x03\x9b\xa6\x81\x71\x95\xd1\xaf\xb2\x10\xa1\x4f\x7d\x34\x7d\xda\x10\xc7\x1e\xdd\x99\xc8\xed\xb1\x67\xf9\x06\xa7\x50\x23\xd1\x4b\x72\x77\x58\x17\x22\x2f\xcb\xdb\xbb\x65\xd3\x1c\x47\x32\xc0\xc1\xb6\x16\xf5\x27\xd7\x61\xc7\xe2\x96\x8a\xfa\x0f\x66\x3e\x31\x5b\xd7\x8d\x0e\xe6\xec\x6d\x1e\x8a\x2e\xe0\xcb\x89\x32\xee\x4c\x13\x06\xc8\xf2\xfc\xb3\x0e\xec\xf4\x06\xa7\x21\x08\x5a\x3b\x4b\x65\x5d\x22\x32\x8a\xb6\x95\xd5\x41\x2b\xa6\x3a\xae\x89\xf7\xc2\x86\x75\x74\x61\xfa\x1e\x9d\x9e\x78\x2f\xe8\x94\xd5\x6b\xbd\x1e\x86\x1b\x59\x15\x57\x3e\x99\x77\x33\xe7\x79\xbc\xf3\x47\x10\x6e\x8c\x1d\x33\x47\xfd\x40\x0c\xee\x9b\x99\x39\x1d\xe5\x04\x51\x11\x1c\x8e\x83\x00\x4a\xae\xfb\x37\x50\x2d\x5d\x24\x98\xaa\x63\x31\x2a\x80\x86\xcf\xa8\xe2\x7e\x8d\x11\x26\x52\x91\x56\x59\xc6\x54\x2f\xfa\x50\xe7\x26\xa8\x00\xba\x2b\x26\x86\x01\x99\xf4\xbb\x1b\x27\x24\xfc\xb7\x32\x76\x39\xdf\x8b\x15\xbf\x69\x9a\xff\x21\xa7\xe1\xbf\xf9\x30\x4d\xcb\x06\x5a\x2b\x65\x60\xf0\x34\x6d\x28\x98\x88\x04\xbf\x51\x1f\x8a\x8b\xb2\x10\x1b\xf4\x93\x41\x89\x28\xb1\x7c\x5e\xbb\x3c\xc9\x2c\x3e\x9d\xb9\x61\x8c\xc6\xbc\xf2\xda\x11\xdc\xb3\x11\x2d\x3b\xd1\x8b\x3f\xa1\x03\xb4\x30\xc6\x0f\x6e\x3c\xa4\xff\x83\xea\x07\x91\x23\x2e\xf6\x4a\x99\x18\x14\xe4\x9e\xe6\x96\x4e\x73\x45\x38\x22\xa3\x54\x6c\xa2\xa8\xf3\x65\xe8\x2b\xc6\x50\xec\xd9\x32\xbe\x8a\xd0\x9c\xc9\xd6\x27\x03\xd6\x5f\xa4\x05\x93\x69\x9e\x69\xa7\xa3\x22\x63\x5e\x58\xb5\x6e\x6a\x68\x0b\xeb\x06\x71\x82\x5d\x6c\xdf\x76\x8e\xa4\x81\xf6\x8e\x52\xf6\x7b\xca\x27\xfe\x89\xaf\x1d\x18\x5b\x7b\x96\x64\x1a\x2f\x8d\x37\xd5\x54\x53\xc7\x35\xe3\xc8\x7a\xd2\x92\x7d\x8e\x76\x15\xd7\xde\x4b\xf3\x7a\x4e\xee\x42\xaf\x42\x57\xaf\xb5\x39\x05\x6b\x1d\x7c\xac\x40\x2d\xa2\x75\xca\x2a\xd2\xa9\x0d\x0b\x43\x9a\xa6\x26\x74\x6f\x0e\x1a\x96\x66\x04\x60\xdd\x9b\xd1\xb0\x60\xbb\xae\x0e\x8c\xd6\x56\x74\x5e\x71\x3a\xff\x1d\x06\x06\x89\x2b\xad\x14\xc1\x5a\x5d\xe4\x73\xe2\xa3\x01\x72\xdb\xac\x75\x42\xb1\xe1\x02\x80\xc6\xff\x6c\xc2\x39\x11\x2f\x2c\xd8\xad\x4a\xf3\xac\x6d\xb3\x69\xca\x34\xcf\x82\x00\xbe\xc0\x53\x58\x40\xda\x1f\xf7\x23\xa7\xe8\x0d\xca\xeb\xb8\xb8\xaf\x79\x20\x64\x2b\x23\x01\x73\x3c\x0f\x8c\x31\x45\x9d\x08\x23\xcc\xe4\x24\xfe\x3d\xe4\x74\x4f\xda\xf9\x1f\x04\x8d\xea\x3c\x60\xa6\x18\x2c\xca\x00\x4c\xc5\x7c\x7f\x2e\xce\xd5\x5c\x4d\x26\xa4\x9a\x60\xe8\x2e\x1d\x45\x65\x24\xa6\xc5\xb6\xef\x01\xaf\xa2\x55\x51\xd1\x02\xf6\x92\xdf\xa1\x2f\x34\xfc\xa4\x92\x3d\x98\x4c\x3a\xbb\x09\x34\x32\x48\x5c\x8d\x3c\x95\xba\x4f\x73\x85\xc6\xbd\x88\x01\xfa\x58\xa6\x69\x5a\xe7\x0c\x6e\x4a\x1c\x7a\xee\x24\x34\xd7\x3d\xb1\x40\xf9\xb3\x76\x63\xc3\xe8\x7d\xc7\x95\x8f\xd4\x1e\x04\xdc\xd4\x43\x5a\x2d\x4a\x27\xfc\xf9\x62\xc7\x8a\x75\x58\x32\x95\xbe\xcf\x9a\x26\x84\x1f\xd4\x82\x87\x7b\x56\xa6\x15\x90\x2e\xfb\x74\x9a\x01\xf7\x8e\x44\x44\x58\xb3\x3d\x90\x76\xa8\x36\x6d\x9a\x9a\x31\xf6\x43\xab\x15\xc5\xc4\x96\x2e\xd3\x15\xb0\x74\x99\x51\x28\xc2\x6c\xff\x9a\xe6\x07\x9d\x80\xee\x70\x6d\x67\xef\x0b\x6d\x65\xec\xc0\x66\xfd\x19\x77\x31\x47\x77\x48\xd8\xe0\x26\x1e\x4f\x8b\xcc\xe4\x1b\xd1\x2e\xc5\xc0\x84\xf7\x22\x60\x8d\xc4\x99\xa0\x18\x57\xa6\x46\x2f\x80\x16\xc4\x4a\xa6\x05\x44\x6a\xbe\x3f\xaf\xe7\xf5\x64\x42\x50\x82\x53\xc3\x3c\xa1\x52\x42\x84\x12\xeb\x21\x68\x60\x6c\x09\xc9\x12\x4f\x45\x78\xa9\x47\xc3\x31\xdc\xb6\x3d\x90\x00\x08\x9d\x8a\xc0\xab\xd2\xf7\x19\xa2\x01\x34\x0b\xa0\x32\x08\x3c\xa9\x93\x24\xbb\x0d\x21\x37\x71\x51\x6a\xa1\xf1\x9a\x71\x60\x46\x3e\x61\x07\xc3\x58\xc1\xbf\x2d\xcb\xed\x38\x36\xac\x68\x9a\x9b\x50\x69\xc7\xeb\xba\xb3\xc3\x4a\xeb\x2c\xae\x69\x9a\x11\x7a\xcb\x80\x51\xf0\x8a\x20\x50\xc9\x26\xbe\x0c\x37\x74\x47\x39\x56\x4e\xaf\x98\x48\x24\x20\xbc\x84\xc7\xdb\xa6\xa9\x48\x92\x66\x71\x1e\xdf\xe2\xa1\x18\x04\x22\xbc\xa5\x57\x3a\xa7\x96\x4c\x96\xec\x32\xbc\xa2\x2b\x42\xab\xb0\xa4\x30\xa9\xf0\x69\xd9\x51\x7a\x4b\x58\xb6\x70\x8d\xa1\x39\x61\xe2\xae\xd2\x55\xba\xcc\x00\xbb\xdf\x9a\xa7\xb5\x46\x1f\x3a\x40\x84\x6c\x1a\x63\xa6\x66\x69\xd2\x34\xa3\x4b\x76\x35\xac\xee\x4a\x57\x57\xea\x99\xbf\x4d\x97\x50\xcf\x5c\xa2\x05\x07\xbd\x42\x4c\x4e\xf7\xe4\x00\x55\xdc\x5f\x3a\x2c\x99\x4c\x84\x91\x9f\x15\x74\x4d\xe2\x1d\x7c\x38\x3f\x9d\x01\x82\x4f\x4b\xe8\x65\x0e\x3f\x6b\x42\x0e\x1a\xf6\xaf\x60\xb8\xc0\x51\x24\x57\xc6\x66\x26\xdc\x52\x5b\x3f\x89\xaf\x08\x95\x89\xe9\x45\x4e\xaf\xe8\x9e\xc4\x2d\x69\x9a\xd3\xab\xde\x21\x76\xd5\x43\x77\x1a\x46\x5d\x79\xf0\xe7\xa8\xe2\x65\xae\x8a\x2b\x9e\x02\x4c\xe3\xb1\x9c\xc1\xb1\xd9\x34\xce\x27\x38\xdd\x68\xcd\x24\x46\x44\xd9\xb3\x6d\x38\xa6\xa4\x01\xb4\x70\xa0\x39\xf5\xa6\x84\x96\xe3\x79\x44\x27\x16\x87\x09\xb0\xb9\x97\x2c\x1d\xda\x88\x9a\xad\x26\x01\x74\x9b\x46\x78\x8c\xfd\x0a\xa7\x48\xa8\x98\x20\x1d\xb0\xed\x4d\xf6\xb8\x34\x0f\xe4\x90\xcd\x0b\xb3\xb1\x90\x8a\xea\x8d\xaf\x36\xe3\x23\x4b\x96\x6e\xc3\x4d\xb8\x24\x54\x10\xe3\xa4\x6d\x72\xeb\x63\xcd\xc9\x6b\x49\x7e\xb4\x20\x85\x54\x73\x4a\x11\x2a\xd2\xf7\x99\x9e\xdb\x8a\x4d\x26\xf5\xbc\x38\x87\xfd\xd6\x6b\xb0\x32\x95\x60\x04\x37\xbb\x6d\x6f\xc3\xfa\x7c\x16\x04\xd8\x3c\x3e\xad\x42\x6e\x0f\x2a\x5a\x9f\xce\x5a\xef\x52\x73\x3e\xfa\x27\x68\xe5\x9a\xd6\xa7\x8f\x74\x75\x89\xff\xd0\x8f\x7d\xff\xe0\xd8\xd0\xb4\x4c\x83\xa0\xd5\x79\x1d\x04\x57\x6d\x95\x35\xcc\x0a\xc5\xbe\x5d\x85\x9c\xd9\xe4\x36\x11\xce\x43\x72\x58\xb6\xf1\x10\x4c\x27\xa1\x77\xa3\x21\xe3\x2a\x13\xc8\xc1\x60\x55\x57\xbc\x7e\x3e\xa5\x35\x73\x30\x89\x39\x8a\x74\xb9\x35\xdd\xd1\x15\xdd\xc2\xa6\xd9\xb0\x29\xbd\x65\xfe\xd4\xa7\x57\xac\x08\x82\x34\xa3\x17\x06\x2b\x2e\xe9\x0d\xfb\x95\x5e\x03\x6e\xc9\x83\xe0\xb3\x8e\x42\xf8\xf1\xe9\xab\x10\x90\xcc\x32\x08\xea\x1e\xbf\x56\x13\xfa\x91\xfd\x3c\x31\xe2\xb2\x9b\x64\x16\xf7\x2c\x8c\x9a\x26\xd2\xe6\x5e\x17\x41\x10\xfe\xca\x6a\x2d\xd0\xa8\xe9\x0f\xac\x22\x36\xb8\xd7\x9a\x5d\xa7\xb7\x19\x99\xdf\x4e\x26\x5a\x83\x13\x04\x6b\xbd\xa6\x3b\x36\x9d\xaf\x18\x4f\x77\x18\x77\xa2\x58\x87\xab\x70\x8d\x78\x87\xdc\x19\x7c\xb0\xb6\xae\xd9\x50\xff\xcf\xec\x23\xfd\x81\x4d\x26\x15\x39\x00\xcc\x86\x6b\xe6\xad\xa0\xae\x20\xd8\x9c\x9e\xd2\x22\x08\xae\x6c\x21\xcd\x57\x4e\xd8\x2d\xe0\xe2\x5b\x8f\xb1\x8d\xdb\xa0\x32\x0d\xae\xc2\x2b\xba\xc5\xf6\x3a\xb4\xb5\x39\x9f\x6a\x86\xe1\x16\x30\xcc\x55\x7a\x9b\x35\xcd\x16\xff\x87\xf0\xc3\xfe\x6a\xbc\x22\x09\xb0\xb9\x97\xe1\x96\x1c\x5a\xb4\x50\xd2\x2d\xa1\x17\x41\x00\xd8\x78\xdb\x2e\x57\x10\x6c\x26\xed\x4a\xce\x82\x40\x44\x7b\x51\xfc\xb6\xe7\x1f\x64\xa5\xc2\xb2\x85\x05\x3b\xbe\x5f\xd9\x0d\xa1\x57\x87\x4e\x38\x5d\x84\x35\x89\xeb\x7e\x8c\x37\xd5\x3f\x59\x5d\x60\x99\x4b\xf4\x44\x41\x21\xb8\x8e\x31\x52\x91\x11\xc2\xea\xfa\xfe\x68\x05\x3b\xa3\x62\xf5\x2a\xcd\x85\xd9\x03\xc0\x88\x87\x4a\x20\x34\xe0\x5f\x4b\xf7\x51\x4b\xfe\x9f\x3f\x0a\x02\xff\xfb\xe7\xb0\x93\xc2\x5c\xfb\x32\xe2\x5e\x32\x82\x95\xef\x6e\xbf\x5f\x05\xc1\xb7\x03\xc6\xee\x13\xc0\x60\xbb\x9d\x65\x3a\xb3\xf8\x03\xc3\xaa\xb1\xd0\x00\xe8\xf7\xcf\xc3\xdc\xa2\x05\x97\x98\x7e\xa6\xe8\x0f\xc0\xb2\x62\x74\x13\x92\x4e\x33\xea\xa9\x4e\x38\xd5\xed\x45\x69\x09\x63\x4d\x6b\xda\x31\x1d\xb4\x03\xee\xad\x8a\x04\xe7\xab\xfa\x99\x36\xa7\x6d\x03\xc4\x4c\x63\xe9\x50\x2d\x18\x79\x00\xcd\x05\x5d\x0c\x54\xb3\xdc\xf4\x58\x53\x7d\x7b\xa6\xbb\x6c\xe8\x8d\x8a\xed\xbf\xd8\x73\x2b\x2a\x91\xf6\x64\x38\x16\x99\x18\xd1\x90\xb4\xe7\x54\x41\x67\x84\x72\x66\x89\x76\xc0\x2f\x92\x50\x6f\x4c\x18\x55\x11\x2a\xcc\x0e\xb2\x90\xf6\x14\xfd\x6e\xc3\x8a\x2a\xea\x7d\xa2\x82\x76\xb2\x1a\x42\x05\x0a\x2b\x3e\xd2\x67\xf4\x07\xfa\x99\xbe\xa0\x1f\xe8\x53\xfa\x2b\x7d\x4e\xdf\xd0\xd7\xf4\x37\xfa\x89\xbe\xa5\xef\xe8\x4b\xfa\x1d\x7d\xcf\x7c\x2d\xbb\xf5\x27\xa7\x56\x15\x42\x7f\x74\x3d\x87\x7e\x66\x53\xfa\x80\x4d\xe9\xf7\xac\x0a\x09\xfd\x1d\xff\xff\x03\xff\xff\x04\x2c\xd4\xdf\xc7\x1d\x45\xf0\x7c\x4b\xc2\x9f\x98\x37\xa5\x53\x12\x4f\x0f\x7d\x37\xa5\xd9\x93\x27\x8f\x67\xf4\x15\xbb\x3b\x0c\xbd\x82\xfe\x06\x38\xef\xaf\xec\x6f\xd1\x4e\xee\xe8\xbf\xe0\x77\x5f\x6f\x29\x57\xf6\x49\xc1\x93\x76\x39\x12\xf0\x68\x3c\x8e\xfa\xd6\x74\x7d\x8e\xc5\xb1\x24\x6e\xf9\x15\x00\x49\xb4\xf8\xee\xe9\x8a\x6d\x34\x3e\x38\x6c\x2b\xc5\x7c\x13\x28\xb0\xb1\x21\x1f\x1b\x34\x3b\x69\xf2\xbd\x92\x6b\xb9\xdc\xd7\xf8\x84\x71\xdc\x50\x76\x2d\xcb\xba\x59\xf1\x35\xaf\x9a\x55\x51\xe7\x17\x25\x5f\x35\xda\x75\xaf\x29\xea\xcb\x7c\xd7\x94\x52\xee\x9a\xcb\x7d\xa9\x8a\x5d\xc9\x1b\xb9\xe3\xa2\xa9\x78\xbe\x92\xa2\xbc\x6d\x2a\xfe\xdb\xbe\xa8\xa0\xad\xa5\xdc\xf1\x95\x4f\x0b\xc5\xfc\x74\xb1\xb8\x79\x34\x5d\x2c\xd4\x62\x51\x2d\x16\x62\xb1\x58\x67\x3e\x95\x8a\xf9\x61\x12\x2f\x16\x8b\x45\xd4\xa4\x8b\xc5\xf5\x69\xd6\xa4\xbf\x2c\x16\x37\xd3\xe9\xe9\x62\x71\x93\x4f\x33\x32\xf1\x69\xae\x98\xec\x0c\x89\xfc\x6b\x9f\xfa\xd7\xff\xe9\x13\x5a\x2b\xe6\x2f\x16\xa9\x3f\x29\xd4\xc4\x7f\x18\xfa\x13\xa9\x26\x3e\xb1\xaf\x49\x1c\xa6\x0f\x7f\x79\xd0\x78\xff\xce\x12\xd6\x4b\xfd\x6a\xe1\x67\x24\xec\xda\xfd\x05\x7e\x33\xf2\x30\x21\x8b\xc5\xe3\x26\xf4\x27\x39\xd4\xd3\x90\xc6\x96\x5a\x2c\x32\x9f\xee\x15\xf3\x63\xdb\x08\x16\x0e\xc3\x3f\xac\x6b\xf0\x21\x24\xe9\x62\x91\x65\x8d\x3f\xa9\xbb\x01\x3d\xa6\xff\x4d\x26\x3e\x79\x48\x9a\xe8\x21\x59\x2c\xa0\x59\x74\x28\xe3\xd7\x46\x39\x12\xfa\xbf\xe8\x8e\x4c\xb0\xc2\x5f\xda\x56\x6c\xed\xe4\xa1\xe9\xe9\xe4\x81\x4f\xfd\x8d\x4f\xe8\x7a\xb4\xfc\x43\x6a\x7e\x7d\x42\x77\xe3\x39\xc2\xf4\x7c\xf2\x6f\xe8\x60\xe1\xcc\xa5\x0f\x18\xc1\xcd\x8e\xa9\xe9\xe4\xdf\x99\x4f\xe8\xb6\x5f\x11\x6b\x2b\xfa\x65\xb1\xc8\x60\x7a\x1e\xf6\xa6\x11\xbb\xb7\xe9\x95\xd9\x2b\x42\x2f\x8f\xba\x03\x8b\xf0\xc0\x27\xf4\x56\xb1\xbb\xef\x9f\xc7\xbd\xaf\xff\xd9\x2e\x36\xa1\xcf\xde\x3c\xfd\xf0\xa1\xff\x79\xb1\x88\x9c\x0c\x1f\x9f\xbe\xea\x7f\xc6\x6f\x03\x78\x7a\xe8\x13\x9d\xfb\xe9\xc7\x8f\x3f\xc6\x83\xae\xd4\x8a\xd0\xf7\x1f\x5e\xfc\xf4\xfc\xdd\xf0\x0b\x74\xfd\xd9\xeb\xef\xdf\x0c\xfa\x17\x87\xb8\x11\x90\xdf\x6f\xca\xbc\x56\x8d\x50\x5b\xf8\x3b\x85\x17\x72\x1a\xa2\x7d\x5e\x23\xd7\xa7\x88\x5c\x35\x34\xd9\x89\xe3\x57\x5c\x34\x72\xb5\x6a\xc2\x30\x9d\x9c\x66\x0d\x09\x17\x8b\xd5\x43\x22\x9a\x1e\x10\xe3\x17\x9b\xb0\x58\xac\x26\xa4\x21\xdd\x44\x23\x10\xf9\x85\x4f\xe8\x85\x94\xe5\x60\xf8\x49\xec\x4f\x2a\x98\x9c\x07\x26\x8f\x7b\xcc\x0c\x47\xa8\x97\x1a\x81\x22\xee\xba\xc6\x7f\x6b\x36\xaa\x29\xf5\xb8\xba\x61\x0e\x46\x12\x26\xf1\xe9\x62\xb1\x22\x09\x0e\xc0\xed\x5c\x98\xb0\xf4\x97\xd3\xac\x79\x60\xba\x79\x40\x87\xc1\x5f\xd2\x5f\xee\xb2\xc9\xe2\x0e\xdd\x08\x05\x9e\x64\x27\x8b\xeb\x33\x74\x12\x84\x6e\x1b\x77\xc5\x09\x69\xd0\x4b\xb1\x59\x44\x36\x81\x3c\x38\xd3\x5e\x80\x61\x12\xa3\xf4\xd1\xe0\xb9\xc6\xc6\xad\x6d\xb4\x18\x92\x3c\x38\x2b\xd0\x47\xf0\x97\xed\x62\x05\xcf\x1f\x15\x3b\xfb\xaa\x59\x2c\xce\x36\xf4\x59\x1f\x04\x71\xbf\xa6\x0b\x74\x58\xcc\xee\x66\xf4\x2f\x07\x3d\x80\xa4\x31\xe3\x23\x4d\x84\xbd\x07\x80\xfe\x41\x1d\x99\x06\x68\x9a\xd9\x9f\xde\xf8\x13\x75\xfa\x97\x6f\xbe\x79\xfc\x97\x96\xe4\xf1\xd0\x45\x58\x24\x2a\x9e\x9e\x57\xc6\x02\x39\x5a\x57\xf2\xf2\xd9\x36\xaf\x9e\xc9\x15\x0f\xab\x09\x96\x20\xf1\xe8\xc7\xf3\xf3\xd9\xb4\xf9\xe6\x9b\x47\xdf\xfe\x85\xce\xa6\x8f\x1e\x07\x55\xf3\xcd\x5f\x1e\x3f\x9a\x92\x83\x36\x5d\xb4\x27\xed\xdf\xd0\xd5\x15\x28\xc3\x1f\x5d\x83\x50\xda\x7f\xfb\x5b\xea\xbe\x5b\xc3\x95\x96\x18\x32\xc2\xfb\xcf\xa8\x7c\x65\x77\x58\x73\xfc\x37\x93\x2d\xe9\x1f\x98\xff\x6a\x4d\x03\x6c\xc3\x8a\xf4\x2c\xbe\x86\x02\xfb\x56\xfc\x36\x9d\xf3\x54\x4c\x26\x19\x53\x69\x85\x64\xf0\xbc\xb5\x2a\x82\x13\xec\x70\xf8\xc0\x44\x54\xd4\xff\x78\xfb\x86\x1d\xbb\xd7\x70\xb4\x3b\x1c\x68\x32\x39\x19\x6a\xcd\xbb\x98\x25\xfe\xeb\x8f\x6f\xdf\xf4\x35\x56\xb1\x37\x3b\xd0\x67\x4c\x58\x9b\x66\x76\x77\xa0\x6f\xe0\x95\xb7\x11\x0b\xc7\x5a\x4e\x8e\xdb\x8d\x7f\x84\x73\xda\xf5\x78\x6e\x1b\xd6\x8c\xc8\x90\xd8\x3c\x8a\xa4\x98\x84\xaf\x99\xa2\xbf\xb1\xa3\x0f\xf4\x13\xf3\x3e\x84\x8a\x68\x77\x41\xc7\xa8\x20\x08\x80\x51\x16\x91\x92\xbb\xc1\x97\xd0\x97\xe2\x82\xaf\x65\xc5\xf7\xc6\xec\xc0\xb1\x1b\x79\x83\xca\xf2\x67\xa8\x1a\x41\xf5\x54\xcd\xe4\x28\x87\x1f\x2d\xad\xc2\x90\xf9\x85\x4f\xbd\xc1\x25\x13\x7e\xfb\xd9\xd7\x15\x8e\xe9\x36\xef\xab\xda\x8d\x66\x6f\x4d\xa1\x9f\xc9\x4b\xad\x50\xf2\x09\x31\xad\x8d\x58\xb6\x3e\x6c\xed\x59\x8f\x1b\x6d\x35\x9c\xf7\x35\xdb\x05\xe7\xf6\x9f\xac\x8a\xab\x13\x1c\x02\xfb\x2a\xff\xea\xfc\xc9\xd9\xaa\xb8\x3a\xef\x25\x9e\x14\x36\xd9\xa7\xdc\x09\xdb\x3f\x98\x97\x47\xa8\x2f\xba\x47\xd3\x0a\x68\x6e\xd0\x5d\x60\x3e\xc6\xfb\xf7\x5b\x3f\xc8\x3f\x89\x8a\x15\x7b\x4f\xbd\x81\x1a\x17\xea\x6d\x9a\xb1\xd4\xf0\xfd\x58\x5b\x49\xc7\xb8\x0c\x48\x5d\xa0\x21\x0d\x49\x3b\xd0\x78\x7b\x8c\xfd\x33\x08\x3e\x75\xba\x9f\x81\x42\xdc\xb1\xe5\x07\xd0\xeb\x78\x84\x24\x15\x59\x9c\x66\x87\x03\xb5\xc2\x95\x7e\xb3\xdd\x85\x4c\x7d\xe6\x63\x3e\xd4\x3b\xb9\xab\x76\xac\x38\x46\xe1\xd3\x81\xc4\x36\x10\x46\x3b\xc2\xff\x0b\xcd\x9a\x21\x3b\xb1\xca\xdb\xc6\x61\x84\x7a\x6a\x8e\xd3\x75\xc7\x7a\xd3\xa2\x23\xb3\xeb\xae\xd2\x4e\xbc\xc1\xc6\xb7\x4a\x32\xee\xb0\x7e\xbc\x40\x83\x98\xe9\xf7\x1a\x15\xd8\xc0\x80\x23\xd6\xb3\x82\x56\xc0\xa6\x58\x86\xfd\x9e\x0a\xe6\x6d\x28\x3d\xc3\x92\xcc\x45\x1b\x9a\x13\xf8\x71\xe1\xe0\xb3\xca\x8a\x94\x3a\x16\xdf\x0a\x0e\x0e\x76\xec\x48\xb4\x0d\x47\xef\x98\x36\xfc\xff\x31\x01\x6d\x29\x03\xa9\xc3\x59\xe8\x76\x60\x37\x0f\xf4\x1d\x8c\xf9\x2d\xfc\xd3\x86\x0f\xec\xaa\x75\x58\x18\xea\xf7\xf5\x65\x40\xbd\x4d\xda\xc7\x1e\x9a\xd2\x38\x7f\xa2\x83\xed\x9f\xb4\x31\xf5\xbf\x02\x9c\xa1\x13\xcf\x9f\x9c\x99\x5c\x80\x3f\x8e\x2c\x08\xfc\xd4\x16\xca\x1c\x13\xfd\xb7\x7a\x1e\x5d\x16\x27\x89\x11\x90\x1a\x43\xbf\xf9\x64\xb4\xb6\xd8\xf0\x7a\x23\x75\x75\x9f\x0e\x84\xf6\x07\xd5\x46\x86\xef\xab\xf4\xb5\x2e\x97\xcc\xc5\xc0\x0e\x03\x6f\xee\xa0\x36\x12\x0c\x1a\xb9\x39\x18\x4b\x90\x61\x76\x1f\x1d\xfd\x46\x07\xaf\x7e\x61\x5f\x7d\xd5\x8d\x3c\x08\x6c\x6f\x81\x7f\xcb\x58\x37\xf8\xaf\xbe\x6a\x16\xfe\xe2\xfe\x71\x73\x81\x9c\xea\xd8\xb8\xed\x27\xea\xc7\x96\xa1\xbd\xa7\x96\x87\x34\xbe\xf1\x09\xb5\x25\x69\xf4\x30\xf6\xd1\xa2\x33\x7c\x66\x25\x26\x36\x7f\x0b\x35\x2f\xd9\x6f\xd1\x35\xbf\xf8\x5c\xa8\xb7\xfd\x1c\x4d\xf3\x5b\x74\x29\x7f\x1f\x49\x95\x63\x39\xeb\x41\x22\xc0\x5e\x7f\x95\x9e\x45\xab\xa2\x5e\x4a\x21\x10\x5c\x30\x3b\x7b\xd9\xba\x7c\xa1\xfd\x05\xed\xde\xd3\xda\x83\xa9\xc5\x01\xbd\x33\x03\xf2\x18\xf0\xb2\xb0\xfe\x6f\xd9\xdb\x76\xca\x1d\xca\xf7\xad\xb1\x84\x69\xe0\xf0\x7d\xc7\xde\x8d\xe5\x79\xe7\xe6\xf9\xae\x9d\x87\xdf\xda\xc8\xfd\x04\xc6\xb3\x94\x97\x70\x1e\x58\xe2\xe8\xbd\xac\x0b\x18\x47\x32\x82\x85\xd8\x71\xc8\x98\x3e\xed\x13\x73\x5a\x31\xd5\x17\x43\xcd\x1d\x09\x4d\xd5\x34\x1e\x2a\xd3\x67\x18\x9a\xbe\xd3\x52\x7a\xa1\x68\x7b\x95\x74\x8f\x61\x45\x62\x7e\x5f\x0f\x83\x60\xf6\x97\xe0\xde\xaf\xe8\x66\x3b\xc4\xa5\xe8\x0b\x60\x35\xa6\x6e\x1f\xf5\x95\x09\x9d\x64\xc6\x9b\xce\x5b\x33\x18\xfa\x77\xf6\xa7\x66\x49\xb4\x1e\xa7\xad\xa7\x92\x16\x47\xcd\xad\xc9\xff\xbd\x03\xf9\xc2\x18\xef\x1f\xa0\x83\xbb\x93\x59\x00\x53\xfb\x0c\x5d\xba\x9f\x63\x74\x10\xbe\x82\x23\xed\xbe\xb2\x9c\x60\xcc\x23\xae\x3d\xfb\xbe\x0b\x7f\xa4\x9c\x24\xa7\xb3\x58\x74\x09\x82\x24\xb3\xf8\x79\xab\x1b\x7b\x4e\x39\x39\xed\x5e\x04\x89\xa7\xf1\xd7\x41\x05\x85\x66\xf7\xaf\x11\x7e\x3e\x8c\x5b\xce\xe3\x61\xc6\x9d\x55\xa0\x39\x73\x69\x13\xba\x67\x29\xcf\x68\xc9\x52\x81\xc6\x1b\x63\x33\x5b\xac\x43\xb4\x30\x6c\xad\xfb\xb4\x1c\xd0\x8e\x24\x99\xc5\x12\x5e\xf2\x3f\x1a\x0a\x1a\x23\xba\x56\x82\x75\xe8\xb8\x86\xf0\x79\xc5\xaa\x1e\xb8\xec\xdb\x30\xb0\x95\xcd\x24\x8e\x32\x95\xc3\x4c\xf3\x7d\x5a\x64\x18\x0f\xb9\xc8\xe6\xa4\xe8\xac\x0e\x8a\xa4\x0e\xe1\x1b\x2d\x31\xda\x87\xc9\xf6\x23\x74\xbd\xb4\xcf\xb3\x78\x7a\xa0\x8a\xc4\xaf\x0f\x54\x58\x1c\x77\x4f\x14\xa3\x50\x07\x53\xd1\xff\xd0\xfd\xea\x08\x29\x1e\xed\x8b\x31\xe6\xcc\x1a\x99\x72\x34\x32\x6d\x69\xb1\xad\xa2\x3e\xfb\xea\xc1\x0c\x8e\x03\xea\x85\xde\x11\xca\x6d\x1a\xef\x53\xd3\xbc\x0b\x82\x77\xf6\xf2\xb1\xa6\x79\x0b\x27\x86\xbd\x8a\x0c\xed\xf6\xf4\xae\x78\xd9\x39\x9b\xa1\x09\x56\xd3\x8c\x60\xcf\xa6\xe9\x50\x4d\x10\xcc\xf4\x35\x6d\x36\xe1\xe8\xda\x34\x7b\xb9\x5d\x41\xee\x0e\xed\x94\x28\xfa\x5a\xcf\x47\xca\x33\xd2\xea\x58\x60\x6a\x2c\xb2\x19\x9d\xcc\x3f\x98\x96\xef\xb4\x97\x1c\x45\x76\xae\x37\xab\x82\xdc\x7d\xb9\xac\xc1\x0a\x7d\x9b\xb7\x41\xd8\x66\x5a\xb0\x2a\x08\x5e\xe9\x29\x72\x73\xd2\x41\x4e\x1d\x91\x5e\x50\xef\x13\x89\x5b\x1e\xba\xc0\x2d\xe0\x72\x8e\xb0\x30\xc9\x80\x40\x17\x24\xc6\x6b\x17\x8e\x08\x64\x81\x6e\xda\x3a\xda\xe7\xba\xe0\xab\xa4\xd0\x14\x32\xfa\x99\xc6\x05\x0c\x1a\x0d\x7a\xd8\x97\xdc\x78\xfd\x0f\xb7\x42\xe5\x37\x27\x98\x93\x9e\xec\x45\xc5\x97\x72\x23\x8a\xdf\xf9\xea\x84\xdf\xec\x2a\x5e\xd7\x85\x14\xf1\x89\x3f\xe1\x38\x8d\x9d\x8a\xeb\x98\x1d\xa0\x42\x5f\x05\x34\xc5\x20\x6a\xe8\x87\xe0\x3d\x8b\x56\x5c\xf1\xa5\x7a\xbe\xdf\x95\xc5\x32\x57\xbc\xa6\xcf\x99\x41\x84\x1f\xf0\x8a\x37\x40\xa1\xad\xc2\x89\xe3\x87\xf0\xef\x84\xfe\xd4\x9a\xdd\x70\x43\x22\x23\xfe\x4f\x0b\x6d\x8f\x21\xec\xb5\x41\x66\xe7\xa2\x7d\x22\xb7\x7a\x14\x91\x56\x19\x9d\xb5\x2a\x38\x7e\xa0\x2f\x18\x86\x2f\xff\xc8\x6f\xc6\x3b\xee\xfb\xa6\xe3\xdd\xf1\xd9\xa9\x0e\x81\x38\x2f\x9a\xe6\x5b\xfd\x33\xc3\x57\xfc\x70\xec\x04\x87\xd7\x65\x19\x77\x88\x16\xe7\xb9\x89\xd8\x5d\xce\x5c\x06\x78\xce\x51\x9d\xe5\x18\x31\x12\x31\x61\x2f\x42\xde\xb9\xde\x3c\xd6\x4d\x7f\x8d\x2d\xf7\xbc\x32\xf1\xaa\xa8\x9e\xa9\x11\x46\x04\xad\x26\x13\x5d\x89\x72\x2e\xde\xa3\x9f\x51\x18\xa3\x91\x40\xcd\xee\x1c\x3b\xd7\xf8\x9b\xa9\x89\xb5\xfb\xbe\xe6\xfb\x95\x8c\x0b\x6d\x50\x16\xdf\x2a\xda\x81\x75\x7c\x77\xa0\xc0\x7a\xc0\xaf\x55\x93\xc5\x77\xfe\xb9\x1f\xdf\xad\x8a\x2a\x76\x4d\xb7\x4c\x30\x18\x6f\x7a\xa0\xfe\xc9\xc8\xf7\x03\xf5\x27\x6d\x72\xc5\xaf\x0a\xb9\xaf\xcd\xe8\x7b\x65\xff\x7d\x5f\xa6\xc3\x81\xb6\x56\x80\xf1\x1d\x4a\x9c\xc7\xb8\x5d\x34\x7d\x4a\x67\x47\xda\x39\x9e\x3e\xce\x58\xc8\xd3\xaf\xb3\xa6\xe1\xe9\x37\x78\xc1\x0e\x19\x66\xf2\xff\xcd\xb4\xf5\xc0\xa3\x0c\xa3\xb6\x3e\xce\x98\x0f\x5b\x21\x7d\x9c\x4d\xd0\xb1\xa2\x33\x3d\xf8\x9a\x1c\x8c\x10\xfb\x8b\xbd\xe8\x5f\x05\xe7\x0b\x1d\xeb\x10\x3f\xd9\x9a\x1e\x93\x04\x9b\x6a\x9a\xd6\x22\x0f\x83\xc7\x42\x5f\xd9\x04\xbb\x9c\x40\x8f\xe1\xf1\x2f\x59\xd3\xcc\x48\xfc\xe8\x61\xe8\xf3\x2b\x2e\x74\x5d\x8f\x31\x9c\xc2\x6a\x65\xdf\x08\x94\xfd\x46\x97\xfd\x5f\xd9\x84\xa7\xff\x7d\x94\x21\x86\x1f\x20\x48\x7a\x0d\x1e\xac\xc0\xfe\x88\xc5\xa1\x15\xf3\xa0\xce\x20\x80\xb9\x69\x6d\x33\x54\x84\x53\x60\xd4\x8e\x50\x89\xbe\xf6\x34\xd4\xd5\x43\xd7\x3d\xbc\xdf\x26\x7d\x04\xf3\xf1\x75\x16\x57\x41\xb0\x69\xaf\x41\x45\xe7\xff\x5d\x58\x61\x98\x2e\x7c\xa9\xac\x3e\x2f\xf4\x09\xba\x75\xeb\x10\x65\x82\x9c\xb6\x86\x8d\xb8\x30\x53\xa8\xae\xd3\x5c\x53\x01\x43\x7e\x94\xb5\x77\x5c\x4c\xf1\xf6\x61\xee\xcc\x31\x39\x00\x28\x6b\xe0\xf9\xf8\xf4\xd5\x48\xc0\xa1\xa1\x70\x63\xdc\x0c\x58\xf3\xf3\xc9\x91\x23\x99\x37\x1d\xf5\xd2\xfd\xb3\xae\xd4\x87\x83\xd1\xc9\x1c\xf7\xeb\x7b\x6b\x30\x6b\x39\xfa\xa6\x09\xfb\x52\xf7\xf0\x97\x4e\xf7\xc4\x27\xbe\x11\xb5\x37\x0f\x88\x0f\xd3\xfa\xfd\xf8\x8d\xa1\x66\x15\x46\x50\xda\xb2\x13\x29\x38\x2f\x4d\x33\x2a\xd3\x19\x93\xe7\x18\xd9\xa6\x4f\x70\x93\x1d\xc8\x81\x0e\xb6\xab\xb6\x7b\x18\x0a\x8f\x0a\x73\xbb\x36\x13\x36\xb4\x9a\x23\x27\xd3\xd7\x3c\x27\xc0\x89\xc1\x7c\xc5\x2a\x09\xe5\x04\xd0\xb8\xaf\x13\x12\x20\x17\xab\xd8\x7e\x4f\xa4\x87\xaf\xbf\x98\xd7\x2a\x08\xa6\x8c\x31\xd9\xc2\x57\x45\x62\xff\x61\xf7\xd1\xfd\x70\x7e\x3a\x8b\xfd\x07\xee\x37\x0d\x46\x1d\x0c\xea\xa6\xfe\x6d\xb2\x84\x68\x3b\x8a\x08\x62\x58\x4b\xe3\x76\xae\x69\x64\x0b\x90\xb6\xaa\xc9\x0c\x2b\x9b\xf8\xa7\x7e\xec\xcd\x08\xe0\xc0\x63\xbc\xd2\x99\x4b\xea\xf9\x41\x34\x82\x34\x57\x07\xdf\x34\x67\x7e\x99\xd7\xca\x4d\x3f\xfd\x9a\xd0\x9a\xf9\x46\x63\x86\x3d\xb1\xf3\x09\x67\x9a\x99\x93\x62\xc4\x0f\xdd\xf3\x5c\x46\x60\x60\x3b\xdb\xb7\x77\xa4\x2b\xba\xa5\x1b\x06\xf3\x9d\x27\xbe\x73\xa8\xf9\x23\x88\xfe\xb2\xc7\xe6\xd1\x5b\x56\x03\x73\x7a\xcf\xc5\x99\x57\xcc\xdb\x07\x81\x87\x81\x0e\x2f\x5d\x0b\xc4\xf9\x66\xae\x1f\xd6\x4c\xcd\xd7\x6c\x9d\x6e\xb4\xd1\x51\x9d\xac\xef\xdf\x62\xb7\x78\x2d\xfd\x7a\x48\x9d\x7a\xb3\xf9\x96\x6d\x98\x2f\x45\x89\x81\x77\x78\x10\x78\xdb\x20\xe8\x0d\xe4\xd0\x6e\xf1\x62\x1d\x6e\x59\x9a\x27\x97\xce\x71\x1e\x5f\x46\x30\xf1\xf8\x8c\x51\xbc\xaf\x74\xe7\x96\xec\x52\x1b\xf9\x5e\x5a\x23\xdf\x92\x2d\x53\xae\xef\xbf\x59\x69\xf3\x1b\xc6\x7e\x0e\x82\x32\x9d\x65\x74\xd7\x4b\x78\x94\xd1\x35\x5b\x05\xc1\xa5\xa3\x65\x4a\x57\xd9\x7c\xcd\x26\x93\x55\x10\xac\x83\x00\x06\xdd\x34\xe1\x8e\xad\xd8\x94\x34\xcd\x56\xdf\xba\xdb\x9a\x1c\xaf\x1d\xd9\xe2\x64\xb2\x0b\x82\x35\xba\x48\xdc\x41\x07\x58\xfa\x33\x5d\xd1\x5d\x66\xcd\x49\x2c\xd1\x71\x85\xe6\x97\xe1\xc0\x34\x99\x00\x81\x0e\x7d\xd2\xbd\x23\xd0\xd1\x99\xeb\xe9\x1e\xfe\x51\xa7\x00\x65\x7f\x61\x6d\x3c\x5c\x1b\xaf\xb7\x36\x4d\xe3\x4d\x26\xbb\xa6\xc1\x3e\x85\x6b\xdd\xa3\xb5\xd3\x23\x18\xc3\x2e\x23\x74\x8d\x77\x57\x93\x79\x8b\x28\x76\xa7\xac\xa0\x3b\xbd\xdd\x76\xff\x55\x31\xc6\xa6\x41\xb0\x3b\xab\xce\xd9\xf4\x70\x18\x39\xe0\x3a\x37\x05\xc9\x3e\x47\x3b\x24\x86\x6a\x5c\xa5\xcf\x51\xcd\x95\xa6\x37\xea\x74\xd0\x67\xe7\xb0\xf6\xf7\xc2\xa8\xbf\xf8\xea\x44\x97\xd7\xe4\x73\x77\x07\xd2\xfb\x2c\x91\xa1\x22\xad\x09\xd2\xf9\x2c\x09\x2b\x96\x72\xca\xa9\xef\x53\x95\x51\xb7\xa9\x81\x41\x4c\x38\xf4\x0b\x4b\x1c\xfb\x63\x3e\xbc\x75\x43\xea\x2b\xbe\xdc\xcb\x35\x80\x50\xae\x98\x68\x83\x05\x15\x69\x8e\xc4\x45\x95\x31\x0f\x09\x67\x86\x29\x07\x32\x76\x7c\x41\x7d\x53\xbc\x2c\x2b\x96\x40\x80\xe9\xe9\x89\xef\x84\x54\x71\x71\x24\x09\xd5\x81\x83\x35\x53\xf0\x74\xc4\x49\xab\x13\x90\xc0\x94\xf4\xc6\x01\x78\x65\x60\x0e\x5e\x59\xb6\xb9\x40\x03\x69\xf7\x6e\x4a\xb4\x19\x96\x2c\x37\x96\x59\x1c\x6f\x99\x0a\x15\xfc\x48\xd2\x1f\x0a\x2d\xa8\xec\xce\x3c\x1d\xe5\xb2\x02\x34\x06\x35\x4b\x20\x1c\x3c\xa1\xc1\xf4\x70\x20\x74\x9b\xd7\x83\x71\x8d\x38\xf4\x38\x6c\xbd\x72\x58\xd7\x03\xa1\x96\x75\xfd\xb3\x75\x84\xca\x65\x15\x9a\xc6\x5c\x7f\x0b\x5c\x4b\xd3\x00\x2d\xdf\x1d\x28\xda\x04\x18\x90\x48\x2e\x36\xe3\xf5\xdb\xf8\x41\x1c\x8f\xdd\x7b\x20\x14\x8b\x23\x7c\x52\xfe\x07\x24\x0f\x3d\xf2\x62\x9a\xaf\x24\xde\x97\xc6\x3e\x25\x2a\xc2\x9a\x86\x6e\x89\x37\x97\x65\x0c\x1f\xa0\xfd\xe1\x37\x9d\xde\xda\xf4\xb1\x01\xcf\x4c\x05\xa0\xdf\xa6\x99\xa2\x6a\xa4\x1d\x37\x1c\x8d\xc4\x5c\x09\x1f\xf6\xc5\x84\x64\xe8\x5d\x46\x3a\x29\xe1\x81\x50\x95\x57\xbd\x38\xa0\xad\xd8\xb4\x0b\x92\x8d\x91\x6f\xcd\x33\x6c\xbc\x6d\x4f\x01\x65\xef\x4b\xc3\x36\x8a\xd5\x81\x56\x52\x8e\xc6\x15\xe5\x8c\xb1\xdf\x0e\x14\x6d\xc2\xee\xfb\xfe\xba\x7f\x13\x7e\x10\x84\xde\x6b\x68\xf2\x25\x1a\x92\x35\xdd\x33\x22\x4c\xcf\x0b\x6d\xb4\x64\x1e\x6d\x2b\xbe\x6e\x9a\x7f\xf3\x48\xe5\x17\xe8\x20\x87\xb1\x27\x51\x1e\x3f\x4e\x73\x5a\x69\x3d\x86\xa5\x39\x50\xfb\xfa\xc7\x99\xa7\x07\x6a\x94\x1d\xa3\x04\xf2\x9f\xf4\x90\x53\xd0\xff\xf6\x9a\x5d\xe0\x3d\xda\x2b\x95\xcd\x27\xab\xba\xb1\x71\x5e\xef\xeb\x9b\xeb\xe8\xe8\xbe\xb5\x15\xe0\x74\xd0\xee\xdd\x0c\x02\xef\x6c\x88\x87\x26\x81\x7f\xc8\x86\x63\x6c\x38\x3b\xc8\x73\xff\x7f\xfb\x4d\xf3\xb8\x27\x62\xd7\x2c\x39\x1f\x21\x22\x5a\x12\x81\xea\x5e\x8e\x45\xde\x6b\xcf\x17\x7d\xa7\x04\xc6\x54\xdb\xe2\xc5\x6a\x63\xa3\xbf\xb6\xdb\xb9\xbb\xa2\xe1\x40\x71\x8e\xc7\x72\xdf\x8c\xe5\xd6\xf6\x3b\xff\x87\x4b\xe9\x38\x23\xb6\x01\xbc\xbb\x24\x75\xa0\x68\x01\x75\xd4\xc6\x51\x55\xf7\xb5\x19\x04\x18\x04\xac\xab\x1f\x38\x41\x24\xf7\xf1\xe6\xb2\xcd\xb1\x06\x8d\x20\x72\x19\x12\x78\xe6\xca\x67\x1b\x96\x76\x19\x1e\xf1\x68\xe9\x34\x43\x04\xda\xff\xea\x48\x17\x53\x75\x3a\x83\x2c\xfc\xb7\x41\x86\x2e\x6c\x49\x3a\x3d\x17\x89\x98\xa8\x58\x60\xc6\x2b\x2e\x8e\xea\xea\x8c\x75\xa6\x73\x85\x01\x8a\xd8\x23\xc2\x87\x0a\x5e\x7e\x20\x54\xae\x56\x5f\x28\x3d\xfb\x83\xd2\xe5\x70\x18\x3d\x6a\x80\xb5\x1d\x9d\x9f\x9e\x02\xf9\x33\xb7\xb5\x54\xbd\x5a\x36\x7f\xb6\x96\xc9\xa4\x7a\xa2\xc6\x2b\x41\x7b\x05\x0b\xdb\x42\x6d\x99\x03\xe9\xbf\xa1\x04\xec\xe3\x49\x21\xee\xaa\x7c\x55\xc8\xd8\x9b\x6a\x1c\x73\x21\x6f\xe0\x79\x5d\x94\x1c\x7e\x77\x79\x5d\x5f\xcb\x6a\x05\xcf\xc5\x65\xbe\x81\xc4\x03\xe9\x48\xb2\x8f\x19\xdb\x87\x1f\x49\x57\x5b\xbd\xbf\xb8\x2c\x14\x64\xaf\x78\xcd\xd5\x71\xf6\x12\xb3\x3b\x41\x73\xad\x71\x43\xdd\xf5\xaf\x47\x7a\x21\x53\xbd\xa6\x4f\x8d\x6a\xa8\x28\x39\xfb\x82\xee\x1f\xe3\x32\xfd\xc3\xf1\x66\xf5\x0c\x7b\xa2\x19\xf4\x9d\xb6\xc3\xee\xec\xf9\x05\x50\x2d\x92\x5d\x85\x0a\xef\xff\x41\xb2\xb0\xb2\x3e\x6b\x71\x61\x9f\xe6\x92\xfd\x23\xe4\xf4\x22\x2c\xd0\x43\xa7\xb3\x02\x70\x85\xa8\xec\xbd\xf5\xdb\xf6\x89\x15\xa1\x1a\xed\x22\x5a\x77\xbc\xa7\xc7\x82\x58\xf6\x13\x7d\x13\x12\xda\x57\x4a\x8d\x5b\xd2\xcc\xbe\xa0\xe6\x1a\xf7\x5f\x3f\x56\x8d\x8f\x1a\x0d\xe5\x27\x70\x96\xb1\xaf\xfe\xf3\xab\xf3\x27\x67\xf9\xb9\x4f\xfd\xff\xd4\xfb\xde\x31\x0f\xea\x6f\x78\xc8\xef\x93\x03\x69\x9a\x5c\xef\xfe\x06\x4f\x43\x7d\x81\x47\xa3\x6f\x0f\xa1\xf7\x44\x18\x12\x89\xb9\x1e\x74\x80\x45\x14\xf5\x5b\x86\xb8\x8f\x46\x92\x59\xfc\x68\x68\xde\x35\xd4\x26\x8f\x0e\x0c\xb1\xdc\xd9\xd0\xd2\xa9\xaf\xce\x47\x69\xbd\x56\xe9\xfb\x7f\x30\x6a\x9d\xd5\x0e\xdb\x14\xbc\x6f\x94\x4d\x63\x90\xac\x77\x3f\x92\xed\x66\xc2\xda\xd8\xa1\x1c\xf9\x9e\x45\xb3\x21\x75\xfa\x9d\xea\x6c\x00\x74\xbf\x2a\x75\xd4\x25\x1d\xe2\x6d\x38\xfd\x61\x35\xa6\xcf\x50\x40\xe7\x54\x8e\x3e\xa3\x32\xfa\x0c\xae\xad\xf2\xbd\x69\x32\x58\x1d\xd4\x74\xe8\xa8\x48\xeb\x42\xac\x98\x09\x80\xbd\xab\x5c\x31\xb7\x4d\x4b\xfd\xd8\x37\x21\x99\x77\x55\xbb\xdd\x97\xca\xa8\x34\x98\xab\xdb\x80\x64\x0c\xc5\xde\x2a\x0d\x74\xbc\xab\x7f\xbc\x7d\xf3\x5c\x2e\xad\x15\x25\x75\x2e\xd9\x67\x9d\x9e\xea\x60\x95\x47\x9f\x15\xbb\xc3\x1b\x1f\x9e\xe5\x65\x79\x91\x2f\x3f\xd7\x3d\xd5\x03\x67\x23\x31\xf4\x3e\x2b\xe4\x35\xd1\x0b\xbb\x77\x15\x9f\xa9\x53\xf4\x6e\xe8\x42\xc7\x4b\x8f\x47\x52\x2c\x39\xba\x82\xad\x7b\x01\xa1\xb4\x0b\x0c\x8f\x2e\xf9\xa5\xac\x6e\x83\x40\x51\x0c\xdd\x55\xb3\x7d\xd3\x4c\xe9\x1e\xa3\xbb\x95\x5d\x58\x3d\x6f\x3a\x2f\x83\x20\xef\x1c\x00\xcb\xb4\xb6\x1e\x7c\xc0\x29\x51\x65\x5d\x8f\x67\xa8\xb4\x51\x72\xf7\x4e\xbc\xcc\xcb\x9a\x93\xbb\x82\x79\x33\x23\x3f\xc0\xb0\xd9\x65\x10\x84\xcb\x64\xd9\x9a\x3d\xac\xc3\xee\x46\xd1\xb8\x48\xa0\xeb\xf1\xce\x92\x9a\x78\xab\xc7\x8e\xdd\xe5\xab\x5e\xfc\x74\xe8\x81\x25\x50\x5a\x67\x55\xcf\x89\xe8\xa1\xc8\xdd\xe8\x75\xd0\x06\xf0\x8a\x36\xe4\x99\x20\xf3\x5e\x30\xe6\x22\xe1\x66\xb5\x83\x60\x07\x84\x76\x28\x48\xd3\x94\xf6\x50\x8d\x91\xda\xb7\x5d\xef\x82\xf5\xb0\x22\x08\xaa\x50\x90\x03\x39\x38\xb1\xdc\xa8\x48\xba\x69\x8c\x31\x76\x1d\x53\x74\x1d\x16\x1d\xb6\xd6\x01\xf6\x75\x30\x8e\x91\x08\xf1\xa5\xbe\xd9\x17\xc6\xd1\x05\x99\x1b\xa7\x02\xaa\xb9\x0e\x69\x6b\x62\x2a\x86\x8a\x96\x70\x2c\x9c\x9f\xce\xf0\x02\x5f\xad\xfe\xaa\xe8\x0c\xcd\x5b\xc3\xfc\x9c\x55\x41\x90\x9f\x9e\xd2\x1a\x9f\xea\xd3\x53\xc0\x66\xba\x3b\xc0\xdb\x8e\xe1\xb1\xc4\xa9\x9e\xd3\x12\x05\x97\x5e\xe8\x95\x4d\xe3\xb5\x1e\x63\x47\x14\x75\x37\x16\x00\xca\x9c\x4d\x4d\x23\x66\x85\x47\x33\x2e\x59\xc1\x54\x3f\xdf\x48\xfc\x7c\xaf\x3c\xd0\x52\xba\x57\x2d\x74\x11\xe3\x98\xa2\x45\xd3\x38\x70\x64\x6a\x83\xfc\xa3\x75\x2d\x91\x1a\xc4\xc8\xdf\xa3\xa1\x4e\x61\x94\x32\x08\xbc\x25\x1e\xd9\x18\x12\x93\x2a\x96\x72\x6a\xae\x35\x4a\x94\xbd\xe2\x37\x56\x19\x15\x89\xf1\xfc\x54\x24\x5e\x03\xfe\x32\xcd\x43\x13\x23\xdd\xdd\x45\xb6\xed\xe1\xdd\x09\x4e\xb9\xb1\x5e\x7b\xf2\xd0\xfa\x0d\xee\x7a\x91\xe2\x6d\x90\xb7\x11\x92\x3e\x4d\x7d\x13\xe7\xdc\xa7\xfe\x4a\x0a\x8e\x77\xb1\xb5\xa8\x28\xf4\x01\x69\x9c\x68\xd4\x00\x27\x90\xc9\xbc\xf2\x33\x0a\x25\x31\x1e\x11\xf5\xd7\x79\x51\xfe\x61\xc1\x5f\x91\xd5\xc2\x82\xfa\x4a\x52\x9f\xfa\xf6\xba\xc6\x61\x61\x5b\x2e\xcb\xa8\x60\xfe\x8e\x0b\xbc\x39\x8b\x56\xcc\x5c\x8c\x7b\x3c\x6d\xe2\x40\xf5\x2d\x71\x23\xdf\x0a\x7d\x87\x45\x37\x93\xfa\xea\xc7\xa3\x99\x55\x5b\xf7\xfe\x50\x73\x0d\x42\x77\x85\x80\x73\xe9\x65\x1b\x36\xaf\x8b\x93\x72\x0f\x96\x91\xba\x1a\xed\x0f\xa9\xef\x98\x75\x63\x47\xa6\x2a\x23\x41\x00\x3f\xf3\x02\xbd\x1f\xb3\xe1\xad\x6b\x9c\xd5\x41\x50\x8f\xdf\xa6\x31\xb7\x97\x0b\x74\x15\xda\x20\x71\x24\xe1\xc3\x3b\x3c\x84\x0d\x69\x6f\xc6\x2f\xcc\xc5\xa1\xa4\xbb\x45\x53\x98\xdb\x62\x49\x2c\xd2\x7c\xe2\x03\x14\xfa\x19\xb6\x8a\x96\x46\xa2\xab\x12\xaf\x39\xa1\x35\x86\x73\xed\x3a\x74\x00\xc4\xc1\x75\xfc\x20\xd2\x65\x3e\x50\xf3\xf8\x85\x60\xf4\x49\x07\xb0\x9c\x56\x24\xae\x0e\x07\x5a\xc0\xd1\x68\xa5\x7f\xd1\xae\xd8\x71\x56\x45\xb0\x4a\x74\x64\xae\xb9\x3b\xd7\x8f\xd0\x97\x3e\x7d\x9c\xcd\x2b\x3d\xad\x2c\x8f\xf2\xd5\x8a\xd6\x41\x80\x0f\xee\x2c\x0b\x06\x6b\x9f\xce\x7e\xe1\x59\xfa\x28\xb3\x68\x82\xaa\xf4\x11\xbe\x03\x9a\x20\x14\x56\x67\x9a\x65\x23\x01\x3d\xf5\x97\xe1\x64\x15\x49\x15\x8f\xef\xdf\x7e\x7e\x96\xb7\xfb\xfd\x40\x68\xd5\xce\x59\x41\xa8\xd6\xa4\xe9\x90\x06\x05\xa1\xc5\x81\x5e\xf7\x00\xb4\x33\x4c\xa0\xd6\x10\xeb\x38\x86\xa8\x13\x9e\x87\xd6\x6c\xe6\x31\x96\x37\xcd\x97\xc0\x26\xc7\xf0\x03\x18\x72\x2c\xe1\x71\x3f\x44\x64\xc9\xc6\x63\x08\xf4\xb4\x71\x22\xe5\x99\xbe\x95\xa3\x82\xa7\xe1\x15\x21\xe7\xb3\xe4\xb8\x97\x71\x41\x2b\x54\x79\xed\xdd\xeb\x8a\x31\xec\xc0\xe9\x69\xdd\x34\xfb\xde\x6d\x0c\x18\xb3\xeb\x80\x61\x57\xce\x67\x44\xdf\xc3\x87\x21\xc0\xf1\x34\xca\x31\x94\xa8\xfb\x5a\xf5\x5e\xe7\xb9\x71\x91\x96\x68\x26\xd2\x9f\x08\x48\xeb\xe6\xc2\x7d\xb3\xbb\x08\x56\xa3\xa2\x92\x98\x4d\xb4\x3f\xde\x44\x90\x43\x50\x45\xb0\xef\xed\xdd\x1d\xc3\x41\x40\x1d\x74\xef\xec\x11\x4d\xa2\x5a\xa7\x98\x23\xf9\x23\x1d\x84\x44\xa2\x6b\xf6\x6a\x3c\x28\x58\xb1\x0e\xd7\x03\x26\xa2\xf3\x1a\xa1\xbe\xf2\x09\x5d\xbb\x6c\xc8\xc9\xc9\x93\xb2\x10\x9f\xcf\xce\x9f\x20\x97\x78\xfe\xe4\xcc\xfc\x5a\xbe\xeb\x2c\xff\xea\x3c\x07\xce\x4b\x33\x2c\x68\x1d\xce\xbe\xb2\xec\xf8\x57\xc0\xc0\x08\xb6\xbe\xdf\x75\x04\x0f\xc8\xea\xde\x1c\xb9\xaf\x1d\xb7\xab\xa6\xf1\x2a\x1d\xd6\xb4\x69\x3c\x4b\x5a\x75\x5e\xb6\xf2\x78\xc0\x9a\x7e\xf7\x09\x6c\xf6\x9e\x55\xf4\x51\x4e\x23\x4c\x24\x18\x94\xf7\x9e\x8e\x18\x03\x6c\x0c\xfe\xaa\xfb\x11\x2d\xeb\x1a\xad\x81\x7c\x25\x77\xf1\x6c\x77\x33\xc7\x4b\x53\xe3\x92\xaf\xd5\xdc\xdc\xda\x18\x47\xdf\xf8\x3a\xea\xdf\x07\x67\xce\x99\x8f\x9c\xd5\xba\x53\x85\x53\xe0\xe9\x73\x38\xc8\x7e\xde\x16\x8a\xd7\xbb\x7c\xc9\xd9\x63\xd4\xba\x39\x1c\x9d\x95\x11\x52\x15\xa9\x0b\xb9\xba\x65\xde\x7d\xbd\xc5\xcf\xad\x01\x36\x55\xd1\x56\x5d\x96\x1f\x78\x55\xe4\x65\xf1\x3b\x67\xde\xbd\x05\x61\xb1\xdd\x72\x38\x52\x76\xa6\xe4\xee\xcc\xd8\x58\x0c\x58\x38\xcc\x00\x53\xa7\x50\xa8\xfc\x83\xac\x2e\xb1\x8d\x15\xf3\xcf\x72\x0c\xbf\x34\xca\x7e\x53\xd5\x5e\x6c\x79\xf6\xcb\x34\xfa\xa6\xad\x5d\x4f\xad\xf9\x06\xd9\x96\x75\x8d\x97\x8a\x30\xcf\x73\x26\x1e\x93\xe0\x2b\x00\xda\x3b\xc1\x3c\xcf\xd8\xae\x61\xc5\xea\x83\x15\xde\xd6\xad\x1c\x97\xaa\x88\x8b\x25\x82\xa7\xe7\x1d\x81\xc0\x5a\x56\x97\x3e\xb1\x39\xcc\x84\x7d\xf3\xac\x94\x82\x33\xff\x49\x2c\xf2\xab\xf3\x27\x67\xf8\x03\x2b\x77\x54\x5c\xe4\x57\x3e\x89\x96\x90\x1d\x39\x51\x6f\x4a\x22\xb9\x57\x7a\x17\xd1\xfb\x6e\xce\x05\x36\xe7\xf8\x52\x5b\x9d\xba\x2b\x6e\x78\x69\x45\x24\x3a\x49\xbb\xd6\xbc\xd0\x57\xfb\x00\x1b\xa6\x22\x21\xb1\x8b\xe8\x63\xa6\x53\x2a\x5e\x16\xb0\x43\xdf\xe2\xfd\xa2\x3f\x16\x9b\xad\xf9\x70\x21\x6f\x3e\x14\xbf\x17\x62\xf3\xa3\xc9\x01\xc9\x85\x15\xa9\xf7\xaa\x7b\x66\xd2\x8a\xc1\x88\x4c\x5e\x2a\x3b\x09\x3f\x16\x93\x3b\xf5\xbc\x4d\xa8\xdb\x8f\xe8\x06\x69\xfc\x81\xd6\xb8\xbe\xc6\x6c\x73\x47\xee\x8e\x46\x33\x3b\x14\xc7\xd3\x6a\x36\x1d\x2d\xee\x97\x7b\xc0\xdc\xee\xf6\x8a\xa1\xfc\xa3\x18\x17\x7a\x50\x03\x1b\xb0\xef\x8e\xea\x32\x1e\x14\x28\x49\xc4\xfa\xf0\xe9\xef\x36\x3f\xd6\xaa\x21\x6b\x58\xd2\x3a\x71\x68\xb4\x39\xfc\x2a\x3a\x8c\x9a\xb7\x23\xb3\xb2\xaf\xf6\x2a\x11\x42\xf3\x1e\x6e\x2a\xa0\x07\x36\xa1\x5d\x05\x33\xef\x06\xdc\x35\x54\xe6\xc3\xc5\xe9\xbd\xb5\xf6\x03\x6d\xe1\x75\xdf\x53\x31\x5c\x0f\xfd\x13\x97\x65\xb1\xfc\xdc\x73\x4c\x1c\xc2\xd7\xec\x00\xa7\xc3\xb0\xd9\x62\xf9\x39\x34\x46\x94\xcb\xbe\x14\x55\x47\x5f\x46\x91\xac\x5c\xee\xeb\x42\xa0\x44\x75\x70\xfe\xec\x99\x2f\x85\x3f\x59\xea\xa9\x52\xe9\x72\xe2\x7f\xb7\xbf\xb8\x28\x79\xed\x67\x6c\x6f\xee\x22\x5f\x3b\xd2\xb3\x74\x9f\x99\x4b\xcc\x25\x4a\x12\xe6\x6b\x83\x16\x80\x3f\xd8\x54\x72\x2f\x56\xcf\xca\x62\xc7\xfc\xa5\x56\x82\x9e\x5e\xc8\x1b\xff\xa8\xdf\xe3\x45\x00\x59\x2f\x4b\x9e\x57\x38\xec\x0f\x88\xfc\x7a\xf5\x20\x4a\x1e\x2b\xdb\x8e\xff\x64\x89\x06\xd0\xbd\x9b\x1b\xda\xbb\x79\x98\x3f\xc5\x5b\x86\xe8\x52\x0d\x69\x79\x73\x88\x33\x7b\x17\x70\x3c\x9d\xeb\x3b\x82\xe3\xe9\xfc\x42\x56\x2b\x5e\xc5\xd3\xb9\xb9\x45\x3b\xc6\xdb\xb3\xe7\x17\xf2\xe6\xb4\xc6\x3d\x1d\x3b\x7d\x9c\x9f\x5e\xca\xdf\x4f\xef\xfb\xa6\xfd\x63\xee\xfb\xec\x23\xac\x8e\x1f\x0d\xfa\x48\x49\xa7\xd9\x3c\x47\xcb\xba\x71\x0a\x83\x8a\xe1\xe9\xd8\x76\x1e\x45\xab\xf1\x74\x6e\xae\x4a\x9e\xce\x77\x06\xbd\xc5\xf9\x45\x2d\xcb\xbd\xe2\x73\x38\x49\xa7\x73\x38\x41\xe3\xd3\x6f\xbf\xfd\xf6\xdb\xdd\x8d\x99\x84\x53\x73\xc6\xfa\x83\xfd\x22\x48\xef\x75\x3d\x20\x5f\x2c\xd5\xa2\xaa\xf3\x27\x6a\x05\xd4\xcb\x0a\x1f\x94\x7e\x3a\x83\x74\x43\xd1\xf8\x5f\x38\xfc\xd5\x0a\x36\x38\x9a\x07\xf6\xc7\xf6\x67\xd6\x0a\x2f\x57\xa7\x25\x43\xcb\x28\xa8\x43\xae\xd7\x35\x57\xaf\x71\x16\xdc\x5a\xdb\x2b\xd2\x7d\x5a\xa0\x39\x67\x3f\x55\xd7\xd3\x61\xf8\xd7\xe8\xf3\xf5\x0e\x2b\xab\x59\x69\x4c\xaf\x8e\x1a\xe8\xcd\x07\xec\x83\xa3\xe5\x69\x21\x41\x77\x7d\x14\x86\xdc\x4f\xc7\x20\xe4\x7c\xb5\x33\x02\xf4\x90\x99\x0a\x78\xec\x03\xae\x86\x84\xaf\x07\xab\xfb\x5f\xf7\x00\xc4\xec\xbf\xe6\xfa\x16\xf8\xeb\x7c\x17\xe6\xe6\x86\x87\xdc\x8c\xe3\x77\x29\x2f\x93\x3b\xf8\x1f\xcf\x0e\x68\x5d\xec\xe2\xaf\xf6\xd0\x63\x5f\xe3\xce\xd5\x33\xf3\x33\x34\x0f\xcc\x28\x2c\xf7\x33\x79\xb9\xdb\x2b\xbe\xc2\xcd\x1e\x04\xe1\xf0\xe8\xf5\x67\xff\x05\x5b\x36\x3c\xce\x1c\xae\xb1\x2f\xa4\x69\xee\x0e\x24\x52\x72\x37\x7a\xca\xfa\x5f\xef\x10\x6d\x7c\xb9\x02\x3d\x23\x98\xf7\x40\xf4\x4d\xdf\x48\x15\x7f\x91\x6e\xd5\x7a\x92\x23\x7a\x74\xb8\xc4\xb2\xcd\x71\xe9\x10\x05\x36\x4d\xdf\x2a\xee\x4f\x3b\xd0\x30\x29\xb8\xdb\xee\x21\x28\x9c\xbb\xde\xc6\xc6\x55\xb9\x13\xe3\x34\x0a\x64\xa2\x96\x53\xaf\x9d\xe5\xd3\x06\x9f\xe1\x1f\x00\xaa\x9c\xe8\x9b\xdd\x11\x9c\x5c\x28\xb3\xa0\xa5\x69\xac\xb9\x06\x05\xff\x7e\xa2\xeb\xf1\x10\x12\xda\xa6\xda\xad\x86\x50\xea\x0f\x50\x09\xba\xa3\x1b\xef\xf3\x1e\x59\xde\x9b\xb5\x6f\xf4\xac\x1d\x11\x75\x8f\xbd\x61\xab\xf7\x75\x10\x03\x4f\x76\xb3\xc3\x66\x04\x88\x04\x37\x0e\xb3\x00\x2e\x76\xcd\x0a\x56\xe9\x6b\x31\x0e\xf0\x2e\x59\xce\x6a\x56\xb1\x82\x69\xa7\xa0\x43\x78\x77\xd0\x12\xff\x17\xfa\x7a\xf0\xc5\x5d\xba\xa8\x17\x1f\xb2\x87\x8b\x43\xb3\x48\xed\x73\x46\x1e\x9c\xd1\x0f\x90\x23\x7d\x7a\xfa\xaf\x8c\x9c\x6d\xe6\x8e\x74\x10\xed\xfb\x61\x57\x09\xf9\x3c\x57\x79\x8c\x81\x27\x50\x33\x4a\xf9\xe5\x05\x47\xd5\xaa\x8e\x3c\x1e\xfb\xcb\xb2\x2e\x56\xf1\xf3\x47\xff\xeb\xd9\xf3\xef\xfe\xf2\xe2\xf4\xe9\x8b\xbf\x3c\x3f\x9d\xcd\x96\xeb\xd3\x6f\xff\xf2\xdd\x7f\x9f\x7e\xfd\xf5\xd7\xdf\x7c\xf3\xf8\x9b\xaf\xa7\xd3\xe9\xd4\x47\xd1\x31\x56\x38\x6a\xda\xe2\x38\x20\x2e\x95\x8e\xa5\x9d\xf2\x54\x2b\x5e\xe0\xd8\xcf\xb2\xb8\xf7\x4a\x3d\x8f\x07\x81\x57\xa3\xf9\xc3\xaa\x5f\x6d\x4f\xb1\x55\x98\x77\x2b\x49\x7f\x3e\xcc\xdb\x33\x53\x53\xe4\x40\x3f\xfd\x89\xea\x28\xde\x4e\xf9\xe9\x4f\x55\xa9\xf3\xe6\xcb\x25\xdf\xa9\xa3\x09\x68\x8d\x45\x4c\x9c\x6b\xaf\x1f\xf7\xfa\x5b\x6f\xdc\x50\x64\x68\x80\x81\x72\x0b\xbd\x60\xe9\x7d\xda\x3b\x6b\xfb\xed\xa9\xa6\x51\xe6\xa6\xcb\x51\x93\x6b\xc7\xb9\x9f\xba\x57\xc2\x86\x77\xc3\x99\x71\x6f\xcc\xd1\x30\xa8\x63\xaf\x9a\xbb\xa0\xad\x83\x9f\x71\xd2\xec\x22\x68\x61\x28\xd4\xa5\x8a\xa0\xbe\x70\x4f\x30\xa2\xfd\xde\x19\xb6\xb7\x54\xd1\x27\xfd\x91\xea\x6b\xd4\x56\xd0\xc9\xda\x27\xc4\x86\x7f\xdc\x3b\xe4\xe1\xbc\x7e\x52\xb5\x66\x7d\x78\xab\x50\x95\xd6\x59\x04\xe4\x38\xc5\x13\xb2\x73\x08\x80\x4a\x4f\x7d\x0c\xf4\xcc\x10\xd0\xcc\x1d\x68\x61\x61\x64\xf4\xdf\xc0\xd6\x0b\xf7\x30\x22\x0c\x50\x3d\xbf\xaf\x2b\xb8\xac\xad\x62\xdd\xd8\xa9\x1c\x5d\x64\xa9\x6f\x89\x46\xd9\xa4\x73\x4a\xd9\xa1\xeb\x2b\x98\xc9\x81\xc4\x23\x62\xb1\x3f\x51\x12\x6f\xbc\x89\xf7\x09\x74\x8e\xd3\x76\x42\x29\x27\x46\xcd\x39\x0e\xf4\x83\x0b\x94\x8f\x9b\xe8\x4a\x75\x5d\x34\xd0\x60\x41\xe1\xb7\x3d\xdf\xf3\x7b\x6e\xe7\x6a\x95\x42\xa1\x62\x18\xaf\x76\x7d\xe3\x93\x89\x8f\x45\x7c\x8a\xaa\x28\x3d\xa5\x68\x67\x2a\x82\x00\xdd\x87\x9d\xfb\x72\x05\x49\xfa\xb9\xfa\x17\x7c\x0b\x42\xe2\x36\xd6\x01\x31\xb7\xe1\xb4\x11\x06\x56\xfc\xb8\x6f\xe4\x0e\x15\x33\xd0\x11\x73\xf3\xcb\x12\xe3\x0d\xec\xb9\xee\x43\xef\xee\x2e\xd1\x45\xcd\xc6\x4e\x60\xbe\xd7\x52\x7e\xae\xad\x61\xec\x60\x41\x78\x57\xd3\x61\x0e\x1c\xac\x55\x63\x30\xd4\xfe\x85\x6e\x95\xd5\xe9\x29\x5e\x22\x19\x42\x5f\xb4\x6d\x94\x68\x5d\x4a\xdd\xb2\x84\x1a\x3e\x5a\xa2\xd2\x94\xda\x9b\x8b\x68\x4e\x25\x21\xd4\xab\x82\x00\xaf\x81\x47\x9d\x1a\x0a\x8d\x43\x40\x49\x5d\x67\xc7\x42\x4e\x30\x65\x96\x01\x73\xf8\x8e\x0a\xc3\x4e\xb5\x20\xb8\x12\xed\x2b\xbd\xd3\x4a\xbb\x2f\x68\x73\x86\x02\x74\x28\xee\x40\x10\xa7\xb6\x51\x1f\x21\xa8\xff\x4d\xe8\x10\xf0\x47\xa8\xe6\x68\x0d\xdb\xc0\x4e\x8f\x06\x77\x73\x75\xf7\xa1\x20\x8f\xc2\x29\x67\x30\xb7\x7a\xa6\x87\xfb\xea\x49\x95\xb4\x2b\x6f\xb0\x14\xe5\xc4\x38\x16\x43\x42\x3c\xba\x27\xda\x5b\xda\xbb\x92\xfa\x9a\xb9\x01\x7c\x98\xdd\x42\xcd\xe2\xf2\x20\x70\x97\xd4\x63\x4c\xa5\x53\x2d\x64\xb6\x40\xd3\xed\xaf\x11\xc0\xfd\xc3\x8d\x3a\x5a\x4b\x79\x74\x59\x5f\x7b\xcc\xc2\x1c\xdf\x24\xf8\x3f\xaa\x77\x40\x80\xa0\xe5\x00\x8f\x39\x6d\x37\x88\xbe\x64\xdf\xd4\x3b\xa2\x21\xaf\x98\x73\x4d\x91\xa2\x1c\x23\x54\x28\xb9\xeb\xed\x0a\x60\xa8\x6d\x9e\x0a\x96\xf7\x40\x31\xed\x6f\x5f\x1c\xa1\xd9\x47\xa6\x1f\x78\xef\xfa\xb1\xa6\xc8\xf5\x36\x9f\xe9\x2d\xea\xe8\x24\x72\xad\x6b\xa8\x7b\x57\xbf\xef\xdd\xbe\x9d\x9e\x16\x4d\x23\x7b\xc2\xf7\x9c\xa2\xf5\xba\xbe\xa9\xfc\x7e\xb0\x52\x68\xee\x6c\xd0\x48\xad\x6d\xe2\xdb\xbd\x92\xa7\x75\x46\x79\x6f\x7b\x11\x8a\x37\x86\xe2\x06\x02\x34\x30\x99\x50\xf3\x86\x5b\x66\xdf\xd9\xb2\xef\x75\x88\x7e\x23\xfc\x17\x30\x61\x88\xa7\x9e\x2a\xfa\xab\xa2\xcf\x15\x3b\x4b\x17\x6a\x51\x2d\xc4\x62\x9d\x9d\x6d\xe8\x1b\xc5\xce\x16\xd5\xd9\x86\xbe\xfe\x13\x91\xd7\x1a\x7d\x28\x61\x00\xb6\xdf\x4c\xfe\xbc\x81\x0c\x98\xf4\xc9\x24\x0d\xc3\x54\xe2\xc7\xb7\x08\xf4\xf6\xb6\xe1\x81\x4c\x9b\xbe\xeb\x7d\xc5\x3e\xcc\xfb\xbb\x18\xce\xe8\x71\x58\xec\x2e\x8f\xc3\xf5\x82\x57\xa5\x2a\x0a\xb8\xfe\xf8\x2c\x6c\xa9\xb7\xa7\xfd\xfa\xfe\xe4\x41\x06\xa5\xdc\x2d\xb2\xab\xe4\xee\xcf\xf6\x0a\xf2\xfe\x51\xaf\xde\xf7\xeb\xeb\xef\x37\xa8\xe0\x65\x71\xa3\xf7\x19\x1d\xed\xa8\xaa\x6e\xef\x10\x19\xf1\x8c\x29\x8b\xf6\x4d\x42\x77\x85\x0b\x6e\xa2\x7c\xb5\xc2\xb0\x3a\xf7\xa9\xfd\xf0\x62\xb9\xe9\x11\xf8\x1f\x1b\x0d\x05\x01\xfa\x2a\x0f\xef\x2e\x24\xf7\x4f\x28\x1a\xce\xe0\xbc\x20\xc6\xc7\x6e\x84\x46\x23\x89\xb3\xa5\xcd\x32\x3a\x0d\x07\x21\x07\xd4\x3e\xed\x8d\x4e\xce\xf8\x14\xe8\xc0\x02\xe1\x4e\x07\xe9\x9d\xd7\xe7\xf9\x3c\xb7\xb1\xc3\x71\xd0\x79\x46\x2b\x36\x8c\x6d\x14\x8a\xae\x62\xed\x2c\xe7\x24\x68\xb7\x39\xeb\x86\xf0\x5c\xdf\xa8\x11\xc3\x3f\x4d\x2e\xe2\x25\x9c\x4c\xe9\xcb\x33\x89\xe3\x1f\x7a\xe2\x4f\x0a\x2c\xfc\x64\x1a\x04\x61\x35\x61\xfa\x6d\xee\xd4\xdd\xde\xaf\x5c\x8d\x5a\xe6\xfc\x7f\x59\x0d\xa0\x49\x87\xe0\xd4\xdd\xef\xf5\x7f\x6b\x8d\x9c\xfe\xfd\xbf\xbd\x4c\xe3\xab\xa4\x3d\xf4\x47\x96\x0a\xad\x90\x2b\x56\x75\x71\x44\xed\x27\x7a\xb4\x76\xc8\x4d\x9a\xd5\x8b\x7d\xbf\xbf\x80\x4a\x6e\x36\xe5\xd1\x02\x3a\xb4\x92\x59\x06\x4b\x6f\x8c\x5d\x3c\xde\x2d\x1a\x13\x89\xa6\x20\x9c\xcd\xa1\xcd\x22\xfa\x2b\x41\x1c\x0a\xe3\xe8\xe6\xd0\xbe\xfd\x88\x59\x48\xa7\x9f\xbd\x85\x14\x83\x85\xa4\x18\xf9\xfa\x30\xb0\x86\x73\x7b\x48\xba\x6b\x09\x74\xe0\x02\xdb\x06\x06\x6d\xe9\x2f\xb8\x62\xd2\x44\x84\x2c\xa2\x6d\x5e\xeb\xe6\x15\x49\x8a\xde\x70\x14\x89\x8b\x6e\xc0\x4a\x5f\xcf\x88\x57\x29\xfd\xb3\x69\x9c\x19\xc3\x2b\x88\xc2\x7e\x7f\x91\x0e\xfa\xd4\xb1\x33\xfe\xa7\x4f\xed\xb7\x4f\x9f\xfc\x21\x98\x0e\xde\x59\xff\xb5\x69\x38\xaa\x06\x12\xdf\x8f\xbf\x58\x6d\xe7\x4f\x6c\x47\x75\xe4\xe2\xa1\xa9\x3d\x74\xda\x47\xb0\x12\x6c\x4a\xab\x5e\x04\x68\xe7\xca\x60\x74\x1e\x82\xfd\x20\x32\x77\x1f\x40\x69\x9b\xfc\xe5\x0d\xd0\x82\xb8\x02\xd0\x1e\x8b\x55\xd4\xbb\xfa\x9b\xf7\x75\x07\x96\xd5\xc6\x50\xfa\x03\x9c\x42\xda\x98\x21\x43\x40\x1b\x3b\x87\x0c\x59\x25\xe7\x76\x44\xee\x70\x24\x9a\x3f\xba\xb0\xd7\x82\xe7\x55\x5e\x86\x84\xc4\xda\xcf\x8e\x31\x99\x48\xe6\xfb\xf1\xd1\x85\xc7\x32\x41\x57\xeb\xd8\x61\xf3\x24\xb1\x82\x80\xcb\x7c\x17\xca\x31\x07\x73\xe7\x82\x6a\x3e\xc1\x0b\x18\x34\xff\x78\x95\x97\x48\x63\xa5\xd8\x51\x0c\xb8\x8e\x7c\x4b\x3f\xfd\x1e\x41\x08\x90\x65\x7e\xcd\x95\x5f\x98\x3b\xdd\x6b\xae\x07\x43\x25\xb5\x0a\x44\x0f\x63\x26\x69\x88\xd5\x9a\x44\x69\x11\xa5\x6c\x63\xd2\xf4\x7a\x22\xc7\xba\x21\xbf\xd8\x87\x4d\xdb\x07\x0c\x5b\xb0\xe1\x2a\xec\x7a\x80\x5d\x48\x44\x1c\x0a\x26\x8d\x3a\xf2\xf8\x3a\xe2\x44\xb4\xe0\xf4\x06\x6f\xec\x8e\xf5\x8c\x09\x98\x31\xa0\x23\xfb\x5c\xbb\xed\x57\x7c\xa7\x0d\x20\xe2\xbb\x9e\x73\x1b\x77\x38\x1d\x8c\x16\x88\x2e\xf4\xbc\xed\x52\xff\xa6\x6f\x95\xa8\x58\x87\x29\x39\x58\x17\xac\xe3\xfa\x7a\x17\xa1\x30\x1e\xe9\x76\x6b\x0c\x9a\xd2\xf7\xbf\x92\xcc\xd8\x6f\x9c\x4a\xc1\x5d\x47\xa1\xe9\x79\x41\x73\x26\x75\x54\x88\x54\xdf\x8a\x52\x4c\x66\x71\xe5\x9c\xa8\xe7\x45\x52\xc7\x32\x29\xe2\xe9\xbc\x36\xf7\xfe\xe2\x49\xa5\xef\x24\x0e\x3d\xd1\x36\x16\x04\x7b\x0f\xe3\xa2\x84\x0e\xed\xea\xa8\xb3\x13\xd1\x6a\xb3\x63\x3d\x4e\x6d\xd0\x3d\x6a\xc3\x8e\x0e\x92\x8e\x47\x99\xfd\x62\xe4\x71\x7a\xe5\xc3\x5e\x00\x2c\x5f\xee\xd4\xa6\x92\xfb\x9d\x6f\x02\xf9\xc3\x6c\x87\xc2\xec\x23\x2a\x3b\x03\x97\xdc\xda\x89\xda\x63\x2b\x87\x69\x56\xf7\x45\xf5\x35\xf7\xcc\xd8\x09\x36\xfb\xca\xca\x4c\x46\x1d\x7a\x0b\x38\xc4\xc3\xaa\x73\x7c\x73\xac\x78\x97\xc0\xb8\xb5\x9d\x02\xcc\x84\x50\xea\x4d\x3b\x28\x68\x9a\x70\xb0\x88\xec\x74\x46\xa8\x3c\x1c\x0e\x74\x48\xf9\x0f\xee\x3e\xee\x47\xcc\xe1\x41\xf0\xd8\x63\x2c\x0f\x82\xff\xd6\x3f\x8f\x3c\x27\x6c\xd7\x68\xc8\x08\x38\x61\x12\x43\x5e\xdb\x2b\x69\x10\x17\xe7\xc6\x86\x4b\x9b\xdd\x87\x9c\x34\x4d\x78\xec\x26\x8a\x28\x11\x63\xd4\xe0\x36\x15\x99\x86\x07\x34\xf3\xc7\x73\x30\x82\xb3\x4b\x5b\xa8\x08\x92\xfc\xaa\xe2\xa7\x0a\x71\x0f\xec\xc9\xa2\xdb\xba\x45\x10\x18\x20\x01\x14\x89\x3b\x18\x18\x54\x92\xc8\x58\x63\x36\x77\x1b\x09\xd2\xe2\x48\x15\x4b\x62\xc1\xab\xc2\x0a\xeb\xb6\x42\xac\xa9\xc6\x9a\x2a\xa8\x0b\xf1\x80\x8c\x71\xae\xdd\x18\x4f\xb4\x9a\xf8\xc0\x63\x1a\xd1\x57\x9f\xdd\xc1\x5e\xdc\xc3\x36\x51\xd7\x88\x4c\x87\x1f\x0d\x02\xd5\x9d\xff\x88\xe4\x86\x97\x30\x92\x41\xf0\xd1\xca\x65\x6e\x60\xfe\x5a\x47\x8a\xb1\x09\x7c\xa7\x82\xe0\xad\x6a\x1a\xef\x93\x6a\xd3\xb4\xfb\xf8\x4c\x0b\xf6\x3b\x49\xac\x6f\x9c\x4b\x4e\xfd\x89\x20\x19\xb3\xb9\xcc\x7a\xe1\x5a\xeb\x80\x96\xc3\x1b\x3e\xdf\x02\xb6\xac\x88\x86\x3d\x83\xe6\xf0\x9e\xbb\xbb\xe3\x5d\x63\x2e\x68\xb6\xfb\xbf\x33\x00\x09\x02\x63\x17\xa2\x65\x73\xee\x36\xe6\xd4\x5a\xa7\x74\x3e\xc0\xbd\xab\xea\xf8\xa8\x9d\x89\x11\x71\x9a\xbc\x4c\x10\xaa\x0e\x87\x83\xe6\x42\x5f\x16\x37\xf1\x9d\xbf\x96\x95\x1f\xfb\x5b\x75\x59\xbe\x94\x95\x4f\x4d\xe0\x93\xd8\x31\xd3\x3b\xe6\x59\x87\x97\xb5\x8c\xef\xa8\x5a\xef\xa8\x5a\xef\x28\x7b\x15\xf0\x49\x8e\x96\x9f\x75\xd3\x78\xfd\xad\x42\xb5\x9a\xff\x68\x61\xa5\x4d\xb2\xbb\x85\xd0\x4a\x43\x65\x07\xb8\x12\x05\x9d\xf2\x08\x70\x8b\x58\x5f\x7c\x1a\xcb\x6e\xd7\xc8\x6e\xd7\x40\x91\x6e\xd7\xe8\xcc\x7a\xb4\x76\x05\x8d\xbb\xf2\x9f\x3d\xaa\x54\x7e\x81\x04\x55\x77\x5a\xa9\x04\xe5\xf6\xdf\x0b\x15\x2a\x3a\x9b\x92\xf8\xf5\xb1\x9b\x6b\xd3\xfc\x76\x9c\x18\x04\xda\x6d\x3a\x99\xc6\x18\x0a\xfd\x40\xe8\xaf\x8a\x1d\x41\x93\xa3\x1e\x52\x9a\x06\x3d\xde\x8a\xf1\xe8\x06\xe8\xc3\x8b\xf7\x56\x03\x5c\x7f\xee\x05\xf9\xc3\x0d\x22\xf0\xa6\x58\x71\xe8\xae\x01\x1f\xd9\x89\xfa\x6a\x54\xb3\xc9\xcf\x16\xd7\x93\xb3\x4d\xef\x8e\xef\x56\xba\x67\xcb\xba\x21\xec\x34\x55\xd3\xce\xf3\x7c\x34\x0f\x1b\x1b\x63\x0f\x64\xdb\xe0\x33\xa3\xe5\xe1\x80\x4a\x54\x1c\x8e\x57\xae\x88\xa7\xa3\x39\xd0\x82\x24\x62\xc4\xa7\xcb\x11\x66\x8f\x14\x97\x34\x3f\x1c\xed\x1f\x4b\xc7\x01\x21\xf3\xa5\x39\x1e\x6d\x0f\xc0\xc1\x8e\x38\x74\x4f\x13\xb3\xd1\xbf\x04\x27\xe3\x68\x05\x5d\xdd\xc2\xbe\x77\x1d\x53\x24\x7e\xaa\x82\xe0\xa9\x32\x3b\x0b\x95\x99\x07\x42\xb1\xd9\xa7\xc7\xe0\xd8\x21\x86\x31\x7f\xb9\xce\xe3\xb6\x68\x9a\x3e\xfc\xe1\x77\xa4\x20\x7a\xd7\x70\x6b\x03\x84\x0e\x4a\xf1\x1a\x33\x8b\xcb\x74\xf0\x24\x4d\x1d\xea\x70\x29\x82\x1d\xf9\xfc\x55\x24\x11\xb1\x32\xd0\xd9\x5f\x99\xa8\x58\x8d\xc0\x02\x6a\xee\xc6\xd2\x97\x52\x56\xab\xfa\xc8\xea\x1c\x47\x3b\x77\x16\xf3\x0b\xb1\x0f\x7d\x74\xc9\xd2\xfd\xef\x05\x3f\xc4\xee\x59\xfa\x38\xd2\xa2\x53\x36\xc0\x39\xdd\x26\x19\xad\xbe\xed\xc2\xb8\x4b\xa2\xd2\xe4\x9b\x5e\xc9\x03\xed\x81\x8c\xb1\xc8\xe2\xab\x42\xbb\xe6\x8e\x02\x4f\x0b\x03\xbe\x0e\x08\xe5\xcd\x62\x0d\x0d\xed\xbe\x4f\x7d\xe3\xcc\xea\x6b\x8b\x2b\x3f\x1b\xb8\x84\xf5\xa8\x1e\x95\x1d\x43\x8f\x05\x51\x5f\x8b\x34\x86\x44\x87\xa2\x7e\xbe\x57\xd2\x27\x80\x97\x8c\xc6\xed\x00\x5c\x99\x73\x98\xf6\x8d\x82\x11\x73\x98\xce\xa1\x21\x30\xf5\xeb\x6a\x39\xd6\xb1\xee\x80\x81\x8e\x0d\xb1\x7d\x7b\xc6\x0e\xbc\x70\xbf\x6e\x99\x1c\xdb\xbe\x31\x19\xef\xef\x49\x6d\xd5\x7c\x7f\xad\x3d\xcb\x93\xa6\x51\x63\xa4\xf6\x78\x66\xa6\x26\xbe\xff\x1f\x83\x3e\x38\x06\xc9\xba\x27\xed\xe0\x3a\x62\xfb\x9e\x03\x8d\x8f\xc4\x59\x56\x68\xa5\xd4\xe7\x97\xbe\x70\x83\x77\x2f\xa3\x26\x3a\x2d\x23\xa8\x17\xc2\x1e\xaa\x3e\xf5\x2b\x9e\xaf\xde\x89\xf2\xd6\xa7\xfe\x65\x7e\xa3\x03\x3b\x02\x0d\xc2\xcb\xf2\xc3\x2e\x5f\xa2\xa3\x15\xbe\xbd\xd7\x06\x38\x50\x44\x5e\x7f\xd8\xe5\x02\xd2\x65\x69\x9e\xf6\x35\x7f\x9b\xef\x7c\xea\xaf\xab\xfc\x92\x7f\x87\x66\x60\x98\x01\xe1\xfa\x85\x81\x6b\x77\xd9\xdb\x35\x87\xb3\x4e\xb3\xf1\x3d\x0e\x19\x65\x10\xfd\x59\x35\xb6\xda\xdd\x8c\xbe\x2c\x6e\x5a\x13\x6f\x9f\x8b\xa5\xc4\x1e\xba\x23\xd5\xc4\x1c\xf5\xad\x7b\xc2\x51\x0f\x7a\x12\x83\xe3\x0d\xd1\xd3\x0d\x58\xc1\x85\x82\xb3\xdb\x9a\x51\xf7\x79\x26\x6e\x79\x26\x94\xe6\xb4\x5b\xc4\x1d\x85\x31\x60\xd7\xa3\xe8\x37\x0f\xc0\xcd\xee\x15\x83\x1c\x39\x53\x1b\xb6\x3c\xf1\xa5\xf0\x63\x43\x60\x1e\x88\xd1\x1d\xbd\xfc\x92\x6e\x08\xb5\x3b\xdf\x41\x8e\xcf\xfc\xf6\x8c\xbe\x37\x79\x2f\xe5\xbe\xe6\x78\x0f\x19\xbf\x51\x97\x5c\xec\x49\x83\xd6\xbe\x67\xf4\x47\x93\xc3\x98\xf5\xea\x9b\xcb\xf0\xbf\xdc\xab\x8b\x72\x5f\x91\x07\x67\xf4\x67\xcc\x94\xfe\x12\x65\x0f\xf1\x42\xa2\x28\x8c\x26\xa4\x21\x0f\xce\x90\x60\x40\x8b\xe2\xbb\x4d\x29\x2f\xf2\x32\xbe\x43\x5d\xc6\xe0\xe0\xd2\x71\x96\xd0\x69\xab\xf3\x6b\xb1\xd1\xe1\xe8\x25\xbd\x75\x8c\x02\x90\x4b\xb9\x35\xe6\x20\xd1\x16\x0f\x88\x0a\x83\x8f\x55\xb4\x62\xa5\x4d\xa1\x92\x95\xad\x5f\x37\xa1\x55\xb4\xd9\x17\xb0\x25\xf5\x03\xd4\x07\xbf\x93\x09\xa1\x61\xcd\x6e\x75\x27\x6b\xe0\x19\xbb\x37\x7d\xb7\xf2\x9a\xdd\x9a\x3a\xe1\x6b\xf7\x36\xb6\x5c\x86\x63\x5d\x2a\x2d\x07\xd5\x92\x4e\xac\x2c\x52\x55\xb1\xd9\xf0\x0a\x83\xcc\x68\x01\x47\xa2\xe2\xf6\xeb\xaa\xa8\x77\x48\xb2\x69\xff\xbe\x75\xc4\x4b\x7e\xe9\xf8\x8c\x1d\xa8\x4e\x62\x9c\x50\xc1\x42\x71\x2c\xa9\xf7\xfd\x8c\xee\x5b\x6b\x86\xf9\x1e\x18\xfd\x9c\xfd\x6c\x2e\x28\x17\xe9\x3e\xd3\xfe\x37\x5b\x76\xc9\xf2\x74\x96\xd1\x0d\x0b\xf3\xf4\x91\x09\x65\x6a\xe2\x41\x44\x36\x20\x04\xa1\xdb\x20\x08\x97\xac\xed\x20\x9e\x6a\x79\x99\x6e\xb3\xa6\xb9\x3b\xd0\x2d\x0b\x65\xb2\x44\xc3\xfe\x4d\xae\x90\xfb\x88\x97\x11\x10\xe0\x26\x02\xdb\x96\xde\x5f\x78\xc7\x1c\xc9\x14\x32\x6a\x5b\x2a\xab\x62\x83\xb5\x5c\x6a\xab\xae\x82\x9a\x75\x8c\x2b\x0a\x0b\x15\xeb\x75\xa3\x76\x45\x63\xd9\xbf\x43\x4b\xea\xa9\xee\x68\xdf\xe3\x8b\x1c\x25\xa1\x40\x5f\xa0\xc3\x4d\xbc\x31\x01\x2f\x22\x9f\x1c\x68\x49\x68\xb8\x62\x75\xba\x85\x39\x32\x4f\x78\x13\x73\x3b\xc0\x67\x72\x2f\x14\x9b\xd2\x25\x9c\x8a\xfb\x5d\x10\x98\x87\x36\x2e\x1a\xdd\xd0\x35\xf0\x3d\xde\x0c\x85\x23\xf9\x6a\x85\x86\xf4\x6f\x8a\x5a\x71\xc1\xab\xe4\x38\x29\xdc\xd2\x35\xf5\x66\x24\xe6\x7d\x6b\x7d\x3e\x34\xd6\xf7\x27\x5b\xba\x26\x70\xd4\x42\x1d\xb0\x2c\xf0\x6b\x5b\xde\x11\xba\xb3\x30\x6f\x61\xbc\x9f\xc0\xf4\x0f\x21\x54\x26\x2b\xeb\xf5\x3d\x18\xda\x64\x42\xa7\x74\x47\xe2\x95\x16\x3d\xed\x34\x26\xc5\xc5\xd3\xfb\x16\x66\xc4\x9b\x92\xb9\x71\xea\x3c\xf6\x4f\x1f\xc6\x99\xa4\xa3\x3b\x19\x56\xde\xd8\x03\x86\xc0\x67\x0d\xb6\xf5\x25\x02\xdd\xa5\xdd\x8d\x26\x22\x8a\xb6\x25\x1a\x81\xf7\xb2\x8b\x8f\x52\x9a\xdb\xc4\xeb\x16\xe4\x55\x5a\x1a\x90\x5f\xb1\x0d\xab\x01\xe4\xb7\x2c\xac\xbf\x00\xf2\x2b\x1b\x17\xf2\x08\x70\x57\x1a\x70\x57\x2c\xac\x92\x75\x1f\xea\xd7\x2e\xd4\xaf\x00\xb6\x31\x37\x8a\x2b\x6b\x0c\x05\x3c\x08\xb6\xba\x58\x44\xc4\x9f\x6c\x0d\xfc\x2d\x16\x51\x98\xc4\xd1\xc3\xc5\x22\x6a\x88\x4f\x26\x7e\x08\x4f\x0f\x88\x4f\xe8\x9e\x49\xb6\x6b\xef\x73\xd5\xfb\x79\x97\xca\x8c\x7a\x45\x10\x6c\x3c\xc6\xf2\xc8\xee\x9a\xa6\xc1\x20\x04\xb0\xcc\x98\xae\xe1\xa0\x0e\x02\xaf\xd6\xb0\x9f\x47\x2d\xe8\x93\xa6\x01\x3a\x15\xf3\xd9\xdd\x14\x04\xa1\xff\xf0\xa1\xaf\x6f\x49\xf3\xba\x74\x82\xc0\x64\x40\x46\xd2\x19\xa1\x6e\x99\x5d\x1f\x86\x4e\x4f\xe9\xda\xb0\xbf\x41\x60\x9f\x5a\xe3\x25\x42\xe6\xfb\x20\xf0\x76\x9d\x25\xe0\x3a\x52\x3c\xaf\x56\xf2\x5a\x40\x76\xfb\x6c\x0b\x6c\xe9\xa5\x45\xbb\x66\x5b\xb5\xcc\xb5\xde\x19\x9c\xae\xba\x2c\x56\x79\x0e\x93\x4f\xba\x00\xd7\x2b\x74\xd2\x20\xed\x7a\xea\xf2\x50\x74\x02\xe0\x81\x00\x0b\x50\x8d\x47\xfc\x8b\xcb\x9d\xba\x7d\x87\x36\x13\xe1\x92\x04\x81\xbd\xdf\xc8\x36\x72\x6c\xc3\xe4\x6b\x38\xf5\x31\x3e\xb0\x41\xf0\xdd\x8e\xf8\xd2\xb9\xc6\xd2\xa2\x69\x5e\x01\x44\xee\x8d\x13\xac\x30\x61\x65\x90\xc7\x05\xc0\x12\x74\xe3\x7e\x6c\xd7\x0f\x73\xb4\x6f\x0e\x18\xc7\x29\x1a\x5e\xee\xd1\x5c\x18\xaa\xa7\x8f\x91\xe5\xe9\xb4\x39\xff\x3d\x78\xf7\x7e\x34\xa8\x71\x3b\x39\x3e\xa7\x60\x06\xb6\x9d\x1a\x36\x42\x05\x6c\x10\x84\x1b\xb6\x75\x1a\xa5\x5b\xb6\x69\x6d\xdc\x36\x66\x27\x11\x5a\x33\xa7\x68\xac\xd5\xec\x06\x95\x09\x26\x5c\x83\xde\x44\xe0\xfd\x87\x4b\x15\xe9\x65\xdd\xd2\x23\x63\x4a\x80\x6d\x42\x45\x54\xd4\x1f\x75\xe7\x98\x4c\x1e\xc5\x8f\xa9\x33\x0d\xcc\xc1\xe7\x6e\xfa\xa7\x8a\x33\xe7\x35\x19\xdd\x8b\x9b\x3f\xdc\x8b\xb1\xbe\x81\x21\xaa\x78\xbd\x2f\x15\x53\x54\x44\x3a\x3e\x60\xd3\x84\xf6\x91\x15\x68\x4e\x88\x04\x5b\x85\x57\x71\xf5\xe4\xf0\x15\x45\xf1\xd9\xfd\xa7\xa2\x6c\x1a\x6f\x69\xa7\xbf\x69\xda\x47\x43\x12\x14\xb4\xd2\x1b\x41\x2b\x0f\x3c\x0c\x3c\x11\x09\xa9\x1d\xa8\xb4\xe9\x6c\x51\xff\x5c\x88\x95\xbc\x0e\x0b\x62\x6f\xdb\xef\x9f\xd1\x70\x2e\xdb\x35\x2f\x27\x5b\xd8\xde\x7b\xb6\x77\x83\x22\xce\xf7\xf3\x41\x8a\x39\x12\xf6\x84\xae\xd9\x7e\xbe\x66\x8c\x85\xc5\xf0\x2a\x84\x57\x24\x08\x4c\xbe\xb5\x7b\x0f\x5f\xd3\xac\x4d\x55\xba\x63\x4d\xc3\xf5\x5d\xcb\x3b\x36\x9d\x87\x7b\xb6\xc2\x2b\xb8\x49\x10\x78\xb0\xba\xef\x2b\xb9\xcb\x37\x18\x4e\xf1\x83\x92\xbb\x1d\x5f\x85\x64\x4e\xf4\x76\x60\xbb\xf3\x59\x52\x3a\x34\x06\x0c\x25\x67\xa1\x6b\xa5\x6b\x77\x23\xfa\x22\xa4\xba\x5c\xe6\x9c\x31\x7b\xea\xeb\x9d\xec\xa3\xc0\x33\x37\x33\xbb\xa7\x15\xa1\x39\xab\x83\x60\x9f\xd6\x18\x83\xd7\x58\x03\x69\xb3\xed\x70\x4f\xda\xbc\xfd\x42\x26\xb8\x8d\x88\x76\x15\x36\xfd\x5c\x0f\x3c\xc4\xa3\xcc\x74\x7b\x4b\x71\xa5\x60\x78\xe6\xf3\x7b\x9d\x19\x06\x17\x04\xa1\xb7\x8c\x3e\x99\x09\x83\x35\xb7\xcf\xa6\x95\x95\x0e\x2e\x6a\xdb\x22\xc3\xae\x15\x24\x08\xea\x20\x28\xd2\x6d\x36\x06\x01\xac\x80\x01\xad\x83\x20\x84\x07\xed\x40\x40\x47\x28\xd2\x2d\xba\x6f\x42\x2d\x21\x31\x76\x47\x97\xe4\xee\x30\x92\x53\x75\xb5\xad\x5b\xf5\x94\xdd\x17\x07\x8c\xcc\x82\x74\x6c\xdc\x8f\x5d\xd4\xd6\xb4\x2e\x6e\xc2\x36\x38\x51\xeb\xc9\x0e\xb4\xd6\x7e\x2c\x68\x41\xe9\x2c\xb0\xd6\xe9\xf7\xd7\x98\x5b\xd5\x2b\xc6\x36\x3a\xda\x59\xed\xe7\x3b\x8c\x12\xb0\xd7\x01\x5c\x79\xb7\x25\xf4\xc6\xc5\x9a\xbd\x25\x2c\xe3\x73\xd3\x7f\x58\x0b\xe7\xd5\x51\x80\x9b\xe3\x48\xef\xaf\xba\x6b\xd3\x50\x5c\xb5\x9b\x15\x08\x4b\x01\x90\x2e\x59\x8d\x97\x6d\x02\xa4\xf3\x7b\x21\x1d\xa3\x4c\x46\xcb\x7d\x05\x1b\xc6\xf4\x4d\x1a\x4e\x00\x6a\x29\x98\x6c\x9b\x49\x73\xa7\xba\xef\x2f\x2f\xf9\xaa\xc8\x15\x1f\xaf\x37\xf4\x78\x0f\x23\x36\x4d\xff\x5d\xe3\x83\xc2\x21\x11\x30\x2e\xae\x69\xeb\xdd\xc5\xaf\xac\x80\x49\xcb\x55\xce\x0a\xfc\xa1\x15\x0b\xc3\xa3\xd9\x2e\x5a\x72\x24\xd3\xde\x40\xba\x7c\xd3\x14\xb6\xd7\xc4\x80\xb5\x19\xd4\xde\x68\x13\xb0\x31\x83\x5a\xdb\x5d\x85\xb1\x28\xfa\xdb\x8a\xea\x30\x52\xce\x20\x43\xd2\x99\x52\x2e\xa3\x9d\xac\x95\x5d\x31\xa0\xd0\xdd\xf7\xde\x0a\x52\xde\x41\xac\x9d\xd0\xfb\xdc\x1b\x3a\xf8\x14\x7d\x72\x87\x96\xc0\xc7\xe1\x2a\x21\x70\x05\x41\xe9\x1a\x4e\x78\xdc\xc8\x12\x9b\xc6\xd7\xee\xb6\x5e\x1b\x65\x52\xab\xd4\x4a\x0f\x21\x6f\x5e\xb2\xb2\x7f\xd1\xfb\xb6\xa8\xad\x81\x49\xaf\xca\xb2\x55\x33\xa3\x17\xc7\x58\xc5\xc6\x9e\x4a\x47\x55\x9a\xef\xad\xed\x16\x13\xda\x6a\xab\x68\xa9\x37\xb4\x6f\x91\x69\x95\x69\x75\x57\x88\x8f\x45\x8f\x6b\x4a\x96\x2a\xac\xa8\xb6\xf5\xc0\xb3\x3c\x2c\x51\xb4\x61\x14\x02\xe6\x9b\xb9\x87\xa7\x6c\xef\xe1\x21\x58\x6d\x10\x48\x7b\xe9\xca\x5c\xb6\x34\x5f\xad\xd3\xee\x60\xf9\xe3\xb2\x9b\x7b\x79\x68\x91\xc9\xfe\x89\x18\xcf\x8e\x8d\xb5\x25\x6c\x7c\xdd\x3d\x39\x10\x8a\xd1\x90\x6e\x8e\xfc\x6b\x5c\x32\xa3\xbd\x07\x65\xee\xc6\x4a\xd1\xd3\x46\x25\xe3\xc6\x7e\x18\x10\x94\x16\xcb\x14\x19\x5a\x05\xe7\xd6\x16\xc4\xf9\xc0\x72\xf6\xde\x1c\xa2\x05\xd1\xa6\x5f\x28\x3f\xd1\x8a\xab\xef\x06\x9f\x3e\xf3\x5b\xa3\xd1\x3a\x00\x81\x90\xa3\xfc\xaa\xd6\xdf\xf0\x31\x5a\x4a\xb1\xcc\x81\x46\xc7\x57\x63\x27\x86\xcf\x94\xb3\x1e\x71\x24\x09\x55\xed\x85\xff\x73\x05\x3c\x81\x60\x55\xaa\x32\xaa\x75\x1d\xa9\xc8\x3a\x9d\x64\x4b\xa1\xd8\x47\x26\xa3\xba\x5a\x1a\x97\x42\x38\xb4\xa9\x8e\x4f\xab\xbf\xba\x90\xd6\x96\x68\x3f\x3a\x04\x01\xe5\xd1\x25\x57\xf9\x5f\xf9\x2d\xf3\xbc\xf6\x99\xe6\x26\x3e\x66\x62\x1f\x30\x12\x4f\xcc\xb5\x52\xaf\x8e\xfd\xbc\x54\x7f\xe5\xb7\x27\x17\xda\xe3\xfb\x64\x99\x8b\x25\x2f\x01\x9c\x4f\x96\xaa\x2a\xe1\x53\x0f\xf5\x9d\xe0\xe6\x7f\xbf\xcd\x6b\x7e\x62\xda\x38\xc1\x6b\x64\xf8\xca\x64\x40\xb2\x13\x92\x75\x1f\x4f\x54\x71\xc9\x3f\xa8\xfc\x72\x77\x72\x55\xf0\xeb\x93\xeb\x6d\xf1\xff\x63\xee\xdf\xfb\xdb\xb6\x91\x85\x71\xfc\x7f\xbf\x0a\x09\x9b\x47\x25\x22\x58\x26\x29\xd9\x49\xa8\x20\x7a\xd2\x34\x6d\xb3\x9b\xdb\x36\xee\x6e\xbb\x34\x9b\x87\x12\x21\x99\x6b\x8a\x54\x49\x2a\x76\x2a\xea\xbc\xf6\xdf\x07\x83\x0b\x41\x8a\x72\xd2\x73\xf6\xfc\x3e\xdf\x3f\x6c\x91\x20\xae\x83\xc1\x60\x06\x98\xcb\xe2\x1a\x29\x5e\xb5\x87\x30\x51\x73\xe8\xed\xf6\xa4\x9e\x16\xd9\xbd\xc5\x75\x98\xf7\x16\x32\xe2\x73\xef\x86\x7d\xe6\x7f\xfc\xb9\x55\x05\x44\x01\xe9\x3c\x28\x54\x8e\x0f\xa1\x61\x80\x22\x3c\x51\xa9\x35\x33\x52\x95\xcf\xea\x47\xaf\x1c\xc9\x56\x30\x61\xfb\x3d\x31\xf0\x48\xf5\x4b\x50\x91\x9e\xf8\x29\x7a\x8b\x24\x66\x69\xf9\x8b\xfc\xfd\xb5\xb7\xcc\xb3\xb5\x9c\xd2\x9e\x30\x39\xfc\x45\xfe\xfe\xda\xdb\x84\x2b\xf6\x0b\xfc\xff\xb5\x57\x2c\x72\xc6\xd2\x5f\xe4\xef\xaf\xbd\x32\x93\xa5\xbe\x30\xbc\x26\x2d\xa4\xa9\xa4\x6a\xa4\xa0\xe9\xc8\x68\x7b\xda\x82\x01\x34\xad\x6e\x7b\xd3\x91\xec\x35\x5c\x15\x6b\x9c\x6a\x33\x91\x24\xe3\xfb\x4b\x2b\x00\x33\x27\x5a\xf3\x2c\xfa\x4c\x64\x9d\x75\x65\x43\x0b\xec\x60\x8a\x45\x9e\x25\xc9\x6b\xb6\x2c\x85\x60\xdb\x48\xb0\xf1\xa9\xc8\x25\xca\x18\xb9\xcc\x04\x88\x25\x05\x60\xd2\xb5\xff\xda\xa8\xfd\x32\xdb\x34\x2a\x87\xf7\x56\xdd\x75\x1e\xe3\xdd\x16\xd1\x94\x1b\x78\x0b\x2c\x9b\xd5\x4a\xa4\x85\xb1\x14\xe1\xda\x51\x45\x61\x2c\x78\xe7\x00\x91\xaa\x2a\x14\x11\xfd\x34\x66\x39\x83\x70\xe6\x78\xee\x20\x9c\x8d\xbd\xc9\x20\x9c\xb9\x9e\x2d\xf0\x48\xee\xc9\xde\x2e\xc9\xc2\xc8\xdb\x29\x31\x01\xa2\x24\x09\x47\xe3\xbb\x03\x79\x55\x1b\xeb\xf5\x29\x5d\x70\xe6\x54\xd0\x3d\x9e\x1b\x42\xbc\x99\xda\xc7\x4b\xe1\x6b\x9c\xf4\x1d\xc9\x2f\x32\xbc\xdb\x83\x0d\x4a\x7d\x32\x82\xe4\x91\x31\xda\x93\x79\xb2\xcd\x3b\x5b\x34\xea\xa4\x66\xab\xbc\xc0\xcc\xd2\x8f\xd0\x92\x69\xe9\x75\xd0\x4c\xb6\x2d\xd1\x9e\xc0\x7e\x78\x5f\x43\xe6\xfd\xab\x60\x28\xe5\x15\xec\x60\x50\xdf\x14\x28\x35\x48\xe1\x4e\x5a\xaa\x9b\xc6\x8b\x9b\x99\x55\x3f\xb7\x7a\xa4\xf8\xf6\xae\x3b\xa6\xc6\x9d\xaf\x9c\x61\x82\x42\x84\xf7\x7b\x62\x06\x0a\xf7\x76\x26\xc3\xd2\xe4\xa0\x25\xbf\xa2\xb9\x25\xce\x69\xc5\x69\x98\xbc\x94\xc7\x1a\xbc\x21\x71\x6d\xac\xb2\xe2\x3d\x47\x83\x78\xbd\x4d\x1a\x8e\xf2\xe4\x31\x9d\xe1\xf3\x52\x1e\xc4\x9a\xfb\x0c\x49\x89\x38\x97\x65\x24\x2e\x3e\xc8\x3a\x84\x01\xb0\xd9\xae\xb7\xdb\xef\xf1\x14\x0c\xab\x1a\x72\x82\x15\xab\x60\x85\x1d\x07\xdc\x82\x0f\x03\x47\x66\x47\x64\xa2\x43\x79\x4a\x5c\xa3\x18\x87\x3f\xf4\x07\xf3\x4d\x1f\xb2\xb6\xef\x4d\x59\x57\xae\xc1\xa0\x33\x19\x82\xd3\xf4\x9d\x56\x94\xd1\xfa\xe2\x17\x4e\x2f\xca\x29\x17\x1e\x4c\xd7\x2a\x4a\x47\x4d\x70\x52\xbf\x42\x3c\x89\x5c\x89\x5a\x8d\xcc\x56\x2e\x34\xb3\x14\x90\xbb\xc3\x3d\x72\x0c\xeb\xc5\x69\x51\xf2\xdd\x11\xae\x12\x44\xee\x99\x05\x6e\xe0\xe0\xde\x40\xa0\x61\x63\x2a\xa8\xb4\x30\x01\x99\x53\x72\x35\x90\x70\x08\x62\xaa\xf5\x0c\x74\x12\x17\x08\x4c\x1c\x12\xe7\x6d\x70\xe9\xf4\xbe\x31\x15\xd2\x70\xf8\x7d\x6b\x7e\x66\x5b\x2f\x91\x6c\x8b\xe8\x00\x29\xe5\x71\x3c\xa0\x96\xb0\x3e\x90\xba\xc7\x7a\x93\xa6\x62\x40\xea\x15\xce\xf7\xd2\xec\xd6\xc2\x04\xb4\x21\x40\xbf\xd9\x60\xe0\x68\xdf\xc6\xb8\x79\x54\x24\xcc\xb6\xd5\xab\xe1\xaa\x7b\x77\x38\x6a\x2f\x21\x5d\x62\x17\x24\xdf\x23\x3e\x79\x09\x69\x22\xe3\xa1\x5f\xc8\xc3\xc9\x98\x1e\x83\xfc\x96\xb0\x0e\xc1\x66\x76\x28\xe9\x78\xcd\xf9\xe0\x68\x49\x5a\xa2\xcf\x9f\xe9\xc8\xe1\xb8\x74\x57\x5a\xb5\x2a\x57\xbd\x0d\x19\x8b\xb0\x91\x60\xd6\xc4\x26\x42\xc1\xae\x9d\xe7\xea\x02\x9c\xd9\x2f\xd9\xfc\x3d\xf0\xa5\x5b\x81\x15\x07\x6d\x1a\xba\x0d\x3b\x60\x8a\x38\x04\x73\x0f\xc1\x73\xf6\x89\xe5\x48\xf0\x4a\x09\x0b\x3f\x31\x95\x0c\x7b\xc0\x81\x7a\x41\xeb\x4c\x20\xa0\xbb\xc6\xfe\x51\x12\x75\xa4\xe4\x95\x52\xbe\xe8\x0c\x61\x07\x58\x1c\xd3\xd6\xbe\x0d\x06\x14\x5a\x50\x96\x5c\x90\xd5\x8f\xab\x2a\xee\x43\x90\xac\xbe\xe1\xf7\xd9\xca\x49\x2c\x65\x6b\xc0\xd3\x4c\x4b\xcc\x24\xad\x65\xfb\x6e\x1f\x9f\x44\x96\x29\x31\x49\x0f\x14\x1f\xc0\x0d\x93\x74\xa5\x24\x15\x5a\xcd\x41\xcb\x0c\x70\xc7\xbd\xdd\x7c\xd5\xb6\x28\x9c\xa4\xcd\xfa\x8e\xd6\x31\x15\x35\x86\x91\x5c\xcf\x42\xf6\x1c\x7d\x14\x55\x73\x5e\x19\xe2\x7f\xaa\x04\x44\x0e\x60\xa8\xd9\x1b\xa1\xc9\x5f\x6b\x49\xeb\x4d\x58\xd2\x80\x3a\x5d\x46\x8a\xc0\xb3\x74\xc4\x3b\xe4\x95\xd3\xdc\x74\x12\x90\x13\xd4\x18\x3a\xd8\xf7\x37\xba\xaa\x73\x74\xf7\x8b\xa9\xe4\x8f\x73\x85\xda\x02\xb2\x47\xea\x87\x58\x83\x60\x49\x78\x7c\xa7\x6e\xd6\x58\x5f\x23\xb4\xbf\x08\xc4\x37\x55\x39\xe0\x2c\x47\x1e\x71\x1b\x37\xc7\x6a\x13\xb7\x90\x1a\x42\xab\x24\x61\xa2\x5f\x44\xdd\xa1\xfc\x8f\x66\x58\xde\x91\x88\x4c\x1a\x6c\x2d\xbf\x94\x23\xe1\xef\xeb\x1e\x94\x13\x19\x8e\xa3\xdc\xf7\x2a\xfc\xbf\x69\xaf\x81\x67\x96\xd5\xcd\x87\x55\x95\xa1\x9e\xab\x12\x0f\xa6\x5b\x74\x7a\x23\xa3\x5f\x89\x2e\x8c\x3e\x8a\xdf\xe6\xcc\x6b\x8f\x6e\xc0\x76\x37\xd9\x29\x55\x5e\xd8\x2a\x89\x1e\x7e\xfc\xf7\xb6\x28\x65\x4d\x11\x50\x40\xe3\x24\xf5\x60\x51\x74\xb5\x78\x58\x4d\x7b\xc6\x3b\x5b\x72\x8c\x76\x6a\x4c\x50\x0d\xc8\x73\x46\xe8\x8f\xc1\x91\x76\xf4\x4c\x70\x9a\x10\x45\x28\x2c\x8f\x00\x45\xe9\x21\xc9\x53\x2d\x3d\x45\xa6\x66\x6c\xbd\xfa\x4a\x82\x1a\x58\x70\xb8\xfa\x74\x8e\xee\xe6\xfa\x2d\x3c\xe6\x2c\x87\xc1\x6f\x8a\xd7\x4b\x7d\x21\x72\x3f\x14\x0e\xd6\x83\xb9\x90\x0f\xba\xaa\x17\xf2\x11\x82\x6f\x40\xc1\x60\xcc\x84\x6d\xd0\x7d\x9d\x94\x48\xda\x87\xd8\x10\x20\x3e\xd4\xe8\xac\x13\x67\xc6\x8e\x71\x3f\xd1\xd7\xf2\xc5\xfd\x2b\xbb\x73\xe1\x4a\xe0\x60\xd2\xef\x5e\x6a\xad\x05\x2d\x85\x35\xbd\xa2\xf5\xee\x2b\xc4\x45\x2d\xcc\x09\x59\xce\x14\xba\xba\x4c\x28\x6d\xd2\x8c\x24\x7d\x38\x79\x25\xd1\xdb\x41\xeb\x76\x00\x26\x6f\x7a\xb0\x71\x4b\xa5\xc5\x26\x31\x81\x70\x5f\xc3\xe1\x60\xf0\xc3\xa1\x7e\x05\x13\x97\xbb\xdd\xc0\xe3\x05\x4f\x4f\x53\x5e\xb0\x4b\x18\x50\x65\x0f\xfd\x53\x34\x22\x22\x1d\xe8\x2e\x4d\xe3\xa5\x75\xe8\x0c\x06\xef\x0e\x9c\x0b\xa4\x10\x98\x3a\x07\x45\x6f\x5a\x0a\x97\x8a\x21\x78\x40\xc4\x82\x8f\x4b\xad\x10\x6a\x67\x7e\x18\x90\x0c\x9b\x68\xb8\x8f\x97\x32\xc6\x51\x2e\x4e\x58\x28\x8d\x67\x56\x4c\x39\x97\xc2\x2b\x93\xa6\x60\xe0\x6c\xe4\xd0\x70\xcc\x8a\x41\x51\xaa\x84\x48\xe1\xfc\x49\xf4\x00\x93\x58\xdc\x31\xc5\x34\x99\xaa\xa0\x8e\xfd\xd8\xb4\x39\x36\xc3\x7f\x66\x83\x81\x55\xd0\x98\xc4\x5d\x6a\x50\x8b\xd2\xc2\xa3\x6c\xb9\xe4\x93\x79\xc4\x65\xf9\x9e\xc4\x42\x39\xa5\x50\x4a\x2b\x45\x5b\x31\xab\xd3\x58\xd1\x40\x25\x4d\xdb\x18\x89\xc1\xee\x80\xaf\xe7\x2c\xed\x12\x76\xcd\xa3\x0b\x43\x57\x85\xb3\xd5\xd9\x72\x79\xcc\xbc\x42\xda\x53\xb4\xd9\x73\xb0\x0e\x50\xeb\xb7\x36\xb5\x34\x12\xc9\xa2\xb4\xda\xb7\x4c\x02\x20\xc6\x25\xcb\xac\xbe\x2f\x19\xa2\x11\x1a\x1a\x9f\xbc\xfa\x13\xa9\x8f\xec\x49\x7d\x8f\x02\x90\x39\x86\x6b\x70\x05\x60\xa2\xd2\x72\x69\x65\x24\x25\xcc\xcf\x82\x26\x1e\x49\x6e\x35\x95\x02\x9f\x19\xf5\x42\xa1\x0b\x16\x01\xd4\x01\x45\xc0\x0a\x0a\xee\x66\x72\x9a\x7c\x69\x76\x4c\x6a\xc4\xf4\xf4\x1c\x9c\xcc\xb4\x65\xdf\xe3\x15\xaa\xc3\x05\x26\x0d\xd9\xcd\xfa\x7e\x94\xba\x62\x9d\xd6\xdc\xd2\x50\x56\xc7\x95\xe9\xac\x11\x3c\x7b\x69\xad\x4d\x71\x43\xf9\xa0\xa4\x67\xbf\x8d\xfc\xdf\xbc\xbf\x5c\xf9\x57\x23\x12\x3c\x7c\x70\x46\x5e\x49\x75\x48\xb1\xdb\x14\x15\x47\x0d\x6b\xe6\xfd\x9c\x96\x71\x52\x3d\x4f\x12\x8c\xcf\xc8\x1f\x25\x3d\xae\x8b\x46\x7e\x29\xe9\x0e\xe2\xb2\xe6\x2c\x05\xcf\xa9\x42\x53\xb6\xe0\xcf\x29\xbb\x03\x87\x6b\xbc\x56\xaf\x6f\xef\x5b\x5e\x35\x20\x9a\x7a\x87\xcb\x01\x11\x34\x53\x0a\x28\xfa\x7a\xc0\xb0\x01\xaf\x7d\x9a\x34\x7c\x08\x6c\xb6\xc5\xf5\x87\x32\x5c\xdc\x48\x05\x56\x79\x6e\x6f\x40\x5f\xe8\x5f\xd9\xd3\xf8\x59\x39\x2d\x85\x6d\x65\x43\x9e\xf1\xcb\x40\x4c\x86\x36\x5f\xde\x4b\xff\xb0\x66\x29\x75\x63\xc4\x08\x14\xa8\x15\xe6\xc5\xec\x18\xfd\x88\x9f\x81\x11\x8d\x08\xb7\x02\xc1\x55\xc0\xcb\xa8\x5c\x01\x22\xb7\x7a\x9b\x35\xde\x86\x60\xb6\xed\x31\x92\x1e\x06\x2b\x51\x60\x5a\xc0\x99\x01\xd8\xbd\xd7\x8e\x9f\xa6\x8d\x73\xcd\xa3\x10\xc8\xbb\x21\x20\xae\xc0\xfc\x32\x30\x21\xb0\x27\x69\x77\xa8\xc7\xd6\x68\x37\x72\x79\xc0\xfd\xb5\x60\xe1\x0f\x0e\xe0\xbf\xae\xac\xc3\xcb\xc6\x5d\x21\x5a\xfa\x7d\x99\xb3\xcb\xcd\xc4\x1f\xca\xf6\x09\xcf\x00\x03\x3c\x5d\x9d\x04\xce\x9e\x2c\x92\xac\x60\xc5\x3d\xc6\xa7\xe0\x4f\xc0\xb0\x91\x27\xf2\xfa\xb1\xae\xbb\x76\x71\x51\xe3\xe1\x4c\xcc\x85\xb8\xed\x1c\x49\xc5\x63\xec\x71\x9c\xc9\xa7\xf9\x70\x08\x57\xa4\x72\xf1\xe6\xc1\x34\x1d\x0c\x52\xce\x3f\x4d\x53\x6a\x1a\xd5\x82\xad\xaf\xbe\xb8\x7a\xea\x70\xda\x14\xce\x42\x79\x5d\x99\x42\x34\x9a\xb6\xa7\x0a\x65\xcf\x04\x4b\x93\x15\x1f\x24\xfe\x58\x29\x61\x18\xe3\x1d\x17\xc4\x55\xb8\x3c\x11\xa2\xa8\x1b\xfe\x46\x38\xde\x1a\x61\x33\xec\x65\x10\x67\x31\x62\x77\xdd\xe1\x72\x3a\xa2\x38\x99\x01\x7a\xa4\x67\x2a\x98\x0c\x38\x3d\xd5\xb1\x75\x46\xff\xfe\x7d\xcb\xf2\xcf\x33\xe6\xdb\x81\x27\xb1\xd8\x93\xf9\xc5\x21\xb5\x6f\x07\x06\x68\x66\x12\x9f\xf3\x82\x6f\xc6\x9c\xa0\x3c\x4f\x12\x4b\xcd\xab\x77\xea\x1c\xe8\x61\x6b\x8a\xd9\xd9\x47\xc8\xd0\x54\x69\xd2\x51\xe9\xc1\x7d\xa3\xcf\x02\x8f\x49\x2b\xfd\x35\xcb\x57\x82\xf6\x83\x8d\x1f\x36\x96\xfc\x01\xe1\x51\xb0\xcb\xb1\x70\x73\xf3\x6d\x68\x86\xef\x69\xe1\x3f\xdf\xf3\x95\x6b\x00\x79\x4d\xca\x3e\x09\x9d\x3d\xaf\xf5\xae\x6f\x21\x31\x36\x6d\x20\x76\x1d\x11\x36\xef\xb5\xbf\x70\x9c\xbe\x19\x25\x76\x56\x4a\xab\x21\xb9\x03\x1c\x39\xf1\x8f\x62\x30\x4a\xac\x6b\x44\x58\x17\x81\xcd\xe2\x1e\x0b\xb1\xc3\xb2\xe0\xc7\x32\x6d\x47\xca\x54\x41\x37\x78\x66\x33\xe2\x38\x78\x3a\x62\x9f\x8e\xe6\x6d\x07\x56\x97\x75\x3f\x4f\x92\xfb\x07\xd3\xd1\xc6\x17\xcb\x1c\x69\xeb\x2b\x41\x60\xb6\x08\x30\xe0\xd5\x7d\x2d\xf8\xda\xe1\xe3\x79\xf9\x42\xbc\x1c\x9b\x35\xf9\xd9\xb2\x58\x43\x2c\xdd\xed\xb1\xe1\x04\x96\x30\xbc\x27\x7a\x07\xbf\xbf\x22\x33\x4a\x1f\x2f\xa5\xf6\xfa\x2f\x5d\x13\x11\x14\x83\x3d\x0d\x02\x83\x13\x51\xaa\xbe\x29\xd5\x49\x42\xd9\x4b\xdf\x99\x7a\x7a\xe9\xf9\x01\x61\x46\xf4\x77\xbc\xef\x38\x17\x5d\x42\x84\x16\x53\x5d\xd5\xb8\x15\x5a\x87\x1b\xe5\x35\x48\xaf\x5d\x04\x90\x17\xea\x26\x42\xfb\xe2\xf4\x5c\xf2\x87\x58\xb8\xd6\x68\xd1\x8d\x5c\xb9\xdb\x94\x4b\x11\x8e\x3f\x89\xb1\x57\x3c\xe3\x04\xfb\x17\x11\xc5\x4e\xe4\x94\xc4\x80\xe7\x7b\xa5\x37\x10\xa8\x26\x1e\x71\x2e\x3c\x87\x30\xe6\xb2\x12\x83\x6f\x68\xbb\xa9\xec\xb8\xa7\xaf\xef\x72\x4a\x93\x1f\x1c\x0c\x2c\x46\x91\x97\x66\xa5\x05\x7e\x5f\x30\x12\x7e\x49\x4b\xad\x86\xe2\x40\x68\x0b\xd3\x4f\x6d\xe7\x06\x92\x13\x86\x67\x7e\x1e\x78\x7e\xe0\xb5\xf2\x58\xa0\x3c\xbc\xca\xd9\xa6\x11\xa9\xa8\x0e\x99\xd9\xb0\xb8\xdf\x73\x4a\x18\xc5\x87\x6e\x14\xd4\xae\x2b\xc3\x87\x32\x3f\x0d\xa6\x99\x70\x16\x9b\x99\xea\x1b\xb9\xb8\x26\x76\x1a\xe9\x60\xf4\x6d\x65\x78\x14\x17\x9c\xd6\x4e\x31\x88\x71\x46\x31\x1d\x44\x94\x64\x0d\x4d\x92\x58\x2f\x9b\x63\x4c\x00\xf5\x83\x8e\x78\xc8\xcd\x41\x0d\x06\xac\x2f\xbd\x5e\x42\x33\x75\x88\xfb\x54\xf1\xdb\x3f\x97\x14\x85\xf3\x79\x5e\x85\x79\x19\x2f\x12\x56\x85\x45\x1c\xb1\x2a\xdc\x46\x71\x56\xcd\xa3\xb8\x5a\x84\xe9\xa7\xb0\xa8\xa2\xb0\x0c\xe1\x5f\x12\x17\x65\x15\xb1\x32\x8c\x93\xa2\x5a\xc6\xab\x45\x08\x3e\x30\xf8\xe3\x36\x67\xd5\x32\xcb\x4a\x96\x57\x22\x48\x72\x75\x0d\xce\x37\xaa\x75\x98\xdf\x54\x6b\xc6\x3f\xa4\xe1\xa7\x2a\xdb\x96\x9b\x6d\x59\x29\x57\x8d\x55\xc1\x60\x80\x55\xb1\x5d\xaf\xc3\xfc\x73\x55\xc6\x6b\x56\x7d\x8a\x23\x96\x21\xf2\x8f\x92\x9e\xf5\xfe\xfd\x77\xbe\x0d\x5f\x45\x43\x8a\xac\x19\x6c\x05\xd5\x55\x34\xc4\xe8\x6c\x45\x7e\x15\xe1\x87\x94\x7e\xf1\x53\x6b\xe6\xa1\xe1\xcf\xe5\x10\x61\xff\xea\xaa\x38\x7b\x16\x20\x82\x62\x84\xc9\x5f\xb9\x0c\x71\x55\x0c\xcf\xc8\x0f\x25\x3d\x7b\x6a\xcd\xfa\xc2\x6b\x5f\x5e\x2d\xb2\xa4\x02\x67\xcb\xd5\x75\x5e\xc5\xeb\x55\x25\x6c\xb8\x92\x38\x85\x3e\x87\xd5\x26\xcc\xc3\x35\xb6\x2c\xff\xea\xd6\x0b\x86\xd8\xff\xed\x59\xf0\x10\x5f\x9d\x3d\x3b\x5b\xc5\xe4\xef\x50\x99\xfc\x72\x46\xfe\xc6\x5f\x21\x38\xcc\x59\x4c\xfe\xc5\x5f\xaa\xc1\x5f\x66\x57\xb7\xc3\xe9\x19\x61\x29\xb4\xeb\x15\x8b\x3c\xde\x94\x95\x30\x9c\xe4\xad\xe0\xb3\x98\x94\xa9\xe1\x18\x70\x9e\xdd\x55\x70\xa6\x05\x86\x63\x69\x4a\xcf\xe4\xc1\xe9\x55\xf1\xd0\x9a\x79\xfe\x6f\x34\xa8\xe8\x55\xf1\x50\x59\xc5\x8d\x78\x0d\x39\xaf\xe1\x41\x75\x75\x66\xcd\xbc\x7f\x87\x9f\xc2\x8a\x2d\xd6\x21\x16\x8d\x9d\xc5\x24\xe3\x9f\xcb\x7c\xcb\xae\xce\xac\xd1\x43\x7c\x46\xc2\x14\x00\xf2\xf0\x69\xdf\x9a\x79\x57\xfe\x8b\xef\x9e\x5f\x3e\xbf\xf2\xab\xd3\x53\x5c\xf1\x84\xe0\x2a\xe0\xcf\xcf\xae\x8a\x87\x0f\xce\x56\xa4\x48\xa9\xf2\x62\xe3\x3b\x04\x3d\x15\x12\x40\x6f\xbd\x4d\xca\x78\x93\x30\xfa\x8d\x7a\xfa\xe6\x19\x22\xe8\xe9\x99\xf8\xfe\x0c\x05\x24\x61\x2b\x96\x46\xa2\xd4\x32\x66\x49\x54\xb0\x52\xe4\xa9\xdf\x02\xc2\x27\x43\xe4\x59\x87\x1b\xf1\x19\x1e\x02\x02\xd0\x17\x9f\x84\xdc\x2d\xbe\xaa\x67\x2e\x0a\xb1\x50\xd6\xaf\x22\x0d\x20\x1d\x74\x20\x20\x65\xee\xf9\x2e\xa9\x23\x15\xf0\xc9\x91\x59\xe0\xd1\xc8\xba\xc8\x92\x8e\xbc\x3a\xe3\x22\x4b\x00\x9d\x45\x69\xfd\x66\xb6\x15\x79\xfe\xf8\xa0\x7c\x99\xcb\xf6\xf2\x67\x1d\x8d\x6a\x2d\x06\xd3\xa8\xd7\x8c\x26\x34\xf3\x6d\x82\x10\x41\x28\x80\x41\xfe\xf2\x54\xb8\x48\x47\xd2\x57\x7a\xb0\x27\xdb\x94\x46\xd6\x0f\x98\x24\x29\xdd\xa6\x5f\xe3\xd2\x7e\x5a\xa4\x23\xe5\x19\x87\x8a\xe7\x38\x4b\x49\x91\xca\xb8\x47\xfc\x81\x2f\x64\xfe\xa0\xc6\x09\xcf\x62\xad\xc3\x77\x0e\x75\x28\x71\x0d\xaf\x51\xeb\xc8\xee\x20\xc4\x78\xb7\xd3\xc7\x4e\x47\x8e\x94\x96\x33\x19\xdf\xd5\xaa\x79\x6e\x19\x82\x5d\x05\xa4\xb0\xac\x03\x46\xfc\x40\x41\x5e\x8e\xfe\x92\xdd\x01\x53\x01\x6c\xa9\x50\x93\x60\x07\x2e\x26\x39\x23\x0c\x15\x1f\x51\x95\x19\x45\xd9\xfa\x4d\x98\xc6\x9b\xce\x08\xa0\xa0\xc7\x73\xe0\xcb\xab\xaa\x9c\x8e\xb4\x27\xed\x24\xc5\x0c\x5f\x2b\x5d\xd9\x69\xd9\x98\x45\x26\x7c\xba\x6e\x72\xf6\xff\x9d\xfe\xc5\x69\xc1\xf2\xf2\x5b\xb8\xe0\xe0\x3b\x53\x83\xe7\xe2\xbd\x15\x77\x1f\xff\xcd\xce\x1e\x5c\xd3\xb5\x12\x0e\x9a\x57\x67\x53\xe1\xb2\x3c\xaa\xec\xf4\xbf\xd1\x68\x63\xf3\xdd\xe3\x4e\x13\xbd\xa6\xe4\x2e\x79\x19\xa9\xac\x59\xa3\x37\x89\xa9\x3d\x15\xaa\x7b\xe0\x4a\x2b\x0e\x30\x44\xca\x93\x3c\x45\x6a\x4c\xd0\x42\x04\xd1\x49\xc1\x1c\xe1\x0e\xdc\x72\xa7\x8d\x8e\x5b\x42\x15\x44\x1f\x98\xa4\xcd\xa5\x41\x52\x3c\x18\x7c\xe6\x25\x09\x12\x1b\x04\x6a\x55\xd1\x0a\x87\xd0\x3c\xc1\x3c\x8c\x2c\xab\xc6\xc7\x48\x59\x0f\x42\x28\x47\xf8\x65\x80\xe1\x0c\x07\x32\xb5\xd9\x93\xd6\x48\x18\x1c\xaa\x4c\x4d\x06\x7e\x8a\x9b\x9d\x69\x30\xf7\x53\xed\x81\xeb\xc0\x79\x90\x8a\x4e\x27\x34\xb7\x44\x26\xb9\xd2\xa9\xdd\x72\x2e\x0a\x91\x8b\x8e\x79\x71\x56\x92\x6f\xdf\x01\xbf\xcd\xe2\xb5\x9c\x31\x4f\xba\xf6\xe4\x4c\x7b\xe7\x05\x11\xd4\xaa\xce\x62\x4b\x71\xf1\x55\xae\x8f\x89\x6e\xc7\x88\x62\xe3\x3c\x15\x6c\x96\x0e\x0e\x7f\x6a\xcf\xff\x06\x67\x5b\xe3\xcb\x2c\xad\xc3\x6c\x68\xff\x75\xff\x10\xfe\xeb\x40\x8b\xbe\xdf\x71\x64\x59\x55\x2c\xad\x8f\x92\xfa\xc7\xf6\xa6\xc1\xe0\xd7\xb2\x3b\xdb\x41\xb8\xbd\xc1\xe0\xaf\x46\xd6\x22\xf5\xad\xbf\x4b\xa3\x51\x26\x4c\x4b\xf9\x0e\x87\x7d\x27\x68\x79\x26\xc0\x78\x27\x14\xec\x44\xc7\x7f\x28\x09\x7a\xfa\xc0\x79\xf6\xf4\xec\x81\xfb\x0c\x61\x30\xa2\x01\xcd\x7e\x75\x86\xa5\xcf\xaf\x00\x58\x07\x2e\x53\xdb\x6b\x07\x30\x8e\x18\x20\xa2\x0c\x4f\x53\x6a\x4b\x15\xcb\x0c\xef\xf6\xfb\x54\x92\x82\xd6\x06\xc4\xee\xdd\x4c\x64\x87\x9b\x81\x8c\x95\xda\x90\x29\xec\x1d\xe2\x83\xdf\xe0\xe9\x89\x29\x17\x07\x7b\x0c\x6b\xec\x6b\xc9\x5a\xed\x43\xc5\x2f\x87\xc3\x80\xc4\xf2\x61\x1a\x73\x91\x65\x30\xc8\x8d\xba\x45\xf8\x6c\x4b\x9e\xf8\x9a\x84\x8d\xb4\xfc\xdc\x5a\xa0\x48\x68\x52\x43\x2e\x2a\xe1\x3d\xe9\xdb\x98\x98\xae\xdd\x55\xf6\x3d\x11\x4a\x79\x47\xcf\x98\xb4\x91\x28\x5c\x1e\xaa\x11\x1d\x88\x92\x8c\xe6\xca\x4c\x8b\x4b\xdb\x42\x84\x69\x04\xe7\xa4\x36\x59\x34\x4e\x46\x97\xe2\x8c\x7e\x43\x17\xa7\x0e\x89\x28\xf3\xed\x80\x5c\xb7\x7c\x74\x46\x60\x3d\x76\x5d\x55\x7d\xcb\x79\x46\x17\x1d\x67\xa7\xc2\xb3\x4a\xc3\xa9\x04\x84\x30\xc3\x83\x41\x2a\x17\x4a\x74\x9f\xaf\x60\x2d\xe6\x2f\x47\xec\x77\x2b\xc7\x53\xd0\x55\xf7\xed\x80\x46\x86\x95\x0c\x5c\x37\x95\xeb\x04\xa4\xed\xb8\x9e\x58\xe9\x88\x08\x7a\xb9\x80\xf0\xe5\x8b\x72\x34\xdf\xc6\x49\xa4\x03\xdd\x89\xad\xe4\x80\x0b\x22\x7d\x87\xf4\x25\xfe\x62\x92\xd3\xad\x79\xa6\x22\x22\x81\xd4\x27\x16\xb5\x99\xf0\x96\xe6\x98\xcf\x28\x2c\xad\x50\xa1\xeb\x9d\xb5\xad\x37\x0c\xb2\xe2\x32\x6b\xa8\x68\xd0\xe2\x59\x32\x4d\xc0\xec\x65\x4b\x92\x3e\xa5\x1b\x1d\xf5\x03\xc8\x60\x4c\xfa\x36\x60\x87\xf0\x19\x20\x0e\x4c\x42\x72\x67\xc5\xc6\x16\x04\xe1\x28\x15\x30\xfc\x24\x20\x31\x49\xa4\x13\x50\x61\xf8\x15\xfa\xaa\xbd\x53\xa7\x3d\x50\xd9\xc7\x90\xac\x31\xc7\x82\x69\xa6\x3b\x14\xf2\xaa\xf2\x54\x59\x5c\x49\xcd\x16\xd4\xd0\xab\x88\x09\x12\x36\xf7\x2f\x3f\x85\x09\xc2\xcd\xed\xb3\x20\x31\x1c\x87\x8c\x8a\x7c\xc1\x77\xef\x8f\xec\x53\x98\xfc\x9c\x27\x22\x05\x0e\x68\xeb\xc2\x16\x6f\x02\xdc\xda\x88\xdf\x17\xe2\xd4\x88\xbf\x6a\x1a\x23\x8c\xe1\x15\x49\x0b\xc1\xc7\x1e\xc6\xd3\xad\x0c\x38\xd4\xd8\x9d\xcc\x63\x54\x41\x78\x2e\x33\x0f\x89\x27\xa4\x78\x42\x9e\x24\x1f\x11\x31\x17\xa6\x27\x75\x50\x54\xea\x73\xe0\x8f\x10\xb0\x49\x48\xd1\xa8\xe7\x49\xe2\x21\x83\x5e\x75\x29\xf4\xb5\x0e\xae\xd8\xe1\x75\x04\x1c\x8f\xc0\x21\xba\x11\xf7\xf8\xd4\x99\x86\xcf\xa8\xa2\xcc\x39\xa5\x34\x34\xc8\x83\xc0\x0d\x8e\x16\x8b\x12\xac\xa1\xb0\x5f\x06\x56\x8a\x49\x5c\x6a\x0b\xdc\x54\x9c\x66\x1f\x3b\xcb\x3e\x38\x84\x3a\xdc\xcc\x0f\x4c\xcb\x08\xac\x1f\x3d\xbd\x2d\x27\x5c\x44\xb8\x45\x68\x6d\x79\x22\x56\xa9\x0c\x9c\x62\xb8\xbb\xec\xab\x0d\x10\x3d\x45\xc3\xda\x9d\xdd\x10\x3d\x43\x78\x96\x51\xd6\x0c\x8b\xe8\x59\x49\x63\xab\x31\x82\x98\x26\x69\x83\xcf\xc9\x68\x92\x9a\xac\x0e\x26\x7d\xb3\x4b\x66\xe0\x48\x40\xd6\xd6\x07\x19\xdc\x52\xf0\x8e\x8d\xa0\x47\xcd\x84\xf6\x80\x84\x99\x5c\x4e\xef\xac\x0c\x93\x82\xde\x89\xd9\xd4\x3c\x5d\x4c\x0b\x3f\x0c\xf0\x74\x38\x0c\x71\xee\x87\xc1\x60\x30\xb7\x62\x92\x43\x5a\xbc\xb4\x4a\xb8\x1b\x92\x8b\xb5\xa8\x2a\x28\x0e\x1a\x17\x50\x5f\x47\x45\xe1\x70\x88\x3f\xe9\x2a\x40\x05\xe2\x13\xd8\x30\x69\xf7\x5e\xbc\x2b\x06\xd5\x51\x37\xad\xcf\x6c\xce\xc2\xe6\xa4\xbf\x1d\x0c\xee\x80\xe1\xd3\x8c\x6c\x4e\x0b\x15\xa5\x2b\xdb\x93\x06\x99\xec\x50\x53\xd0\xe7\x7b\xad\x00\xcf\x4c\x6d\x20\x1b\x1a\x59\x25\x26\xd7\x1c\xc1\x57\xd4\x9e\x2e\x9f\xad\xa6\x2b\x71\x29\x99\x51\xe6\xaf\x02\x92\x55\x95\x4d\x29\xcd\x70\x43\x39\x00\x7c\xd9\x7f\xde\x30\x2b\xc3\x58\x93\xbc\x6b\x92\x19\xb7\x37\x59\xe0\x65\x58\x2b\x7e\xfc\x4b\xfb\x4c\x51\x86\xae\x45\x55\x6d\x1a\x92\x60\x79\x24\x44\xdd\x96\x6a\x6e\x2a\xbb\x8f\x9b\x22\x0b\x5a\xa4\xfe\x36\xe0\x0c\x98\xb6\x7b\x26\x85\x81\x92\x0b\xdf\x09\x86\xd9\x31\x76\x6b\xb8\xf0\x5d\xce\x44\x2c\x20\xe0\xd4\xe9\xe9\x14\x17\xb4\xa8\x83\xa1\x4e\x5b\x9e\x3e\xef\x61\x02\x33\x3c\x18\x5c\x4b\x9f\xbb\x6d\x31\xfd\xaf\x7a\x28\xbe\x1d\x70\xcc\x37\xaa\x84\x03\x0a\x2c\x2c\x2e\x91\x70\x73\xd5\xa7\x74\x5b\x55\x7f\xd3\x15\xcf\xf4\x41\x50\x9f\xc2\x78\x1a\x1f\x6d\xaf\xf0\x0a\x73\x17\x8c\xa9\x30\x28\x6a\x6f\x83\x62\x7c\xa6\x58\x91\x50\x33\x9b\x1f\x07\x44\x05\x82\x1e\x0c\xfa\x49\xd7\x46\x9a\x35\xd6\x74\x22\xa3\xb8\xd6\xc8\x50\x98\xf7\x05\xa4\x30\x37\x0c\x8a\xd0\xb4\x68\x08\x42\x45\xa3\xb2\xa2\x21\x08\x15\x74\x53\x4f\x83\xf0\xc5\x71\x0c\xba\x99\x54\x16\x28\x06\x83\x4d\xb3\xc6\x86\x6e\x5a\x23\x48\x2e\x90\x09\x38\x4a\xbf\xb3\xae\xb5\xea\x30\xb9\xc5\xb0\x22\x32\x7a\xed\xaf\x84\xf7\xfa\xa5\x05\xe1\xa5\x4e\x1d\x81\xff\xea\x26\x35\xe3\xcc\xc4\x60\x20\x58\x09\x4d\x78\xb3\x16\xe1\x95\x24\xa7\x89\xf2\x19\x36\x56\x7f\xc8\x17\x7d\x81\x49\x2a\xe8\x54\x0c\x8d\x17\xca\x49\xae\xdc\xe2\x33\x73\x8b\x4f\xd5\x01\xbb\x0e\x06\x2f\x28\xc3\x46\xc4\xc8\x49\x3b\xe2\xc9\x35\x9c\x3c\xeb\xa8\x12\xb5\x59\x84\xdc\x3e\xc2\xc5\x35\x23\x89\x19\x94\xa5\x11\x72\xb9\xc3\x36\xbe\x16\xef\x99\x26\x7e\x1c\x62\x25\x80\xd7\x70\x31\x00\xce\x13\xad\x98\xa6\x7e\xc1\x37\xd5\x78\x30\xd8\x42\x7c\xb4\x1d\xa7\x39\xca\x51\x0f\x10\xea\x5e\x9c\xf6\x74\xca\xc2\xcf\x83\x59\x5b\x19\x08\x9c\x35\xb7\xdc\xb8\xf0\x91\x29\xd5\x77\x3c\xdd\x42\x2c\x7e\xa5\x32\xcd\xdf\x48\x32\x93\x6f\xbc\x07\x9e\xd2\x4b\x6a\x3b\x01\xee\x53\xfa\xeb\xec\x20\xd5\x2a\xb0\x97\x2a\xd7\x07\xa4\x2c\x95\x49\x32\xde\xef\x89\xe2\x9c\x8e\x09\xc1\xff\x0e\xef\xac\xdd\x36\x4f\xb8\xa8\x0d\x76\x66\x3f\xbc\xbc\x44\xe0\x9c\x4a\x98\x9d\x49\x44\x20\x61\xf1\x39\x5d\x78\x7d\x87\x48\x07\x67\x7d\x87\xa0\xf2\x3a\xcf\x6e\x0b\x04\x31\x90\x0f\x55\x08\x6f\xf3\x70\xd3\xbe\x38\xfd\xef\x87\xfb\x90\xb5\x35\x43\x7d\x28\x97\xf5\x92\x11\xaf\x7d\xe6\x1e\x63\xce\x31\x97\x05\x54\x68\x69\xce\x1e\x4c\x0f\x55\x0a\x06\x83\xd6\x59\x9b\xaa\x9d\x94\xed\xa3\x07\x7d\x0a\x23\x4c\xdc\xcd\x93\x12\xe5\x5f\xba\x23\xd8\xfd\x14\xb3\xc6\x07\x6d\xcb\xbc\xd7\x82\xae\x38\x5d\x6b\x1c\x99\x70\x00\xbc\xe2\x9b\xc6\xfd\x01\x82\x8e\xc7\xdc\x68\x43\x13\x2a\x3b\x80\x67\x5b\x72\x2e\xeb\x20\x1a\x29\x2d\xd5\x8d\x6c\x61\xe1\xa9\xd2\x2c\x9a\xa5\xf5\xe4\x60\xaf\x34\x64\x75\x2c\x7a\xdd\xed\xd5\xb8\xd1\xcb\xe9\x71\x24\x48\x3b\x90\xa0\x6c\x06\x6b\xc0\x9e\x68\x6c\x9b\x36\x9b\x6b\x29\x15\xc1\x0c\x5b\xb8\x4b\xf7\xae\x65\x34\x20\xb6\x18\x4e\x23\xb4\x10\xae\x59\x75\x69\x1d\x69\x5c\x3a\xe3\x11\x1f\xaf\x0e\x6a\xb5\x48\xc9\x32\x25\x9b\x94\x44\x29\x3d\x0b\x93\xcd\x75\x78\x65\xf9\xbf\xe1\xe0\xe1\x15\x3e\x8b\xc9\x75\x4a\xcf\xb2\x4d\xb8\x88\xcb\xcf\x57\xc5\x43\x7a\x55\x3c\x14\x1f\xf1\x19\x59\xc1\x8d\x54\x99\x6d\xaa\x3c\x5e\x5d\x97\xd5\x3c\x2b\xcb\x6c\x5d\x25\x6c\x59\xe2\x07\x67\x64\x0d\x9f\x53\xce\x13\xc3\x66\x6b\xcd\xfa\xa7\x0b\x9f\x85\x01\x1e\x0d\xf1\x19\xf9\xcc\x3f\x8b\xc8\xb4\x67\xe4\x53\xda\xb8\xa3\xfb\xcd\x42\xc3\x65\x39\x44\xd8\x1a\x3d\xc4\x0f\xe4\xfd\xdc\xfc\x58\x9e\x59\x7f\x73\x87\xfd\xf0\xf4\x8f\xff\x13\x0c\x55\xe6\xbb\x76\x66\x7f\x78\x1a\x60\xaa\xca\xc8\x5c\xb7\x29\xdd\x7d\xfb\xee\xbb\x5f\x3d\x19\x6f\x76\x4f\x2e\x53\xba\xd3\x31\x90\x91\x0a\x82\x8c\xc8\xa7\xb8\x88\xe7\x71\x12\x97\x9f\x3d\x74\x0d\x61\x9f\x11\x51\x61\x6f\x75\xe1\x17\x29\xdd\x25\xac\x2c\x59\x2e\x5d\x75\x7a\x36\x59\x66\x69\xf9\x4f\x11\x6e\x7b\x62\xdb\x7b\xf2\x36\xa5\x3e\xba\xcc\x36\x88\x20\x08\xc8\x8b\x08\xfa\x16\xe0\x86\x08\x7a\xcd\x96\x25\x0a\xc8\x0d\xcf\xf2\x4f\x08\xf1\x8c\x08\x7a\x87\x08\x7a\x93\xfd\x81\x08\x5a\x17\x28\x68\xa9\x1e\x2e\x8a\xb6\x87\x8c\x2f\x9d\x17\xb6\x3d\xff\xef\xf6\xa4\xa0\xb6\x8e\x6b\xa4\x23\x3a\x4a\x97\x15\x4b\x08\x4f\x12\xd7\x6a\x79\xf1\xb3\x02\x82\x7a\x86\x3e\xa7\xe0\x01\xec\x73\x45\xc1\xeb\xe5\x3b\x51\xdf\x31\x18\xf3\x50\x11\x04\xe1\x9c\x7c\x21\x5d\xc1\xaa\xf0\x00\x75\x49\xbc\x27\x3c\xad\x33\xa4\x57\x71\x9d\xdd\x76\xac\x90\xb7\x62\x5c\x70\x16\x74\x1d\x47\x5d\xb7\x08\x6f\x25\x55\x92\x81\x85\x3a\xc8\xd0\x61\x08\x21\x36\x93\x0a\x4c\xbc\x59\x4b\xde\x2a\xf1\xfa\x2d\xdc\x1d\x89\xf0\x85\x68\x64\xa6\x57\x9e\x2c\xa8\xdf\x45\xe1\x83\x78\x9d\x8b\xa2\xd0\x91\x3f\x60\x71\xb5\xfd\xa9\x4b\xaf\xf8\x5a\xfb\x6b\xc3\xd3\x90\xcc\xac\x9d\xa9\x4b\xb7\xc0\xc8\x41\x5e\x0a\x5e\xec\x17\x45\xf1\x16\x22\xbd\x78\xbb\x45\x96\x6c\xd7\x29\x38\x45\xf1\xfa\x36\x59\xc6\x49\xf2\x4e\xb6\xd5\x6f\xe0\x65\xdf\x26\x49\x9c\xb2\x1f\xf5\x5b\x56\x67\x13\xf1\xc3\xe1\x61\x73\x1d\xa6\xa0\x0e\x7b\x1b\x47\xd9\x2d\x3c\xfd\x21\x5c\xc1\xf3\xa7\x2c\x5b\x83\x19\xfb\xa2\x00\xbb\xc6\xc2\xdb\xa1\x65\x92\x85\x25\x32\x6f\x2d\x17\x45\x01\x21\xab\x67\x48\x3d\x21\x0f\x01\x52\x88\x97\x3d\x81\x97\x03\x55\x7e\xe1\x38\x44\xf8\xd0\x67\x2d\xcf\x69\x0d\x5d\x06\x81\x61\x0d\x5f\x87\xcd\xb8\xb2\x29\x06\x07\x31\x90\x0d\xfc\x41\x49\x04\x86\x3e\x83\xd8\x63\x35\x13\xe8\xa5\x95\x90\x2d\xf8\x4e\x13\x1f\xea\x08\x15\xe6\xfb\x36\x10\xc1\x28\x14\x77\x50\xd4\xde\xf5\x0b\x08\x21\x51\x48\xb7\xfa\x7d\x87\xc4\x3a\x86\x44\xe2\xa7\xe0\x1c\x2e\xd4\xaa\x39\x86\x3e\x28\x0d\xa1\xe0\x5d\x2a\x44\x1d\xc1\x1e\xe7\xd4\xca\xb8\xfc\xe5\xe0\x87\x99\xef\x06\x43\x23\x0c\xb8\xb1\x9e\xb8\x20\xad\x22\xfe\x60\xd2\x57\x66\x09\x55\x55\x87\x01\xe2\xb5\xc7\xc5\xdb\xf0\xad\x05\xee\x04\xd5\x87\x3e\xa5\xa1\x1a\x99\x40\x24\x01\x94\x7c\x48\xd1\xe6\x0e\x35\x8d\xcd\x12\x16\xe6\x70\x96\xf0\x41\xb8\x78\x46\xd2\x55\xa1\x0d\xb7\x51\xda\xd1\xdc\x3c\x5c\xdc\xac\xf2\x6c\x9b\x46\x7c\x8f\xb2\xf8\xa0\x29\x8a\xd3\x6b\x96\xc7\x9c\x63\x2f\xea\xa0\x05\x05\x8c\xb0\xd0\x41\x0b\x62\x0c\x91\x8f\x31\x06\x4f\x07\x50\x30\x97\xc7\xee\x0b\xbc\x93\xf8\xde\x81\x2d\xf7\x4c\x7f\xad\xe3\xfc\xe5\x89\x97\x78\xf2\x75\xd3\xdf\x9a\xf1\xb0\x9e\x71\x9b\x8b\x36\x24\x94\x2e\x7d\x42\xb1\x94\x53\x50\xba\x42\x29\x38\xe6\x96\xf3\x91\x72\x5e\xfd\x45\x0a\x99\x5e\xa4\xe0\x98\x0e\x49\x3f\xee\xf9\xcc\xca\xa8\x31\xd9\xa1\x54\xfb\xb7\xe5\xf1\xcc\xdb\xed\x9a\xe5\x31\x17\x88\x67\x59\x55\xd9\x5e\x88\xbd\x70\xdf\x19\x60\x7f\x66\x2d\x53\x6a\x32\x59\xa6\x27\xef\x66\x10\xf9\x52\x04\x91\xdf\x93\x4d\xda\xed\xe4\x5d\xfa\x61\xca\xab\x4a\xec\x13\x5b\x5a\xcc\x0a\x61\x8a\x2e\x6c\xf5\xc0\x50\xda\x4a\x71\x55\x71\x98\x79\xa5\xb1\xf8\xea\x85\x62\x21\x29\xa0\xdf\x7f\xe4\x06\x5e\xf1\xcc\x4d\x04\x73\x9e\x40\x08\x74\x5b\x3c\x18\x7c\x4e\x55\x94\x03\x90\x8c\x12\x19\xc3\x3f\xa3\xc9\x68\x1d\xa7\x22\xe2\x7b\xc8\x5f\xc2\x3b\xf1\x52\xa7\x1b\xa9\xaa\x1c\xdd\xf2\xd1\xc8\x3a\x54\x5a\x6c\x96\xc9\x88\x51\x2a\xc4\x98\x6c\xf7\xd8\xfb\xa1\xed\x29\x45\x39\x0e\x03\x88\x0e\x06\x0d\xe0\x9b\x0e\xcf\xcd\x6c\x7f\x12\xe0\x47\x20\x2b\x16\xfd\x76\x30\x48\x06\x03\xbe\x74\xe0\xd0\x3e\x01\xac\x32\xc1\xd6\x5f\xb5\xe1\xc6\x19\x38\x30\xa0\xce\xb7\xa9\x70\x04\xc0\x17\x41\x28\x0e\x41\xe0\x23\x50\x26\x78\xa4\xcd\x9e\x43\x1a\x26\xa2\x0e\x8a\xf8\x26\xf3\x21\xfe\x83\xa9\x5d\x8a\xad\x91\xc7\xe1\x9a\x8c\x36\xf1\x1d\x03\x67\x30\x43\x4e\x56\x54\x81\xd8\xac\x99\x83\x14\xd0\x7f\x3b\x13\x4e\xee\xbd\x6d\xc3\x69\xba\x74\xa9\x4f\xa4\x8f\xfd\x0e\x0f\xf6\x7a\x79\x1e\x3a\xb0\x6f\x18\x20\xa5\x33\x5b\xd8\x9b\x82\x83\x1e\x98\xd0\xc1\x60\x2d\xc1\xa2\xc9\x2a\x92\xfc\x1e\xc2\x18\x78\x99\xdb\x70\x63\x31\x72\x99\x92\x43\xd6\xe3\x03\x1c\x1e\xe6\x78\x8f\x3d\xf5\xa8\x6d\x06\x8f\xc7\x87\xc8\x07\x83\xa5\x29\x5c\xdc\x88\xcf\xb3\x97\xa2\x0a\x93\xf4\xce\xb3\xbb\x0f\xf1\x1f\x71\xba\x1a\x0c\xd0\x1c\xf6\xe8\x53\x69\x9a\x5b\x77\x57\xe7\x41\x62\xd3\x21\x31\xf6\xec\x03\xef\xfc\x72\xaf\xd7\xe4\x4f\x38\xc5\x97\xa9\x07\x50\xab\xc9\xc5\xb5\x04\x8f\x05\x86\x57\x26\x0e\xcc\x5a\x28\x21\x75\x3e\x95\x9b\x7e\xf1\x2a\xc2\xfe\xcd\x46\xb6\xf3\xd0\xa0\x6a\x82\x5d\x1f\x3d\x70\xf0\x10\x21\xaf\x04\xbe\x06\xa1\x2e\xdf\xff\xca\x74\x5d\x10\xe8\xbc\x85\x86\x44\x86\xd8\x53\x54\xb1\xc4\x33\x04\x92\x8d\xa5\x06\x86\x86\x8e\x6d\x3f\x04\x51\xc0\x43\x88\x64\x14\x6e\x3a\x45\xdf\xaa\x2a\xd5\x4f\x08\x4d\xd3\x11\x67\x6e\xa8\x43\xac\xf2\x19\x75\x78\x12\xec\x49\x83\x01\x52\x47\xb8\x79\xbc\xb6\xea\x03\xd1\x48\x5c\xd6\x0c\x06\x07\xe7\x1e\x10\x8f\xb3\x7d\x16\x82\x44\x53\x48\x22\xbb\x70\x84\xd4\xcf\x6b\x38\x59\xaa\x37\x34\x4a\xf5\x19\x65\xa3\xb9\x18\x7b\x19\x18\xda\xa8\xab\x8e\x96\xb4\xa8\xc3\x2a\xb1\x24\xe6\x92\xd8\x1b\x90\xba\x40\xfc\x68\xcd\xfb\xba\xfe\x72\xcf\xdc\x97\x06\xfe\xef\xb4\x14\x14\xa7\x9c\x8b\x3c\x55\xc2\xd0\x26\x25\x3e\x23\xc8\xa8\x11\x05\x86\x29\x57\xe3\xc8\x16\xa8\xc1\x7b\x29\x76\x09\x5b\x90\x74\xb4\x31\xdf\x55\xa0\x04\x10\x9c\x12\x21\x27\xfd\xb9\xf5\x6e\xac\x76\x4b\xb2\xd3\x65\x4d\x09\x53\x69\x6a\xa3\x5b\xb5\xb0\x5f\x06\x40\x9c\xbc\x46\x68\x0d\xc5\xc6\x6f\xf2\xda\xb5\xb9\x98\x9e\x42\xda\x59\x1b\x29\x23\x21\x2a\x76\x53\x7c\x83\xda\x3c\xa5\x36\x5f\x45\x22\x45\xf0\xe1\x4f\xa9\xdd\x54\x97\x50\x93\xf7\x23\x54\xf9\x0e\xb2\x72\x9e\x23\x95\xe1\xf9\x14\xb7\xa2\xb9\xe0\x91\x9c\x19\xc5\xa9\x34\x49\x58\x1d\xfe\x45\xf5\x15\x44\xdc\x4e\x07\xfa\xfd\xee\x61\xc1\x91\x89\xe1\x0f\x04\x66\x9a\xaf\xa6\x8d\x08\x4d\xc1\x1f\x05\x71\xf2\x10\x0c\xb3\xeb\xd6\x50\xcf\x19\x1b\xf2\x59\x13\x07\xa8\x9e\x79\x9a\xa2\x0e\xad\xc4\x1d\xe2\x6e\x0f\x91\x09\x3b\x02\x2f\xd6\xfe\xd2\x3c\xce\x56\x4f\xa4\xb6\x47\xec\xb3\xe1\xdb\xd4\xcf\x03\x5e\x7f\x06\x5a\x1f\x99\x9f\x9f\xba\xf0\x6b\x1b\xea\xd4\x7b\xf2\xd9\x50\x68\xb1\xda\x7d\xe3\x4c\x29\xbd\x51\xd1\x1c\x5e\xa6\xf4\xec\xff\xb8\xf6\xd9\x8a\x7c\x48\xe9\xd9\x95\x7f\x15\x3c\x38\x23\xcf\xf9\x63\x3e\xbb\x4a\xcf\x56\xe4\xdf\x52\x5d\x57\x38\x6a\x50\xb1\xbf\xe3\x75\xb8\x62\x55\xce\x0a\x56\x56\xcb\x38\x61\xa0\xbe\xfb\x5d\x7a\x5f\xd4\xf0\x1b\xf6\x79\xc5\x52\x7c\x16\xb7\x44\xff\x42\x69\xd8\x74\x1b\x9f\x83\x52\xac\x25\x6d\xf1\x64\x4e\x21\xdc\xf3\xb9\x6f\x26\x1d\x3b\x81\x6a\x9d\x1e\x6a\xc5\x14\x08\xf2\x27\x4e\x9e\x98\xe0\x72\x8a\x3a\xbc\x17\x68\xaf\x19\xd6\x48\x42\x70\xde\x77\x99\x31\x1a\x0e\x72\xf8\x3c\x36\x0e\xd5\x52\xf0\xf2\xd0\xd7\x72\x74\x5c\x58\xc8\xab\x23\x3d\x0e\x06\xdf\xa5\x5d\xe6\xf3\x83\x41\xff\xdf\xa9\x61\xa0\x20\x0f\xbf\xe4\x15\x45\xbf\xd4\xdf\xf0\x1e\x37\xc7\x67\x6c\x2b\xcd\x58\xaa\x4d\x7e\x2a\x15\x71\x2f\x1b\x87\x25\x33\xa9\x59\x90\x76\x68\xea\xec\xf8\x40\xbc\x12\xc6\x43\x44\xe0\xa1\x5a\x55\xe9\x79\x4a\xd0\x55\x7e\x95\x82\x1f\x0f\xaf\x23\x6b\xda\x9d\x55\x5c\x78\xcb\x9d\x1c\x66\x9a\x36\x49\x9d\x0a\xc8\x0f\x37\xee\xcd\x21\xb6\x0f\x33\x4b\x3c\x2b\x2d\x65\x9c\x5e\xce\xf8\xbe\x4b\x62\x5f\x85\xa6\x0c\x28\x84\x71\x61\x3f\xff\xf4\x8a\xcb\x06\x59\x0a\x9a\x24\x78\x88\x28\x1a\x76\x7c\x29\xf1\x5e\x48\xd5\x42\xd6\x01\x21\x2b\xfc\x77\x78\xf7\x81\x95\x65\x9c\xae\x84\x12\x9e\x99\x30\x2a\xf3\x30\x02\x82\x1b\x0a\x27\xc8\x0a\xaa\x7c\x0d\x2a\xeb\x3a\xe5\x44\xf9\x7d\x12\xc6\xa9\x74\x05\xcf\xe0\xca\x14\x28\x0f\x33\x39\xb0\xcc\xd2\xe8\x23\xb4\xef\x00\x90\x7c\xd9\x6a\xf7\xf3\xb9\xb0\xc2\xfe\xce\xca\x09\xf3\xf3\x80\xa4\xc6\x99\x55\x2c\x9d\x8e\x0f\x0c\xed\x8b\x97\x29\x41\x43\x84\x6b\xd7\x47\x68\x9e\x6c\xf3\x1e\xf8\x5a\xe8\x49\x07\x0c\x3d\xe5\x79\xa1\x97\x64\x61\xd4\xcb\x59\x11\xff\xc1\x7a\xc2\x2d\x61\x4f\x38\x92\xeb\x81\x17\x92\x5e\x34\x4f\xc4\x03\x38\x47\x8a\xb2\xdb\x54\x3c\x6d\x37\xe2\x97\x73\x07\x3d\xed\x4f\xa9\xa7\x5c\x28\xf5\x6a\x77\x4b\xbd\xda\xc5\x52\x4f\xb8\x93\xe8\x49\x65\xfb\xda\xeb\x0f\xd4\xab\xbc\xff\xf0\x87\xed\xa6\xc7\xf2\x3c\xcb\x7b\x46\x34\x99\xa6\x8f\xc9\x0e\x7d\x8e\x32\xa0\x9d\x5b\xe8\xc1\x49\x9d\x2d\x4e\xcd\x38\x3a\x29\x85\xb7\x54\xb9\x1e\x93\xe6\xdc\x65\xc7\x95\xcb\x35\x1f\xe2\x3d\x56\xe7\xf5\x98\xf9\xd6\x5c\x0f\xdb\x2a\xc1\x65\x39\xb8\x88\x3a\x1a\xfb\x4f\x7b\x15\x10\xb7\x4c\x70\xcc\xb8\x4d\x0f\x8a\xb4\x0a\x2c\x97\xba\x04\xae\x5d\x1a\x7e\xd9\x79\x41\x49\x04\x2f\xcf\xdb\x38\x52\xaa\x61\x57\xd4\x06\xe1\xcc\x68\x1e\x3d\x7c\x88\x24\xf4\x78\x42\x49\x58\x55\xf1\x34\x11\x6a\x0e\xf6\x9f\xd7\x29\xf9\x31\x25\xbf\xa7\x54\xbb\x67\xfb\xc8\x37\x9f\xd9\x19\x79\x93\xd2\xb3\xbf\x8c\x1e\x3e\x38\x23\xef\x52\x7a\x66\xf9\xb3\x41\x80\x3f\x52\xff\xb7\x41\xf0\xf0\x8c\x7c\x0f\x5b\xcd\xe8\xe1\x0c\x7b\x7e\xef\xaa\x0c\x1e\x5a\xfe\x6f\x9c\xaa\x04\x0f\xf1\x55\x3e\x7b\x70\xb6\x5a\x93\x6f\xe5\x6e\x14\xce\xb3\x6d\x59\x85\x9b\x0d\xff\x3b\x2d\xca\x2c\xe7\x5b\xd7\x68\x78\x0a\x93\x57\x08\x83\x9e\x04\x36\xb3\xea\x36\x8e\x56\xac\xc4\xde\x83\x33\xf2\x5e\x16\xff\xe1\xe5\x65\xf5\xe3\xcb\xe7\xdf\xe1\x07\x67\xe4\x27\x30\x24\x39\xbb\x3a\x3b\x23\xff\x84\xcf\xfe\xd5\xed\x68\x78\x1a\x0c\x3d\x08\x4b\x74\x76\x75\xc6\xbb\x71\x36\xfb\x8b\x27\x02\x15\x79\xd6\x55\x34\xc4\x15\xae\xf0\x19\x79\x00\x43\x5c\xa6\x23\xbe\x84\xc8\xab\x94\x33\x00\x7f\xc0\xff\x5f\x52\x8a\x1e\x9e\x21\xe5\xa7\x17\x3d\x94\xba\x9e\x3f\xa6\xf4\xaf\x10\xf4\x4c\x9e\x14\xfd\x9c\x62\x9e\x76\x60\xe8\x10\x22\x4c\x7e\x4c\x21\x27\x45\x88\xfc\x98\x52\xf9\xb6\x7f\x9d\xd2\x7f\xca\x53\xb7\x1f\x5b\xa1\x06\x45\xe8\x92\xba\x47\x07\x62\x7a\xa7\x79\xff\x60\xf0\x20\x55\x27\x83\x0f\xd2\x6e\xd7\x1b\x53\x53\xc0\x87\x6f\x5b\xca\xcc\x78\xfb\x9a\x46\x6d\x45\xc4\x87\x58\xdb\xfb\x6d\x09\xd3\x5e\x9e\x99\x4e\xb5\xe1\xdc\xaa\x49\xec\x53\x3c\xd3\x7e\x23\xbc\x74\x30\xe8\x0a\xea\x60\x85\x14\xbd\x7f\xf7\xe1\x12\x61\x52\x18\xaa\x34\x5d\x97\xaf\xa1\x71\xf1\x7a\x5d\xae\x13\x71\x11\xeb\xa5\x7b\x3c\x8a\xb2\x94\x59\xe6\x76\x98\xd5\x28\x4f\x0a\xa1\xc3\x18\x73\x9e\x1b\x09\x6b\x15\x7d\x95\x28\x76\xb4\x82\xfd\x78\xf9\xe6\x35\xa7\xf2\xc2\x47\x41\x2c\xee\xcc\x46\x8b\x6c\xbd\x49\x58\xc9\x2c\x2e\x2c\x37\x56\xb1\x3c\x9b\xcf\x49\x56\x55\x3e\xb8\xdb\xdc\x64\x69\x01\x4a\x0d\xa4\x24\x2c\xe0\xbc\xaa\x54\xe6\xd6\xe2\x04\xec\x44\x65\x98\x97\x88\xc8\x67\x90\x2f\xf8\xe3\x0b\xd9\x90\x7c\x7d\xc9\x69\xa7\xca\xb5\x85\x9b\x15\xf5\xc6\xd2\xa8\x4b\x18\x69\x93\xcf\x2e\x8a\xd1\xbe\x15\x00\x3f\x50\xcc\xb3\x49\x12\x16\xe5\x9b\x2c\x82\x80\x85\xde\x6e\x4f\x58\x19\xae\x20\x46\x97\xb1\x75\x7a\x30\x13\x3f\xa6\xe6\x3d\x78\x5c\xbc\xce\x16\x61\xe2\x7d\x2b\xf9\x9c\xd7\xa9\xef\x04\x58\xdf\x81\xdb\x64\x93\x67\xbc\xef\xa0\xd3\xd0\xb7\xd5\x2d\xb9\x76\x77\x21\xa6\x92\xe3\x67\xbc\x00\x97\x7f\x67\x77\xa7\xb7\xb7\xb7\xa7\xcb\x2c\x5f\x9f\x6e\xf3\x44\x6c\xf9\xd1\x14\x3c\x32\x73\x86\xf8\xe7\xcb\xef\x4f\x1f\x23\x22\x34\x13\x0a\x6f\x87\x1e\x22\xef\x97\x94\x80\x6d\x0f\xe2\xff\xcf\x36\x7c\xd3\x46\x42\xb1\x5d\xa4\x08\x4c\xb9\xe3\xef\x8d\x96\xd6\x09\xe9\x41\x86\x3b\xfe\xfd\xdf\x05\xdc\xc0\x19\x19\x78\x8a\xcc\xf1\xef\xf0\x53\x28\x6f\xfa\x0d\xf3\xdd\x1d\xaf\x93\x97\x3e\x13\xcd\x41\x4b\x67\xa2\x26\x28\x7d\xb6\x27\x0a\x2f\xbe\x07\xd3\x32\x51\x04\xa9\xc4\x5f\xde\xbc\x46\xb2\xef\x26\xfe\xa8\xce\xa8\xb4\xbf\x7e\x78\xf7\x56\xb4\xfb\x89\xe5\x5c\x20\xe2\xe3\x86\x8e\x21\xef\x03\xac\x7d\x02\x23\xed\xc1\x48\x39\x78\xc5\x2b\xaf\x05\xee\x43\x00\xc1\x79\x2d\xf2\x03\x1f\xb0\x4e\xff\xe5\xcd\xeb\x3d\x59\x26\x61\xf9\x4e\xd8\x24\x88\x79\x56\x73\x04\x9e\x48\xf6\x1a\x13\xb6\x9b\x63\x22\xfa\xef\xd6\xef\xc2\xbe\xd5\xc4\x19\x4c\x4a\xec\xfd\x6e\xb5\x52\xc1\x74\x9a\x27\xbc\xcf\x99\x3c\xad\x79\x6d\xbd\x4a\x31\xa4\x5d\xe6\x61\x5a\x70\x09\xd4\x7b\x6d\xfd\x21\xd3\x5a\x82\xb5\x7a\xeb\xe5\xed\x23\xf8\x25\xf9\x44\xe6\xe4\x96\xbc\xa0\xe9\xd4\xed\x53\x7a\x37\x18\x58\x77\xd4\x25\xdb\xc1\x00\x6e\x0f\x2e\xe3\x35\x67\x6e\xac\x2d\x26\x0b\x5a\x92\x82\xc6\x55\x85\x10\xb9\x1c\xe5\x2c\x8c\x3e\x7f\x28\xc3\x92\x51\xf6\xcc\x9e\x4d\x3c\x9b\x64\x94\x3d\xa3\xae\x6d\x0f\x06\x63\xdb\x7e\xc6\xaa\x6a\x6c\x4f\x28\xa5\x8c\xe4\x83\x81\x35\xa7\x1f\xad\x0d\xb9\x84\x93\xf6\x39\x7d\x63\x6d\xc8\x9c\x5c\x92\x0c\x93\x6c\x66\x6d\x46\xf1\x52\x2d\xa6\xc1\xc0\xba\xa5\x97\x9c\x7f\xfe\x49\x4e\xe6\x8f\x60\x87\x6a\xa1\xd7\x61\x51\x9e\xaa\x6c\x08\x93\x5b\x21\xce\x9b\x2b\xd1\x0f\x03\x7a\x8b\xc9\x91\x0a\xf8\x1a\xad\xcb\xf1\x37\x91\x1f\x13\x57\x74\xb4\xaa\x10\xdf\x11\xb9\xb0\xbe\x11\x1e\xc7\x5e\x50\x94\x66\x12\x7d\x91\x27\xc7\x23\x52\xcb\xb5\xea\x8a\x67\xbd\xa0\xf3\x51\xc1\x61\x41\x96\x74\x2e\x42\x3d\x7c\xa2\xf3\x11\xf0\x73\x24\xa3\xfd\x4f\x18\x7b\xd6\x27\xfa\x82\x58\xac\xaa\xfa\x2f\xb8\xdc\xf3\x82\x22\x26\x48\x96\xfd\x0c\x5c\x8a\x52\x1b\x63\x4c\x2e\xa1\x9e\x6d\x41\x99\x7e\x84\x98\x99\x56\x5a\x55\x2f\xf0\x10\x21\x92\xcd\x56\x9c\x76\x66\xc9\x27\xa1\x3d\x10\x11\x7f\x49\x5e\x90\xcb\x00\x7b\xfc\x03\xdf\x2d\x54\xfa\x25\x79\x41\x3e\x05\x75\xa5\x2f\xb2\x88\x59\x9f\x31\xf9\x4c\x4b\x92\x0c\x06\xd7\x9a\xf5\xcb\x66\x0d\xba\xe9\x99\x14\xd5\xbf\x24\x1b\x92\xcd\x96\x1e\xaf\x69\x3d\x5a\xc6\x39\x33\xea\x0f\x30\xaf\xc9\xaa\xab\x6a\xd1\x66\x5e\x3a\xc0\xe4\xf4\x14\xee\xbb\x39\xf1\x34\x3c\xd2\x35\xca\x00\x69\xc7\x18\xef\x0f\x7d\x33\x81\xa0\xc2\x88\x70\xe2\x49\x53\x88\x4b\xd2\xa1\xef\x29\x02\xe4\xe9\x75\x67\xed\xf6\x24\xc5\x24\xa2\x1b\xe5\x27\xa5\xaa\x36\xe4\xba\x7e\x1d\x0c\xac\xc8\xd0\xa2\x8d\xa4\x30\x03\x07\x4d\x51\xed\x83\x99\xac\x78\xb5\xdf\xb1\x25\xcb\x73\x16\x59\x58\x44\x63\x7b\x11\x26\xc9\x3c\x5c\xdc\x14\x16\xca\xd2\x05\xeb\xad\xd9\x3a\xcb\x3f\x23\x0e\xdc\x8d\x01\x6e\xb0\x60\xf9\xc4\xb9\xa1\x39\xff\x77\x47\x6d\x72\x4b\x91\x70\x0b\xcb\x22\x44\x2e\xe9\xae\x5e\x49\x9e\x4d\x0e\xd0\xf6\x50\xd7\x85\xcb\x6f\x2e\xa5\xf4\x4e\x04\x34\x5a\x62\x11\x7c\x6d\xb7\x9f\x96\xf4\x7b\xc9\x15\x15\x78\x8a\x97\x7e\x79\x68\x8a\x43\x4b\xdf\x0d\xa6\x25\x5d\xfa\xac\xf5\x65\xdf\x90\xa2\x4b\x21\x45\x97\x7b\xde\xa3\xe7\x49\xd2\xec\x54\xd1\x71\x20\x01\x5d\x9a\x15\xd2\xcb\x47\xc1\xc7\xf1\xfb\x96\x15\xe5\xc1\x30\xcc\xd3\xe1\x46\x17\x14\xfb\x74\x57\x55\x16\xa3\x73\x3f\x0d\xe0\x5f\x55\x31\xf2\xc9\x67\x01\x2d\x15\x7f\xc0\x85\x92\x3c\x8e\xd8\x9b\x78\x2d\x83\xc9\x1d\x6e\xe2\x77\x10\x82\x6d\x2d\x73\x50\xa6\xca\xd6\x53\xd3\x0d\x59\xf0\x8d\xe3\x3e\xbb\x03\xa8\x96\x42\x10\xfd\xcc\x19\x05\xff\xb3\x88\x17\x51\x06\x81\x90\x54\x2f\x47\x61\x72\x1b\x7e\x2e\x2c\xe6\xab\x05\xd6\xf2\x13\x46\xc2\x39\x27\xcb\x1d\x2e\x53\xaa\xea\x56\xc7\x5f\x19\x0c\x16\x23\xc8\x68\x95\x98\xe4\x96\xad\x5c\x3e\xef\x41\x52\x5f\x8d\x36\x79\xb6\x8e\x0b\x66\x5d\xd6\xcc\x15\x5d\x8f\xc2\x28\xe2\xeb\x5a\xac\x58\x7a\x09\xec\x1c\xb9\x14\x24\x87\x5e\x8e\x96\x61\x9c\x90\xcd\x68\x9b\x27\xd4\xe2\x44\x07\x1e\xab\xea\xc7\x94\xd3\x90\x5a\x72\x7e\x03\x47\xe1\xfa\xf5\xa7\x94\x00\x43\x32\x44\x67\x67\x08\x13\x41\x04\x69\x3a\x5a\xb3\xf2\x3a\x8b\xaa\x2a\x95\x6a\x99\x1b\x9d\x22\xb2\x90\xcd\x48\xf1\x99\x85\x3e\x70\xaf\xd3\xb8\x70\x84\x70\x73\xb2\x0f\x82\x12\x0a\xbc\xdb\x8c\x16\x79\x56\x14\xdf\x65\xeb\x30\x4e\x81\x87\x56\x8c\x3e\x8c\xa0\xc5\xeb\x93\x46\x76\xda\x17\x0e\x84\x7d\x27\xa0\x94\xc2\x40\x06\x83\xd8\x77\xe5\x9b\x1b\x40\x08\xa6\x71\x50\x55\x16\xba\x2e\xcb\x8d\xc7\x09\x3d\xcf\x3d\x43\x8f\x6d\xe4\xa1\xc9\x64\x8c\xe0\x3e\x9b\x73\x65\xad\x6c\x50\x5b\x23\x1f\xb4\xce\x47\x38\x18\x6c\x46\x06\xd7\x56\xfb\xf3\xd0\xe2\x85\xca\x27\x41\x42\xf5\xe9\x9f\x78\xe7\x70\x36\x0e\x59\x30\xf9\xd1\x7a\x95\x92\x0d\x49\xc9\x25\x26\x62\xa5\x4b\x5c\xb9\x9c\x26\x74\x23\x0d\x55\x38\xdd\xb5\xc5\xfd\x86\x20\xac\xc3\xe1\x61\xd8\x54\xcb\xe0\xa0\xf5\x7c\x8a\x9f\x51\x99\xfd\xbc\xd9\x68\xad\xf2\xcd\xe8\x3a\x2c\x94\xde\x72\xff\xbd\x64\x4f\x45\x56\x4c\x42\x0a\xe0\x6f\xe4\x82\x05\x26\x07\x26\xbf\x0f\xa9\xf5\x51\x96\x0c\xf1\x0c\x0d\x90\x87\x66\x08\x0f\xe5\x30\xa5\x3e\xaa\x78\x83\xb9\x0b\x17\xd7\x4c\xf9\xc6\x13\xc8\xfa\xae\x2e\x1e\x6a\xb4\x7c\x97\x12\xf4\xc0\xf9\x48\xd1\xf0\xf7\x74\x38\xc4\x5e\x38\xec\x6c\x06\xe9\x1c\xbc\xf2\x06\x4b\x71\xc8\x27\x0c\x06\x97\xa3\x36\x91\xb2\xd0\xab\xa5\xe6\x30\x4e\x3f\xc4\xe9\x82\x21\x72\x58\x54\x48\x04\x82\x7d\x38\x5a\xcd\xdb\x2c\x65\xa7\x6f\x38\x8e\x23\x23\x3b\xc6\xc4\xaa\xb1\xa6\x86\x25\x7f\x33\x38\x7c\x19\xb9\x31\x35\xd3\x70\x77\x53\xb2\x82\x53\x9e\x05\x91\x46\x2d\xb0\xf1\x1f\x14\x78\x0e\x92\x00\x32\x97\x2c\x58\xe0\x6f\xa4\xf6\x72\xe1\x37\xbf\x04\xb3\xa3\x5f\x86\x5c\xa6\xef\xf3\x45\x6b\x26\xcf\x10\xe9\xa1\xe1\x2f\xe9\x10\x4d\x7b\xbf\x53\x7b\x64\xc3\x1d\x21\xf6\xea\x6a\xd0\x43\x14\x08\x05\x76\xf0\xb7\xb8\x19\x09\x57\x23\x05\xee\xe8\x6f\x46\xf4\x67\xf0\xc3\x18\x2f\xad\xcd\x48\x18\x44\x71\xc1\x0e\x10\xa7\x7e\x15\x4a\x9c\x11\xb9\x24\x1b\x2c\xbd\x33\x8a\x05\xa4\x57\x90\x24\xb5\x78\x7a\x4b\x11\x3c\x22\xdd\x91\x9d\xa4\xa6\x9e\x43\x80\x8c\x7a\x0e\x51\x04\xd7\x73\xf6\xf8\xd2\xcf\x02\x6b\xa3\x3a\xb1\xa0\x3f\x5a\x7f\xa8\x55\x8a\x77\x0d\x86\xd8\x69\x72\x57\xb5\x14\xaa\xd8\xa1\xcd\x08\xe4\x3a\x0e\xf4\x52\x30\xd8\x5c\x80\xb7\xb6\xb4\x60\xa5\xe2\xb8\x8d\x1d\x56\x75\x1a\xc9\xcc\xe0\x45\x4a\x95\xc4\xe2\x50\xe5\x8e\x3a\x10\x65\x37\x8d\xac\x4f\x24\x57\xe1\xe8\x5e\x08\x1e\x01\x36\x34\x0c\xda\xd5\xbd\x17\xd3\xdc\x3a\x75\xc8\x0b\xbc\x17\x36\x06\xf0\x86\xde\x66\x3d\x2d\x47\xd4\x07\x19\x97\xb0\xfd\x73\x39\xe8\x1e\xbf\x51\x42\x89\xa6\x24\x29\x41\x20\x3f\x61\x28\xf4\x01\x84\xbf\xa3\xba\x8f\x46\x21\x65\x19\xd0\x8c\xb8\xbe\x62\x5c\xe6\xdf\x64\x45\xeb\x22\x11\xb4\x77\x39\x6b\x60\xa4\x49\x5f\xb2\x75\xed\xc6\x81\x4a\x8e\x41\x49\x2b\xab\xaa\x98\x28\x0f\xae\xa4\xeb\xa8\x24\xad\x8f\x4a\x32\x71\x4a\x92\x13\x85\x10\xb1\x56\x0f\x34\xb8\x4b\x2d\x52\x8b\x01\x48\xd9\xb9\x16\x7c\x49\xaf\x21\x1b\x1f\x49\x67\x8b\x75\x67\xfa\xdd\x69\xfd\xa5\x21\x42\xcb\xd6\x3a\x7d\xc4\xb4\x44\x5e\x10\x5d\x65\x15\x47\xd4\xf5\x0d\xa3\x47\x11\x4a\xa9\x1e\xa6\x96\x35\x2d\xad\xb3\x6f\xd6\xc1\x34\xf9\x16\xa1\x55\xc4\x5b\xdf\x81\xb0\x07\x8d\x3d\x5c\x7a\xe0\x17\x07\x20\x4c\x36\xc9\x73\x9e\xd4\x8d\x69\xe4\xeb\x6e\x8c\x33\x66\x66\xad\x75\x78\x81\x1f\x80\x3a\x80\x66\x35\xe2\x4f\x08\x83\x91\xfd\x81\x9a\x8f\x44\xe9\x5d\xd1\x70\xbf\x51\x72\x49\xb8\xe3\xe8\x51\x5b\xab\xa4\x62\xa5\xd2\xbe\x4d\xd8\x48\xa4\xbe\x10\x27\x2b\xa0\x2b\xa0\x4e\x59\x5a\xdf\xc0\xf9\x66\xbe\xa0\x0c\x36\xcd\x74\x94\xc1\xfd\x02\xe5\x0f\x40\x26\x40\x56\x94\x9e\xde\x9b\x8c\xb1\x55\x56\x55\x3f\x35\x88\x49\x55\x9d\xf1\xb2\x2c\xaa\x14\x2d\x3a\x93\x17\xe2\x46\x26\xd0\x3c\xbc\xbf\x19\x19\x89\xd5\xb4\x4a\xb8\xc7\x5b\x04\x17\xb3\xe0\x88\xbd\xaa\x62\xcb\xb5\x6d\x82\xe4\x52\x80\x8b\xe9\xfc\xc0\x70\xbc\xe9\xae\xad\xc5\xf6\xe2\x1d\x44\x59\x16\xbd\xb3\x4a\xe9\x20\x5a\x9e\x93\xff\x03\xbc\xb0\xfe\x9a\xd2\x33\x8b\xe2\xab\x99\x35\xa3\x83\xea\x01\xae\xae\x66\x57\x33\x88\x82\x6f\x2c\x38\x4e\x5d\x36\x1e\x5a\x48\xc9\x4b\x1c\xfa\x6c\x94\x20\x76\x68\xa1\xff\x8f\x54\x84\x01\x15\x12\xa7\x30\xe9\x19\xa2\x8f\x82\x47\x30\x19\x75\x2e\x5c\xf0\x09\xee\x46\x7e\xde\x0a\x9c\x0c\x6d\x0c\x9c\xec\xd0\x63\x4c\x47\x90\xa9\x2f\xf9\x99\x5f\x95\xe2\x02\xc7\x01\x3c\x43\xdb\x3c\x01\x5d\xda\xd6\xbd\xb8\x64\x06\xfa\x56\x63\xb3\x17\xd6\xc5\xfa\x6c\xf9\x8b\xe7\x7d\x08\x0f\x06\x75\x83\xc0\x5f\x0d\x06\x88\xff\x1a\xa7\xd2\x55\x85\xc4\x30\xc0\xa1\x42\x63\xcb\xb6\x32\xd5\x7d\x05\xce\xd6\x25\x64\xeb\x2b\x9e\xb5\x12\x2c\xec\xb5\x52\xc8\x76\x96\xfa\xdb\x80\xf2\x7f\x9a\x93\xfb\x15\x38\x39\x34\xcc\x74\x76\x05\xae\xb4\xc5\x3f\x2a\xb0\x29\xe6\x4e\x66\x87\x7b\xcd\x8c\xaf\xaf\x9a\xd2\xf9\x72\xb9\x8a\xe3\x3b\x63\x67\xd0\x84\x4e\xfa\x65\xe7\x9b\xba\x95\x0d\x51\xef\x36\x2c\x7a\x69\x56\xf6\x38\x2a\xc1\x59\x12\x07\xc2\x9e\x34\x81\x42\xc5\x76\x46\x42\xca\xfc\x2c\x00\x37\xd0\x66\xd5\x45\x7d\x5c\xbe\x27\xb1\x92\x05\x8d\x0c\x50\x20\x24\xa9\x9f\x05\x30\xbe\x26\x78\xf3\x16\xb4\xfe\xa1\xad\xdc\x40\xe1\xb6\x09\x7d\x3e\x9b\xa1\x25\x6c\x86\x0a\x1a\xd2\x72\x6f\x58\xd4\x29\xdd\x17\xb1\x9e\xfe\x9a\x92\x1f\x52\xf2\xf7\x94\xda\xe4\x6f\x5c\xc2\x7e\x0e\xb2\xc1\x2f\xe2\x52\xd6\x38\x92\x97\x8b\x04\x98\x1f\xc6\xb9\xb0\xbf\xa6\xf8\xaf\xa9\xcf\x02\xb9\x40\xa7\xed\x7b\xe0\xbb\xeb\xbc\x5d\xdd\xec\x00\xd2\x22\x34\x81\x3c\xe4\x1e\x0c\xde\xf1\xc5\xf7\xbd\x85\xf7\xde\x3b\xf2\xc3\xc1\x5d\x33\xaf\xd2\x6a\x2a\x2c\x67\x79\x41\xfb\xfd\x1f\xd2\xc1\x00\xdd\xc6\xe5\xf5\x8b\x9c\x45\x2c\x2d\xe3\x30\x29\x50\x9c\xf6\x7e\x48\x65\x2d\xda\xc0\xf1\xdf\xe1\x1d\xe4\x27\x3f\xa4\xfa\x02\xa4\xde\x4a\x4c\x25\x15\xce\x06\xa5\xe6\x16\xd2\xf4\x06\x91\xe5\x85\xbc\x94\xef\xde\x28\x9a\x01\xc9\x69\x2a\xfa\x2e\x02\x16\x6f\x0b\x96\xa7\xe1\x9a\xcd\xb6\xa3\x6c\xc3\x52\x19\xc2\x98\xa4\x92\xf8\xc3\x06\x42\xea\x6c\x40\x85\x8b\xe2\x36\xcb\x23\xec\xdd\x53\x84\x23\xf9\xdd\x75\x2e\xce\xc1\x85\x41\x36\x9f\x27\x33\x71\x0b\x36\x7a\x75\x82\x5f\x04\xd3\x54\x1f\x7a\x0c\x06\xdb\x51\xfb\xa8\xa4\x2b\xcd\xaa\x8b\xc0\xc2\x32\x61\x14\xfb\xe8\x97\x53\xc9\x91\xb3\xe8\x14\x5c\x0b\x80\xd3\xc9\xae\x74\x8a\x7e\x79\xf3\xfa\xc7\xb2\xdc\xc8\x0f\x86\x6f\x17\xe8\x7a\x8c\xb7\x87\x0c\x7e\x41\x62\xbf\x08\x14\xc3\x9a\xe0\xdd\x7e\x2b\xd8\xd8\xb4\x21\x1f\x89\xb5\x59\x55\x22\x42\x98\x19\x25\x41\xd1\xe1\x42\x9c\x02\x8a\x98\xcc\x4b\x0b\x9c\x68\x56\xd5\x04\x1c\x64\x98\x5b\x25\xff\x46\x85\x8a\xec\xb6\x6b\xa7\x84\x0b\xdb\x6c\x43\xfe\x96\x0e\x06\x52\x64\xfd\x6b\x0a\x62\x5f\x8c\x27\xfd\x66\x6d\x1c\x9c\x4a\xa0\xe0\xdc\xf4\x6e\x29\xec\x75\xb6\xf2\x40\x88\x24\x74\x3b\xea\x3c\x41\xb3\xf0\xa1\x67\xe9\x6d\xe3\x52\x4c\x86\xfa\xbf\x2b\x69\x33\x5d\x00\x75\xa1\xdb\xe0\x69\x12\x7a\x1b\xbc\x5b\x50\x84\xf6\x05\x30\x11\x72\x19\x82\x1c\x59\xcf\xe9\xcc\x71\xdd\x31\xa5\xb4\x80\x48\x04\xae\x3d\xc1\x5e\x41\x45\x43\x33\xd7\xb6\xbd\x89\x3d\xd9\xcb\xea\x22\xbc\x8b\xab\x2a\xe3\x02\x42\x84\xf7\xcb\xc1\x20\xb3\x0a\x38\x68\x4d\xf0\x5e\x61\xe9\xac\x0d\xe0\x99\x21\xc3\xe4\xd8\xb3\x42\x3a\x1c\xfe\x3d\x05\x68\x5a\x7f\x4d\xab\xca\xfa\x2b\x5c\x0e\x0b\x65\x3e\xa1\x78\x61\xfd\x2d\xc5\x98\x00\x90\x69\x8e\x49\xe7\xac\xe4\xd8\xcb\xad\x2e\xde\x22\x1f\x0c\xf2\x36\x53\xf1\xaf\x94\xb0\x9c\x94\xb9\xb8\xe9\x16\xe6\x45\x55\x71\x9d\xdd\x56\xd7\x71\xc4\xf0\x83\x33\x92\xe6\x2d\xf3\xb3\x99\x27\x2d\xd0\x2a\xac\xed\xd6\x84\xc9\x5a\x6d\xe0\x96\xe7\xf4\xec\xf7\x2d\xdb\x8a\x48\xa3\x0f\xce\x48\x9c\x53\xff\x41\x40\xb2\x9c\xc2\xbd\x9a\xdf\x75\xc8\x29\x14\x9c\x84\xfd\xf6\x2d\x63\x52\xad\x31\xa7\xe9\x68\x01\x01\x1a\x63\x9a\xe6\xe2\x84\xab\xc4\xc2\x50\x58\x9e\x51\x35\x6c\x3c\x58\x30\x43\xc8\x13\x16\x1e\x22\x7c\xbb\xf9\xad\xaa\xf8\x97\x3e\x84\x97\x18\x72\x89\x47\x55\x29\x15\x0b\x53\x11\x38\x9a\x81\x99\x84\x43\xb6\xd4\x05\x83\xb2\x70\x30\x08\xfd\x71\xc0\xcb\xe1\x1d\xc8\x48\xfc\x95\xc4\x34\x86\x4b\xf4\x90\x0e\xf3\xaa\x72\xa6\x51\xd6\x03\x3f\x06\x68\x74\x8e\x48\x78\x46\x0b\xa2\x95\xfc\x55\xc5\x24\x1c\x66\x78\x7a\x7b\x1d\x27\xcc\x2a\xfa\x94\x5a\x85\x1a\xdf\x19\xef\x8e\xd3\x07\x7c\x3b\x3d\xdd\x6a\x1b\xd4\x18\x4e\x8d\x52\x8e\xc3\x79\x49\x87\x61\x55\xf1\xc6\x6c\x4e\x02\xd3\xb8\xa4\x19\x49\x47\x2c\x8d\xc4\xf1\x5c\x38\xb4\x62\x69\x53\x13\xfb\x6e\xe0\x0d\xf9\x7f\x4c\xd2\x7d\x00\xdb\xd4\xf3\x34\x5e\x03\x6f\x64\x84\x65\xfc\x89\xec\x4a\x0e\xed\x83\x93\xe7\x03\x73\x56\xab\x84\xab\x05\x71\x28\xe1\xc1\xed\xbc\xd6\xb9\x99\xb6\x1d\xa4\xb0\xda\xca\x4e\x39\x44\x01\x0d\xa5\x2c\x87\x38\xc2\x39\x1c\x57\xfb\xf2\x7d\xb4\x4d\x21\xd4\xae\x55\x0a\xcf\x7f\x9d\x31\x70\xcb\x59\x9c\xeb\x8c\x0c\x7b\x71\xae\xfc\xbc\x4a\x6e\x14\x90\x86\xbe\x22\xaf\xcc\x40\x7d\x8b\x2c\x2d\xca\x7c\xbb\x28\xb3\xdc\x7b\x45\xe2\x34\x3e\x74\x8b\x21\x64\x62\x61\x13\x97\xb0\xb5\x8a\x74\xb8\xc9\xb3\x0d\x4d\x55\x10\x8a\x22\x4e\x57\x70\xa5\x57\xdc\x82\x1e\xba\xb8\xfa\x16\xd7\x9a\xb4\x54\x31\xe6\xf8\x0c\x49\x2d\xbe\x5b\x89\xcf\x80\xba\xa2\x92\x34\xa2\x22\xa4\xb5\x9c\xb9\x36\xea\xa6\x35\xea\xee\xc9\x62\x9b\x1f\x32\xea\x30\xb4\x8d\xd4\x0c\x56\x9d\xac\x23\x32\xcb\xe8\x89\x33\xf8\x2f\xbd\x49\x1a\x45\xea\xe0\xff\xfa\xf3\x9e\xe4\xdb\xb4\x33\x94\xc1\xfd\x4d\x89\x94\xac\xa0\x72\xbc\xca\xe9\x5c\xb4\xcd\x01\xc1\xc0\x32\x1f\x80\xe6\x1b\x00\x0c\x94\x23\xc1\x76\xf6\x87\x8c\xd8\xc4\xe9\xfe\x86\x3d\xe5\x7d\x30\xbb\xa5\x96\x82\xe4\x69\x0d\x71\xfc\xb0\x1c\xd6\x6f\xcd\x4a\x8a\x92\x6d\xa4\x43\x33\x33\xa9\x36\x61\x16\xcb\x52\xd5\x2f\x63\x37\x80\x14\x56\x40\x98\xdc\xe2\x7e\x40\xea\xcf\xf2\x22\xc2\x44\xbe\x11\xc7\x36\x03\x17\x8d\x4f\xc4\xa8\x8c\xee\xb4\x57\xd4\x96\xa6\xb7\xba\x6c\x69\xdc\x37\x31\xe8\xb1\xcf\xc4\x7c\x54\x95\x78\x57\x0a\xd3\xc2\xe9\x82\x99\xa6\x72\xf2\xe5\xab\xb4\xa7\x25\x2d\x82\x0f\x04\x21\x4c\xca\xc1\x40\x18\xa6\x80\x35\x5f\xe9\xd9\xd8\x6b\xb6\xd3\x36\x5c\x10\x7a\x21\x77\x00\x4c\xdd\xc2\x61\x12\x44\x7c\x68\x74\xd0\xea\xe8\xa1\x69\xad\x26\x0b\xb6\x8c\xd2\x64\x2a\x36\x2c\x6f\x1b\x63\x60\x7c\xf2\x86\x0c\xd6\x55\xbb\xeb\x60\x56\x79\xbb\x57\x73\x23\x67\x50\x87\x59\xa6\x87\xa9\xaf\xd9\x52\x84\x32\x6c\x05\xde\x83\x2e\x9b\x26\x9a\x90\xd0\xf0\x45\xd9\xd5\xb4\x19\x6a\xd2\x47\x62\x8f\x45\x04\xf1\x5d\x16\x11\xc4\xf7\xd9\x03\xa5\x1b\xa5\xbc\x2b\x54\x6f\xa6\x5d\x2a\x8c\x20\x55\x37\x31\xa3\xaa\xba\xcc\x80\x8f\x28\x69\x09\xa5\xbc\x10\x76\x04\x66\xfd\x21\x18\x03\x22\xea\x3d\x54\x6f\x5c\x86\x11\xbb\xcc\xbe\xa0\x3b\x28\xcf\x01\x5e\x60\xc0\x32\x6d\xe1\x4b\x6c\x65\x4b\x2c\xac\xf5\x75\xa3\xda\x60\xb8\xdc\x6b\x95\x43\xf9\xed\xbe\x78\xc2\x71\xf1\x72\xbd\x29\x3f\x6b\xed\x59\xf0\xc4\x35\x2a\x36\x8c\x45\x96\xc8\x4b\x42\x7a\xe0\x4b\xe1\x27\x01\x00\x43\x45\x69\x4f\x78\x59\x3c\xe5\xcc\x6f\x1d\xc8\x4d\x84\x2e\x8c\xd3\xb8\xb8\x06\xd3\x97\x12\x42\x87\x5a\x20\xe9\x29\x9d\xd1\x91\xf8\x4e\x43\xc2\xb9\xbe\x11\x70\x3a\x70\x88\x3e\xab\x2d\xab\x43\x09\x61\xf8\x68\xc9\x4c\x24\x94\x81\x4d\x8f\xd8\x4d\x75\x5c\x80\x42\xf3\x53\x1d\xe2\x91\xbf\x11\xce\x2f\xaa\xde\x74\xa9\xe8\x49\xc5\x38\xa5\x08\x20\x3c\xa3\xf7\x1d\x49\x08\x45\x8f\x38\xb6\x2c\xef\x10\xf1\x83\x23\x81\x96\x44\xfb\x7d\x5b\x9e\x70\xf5\x21\x9c\xee\x10\xd5\x6c\x1d\x12\x80\x2f\xe3\x35\xcb\x0b\x02\x97\x75\x35\x0c\x85\xc4\x87\x43\xb0\xd6\xe3\xff\xa1\xe7\x83\x41\x6c\xf1\x17\x43\x85\x19\x2c\x45\xc3\xc3\x8c\x79\x5e\xdb\xf2\xa9\x42\x22\x64\x8b\x72\xb7\x36\x4d\x4f\x4f\xa7\x38\xe3\x45\xf8\xa2\xeb\x0b\x47\xbe\x42\xf0\x81\xde\xc2\x27\xe8\x6f\x1f\x56\x87\x05\x09\x1c\xc3\xc4\x9c\xe6\x98\x94\xb4\xef\x90\x0c\x18\x99\x05\xb3\x52\xe2\x60\x3c\x85\x93\xc5\x5c\xb8\xc5\x8b\x98\x80\x96\xf0\x6c\x0a\xae\x2e\xc4\xdc\x77\x06\x5f\x51\x47\x34\x8c\x4a\xe8\xde\x07\x5a\x08\x17\x64\x42\x8c\xb3\xba\xbe\x82\x30\xe2\xdc\x65\xfd\x2a\x00\x1e\xb4\x20\x9e\xcf\x94\x87\x30\xcf\x16\xc0\x51\x98\xd9\xb7\x39\xa6\x9b\x7d\x87\x89\xe6\x3c\xb3\x9a\x08\xf8\x35\x7c\x79\x80\x3b\xcb\x1a\xb8\xa5\x00\x6e\x29\x80\x2b\xbd\x24\x73\x98\x96\x81\x46\x78\x8e\x6a\x90\x50\xc3\x14\xdc\x1e\x2a\x78\x96\x00\x4f\x15\xe0\x28\x94\x01\x8e\x72\xbf\x0c\x06\x03\xfe\x5f\xf6\xb6\xf1\x52\xf7\x08\x2b\xac\x57\xa3\xda\x37\xe3\xac\x14\x49\x1c\xb1\xef\xb2\xdb\xd4\xfb\xc3\x12\xd4\x14\x13\x48\xfb\x79\xc3\x53\x80\xb0\xca\x94\x4b\xe1\x37\xe1\x0f\x4b\x91\x5f\x4c\x38\x45\x7b\x95\xd6\x4e\x0b\x44\x0d\x7b\x48\x7f\xb7\x2d\x8d\x0f\x50\x91\xf8\x20\xeb\xa9\xbf\xc9\xea\xbe\x22\xfa\x05\x3b\xa4\x97\x8a\x0e\x6a\x85\x6b\x69\xcf\xc8\x29\x19\xed\x74\xea\xc7\x21\x7e\xa8\xf5\x33\x6b\x11\x35\x6f\xa7\x6f\xe3\x52\x2e\xdf\x0e\x06\xa5\xb4\xad\x36\xd8\xf9\xc1\x80\x11\xc5\x62\x79\x8c\x08\x06\xcd\x13\x79\x4b\x65\xa6\x60\x98\x56\x0c\x06\xa5\x26\x80\xb9\x66\xce\xa8\xd8\xf3\xb3\xe5\x72\x66\x7b\xb5\x49\xbe\xf2\x01\x50\xf3\x83\xf5\xa3\x57\x3f\xf2\xa5\x2f\x99\x06\x3e\xe6\x62\x66\xbe\xf8\x75\x3e\x11\xee\x42\x7d\xa8\x7d\xb9\x29\x6f\x00\x02\x21\xab\x2a\xaf\x49\xb1\x0d\x2e\x06\xe4\xbb\x58\x8a\xf9\x28\x4b\x22\x9a\x6b\xdd\x10\x52\x3f\xd2\xa6\x95\xa1\x79\x2b\xc6\x0b\xe1\xc1\x00\x7e\x0d\xdc\x24\xb2\xee\x43\x2a\x21\x3f\x70\xd6\x5a\xee\xfb\x20\x3b\xec\x92\x38\x65\x61\xa7\x0b\x21\xb6\x27\x20\x55\x74\x7c\x1b\x9d\x9f\xbe\x09\xcb\xeb\xd1\x22\x2b\x2c\xf6\x10\x1e\xdf\xbf\xc2\x67\xae\x60\x29\x04\x21\xa0\x52\x8d\xfb\x8e\xb6\x99\x4f\x91\x3c\x2a\xe3\xc5\x4d\x7b\x43\x64\x82\xfc\x48\x52\x92\x53\x41\x3f\xfe\x55\x6b\xe1\x4f\xf3\xa7\x75\x00\xb3\xe1\x10\x33\x9a\x72\xf9\x8d\x59\xb8\xaa\xf8\x93\x20\xa9\xa9\x5a\xea\xf9\xe9\x29\x71\x6a\xcf\x44\x80\x6f\xc0\x0c\x66\x1b\x0b\x93\x7f\xa5\xb4\xdc\xeb\xde\xac\x59\x33\x76\x27\xb3\x04\xb1\x15\x9d\x51\x52\x9d\x30\x9e\xbc\x13\x5c\xbd\x85\x55\xf1\x38\x2d\x59\xfe\x29\x4c\xa8\x33\x26\x46\x06\x73\x7c\x2c\xaf\x2a\x8b\xe5\xb4\x60\xe5\x2b\x99\xdb\xaa\x21\xd1\xaa\x07\xeb\x9a\x79\x5f\x1b\x88\x90\xb0\x30\xd7\x15\xb0\x1c\x13\x26\x5d\x96\x12\x13\x1d\xe9\xae\x48\xb2\x5b\xef\xc2\xb6\xc9\x32\x2c\x4a\xcf\xb5\xed\x3a\xce\x01\x38\xca\xa9\xf9\x62\x71\x9e\xf3\xd5\x36\x97\x92\x40\x44\xdd\x21\x30\x85\x8f\xba\x7a\x12\xbb\x3c\x21\x40\x98\x19\x4e\xc0\xf7\x3a\xe0\x9a\x62\xed\x84\x89\x26\x6d\x5d\x1e\x1e\x38\x77\x6e\x04\x2a\xa8\xbd\x99\x76\xb8\x0b\x93\x35\x72\x99\x48\xd8\x74\x9a\xfe\xc0\xa7\xda\xc9\x1c\xdd\x71\xfe\xc7\x26\x09\x5b\x96\x9e\xbd\x27\x99\x72\xf8\xad\xec\xf2\x1b\xde\x12\xe0\xf4\x05\x6b\x4f\x17\x61\xfb\xb6\x92\x34\x5c\xbf\x93\x0c\xcf\x2c\x49\x7c\x32\x2e\xe5\x7e\x9b\x6d\xd3\x28\x4e\x57\x2f\x92\x98\xa5\xe5\x4f\x6c\x51\xf6\x29\xfd\x15\xd4\xa5\x8e\x7c\xb7\xc0\xa9\xe6\x2f\x56\x88\x09\x74\x34\x1e\x95\xd9\x66\x68\xe5\xa3\x4d\xb8\x62\xbf\x8a\x81\x01\xde\x2b\x01\x02\x9f\x5a\xe9\x68\x01\xe5\x2f\xb3\x4d\x55\xd9\x58\x0c\x2d\x06\xdb\x7f\x55\xf2\x97\x76\x49\x2e\x64\x18\x45\xf9\x2b\x2f\xbb\xc7\x5e\x0c\x38\x22\xa7\x67\xa7\xa1\x79\x24\xd4\x50\x6d\x11\xab\xec\x7d\x11\x9e\xa2\xa2\x0c\xcb\x78\x01\x1e\x37\x64\x14\xfe\xcf\x09\xd3\x16\xc1\x14\x41\x88\xf9\xf8\x13\x43\x86\xb1\x86\xf4\x67\x5b\xd0\x50\x36\x6e\x61\xe9\x74\x44\xd4\x0f\x6a\xa7\xc2\x09\xa0\x4c\x01\xeb\x65\x4c\x16\xd4\xaa\xfd\x4b\x09\x27\x1f\x68\x19\xdf\x89\xd8\xd7\x92\x91\x52\xce\x11\x85\x98\x49\xfc\x2d\x49\x02\xfc\xec\xd4\x21\x70\x0e\xcc\x17\xc6\x74\x31\xb3\x36\x34\x34\xcc\x96\x49\x4c\x37\x1c\xfa\x24\xa3\x1b\xe1\x8e\xc1\xb3\x62\xd3\x75\xc8\x16\x57\x95\x4d\x1a\xde\x44\x12\x0c\x33\x70\xb8\x7b\x59\x25\x95\x0e\x97\xf9\x66\x5b\x60\x4c\x04\x9f\x58\x8e\x80\x1d\xb2\x96\xfc\x57\xbc\x9d\x16\x30\xe7\x71\x9d\x85\x37\x0e\x79\xc0\x9d\x83\x78\x3f\x2d\xc4\x04\x67\x98\xa0\x2d\x27\xf1\x28\x4e\x7b\xe5\xac\x1c\xc1\x8b\x6a\x6a\x89\xbd\x10\xc0\xb5\x94\x62\xa0\x21\x54\x69\xef\x5c\x06\xd1\x69\xbb\xd4\x83\xb9\x6e\x2f\x99\xbc\x15\x73\xb4\x86\xb6\x9c\x9b\xdc\xc4\x86\x59\x49\xf3\x63\xb8\xee\xc9\xc8\x05\x72\xc6\xdf\x4b\x47\x6d\xa4\x34\x53\xc5\xd5\x53\x1d\x70\x80\xaf\x55\x61\x24\x03\x36\xfd\xda\xdd\x84\x05\xce\xe5\x39\xe8\x34\x8e\x40\x56\x61\x39\x7d\x99\x6d\x84\xe9\x34\x70\x9a\xa9\x00\x5e\x57\x46\xbe\x14\xea\x9c\x72\x19\x8a\x89\x81\xda\x4f\xeb\x41\x0a\x43\x6d\xf0\x41\xd6\x57\xeb\x4e\xce\x8e\x68\xe0\x20\x2f\x38\x26\x93\x67\xe0\xc4\x1c\xf4\x57\x5a\x0e\x37\xfd\x0e\x36\xc0\x56\x55\x7f\x9f\x0a\x43\xdf\x46\x70\x06\x01\x28\x50\x76\x54\x6b\xb2\x73\xcd\x82\x6b\x42\xb3\x3e\x7d\xac\x57\x55\x7f\x6f\xb3\xbe\x9a\x84\x78\xc8\xa0\x2e\x88\x68\xaa\x24\xd2\x25\xbd\x6a\x5a\xab\x6b\xd2\x71\xf6\xab\xd2\x90\xc0\xd3\x43\x86\x35\xfe\x0a\x0f\x6c\xf5\x65\x1f\xfd\xc5\x70\xf7\x91\xc1\x66\x11\xce\x84\x6c\x37\xe3\xc2\x9b\x57\x53\xee\x36\x09\xf7\xe3\xc0\x63\xfc\xdf\xa7\x2c\x8e\x20\xba\xa6\x1a\x85\x95\xcf\x16\xa5\x15\x62\x83\x64\x5a\xd8\xcb\x48\x3e\xcb\x3c\xf3\xc3\x25\x67\x32\x30\x54\x42\x33\x70\xc1\x16\x1f\xb8\x60\x93\x0e\x80\x4c\x28\x4a\x37\x61\xda\xfd\x0a\x20\x9d\x27\x9d\xb0\xb4\x41\x66\x84\x77\x94\x2e\x01\xc0\x8f\x30\x1a\x32\xa5\x72\xe4\xa5\x04\x21\x0f\x81\x97\x6b\x34\x64\x46\x05\x70\x56\x23\x20\x1c\x9b\x10\xae\xa1\xd7\xee\x2d\x67\x5e\x8d\xe3\x1c\x2d\xdc\xc7\x58\xf8\xcc\xb1\x62\xe9\x32\x29\x83\xdf\x99\xc4\x6e\xe4\xc9\x35\x54\x2b\x33\x1c\x9b\x3c\x53\x2f\x63\x6a\x2a\x84\x89\x90\x7f\x56\x8a\x67\xe9\xf1\x29\x43\x62\xd7\x42\x43\x16\x78\x4f\x9a\x11\x38\x40\x43\xa2\xbd\x4b\x03\xe7\xba\x0e\xef\xac\x74\x34\xcf\xa2\xcf\xa0\x88\x90\x25\x09\x2f\x4f\xb2\xc6\x9b\xca\x20\x56\x82\xca\xd0\x7c\xab\x1b\xc7\xd8\x8b\x55\x08\x25\xb8\xbf\x21\x39\x29\xc0\x22\x41\x5e\xbb\xc0\xf1\x7e\x81\xf7\x24\x25\xe1\x2c\xf6\x4a\x12\x6a\x44\xd0\x9c\x50\x11\xff\xc1\x3a\x74\x21\xca\x3a\xb0\x82\xa2\xdc\x61\x1a\x7d\x60\xc9\x52\xda\x71\xca\x58\xa2\xe4\x40\x22\x5b\x67\xd1\x36\x61\x83\x81\xfa\x3d\x92\x81\x33\x7b\x59\x5e\x16\xb3\xe6\x2b\x5d\x94\x9e\xc5\x46\x22\x0e\x1c\x65\xa3\x07\x74\x51\x92\x8e\xd0\xd9\x11\x5b\xc6\x29\x1b\x0c\xc4\xef\x28\x5c\x47\xea\xd9\x42\xc2\x40\x03\x11\x3f\xe8\xf0\xe9\xb3\x28\xf7\x18\xef\xad\x5b\x98\x68\xc1\x00\x88\xf8\xd6\xf3\x30\x2f\xda\x82\xc2\x67\x33\x41\x9b\x47\x25\xd6\xb5\xbc\x32\x11\xc7\x4f\xf4\x7a\x9f\x18\xc2\x47\x99\x09\xe3\xb1\x43\xa8\x22\x34\x34\x8a\x69\x89\x32\xd9\x5b\x98\x7c\xaa\xb3\x27\x46\x5b\xd7\x56\xa8\xbb\x3e\xf7\xc3\xa0\xaa\xd0\x20\x5c\x6f\xa6\x68\xcf\xfb\xb7\x92\x26\x23\xa0\xff\x22\xd2\x09\x7a\xca\x9f\x93\x92\x3f\x3e\xe3\x8f\x2b\xfe\xf8\x0d\xfa\xc6\x43\x83\xdf\xb7\x19\xa4\x7f\xc3\xd3\xff\x72\xe7\x3e\xe2\x2f\xff\x4f\xbc\x5c\xd8\x53\xb4\x27\x21\x3d\xf3\x07\x4f\x9f\xa1\x6f\xfe\x5f\x70\xb6\x22\x0b\xe3\x6d\xba\x92\x7b\x77\xdd\xd1\x90\xcc\xeb\x4d\xe1\x86\xd3\xbb\x39\x96\xe1\x61\x6b\x70\x5c\x87\xc5\xbb\xdb\x54\x79\x12\x13\xac\xc1\x9c\xdc\x80\x93\x68\xff\x26\xa0\x73\xff\x26\xc0\xc2\x52\x27\xa2\x07\xa5\x15\x30\xa7\xab\x1a\xae\xd1\x54\x6c\x42\x75\x3f\x34\x80\x0d\x44\x51\x98\x12\xee\xa7\xcc\x3a\xbb\x3b\x83\x00\x41\x5f\x2a\x73\xa2\x0a\x0d\x06\xc8\x17\x88\xdb\x53\x9c\x54\xc0\x33\x48\x31\x38\xe4\x5c\xfd\xca\x60\xb3\x28\x83\x4e\xdd\x51\xe0\xf4\x94\xfb\x83\xaa\x3a\x6c\x0f\xea\xae\x7d\xc7\xab\x06\x67\xba\x3d\x28\xd9\x6c\xcc\xeb\x3b\x7b\x68\x0e\xbe\xd1\x3b\x3e\x17\xc5\x22\xdc\xb0\x97\x77\xe0\x19\x80\x77\x40\xb7\x34\x07\x46\x6a\xde\x8b\xd3\xa2\x0c\xd3\x05\xaf\x3d\x51\x42\xc4\x5c\x43\x51\xa8\xa5\xf4\xe7\x83\x81\xdd\xa7\x74\x8e\x15\x86\x4e\xe7\x14\xa1\xe1\x7c\xaa\x5c\xc6\x88\x4d\x72\x8e\x67\x73\x6f\x5e\x07\xb2\x20\xd7\x58\x74\x08\x4e\xa3\x3b\xa0\xda\x0f\x45\xc5\xe1\xac\x6f\x7b\x77\xa0\x9a\x64\x53\xaa\xa3\x88\xf0\x54\x3e\x26\xd9\xad\xd5\xde\xfa\x8c\xc9\xe6\xc8\x6a\x5b\x71\x34\x83\xad\x62\x3a\x1f\x0c\xe6\x42\x8b\xf0\x35\x2c\x7f\x2b\xa4\xc6\x3b\x59\x0d\x29\xea\x9d\xf6\xd0\x30\x1c\x22\x0f\x0d\xe5\xa7\x17\xe0\x41\xb3\xbe\xa6\x5d\x50\x30\x5a\x33\xb0\xcc\xb8\x28\x35\x0e\x05\x4f\x56\x98\x44\xd4\x9e\x46\x4f\xaf\xd5\x61\x40\x34\x1c\x42\xd8\x7f\xff\xda\x8f\x82\x80\x2e\xc4\xef\x34\x54\x2e\x4a\x92\x38\x65\xe2\x42\x93\x86\xe2\xf8\x53\xb8\xef\xa4\xcd\xae\xc0\xe2\xbd\xa6\x28\x62\x42\x3d\x8b\x8f\x73\x19\x27\xc0\x36\xf5\xea\x3a\x7a\x6b\x56\x14\xe1\x8a\xf5\x52\x9e\x2e\x0e\x98\x7a\x45\x19\x2e\x6e\x4c\x97\x0f\x53\x83\xf8\x88\x91\xd5\x46\x52\x40\x5a\xfe\x30\x48\x0b\xb9\x36\x40\xbb\xb2\x42\x72\x23\x49\xd9\x35\x4b\x36\x2c\x2f\x68\x08\x76\x73\xca\x73\x31\x28\x55\xd1\x1b\x48\x9b\xcb\x5b\x53\x5d\x7c\xce\xa7\x3b\x1c\xe5\x6c\x15\x17\x25\xcb\x7f\x84\x1a\x2c\x24\x6a\x7a\x13\x17\x20\x17\x10\x13\x37\xe2\xa5\xe5\xf6\x0f\x9d\x26\x48\x9d\xf3\x94\xdd\xf6\x98\x85\x64\xc9\x9e\xa8\xc7\xeb\x7d\x03\xd3\xf9\x0d\xc2\xd3\x3d\x9e\x1e\x36\x07\x8e\xaa\x7e\x3c\xd2\x26\x27\x34\x3b\x31\xe7\x37\xa3\x38\x85\x08\xb7\xc6\xa2\xc4\xbb\x3d\x49\xe9\xcd\x68\x99\x4e\x97\xd6\x1c\x83\x01\xea\xc9\xdc\x38\xe9\x52\x80\xec\x73\xe4\x9d\xcf\x52\x79\x1d\xda\x77\xf8\xab\x38\x6d\xe7\xe9\x0b\x99\x7e\xc7\x17\x8a\xfd\x74\xae\xb0\x3c\x54\x60\x15\xec\x13\xef\x8d\xa7\xf2\xf2\x85\xda\x39\x20\x9e\xd5\x04\x9b\xc2\xfe\x1b\x8e\x44\x29\x59\xd0\xb9\x1a\x09\x61\xd4\x26\x25\x45\x88\x44\xd3\x25\xac\x31\x2b\xa4\x61\xa3\xfb\x73\x65\x7b\x13\xd1\xd4\x12\x2f\x18\x4b\xad\x8e\x0e\x2a\x84\xe3\xa5\xc5\x57\x2b\x56\x6b\x65\x55\x07\xfe\x61\x4f\x57\x53\x36\x1c\xe2\x08\x2c\x22\x41\xeb\x94\x32\x12\x09\xc4\xa6\xe0\x7a\x8f\x44\x60\x05\x43\x99\xb1\xd4\x4f\x1d\x4c\xca\x21\xbd\xb1\x42\x9f\x05\x64\x07\x3a\xf3\x91\xe9\xc7\x65\x25\x2f\x41\x5a\x3b\x85\xb5\xe2\xe3\x11\x8d\xdd\xb0\xcf\x74\x45\x8e\x34\xaa\xab\x5f\x19\xd5\x13\xde\xd3\xa9\x2d\xcf\xe9\x4b\xba\x68\xce\x67\xaf\xec\x04\x7d\xbc\x44\xe4\xa4\xb5\xbd\x75\xc3\x55\xa2\xc5\x9c\x77\xfa\x7a\x14\xa7\x8b\x64\x1b\xb1\x7f\xb1\x3c\x1b\x0c\xfa\x61\x55\x45\x8a\x34\x5a\x21\x9e\xe9\xf9\x92\x33\xcf\xa7\x51\xae\xa5\xae\x4e\x6c\xd3\x04\xdc\x12\x34\x91\x58\x5f\xbf\x49\x8c\xf2\x79\x67\x03\x83\x5a\xcd\xc9\x6e\x99\x7a\x1a\xcb\x89\xfc\xf5\x38\x76\x13\xde\x4b\xef\x06\x3a\xbb\xef\x6e\xf5\x36\x2e\x0f\xb0\xee\xc8\xd8\xf9\xbe\x61\x0e\xb0\xde\x5c\x96\xa9\xd8\x19\x0f\xab\x4f\xb2\xa3\xcb\x52\x20\xa8\x38\x6d\x10\x6f\xa3\x84\x7d\x62\xc9\x0c\x4e\x36\x5e\xa5\xa5\x65\xa6\x12\xc7\xc6\x9e\x33\x0d\x47\x49\xb6\xb2\x16\x84\xaf\xa1\x9a\x22\x85\xa2\xdf\x37\xf0\x91\x3f\xee\x45\x23\xbb\x3d\x89\x68\x42\x18\xbd\x9e\x2e\x46\xff\x78\xf9\xd3\x87\x57\xef\xde\x52\xe4\x8c\xc6\x23\x1b\x4d\x17\xa3\x17\xef\xde\xbc\x7f\xf5\xfa\xe5\x4f\x1f\x7f\x7a\xf9\x8f\x57\xf0\xed\x64\x32\x5d\x8c\xd4\xdb\xc7\x17\x3f\x3e\x7f\xfb\xc3\xcb\x0f\x74\xe7\x78\xe8\x29\xed\x39\x23\x7b\x94\x2f\x46\x2e\x22\xae\x87\xa8\x78\xb7\x4f\xf3\xc5\x68\x8c\xc8\xb8\x99\x32\x41\x64\xe2\xa1\x67\x32\x05\xed\x25\x93\x10\xa9\xad\x9c\x2c\xe1\x59\x71\x11\x24\xa7\x51\xcd\xf2\x2c\x46\x35\x67\xfa\x32\xfd\x14\xe7\x59\xca\xa9\x26\xe5\xcc\xd0\x11\x2d\x9f\x15\x49\xb2\xd5\x8a\xe5\xde\x0d\x7f\xf0\x42\xd2\x9c\x07\xcf\x9c\x5f\x3e\x07\xf1\xd2\xd2\x7c\x87\xe0\xbd\x80\xf1\xc8\x15\xe3\x01\x39\x6e\xaa\x6a\xde\x24\xd1\xcf\xf3\x15\x68\x46\x4b\xc5\x58\x16\xf5\x38\xfa\xe8\x20\xc1\x92\x74\x17\x08\x4f\x23\x75\xe0\x63\x6e\x32\x24\xc4\xc2\xaa\xe8\x86\x53\xdc\x51\x9a\x95\xf4\x46\xde\x16\x2a\xec\x0e\x03\x3a\xdf\xeb\xde\xbf\x17\x3b\x91\xd7\x44\xcf\x7b\x7b\x3e\x6b\xb6\xac\xf6\x32\xa2\xae\xa6\x55\x82\x68\x49\x4c\xcc\x0d\x3d\xd9\x09\x93\xd5\x37\xe1\xc6\xdb\xd9\x1e\x8a\xd8\x7c\xbb\x42\xc4\xe1\x02\xef\x32\x83\x09\xbf\x0d\xf3\x14\xe6\x59\x18\xe6\xef\xc9\x77\x2f\xbf\xfd\xf9\x07\xcf\x26\xaf\xde\x7e\xff\xce\x73\xc8\x3f\x9f\xff\xf4\xd6\x73\xc9\xcb\x9f\x7e\x7a\xf7\x93\x37\x26\x80\xb4\xfc\x37\x5b\xb5\xba\xcf\x21\x2b\x70\xfa\x29\x0d\xeb\xe5\xa0\x3b\xe0\x87\xc1\x14\x6d\x53\x21\xd5\x44\xa0\x9d\x22\xa8\x34\x9f\xf0\x8c\x8b\x56\xf2\xc1\x5f\x04\xe6\xb3\x80\x80\x7c\xe7\x6b\x60\xbf\x9f\x2e\x46\x02\x2f\xe8\x8d\x78\xa4\xa1\x38\x93\x6e\x70\x6e\x3c\x65\x4e\x77\xfb\x7a\xd2\xe6\x24\xd4\x14\x73\xce\x6b\x11\x1a\x8a\xdf\xe7\xe1\x9a\xd1\x54\x4b\xce\x7b\xeb\x13\xd9\x60\xf2\xbc\xc1\x67\x90\x95\xc1\x69\xcc\x01\xe1\x16\xa2\x8d\x86\x04\x91\xe2\x9d\x32\xd6\x57\x0d\xf1\x54\xa9\xc7\xbb\xc0\xbc\x37\x10\x3f\x3c\x5c\xd3\x70\x1a\x8d\x22\xb6\x29\xaf\xeb\xb8\x88\xd1\x5e\x9c\x21\xec\xf6\x64\x41\x57\x87\x2b\x99\x44\x74\x75\xb0\x90\xa7\xa1\xf0\x25\xf7\x13\xfb\x14\x03\xef\x7c\x72\x08\x06\xd0\x7a\xb4\x83\xaa\x72\x38\xbd\x9b\xf7\x29\x5d\x08\xbe\xfa\xe9\xc2\x58\x0b\xd7\x16\xba\x64\xeb\x4d\x12\x96\x0c\xcc\x05\x36\x39\x5b\x64\xeb\x4d\x9c\xa8\x25\x11\xa6\xbd\x2c\x89\x58\xde\xe3\xc4\x98\x43\x22\x5b\x1a\xf2\x66\xaf\xbc\x0e\xb9\xac\xcd\x7a\xd2\xed\x69\x4f\xfa\xea\x1d\xf5\xde\x27\x2c\x2c\x58\x6f\xbb\x89\x78\xdd\x9f\xb3\x6d\x6e\x54\x9e\xf7\xca\xac\x17\xf2\x1e\x18\x35\x5b\x68\x18\xf9\x8b\x60\x88\x70\x2f\xcb\x7b\x51\x76\x9b\xae\xf2\x30\x92\x65\x65\xbd\x50\xae\xdd\x25\x28\x38\xe7\x05\x47\x08\x4f\xff\xcc\xe0\x5a\x3d\xf8\x1f\x8c\xcd\xec\xdf\xe1\xb8\x42\xb0\x36\x87\xee\xed\xf7\xd3\x70\x54\xca\x6e\x99\x88\x24\xa6\xa7\xdf\x9a\x9d\xb7\x59\x8f\xd5\xa4\xb3\xb7\x09\x8b\x82\x45\xbc\x15\x55\x05\xc2\xd3\x13\x81\x94\xbb\xb6\x48\xe5\x25\x07\x52\x16\xdf\x55\xb3\x1b\xd6\x45\x8f\x48\x4a\x18\x89\xc8\x52\x20\xd0\x8a\x2e\x46\xff\x78\x33\x6a\x64\x3f\xe2\x30\x2a\x5e\x4a\xbd\xb0\x95\xda\x48\x57\x60\x3a\x3a\x92\xc0\xd6\xa9\x74\x27\xa9\xa3\xc7\x88\x22\x5f\x5e\x24\xac\x10\x97\x7b\xc2\xe7\x90\xea\x52\x56\x28\x99\x21\x61\xf7\xd1\xa7\x74\xb9\x27\x0b\x0c\xb9\xac\x94\xac\xda\x13\x7d\xcd\x7a\xb2\xce\x1e\x1a\xce\x87\xa8\xb7\xc8\xb6\x49\x04\x54\x7e\xce\x7a\xf5\xbc\x5f\xb3\x94\x4f\x56\xca\x39\xf4\x38\x55\xf3\x76\x9a\xa5\xc9\xe7\xde\x3a\x8b\x38\x3c\xf7\x44\x2e\xd8\xc2\xf3\x03\xf5\x6c\xc2\xea\x46\x51\x02\x79\x90\xac\xb2\x73\x8a\xb7\x98\x31\x3a\x97\x79\x3c\x06\x3e\x1e\xda\x79\xc4\xf7\x9a\x97\x63\x7b\x02\x61\xb6\xbc\x43\x9e\x79\xc1\xe5\x99\x39\xc8\x67\xf3\xc1\x20\x04\x49\x77\x30\xb0\x80\x23\x38\x49\x14\x99\xe3\x6c\x04\x31\xde\xc2\xba\xee\x85\x1e\xcc\x3f\xe3\xf2\xfa\x3b\x4e\x7c\x3c\x98\xd9\x76\x2a\x49\xb3\x6c\x23\x3e\x81\x5d\x80\x5a\xa9\xaf\xd2\x65\x26\xbc\x5d\xa8\x2a\x9b\x5c\xd0\x8d\x94\xae\x04\x39\xbe\x51\xfb\xd2\xec\xc6\x5b\x90\x92\xac\xa7\x3a\xa5\xaa\xac\x92\xde\xe8\x2d\x74\x5d\xe7\x2d\xf0\x34\x55\x2c\x5a\x44\x52\x32\xe7\x05\x89\x60\x9a\xb0\x59\x01\xf4\xae\x41\xf9\xac\x68\x64\x76\xb4\x76\x92\x09\xcb\xac\x3d\xc6\xc6\xc9\x4f\x4d\xcd\xc5\x91\x47\x2d\x4d\x83\xdf\x32\xb9\x0f\x6b\x5f\x61\x63\x4c\x6e\xcc\xf2\xc6\xd0\x35\xfb\x68\xac\x0f\x3f\x94\x03\xa8\x2a\xbe\xa3\x09\xdf\x70\x11\xc6\x7b\x3e\x1e\xbd\x1d\xdc\xc8\xed\x20\xd2\x97\xf5\xd2\xe5\xb6\xd1\x7b\x3a\x9f\x86\xcd\x75\x48\x4f\x9a\xe3\x20\x11\xb9\xe1\xfb\x50\x44\x77\x12\x54\x5e\xdf\x26\x6a\xad\x45\xf5\x5a\xbb\x51\x7e\xd1\xf8\xfa\x14\xeb\x8a\x0b\x3a\xf8\xcf\xac\xa4\xa5\x08\xa0\x00\x22\x98\x79\x44\xa3\x58\x40\xb5\xda\x43\x6b\x41\x22\xcc\xc7\xc1\xd1\xa9\xeb\x2c\xb1\x56\xc9\x83\xfd\x97\xfc\x81\xc9\xe7\xd6\x0e\x4c\xf8\x06\x2e\x17\x42\xeb\x68\x73\x01\x96\x0d\x49\x37\x8b\x39\x9d\xd7\x8b\x21\xc1\xd3\xc5\xe8\x43\xb8\x64\xf2\xf4\x8d\xb3\xd0\x2f\xef\x16\x0c\x4e\x2d\x28\xe7\x52\x7f\x2e\xe3\xa4\xa0\x73\xce\x5a\xbf\xa1\xe1\x74\xd1\x41\x9e\xe7\x86\x00\xa3\xbe\x5a\x1c\x85\xf6\xc6\x42\x8b\xe8\xc2\xe2\x1c\xa3\x60\x32\xe8\xa2\xde\xe3\xad\x3f\xc8\x67\xb2\x21\x9f\xc8\xf3\x7b\x0e\x4a\xe7\x78\x37\xe7\x42\xb9\x3a\xbe\xd0\xc7\x42\xea\xf0\xe5\x63\x12\xa7\x6c\x7a\x52\x7f\x7c\xd1\x38\x9b\xf9\x28\x8e\x6a\x44\x61\x08\xb1\xa7\x3e\xf3\x97\x83\xaf\xb2\x66\xf8\xc6\x2b\x56\x07\xb2\xef\x05\xda\xbd\x6d\xf8\x8e\x99\x93\x90\xe3\x99\x32\xa7\x1b\x77\x79\x8e\xb4\x22\xba\x20\x0b\x50\xb2\xc0\x9e\xdb\x91\x03\xa4\xf8\x90\x84\x22\xcb\xd4\xd0\x16\x23\x91\x88\x28\x26\x4d\xa8\x25\xe6\xa3\xa9\xd2\x0c\x2f\x85\x77\x5f\x3a\x9f\xea\xf3\x67\x75\xeb\x6c\x31\x88\xf1\x88\x67\x16\xa3\xbb\x1a\x4c\x1e\x33\x8e\xd5\xf4\x18\x3d\xa6\x87\x4e\x0c\xa0\xc8\x64\x01\x2f\x62\x02\x53\x55\x23\x3e\xed\x05\x8f\x2f\x25\x53\x40\xc0\xd5\xc8\x80\x17\x27\xbd\x84\x61\xc9\xa1\xdf\x9b\x0d\x93\x7a\x24\x23\x88\x5b\x05\x07\x0e\xcb\x12\x7b\xfa\x30\x4e\x7c\x14\x41\x08\x44\x1e\xbc\x27\x27\x6f\xb6\x45\x19\x2e\xae\x59\xe7\x04\x11\x86\x77\x26\x5c\x59\x03\xae\x6b\x59\x14\x99\x60\x8c\x64\xb0\x3f\xf0\xd0\xb3\xb8\x0e\xf3\xe7\xe5\xcc\x5a\x50\xf5\x6c\x8d\x31\x27\xbc\xf2\xc5\x55\x4a\x91\xc0\x57\x44\x14\xed\x20\x74\xe5\x60\x80\x06\xf0\xa0\xc2\x13\xc9\xcf\xfd\xfe\x42\x36\xc5\xee\x36\x39\x6d\x9c\xe9\xae\x46\x1f\x78\x22\x1f\xc6\x6c\xee\x09\x20\xe9\x14\xc1\xb9\xd7\x45\x47\x71\xf1\x53\x96\x95\xb4\x6f\x8b\xc4\x38\xa2\xe6\xc7\x48\x1f\xf8\x85\xeb\xc2\xfc\x22\x52\xc4\xd7\xeb\xb0\xb8\x36\xbf\xf1\xf7\xa9\x34\x23\x88\x57\xf1\x3c\x61\x42\xc8\x34\xf3\x34\xbf\xc8\xb6\x8b\xc3\x7c\x2a\x6d\x4f\xf4\x10\x5a\x73\xd3\x9c\x97\x45\x63\x5e\xa0\x0e\x64\xf4\x32\x9c\xca\xd0\xe0\x71\x44\xe7\xbe\x1d\x4c\x4f\xe6\xd4\x1c\xe1\x5c\xfa\xd6\x74\x70\xab\x4b\x56\xd7\x78\x16\xa3\xb8\xf8\x10\xaf\x37\x09\xb8\xa2\x9e\x6b\x2d\xaf\x10\xef\x89\xdc\x52\x8e\xac\xf6\x7b\x96\xa8\x28\x87\x1a\x27\xad\x6f\xb9\x58\x25\xd7\xa8\xf4\x3e\x46\x43\x13\xd7\x16\x7b\xf2\x6d\x92\x2d\x6e\xbe\x16\x77\xb9\xbc\xa2\xe7\x78\x94\xe5\xf1\x2a\x4e\xc3\xa4\x4f\x69\x34\xda\x84\xe5\xb5\x4e\x31\x76\xb0\xa4\xab\xc4\x10\xf5\xa2\x8c\x15\xe9\x37\x65\x0f\x1c\x32\xf5\xd0\xb0\x55\x83\x30\x1e\x31\x47\x28\x02\x08\x88\x14\xb5\x70\xd4\xe0\xea\x1d\xbc\xb1\xd2\x17\x0d\xf2\x04\x0a\x0d\x73\x63\x15\x13\x58\xc3\x5e\x64\xae\xfa\xfd\xd4\x02\x31\xd1\x5c\xec\x73\x33\xc3\xf4\xc4\x5a\xf0\xa9\x6a\x90\x8a\xc8\xc8\x3e\x5d\x0c\x06\x7d\x4d\x33\xe2\xe2\x95\xec\x0c\xc4\x24\x93\x86\xa5\x07\xf0\x6e\x42\x3a\x6c\x0c\x5c\x39\x02\x9c\x9a\x57\x84\xf3\x3d\xf9\x31\x2c\xae\xff\x54\x45\x1c\x95\x35\x82\xc4\x79\xc1\x2b\x79\x15\xfd\xa9\x2a\x5e\x7d\x87\x8c\x6b\x0f\x84\x48\x44\xfd\x00\x8e\x8d\x57\xd4\x06\x37\x84\x92\x71\x5a\x3d\x5d\x42\xac\x63\xa9\x1d\x31\xf7\x57\x10\x9b\xb2\x24\x0b\xba\x18\x5a\x16\xbc\x17\x8c\x2f\x9f\x32\x83\x78\x1a\x78\x98\x03\x7e\xa1\xd1\x48\xa9\x3d\xe9\x07\xde\x01\xa1\xfe\xc4\x45\x32\xfb\x69\x74\x78\xce\x9f\x58\xe8\x55\xfa\x29\x4c\xe2\xa8\xc7\xf1\xc8\xeb\xa1\xe1\x42\xe2\x90\xaa\x71\xc6\x86\x43\xb9\x13\x14\x1f\x16\x19\xd0\x43\x5b\x9c\x1b\x45\x42\x4f\x32\xc7\x7b\xa1\x88\x22\x91\x50\x21\x10\xef\x78\x41\x4f\xa2\xc6\x0c\x44\xd2\x25\xb8\x90\x71\xe3\x42\xb2\x8e\x4c\x51\x00\xb1\xc2\x29\x9c\xec\xeb\x0d\xb7\xdf\x68\x5f\xdc\x61\x31\xb3\xda\x37\x59\xc4\x20\x3a\x12\x35\x6f\x76\x35\x59\x08\xd7\x87\xfb\xcc\x7d\xf3\xf5\xfe\xf9\x4f\x97\xaf\x9e\xbf\xfe\xf8\xf6\xf9\x9b\x97\x72\xea\x53\x20\x0a\x7a\x8c\x7b\xf2\x5d\x58\x86\x7f\xaa\xd2\xef\x9e\x5f\x3e\x47\x9a\xee\xcf\xf7\x44\x70\x72\x7f\xaa\x8e\x0f\x97\x3f\xbd\x7a\xfb\x83\xac\x45\xc3\xdb\x84\x6f\x27\x50\x38\xc6\xa6\x25\x5b\xb1\x43\x92\x7e\x2f\xda\xbe\xbd\x7c\xf9\xc3\xcb\x9f\x3a\x9b\x8b\x45\x7d\x26\x2f\x63\xb6\x78\x22\xae\xce\xac\x39\xde\x93\x6f\x85\x06\xc9\x9f\x6a\xfa\xdb\x77\xef\x5e\xbf\x7c\xfe\x56\x36\x3d\xcf\xb2\xe4\x58\x4b\xa8\xcc\xb7\xa0\xf2\x37\xe7\x74\x62\xbd\xfe\xf3\x74\x02\xca\x20\x45\xef\xe1\x0d\xce\x22\xeb\x5b\xd1\x83\x53\x35\x75\xba\xb0\xdb\x4f\x57\xc2\xcf\x6c\x4e\x13\xf5\x78\x70\x07\x6c\x5e\x6c\x52\x4a\xaf\x4d\x2e\x4a\x9f\xda\x4f\x93\xd1\xe7\xcf\x54\xcb\x4e\x89\xa8\x8b\x03\xd0\xe8\xc8\xa1\x22\x45\xf7\x5d\x2d\x48\xde\xd2\x37\x02\x10\x70\xf4\x5f\x10\x15\xcd\x60\x80\x04\x15\x17\xe9\x73\x95\x6e\xe3\xaa\x6a\x25\x39\x78\xbf\x37\xd8\x7b\x79\x4f\xf9\xf9\x33\xdd\xed\x15\xaf\x5d\xe6\xe1\xa2\x11\x38\x63\x4f\x4e\x3e\x7f\xf6\x76\x7b\x52\x7c\x5e\xcf\xb3\xa4\xf8\xe8\xed\x84\x93\x2e\x97\xe4\x59\x56\x7a\x63\x52\x73\xc3\xde\x84\xbc\x7c\xf7\xbd\x77\xae\x4f\x28\x2e\x48\x01\x34\x40\xee\x00\xde\xa3\x3a\xb3\xf7\x98\x64\x1b\x96\xaa\x2f\x4f\xc8\x22\xc9\x0a\x06\x7b\xb1\xe7\xd8\xf0\x4d\xbe\x38\x44\x6d\x76\x9e\xe3\x2a\xd1\xd1\x73\xc6\xe4\xc5\xbb\xb7\x97\x2f\xdf\x5e\x7a\xce\x84\xbc\x78\xf7\xe6\x0d\x3c\x9e\x93\x77\xef\x5f\xbe\xfd\xf8\xed\xeb\x77\x2f\xfe\xe6\x39\x17\x04\x36\x5e\xcf\x79\x44\x5e\xbc\x7e\xf7\xe1\xa5\xe7\x3c\x16\xdf\x5f\xbd\xfd\xc7\xcb\x9f\xf8\xfb\x13\xf1\xfe\xf2\xed\x77\xa2\x88\x6b\x13\xa0\x9e\xae\x03\x1f\x3c\xd7\x15\x19\x7e\x7e\xfb\xf2\xc3\x8b\xe7\xef\x5f\x7e\xe7\xb9\x63\x51\x97\x99\x34\x11\x99\x24\xad\xf1\xdc\x73\x62\xf0\x1f\x9e\x7b\xa1\x5e\x3f\x0a\xab\x51\xdb\x73\x1f\x89\x9e\x7d\xcc\xd9\x86\x95\xb1\x4c\x7c\x2c\x13\x75\xae\x27\x20\x1e\x43\x25\x63\xde\x31\x0e\xd3\xb1\x43\x04\xe9\xf0\xc6\x2e\x91\xcb\xda\x1b\x8f\x89\x5c\x66\xde\x58\x76\xe6\xc3\xcb\x5f\xde\xff\xe4\x8d\xcf\x65\x6f\xe5\xeb\x85\xb8\xb8\x1a\x3f\x82\x5f\xa3\xf9\x8f\x9b\x64\x5b\xd8\xde\xf8\x31\x7c\xf8\xc0\x44\xcc\xff\xf1\x13\x72\xf2\xea\x3b\x6f\x62\x93\x97\x7f\xff\xf9\xf9\xeb\x0f\xde\xc4\x21\x9c\xf8\x79\x13\x17\xe0\x24\xf3\x15\xde\x64\x4c\x3e\xbc\x7c\xef\x4d\x26\xe4\x81\xf0\xcf\xe5\xd9\xe4\x01\x4b\x23\xcf\xd9\x93\x92\xe5\x6b\x4e\x6d\x38\xee\xb8\xea\x94\x9f\x9c\x7b\xe8\xe5\xbb\xef\x11\x71\x26\x1e\x92\x33\x89\x88\x73\xce\x5f\x60\x2e\x11\x71\x2e\x3c\x54\xcf\x26\x22\xce\x63\x0f\xc1\x60\x10\x71\x9e\xc8\x4f\x72\x22\x11\x71\x6d\x99\xa2\xa6\x12\x11\xd7\x15\x49\x88\xb8\x63\xf9\x51\xcf\x19\x22\xee\x44\xd6\xd6\x48\x3c\x97\x19\xe5\x54\x22\x32\x76\x3d\x45\xaa\xc9\x78\xec\x69\x42\x4a\xc6\x13\x4f\x93\x36\x32\x56\xe5\x00\xcc\x88\x8c\x2f\x54\xe5\x32\x61\x62\x7b\x9c\x75\x20\x13\xc7\x43\x02\x94\x88\x4c\x5c\x4f\xec\x24\x64\x32\xf1\xd0\x87\x97\xef\x11\x1c\x8d\x45\x5b\x58\x7b\xc5\x47\xcf\xb7\x89\x3f\x26\x6e\xc0\xff\x3b\x01\xf1\x2f\xe0\xf9\x82\x8c\x8d\x67\xc7\xf8\x6f\x07\xc4\x9f\xc0\xf3\x04\xbe\x3e\x86\x9c\xea\xbf\xd3\xf9\xdf\x71\xe0\xf3\x13\xf8\xef\xd8\xe2\xc7\x25\x27\xf2\x17\x7e\xc6\x64\x12\x10\xff\x11\xd4\xe9\x3c\x12\x69\x8f\xa0\xf4\xd8\xf9\x9a\x1f\x5e\x60\x2c\x0b\x88\x86\x5c\xd1\xe5\xe6\xcf\xd8\x86\x16\x5c\x51\x6e\x32\x86\x9c\x13\x31\x74\xf7\x11\x8c\xce\x15\xb5\xb8\x8f\xc5\xdb\x63\x51\xe0\x89\x78\x7b\x22\x6a\x79\xac\x7e\xdc\x20\x20\x1b\x96\x2f\xb3\x7c\xfd\x7c\xd1\xd4\x8c\x0e\xc9\x9c\xb3\xf7\x64\x45\x96\x7c\x07\x08\xe9\x52\xdf\xad\x4f\x8b\xdb\xb8\x5c\x5c\x5b\x2b\xbc\x5b\x84\x05\xeb\x39\x9e\x3a\xc1\x63\xb7\x3d\xd6\x90\x9a\x97\x7e\x78\xea\x04\x42\xfe\xfc\xf8\x00\x4f\x21\xbf\x7b\x3c\xbf\xdf\xce\x3b\x16\xdc\xd8\x03\xda\x99\x57\x56\xbf\xf4\x43\xa3\xdc\x3c\x67\xe1\x8d\x28\x3d\x39\x5e\x9a\x17\x75\xbf\x5c\xc3\xf9\xfd\x35\x9c\xa8\xb2\x7e\x77\xf1\x8b\x7b\x8b\x77\x97\x79\x74\xef\x90\xbb\x4a\x3c\xfe\xd3\x25\x9e\xa8\x12\x3e\xef\x46\x60\x7e\x72\x6c\x4f\x00\x45\xf0\xbb\xfc\xbb\x64\x21\x1e\x50\xf1\xa1\x91\xdb\x69\xb6\xad\x45\xc5\x26\x80\xb5\x86\xc0\x97\xe0\xed\xb8\x5f\x55\x5f\x47\xb5\x47\xea\xd3\x08\xc4\xb3\x34\xbe\x4c\x8e\x7e\x69\x4d\xba\x21\x90\x89\x59\x3b\xe9\x6c\xe9\xa2\x5d\x4a\xb3\x67\xc7\xe7\xda\x69\x4d\xb6\x79\x50\xa4\x16\x0f\xb8\xbb\x93\xa3\x4f\x0c\x30\x28\x3b\xe2\x76\x95\x8f\xff\xf3\x55\x6a\x74\xd9\xc1\xd6\x2f\x6b\x01\x79\xd6\x6b\x96\xdf\x9b\xe5\x5c\xfb\x3f\xde\x15\xd7\xf9\xcf\x57\xd9\x42\x39\xe3\x78\xa5\x85\x74\x27\xa2\xb6\xf1\xbd\xb5\x69\x84\x4b\x2c\x03\xd9\x9b\x79\x5a\x74\xa9\x3e\x42\xf3\x45\x83\xfa\xf6\x41\xd4\x80\x8f\xe3\xb7\x7b\x7e\x5f\x55\x81\x04\x46\x67\xc9\x8b\x63\xf8\xef\xb6\x90\xb2\x16\xdd\x8e\x23\xb2\xdb\xc2\x3a\x43\x02\xbb\xa7\xd0\x93\xd6\x62\xaf\x65\xa7\xe3\x85\xc6\xf6\xb1\x7e\x8f\x1d\x45\xb9\xf4\xd9\x9a\x3a\x7b\xec\x22\x5d\xe3\xd6\xbc\xab\xb3\x92\xce\xa6\x4f\x44\x91\xb1\x49\x37\x15\x5a\x35\x6b\x6d\xef\x39\x4d\xa9\xfc\x9e\x71\xb5\xb7\x9a\x56\xc1\xfb\xe7\xa2\xbb\xca\xf6\xf6\xd3\x59\xe5\xd1\xa9\x6a\xd6\xd5\x42\x0a\x75\x22\x70\xcf\x80\xda\x28\x11\x7d\x21\xff\x13\x4f\x00\x55\x6c\x3c\x70\x2f\xe6\x41\x6e\x7d\x08\x24\xe7\x77\xdf\xd8\x90\xdc\x06\xfc\x27\x1a\x3d\xfc\xba\x86\x7d\x33\x4b\x3d\x8b\xcd\xf4\x49\xc7\xce\x77\x62\x66\x78\x74\x7c\xdb\x9c\x3c\x3e\x2c\xbc\xdf\x93\x32\x9c\x27\xcc\xf3\x77\x63\xcf\x21\x13\xcf\x25\xe7\x9e\x0f\xdc\xde\x63\x6f\x42\x9e\x78\xe7\xc4\x71\xbc\x0b\xe2\xb8\xde\x23\xe2\x8c\xbd\xc7\x9c\xd5\xf7\x1d\xf2\x24\xe0\x6c\xbe\xef\x10\xc7\x0e\x38\x8f\xcf\x9f\xdc\x80\xb3\xf4\xfc\xc9\x09\x38\xdf\xce\x9f\xc6\x01\xe7\xdb\xf9\xd3\x24\xe0\x8c\x39\x7f\x3a\x0f\xf6\x64\xe7\x78\xfe\x98\xff\x8a\xa4\x0b\xde\x9c\xf3\xe8\x7f\xb7\x3d\x97\xb8\xb2\x45\x17\xea\x9b\xa8\x07\x9d\x72\xa1\x1e\x9e\xc8\x07\xd7\x56\x0f\xae\x7a\x18\xab\x07\x59\x6a\x4f\x76\x13\x2e\x71\x5e\x70\xb9\xf4\x11\x17\x46\xff\xfb\x80\x73\x1d\xd5\xe4\xe3\x2f\x8e\xe8\x44\x35\xeb\xba\xff\xff\x6c\x56\x80\x8f\x7f\x16\xf0\x83\xa7\x3a\xed\x42\x3f\x3d\x51\x4f\xa2\x66\x78\x72\xf5\xd3\x58\x3f\xa9\xb2\xba\xea\x89\xae\x7a\xa2\xab\x9e\xe8\xaa\x27\xba\xea\x89\xae\x7a\xa2\xab\x9e\xe8\xaa\x27\xba\xea\x49\x5d\xf5\xb9\xae\xfa\x5c\x57\x7d\xae\xab\x3e\xd7\x55\x9f\xeb\xaa\xcf\x75\xd5\xe7\xba\xea\x73\x5d\xb5\x01\x90\x0b\x5d\xf5\x85\xae\xfa\x42\x57\x7d\xa1\xab\xbe\xd0\x55\x5f\xe8\xaa\x2f\x74\xd5\x17\xba\xea\x0b\x40\xda\x47\x9e\x3b\x26\xae\xe3\xb9\x13\x32\xb6\x3d\xf7\x9c\x9c\x4c\x6c\x98\xb1\xc7\x01\x97\x3c\xf9\xd3\xa3\x80\x4c\xc6\x9e\x7b\x21\xb3\x3f\x69\x64\xff\x42\x6e\x2e\xac\xfd\x89\xdc\xce\x57\xe7\x76\x1d\x6f\x3c\x26\xee\x85\x37\x76\xb9\xf0\xcd\x09\xca\x24\xe0\xa2\x37\x7f\x3a\x0f\xcc\xb2\xaa\x7e\x18\x75\x0d\x4f\x5b\xc3\xd3\xd6\xf0\xb4\x35\x3c\x6d\x0d\x4f\x5b\xc3\xd3\xd6\xf0\xb4\x35\x3c\x6d\x0d\x4f\x1b\xe0\x69\x7b\xe3\x0b\xc8\xef\x90\xf1\x23\xb1\x74\xc7\x8f\xff\xa7\x94\x0e\x9a\x7f\xf4\xe5\x95\xf3\xc8\x1b\x3f\xf9\xef\x91\xb9\x93\xf6\x3a\xbd\xf8\x0a\x82\x07\xb8\xe3\x3c\xe6\x29\x13\x0e\x87\xaf\x9d\x68\xdb\x9b\x38\x0d\x18\xc9\x3a\x5c\xf5\xec\x92\x09\x6f\x75\xa2\x9f\x1e\x7b\x5c\xce\x77\xd5\xfb\x78\xac\x9f\x74\x9e\xf1\xb9\x7e\xba\x50\x4f\x13\x5b\x3f\xa9\xb2\xba\x05\xf7\x5c\xb5\xc0\x9f\x44\x19\xf7\xbc\xfe\x3e\x7e\xac\xbe\xf3\x27\xd1\x36\x3c\x8d\xf5\x53\xfd\xf5\x5c\x3f\x5d\xa8\x27\xd1\xf6\xf8\xb1\x6a\x1b\x9e\x60\x0a\x26\x40\x2f\x5c\xc7\x9b\x9c\x77\xa1\xa9\x18\xbf\xad\xc7\x6f\xab\xd6\xe1\x69\xac\x9f\xea\xaf\xe7\xfa\xe9\x42\x3d\xc9\x91\xdb\x7a\xe4\xb6\x68\x1d\x9e\x34\xc4\x4f\x26\x17\x06\xf8\x61\x2a\x5c\xd1\xc5\xc7\xc6\x54\x38\x30\xb5\xe7\x36\x71\x1f\x79\x93\x27\x47\xbb\xcc\xd7\x9f\x1c\xf4\xc4\x00\xe3\xb9\x4e\x35\x81\x7b\xa1\x53\x2f\xea\x15\xe9\xe8\x15\xe9\xe8\x15\xe9\xe8\x15\xe9\xe8\x15\xa9\x91\x54\x6d\xcb\xf2\x69\xac\x9f\x54\x59\x01\xe7\x73\xa7\xa3\xd3\xff\x53\x6e\x40\xf4\xfe\xcb\xab\x64\xe2\x9d\xbb\xff\x91\xf5\x7f\xfe\x15\x2b\x52\xe0\xb3\xde\x30\x5d\xbd\x61\xba\x7a\xc3\xe4\x4f\x27\xa2\x46\x57\xef\x98\xae\xde\x31\x5d\xbd\x63\xba\xc6\x8e\xe9\xea\x99\x71\xf5\xcc\xb8\x7a\x66\x5c\x3d\x33\xae\x9e\x19\x57\xcf\x8c\xab\x67\xc6\xd5\x33\xe3\xd6\xbd\x75\x1e\xeb\x1a\x1f\xeb\x1a\x1f\xeb\x1a\x1f\xeb\x1a\x1f\xeb\x1a\x1f\xeb\x1a\x1f\xeb\x1a\x4d\x84\x3d\x17\x08\x7b\xa1\x56\x10\x7f\x7f\xe2\x9d\x8f\x39\x6d\xba\xb0\xc9\xd8\xf1\xce\x27\x72\xd3\x38\x7f\xa4\x36\x8d\x73\xb9\xa2\x1d\x72\xfe\x44\xac\x29\x87\x5c\x38\x7a\x4d\x71\x1a\xf1\xc8\x3b\x3f\x27\xe3\xc7\xde\x85\x4b\xc6\x4f\xbc\x8b\xb1\xc4\xaa\x8b\x49\x17\x95\x93\xdf\x4c\xa4\x7f\xa4\x29\xca\x23\x4d\x51\x1e\x69\x8a\xf2\x48\x53\x94\x47\x9a\xa2\x3c\xd2\x14\xe5\x91\x5e\x30\x8f\x34\x45\x79\x64\x40\xf1\x91\x86\xe2\x23\x0d\xc5\x47\x1a\x8a\x8f\x14\x14\x4f\x9c\x47\x1a\x8c\x8f\x34\x18\x1f\x69\x30\x3e\xd2\x73\xee\xea\xfd\xd1\xd5\xfb\xa3\xab\xf7\x47\x57\xef\x8f\xae\xde\x1f\x5d\xbd\x3f\xba\x7a\x7f\x74\xf5\xfe\xe8\xda\x75\xd5\x7a\xa1\xbb\x7a\xa1\xbb\x7a\xa1\xbb\x7a\xa1\xd7\xbb\x91\xab\x17\xba\xab\x17\xba\xab\x17\xba\xeb\xd4\x54\xec\xe2\xc2\x40\x04\xd7\x48\x87\x91\xfd\x47\x16\xfd\xe4\x2b\x16\xa2\xd8\x62\x26\x7a\x8b\x99\xe8\x2d\xc6\xa0\x8d\x13\xfd\x9d\x3f\x49\x22\x3f\xd1\x44\x7e\xa2\x89\xfc\x44\x13\x79\x5d\xcf\x44\x53\xdb\xc9\x44\x13\x79\xb3\xee\x0b\x5d\xf7\x45\x40\x4e\x64\x21\x03\x38\xae\xce\xc0\x9f\x44\xe3\xf0\x34\xd6\x4f\xf5\xd7\x73\xfd\x74\xa1\x9e\x44\xe3\xf0\xa4\xca\xd6\x75\x6b\x4c\x77\x35\xa6\xbb\x1a\xd3\x5d\x8d\xe9\xae\xc6\x74\x57\x63\xba\xab\x31\xdd\xd5\x98\xee\x3e\x32\xea\xd6\xfb\xb2\xab\xf7\x65\x57\xef\xcb\xae\xde\x97\x5d\xbd\x2f\xbb\x7a\x5f\x76\xf5\xbe\xec\xea\x7d\xd9\x35\x28\x87\xfb\x44\xd7\xfd\x44\xd7\xfd\x44\xd7\xfd\x44\xd7\xfd\x44\xd7\xfd\x44\xd7\xfd\x44\xd7\xfd\x44\xd7\xfd\xc4\x58\xfd\x7a\x47\x1f\xeb\x1d\x7d\xac\x77\xf4\xb1\xde\xd1\xc7\x7a\x47\x1f\xeb\x1d\x7d\xac\x77\xf4\xb1\xde\xd1\xc7\xb6\xe4\xc1\x2e\x1e\xdf\xcb\x79\x9d\x34\x58\x2f\xd1\x15\x57\x77\xc5\xd5\x4d\xf0\xa7\x27\xde\x85\xda\xdf\x1f\xd9\x06\x2e\xe9\xe9\x9c\xe8\x69\x9a\xe8\x69\x9a\x18\x93\xf3\x1f\x64\x5b\x1c\xe8\x85\x73\x1f\x03\xc3\xc9\xb0\x1e\x89\x9e\xb0\xb1\x9e\xb0\xb1\x9e\xb0\xb1\x9e\xb0\xb1\x9e\xb0\xb1\x9e\xb0\xb1\x9e\x30\x78\x52\x25\x34\xb9\xd2\xbb\x9f\xab\x77\x3f\x57\xef\x7e\xae\xde\xfd\x5c\xbd\xfb\xb9\x7a\xf7\x73\xf5\xee\xe7\xea\xdd\xcf\xad\x0f\x09\x1c\x7d\x4a\xe0\xe8\x63\x02\x47\x9f\x13\x38\xfa\xa0\xc0\xd1\x27\x05\x8e\x3e\x2a\x70\xf4\x59\x81\xa3\x0f\x0b\x1c\xe8\xf5\x18\x48\xd7\xc9\x23\x93\x9f\xd6\xab\x66\xa2\x57\xc3\x44\xaf\x06\xc1\xee\x69\x90\x4b\xae\xe9\xa2\xde\x2f\x1f\x8d\xbf\x7a\xbf\xbc\x97\xf3\x17\x93\xe6\xe8\x49\x73\xf4\xa4\x39\x7a\xd2\x1c\x3d\x69\x8e\x9e\x34\xbd\x0f\x8f\x1d\x3d\x69\x1a\x35\xc6\x8e\x81\x10\x5a\x6e\x18\x6b\x49\x60\xac\x25\x81\xf1\x38\xd8\x07\x44\xba\x49\x13\x97\x7d\x85\xb7\x13\xd3\xa3\x81\x1e\x90\x73\x5b\xef\x1e\xa0\x92\x01\xb6\xdd\x2d\x23\x07\xa1\x51\x25\xac\xbe\x43\x30\xbd\xe0\x39\xbd\x43\x7b\x26\xdf\x0e\x48\x44\xfd\x74\x9b\x24\x01\x61\xd4\x0f\x88\x54\xd9\x81\x53\x31\x02\xb1\xd3\xaf\xa9\x4d\x6e\xa8\x4d\x52\x2a\x8f\x6a\x13\x76\xc7\xf2\x11\xb8\x92\xdb\x6c\x4b\x4b\xe9\xaf\x88\xe4\xcf\x9f\xa9\xd4\xc8\x98\xca\x5f\xf1\x81\xd6\x79\xa4\xb2\xf5\xe7\xcf\x4a\x55\x85\xbf\x9a\x46\x6d\xda\xa6\xad\x51\x6f\x92\x64\x0b\x6d\x51\x6f\xa4\xd1\xdd\x1e\x4f\x43\x7a\x90\x3e\x65\xe2\xa0\x2f\x14\xfe\x3c\x4a\x33\x87\xf4\x7c\x2d\xdd\xbf\x36\xd2\x46\x79\x98\xae\x58\x31\xed\xf2\x1a\xd1\xe8\x37\x80\x57\x75\xa8\x4e\xa1\x87\x99\x6a\x27\x03\x6b\x92\x90\x2d\xf9\x9d\xdc\x82\x8b\x2f\x52\x4c\xa7\x78\xb7\xa5\x73\x7f\xae\xaf\x6e\x83\xa9\xf4\x77\x35\x6a\x62\x82\xbf\x0d\xf0\xef\xb4\xfb\x83\x08\x1f\x21\x2d\x86\x28\xa5\xeb\xaa\xea\x82\xe6\x1a\xaf\xa9\xb0\x4f\x20\x6b\x13\x18\x09\xbb\xb3\x70\x55\x39\x44\x79\xab\xac\x8d\x0a\xd7\x83\x81\x25\xf3\x2a\xdd\x19\x7f\x1d\x54\xd5\x1a\x4f\x7f\xa7\x2b\x7f\x1b\x0c\x06\xfc\xbf\xbf\x0e\xf6\xf1\xd2\x6a\x34\xaa\xaa\xf8\xbd\xaa\xfa\xbf\x6b\xed\xd8\x93\xfe\xef\xda\x91\xd7\x27\x8a\x10\x98\x0d\xa7\x78\x57\x50\x3f\x00\x28\x6d\x7a\x71\xda\xe3\x75\x62\x81\x87\x5a\xef\xc2\xdf\x04\x83\x81\xfb\x74\x33\x18\x48\x7f\x88\xe8\x1b\xe9\x38\xa5\x91\x47\xf8\x04\xf8\x64\x8e\xaf\xb8\xce\x6e\xdf\x4b\xaf\x52\x33\xf4\x9e\x4f\x4b\x0f\x14\x38\x7a\x59\x0a\x7e\x15\x7a\x68\x68\x5d\x0f\x1d\x3c\x44\xde\x55\x2a\x2b\x3d\x2c\x6a\xe1\x21\xba\x4a\x5f\xde\x6d\xd8\xa2\x8c\xd3\x55\x0f\x0d\x0b\xa9\x3c\x48\x7a\x08\x0f\x11\xe9\xad\xb2\xb2\xf7\x0d\x1a\x5a\xed\x5e\x09\x88\x0d\xc1\xc1\xca\xfd\xcd\xf7\x7e\x4e\x19\x34\xc0\x22\x9e\xea\x50\xba\x9e\x21\x96\x46\xbd\x6c\xd9\x8b\xf9\x6a\x43\x1e\xba\xbf\x05\x3c\x6d\xe1\xa3\xf5\x89\xec\x20\xb2\xb8\x31\x2c\x50\xd7\x25\x65\x76\xc3\x52\xaf\xb3\x2a\x02\x7a\xfd\xcd\x25\x15\xa7\x2c\xcd\x48\x92\x2d\xbc\x90\xa8\x4e\x7a\xc5\x1e\xef\xf9\xd4\xf3\x59\x35\xd4\xd0\xc1\xf8\x67\x30\x70\x9e\xfe\xde\x54\xf2\x14\x3d\x92\x40\x10\x94\xab\xb6\x0f\x0e\x05\x42\xf7\x36\x59\x51\xc4\x73\x9e\x50\xf6\x40\xd7\xca\xeb\xa1\xe1\xc9\x96\x43\x58\x74\xb9\x87\x86\x6b\xac\x74\x1c\x04\x3e\x49\x35\x87\xb9\x40\x8d\x35\x9e\x4a\x65\xd0\xc6\x10\x4a\x88\x80\xc2\x3a\xbe\x70\x7a\x81\xa7\xb2\xf4\xef\xbe\x13\xe0\xe9\x1a\x0c\x2a\xa6\xc9\xcc\x5a\xd3\x84\x24\xd2\x02\xc3\xba\x69\x11\x1a\x96\xae\xc8\x92\x1e\x34\x43\xae\x69\x17\xf4\x3a\xc8\x14\xb1\x9f\xa6\x83\x41\x7a\x7a\xda\xbc\x78\xf3\x0a\x6d\xe1\xa6\x95\x69\x7c\xde\xb3\xc0\x77\x82\xe9\xed\xe8\x01\x8d\x7c\xa5\x41\x7b\x5a\xf0\x94\x8f\x0f\x9a\xa6\x1a\xbe\x0a\x38\x71\x6a\x15\x55\xe5\xe0\xc0\xb0\x77\x31\x8d\x37\xea\x7c\x4e\x50\x1b\xae\xb4\x0c\x36\x8e\x55\x26\xbe\x37\xcd\x3e\x0e\x2b\x14\x5f\xf6\xd3\x72\x30\xb0\x78\x47\x05\x8d\xa5\x7e\x47\xb5\xf0\x85\x6f\x4b\xc6\xb7\x13\x47\xa5\x3b\x41\x80\xa7\x5b\x09\x19\x53\x2d\x46\xe8\x53\xde\x92\x25\xb9\x21\xd7\x44\x92\x60\xc2\xe1\x05\x2a\xf0\xd3\x26\x75\xaa\x09\xdc\x56\x29\x3c\x6e\xa7\x05\x38\xfa\x50\x46\x00\x36\x39\x75\x1f\x16\x98\x44\x34\xaa\x53\x1c\x9e\x02\x61\x3e\xcc\x14\x8d\x38\xc7\x26\xcc\x0e\x34\x3e\xde\x8e\x1e\x68\x0c\xbc\x85\xfb\x35\x4e\x47\x8d\x0d\xc0\x0d\x02\xbf\xb1\x1f\x04\x1a\x2d\x9b\x77\x71\x9e\xf2\x41\xb2\xdf\xd7\x4f\x64\x7e\x68\x13\xb6\x7b\xf9\xee\x7b\xcf\x39\xce\x2c\xa8\xfd\x46\xef\xc7\xb8\xf9\x6a\xd2\x12\x5e\x40\xf8\xe8\x38\x60\x31\x14\x3f\xd0\xe0\x32\xc4\x2d\x22\x50\x2e\xa5\xd6\xff\x71\x9d\xe5\x52\x2f\xfa\x63\xc2\x0a\x89\xe6\x51\x96\x32\xda\x77\x14\xcf\x20\x96\x0b\x55\x8c\x02\x07\x86\xe2\x3e\xc4\xfa\x12\xa5\x80\x8e\xb1\xc8\x78\xe1\x5b\x8a\xd4\x9c\x4d\x45\x54\xe4\x0f\x65\xb8\xb8\xa1\x3e\x7a\xf5\xf6\x15\x68\xc3\x05\xba\x0d\xe0\x1d\x8c\x15\xe3\x34\x71\xde\x36\x16\x89\xd3\xc0\x70\x5b\xda\x92\x35\x39\x06\xc5\x0a\x88\x9a\x15\x8a\xdb\xc4\x56\xda\x39\xd2\x7f\xa9\xdd\x8c\xf3\x1d\x37\x81\xa6\xdc\xdf\x19\x90\xf3\xed\xc0\x1c\xfa\x50\x41\x52\xc0\x65\x38\x34\x6b\x57\x6f\x00\x0c\x9d\x53\xc2\x89\xbf\x87\x32\x78\xf6\x99\x35\xf3\xae\xf2\xab\x74\x56\x5d\xa5\x78\xf4\xf0\x6c\x85\x67\x56\x03\xf8\xc3\x21\x31\x87\xa3\x61\x31\x1c\x4a\x73\x24\xf3\x83\x00\x8c\xee\x4a\x0b\x2e\x07\x60\xf1\x9d\x40\xe5\x95\xc8\x61\x3c\xd7\x56\x38\x27\xda\x94\x91\x6c\x0f\x50\x4b\x1a\xe4\x2b\x5f\x86\x11\x0d\xa5\xf7\xa3\xc6\xc8\xce\x56\xb8\xd1\x4e\x38\x34\xde\x0e\x11\x4a\x3c\x8f\x8a\xed\xbc\x28\x21\x9c\xba\x91\x28\x57\xe4\xfc\xd4\x69\xcc\xe7\x29\x9d\x2b\xee\x13\x20\x7b\x6f\x2f\x04\x8e\x9a\x99\x1b\x2d\x89\x34\xed\x21\x67\x7a\x04\xc9\x59\xd4\x55\x8e\x45\x46\xc9\xfa\xd9\x40\x4b\x98\xd7\x53\x6a\xe6\x33\xec\xad\xcd\x09\x3a\xba\x46\xcc\x9c\x9d\xdb\x49\x13\x87\x5a\x4b\xea\xb0\x74\xc7\xfe\x11\xcd\x4e\x2c\xd5\x45\xd3\x39\xd8\xb1\xc2\x9e\x8d\x87\xa1\xaf\x1d\x0b\xa9\xa2\x81\x4e\xf0\x6d\xf5\x7c\xb4\x03\xa7\xf3\x3f\xb1\xa4\xe5\xf6\x64\x07\x43\x63\x19\x9e\xce\xdb\x01\xfc\x39\x9d\x33\xd7\xb5\x41\xfd\xfa\x2d\x1a\xc0\xe9\xe0\x21\xdd\x04\x9c\xb7\x4c\x64\x81\x85\x11\x62\xcc\x05\xba\xa2\x4d\x6e\x1b\x94\xe3\xab\xf0\xe4\x00\xe7\xd4\x08\x2c\xd7\x7e\xaa\xe1\x8e\x46\xa3\x11\x44\xe1\x1e\x86\xaa\xba\x53\xd7\xae\x03\xff\x9f\x5d\xa5\x67\x2b\x82\x10\xde\x93\xed\x66\x91\xad\xe3\x74\xf5\xc5\x9e\x4d\x5d\xfb\x59\x58\x1b\xb0\x86\xc3\x26\x01\x50\x9d\x3e\x71\xed\x53\x95\x4d\x5b\xdf\x5b\x61\x9d\xc1\xb5\xf1\xb0\xbb\xb3\x9d\xfd\x33\xd9\xf9\x23\xdd\xd3\x80\xb5\x30\x99\x0b\x23\x76\x4b\xd5\x3e\x74\xb0\xe4\xf8\x4f\x6b\x6f\xa2\x92\xa2\x34\x86\x2e\x44\x05\xb0\xf3\xfe\x0d\xed\x49\xca\xd9\xef\x43\x8f\xc6\xb0\xe9\x61\xd3\xb5\xe6\xcb\x77\xdf\x9b\xd4\xaa\xaa\x2c\x63\x73\xb4\xc5\x6a\x05\xb5\x5f\x63\x2b\x55\x99\x0c\xd2\x22\x29\x1a\x32\x82\x90\xa9\x1d\x57\x7a\xdd\xf8\x69\x9b\xb0\xc2\xc2\x84\xef\xaa\xab\xa7\x3a\x32\xd9\x6a\x38\xc4\xf1\xd2\xb2\xe6\x8d\xe9\x10\x1b\x06\xa4\xe4\xbc\x9c\xcf\xfc\x55\x10\x40\xdc\xe0\x7e\x58\x55\xf3\x7a\x7d\x3d\x0b\xeb\x67\x08\x96\x18\xd2\x39\x89\xe8\x8a\xf4\x1b\x8b\x6b\x99\xb0\x3b\x2c\x78\x19\xf0\x65\x0e\x56\x29\x14\xca\x1e\xdb\x9c\x70\x93\xae\xd0\x13\x6d\xa3\xf6\x35\x94\xaa\xe6\x6a\xff\x1b\x84\xca\xa0\x4d\x0d\x3a\x35\x9f\x35\xf8\x34\xbd\x3f\x34\x12\xe5\x78\xae\xf2\xd9\x55\x3a\x3b\xc3\x47\x48\x91\xb9\x87\x1a\x20\xdc\xb7\xb6\x7d\xcd\x08\xa8\xdd\xbd\x99\xc0\x8a\x26\x67\x40\x0f\x77\xaf\xaf\x27\x72\xc6\x0e\x47\x4c\xfe\x82\x1a\x0d\x28\xc6\x46\x12\x35\xe7\x0b\x3b\xba\x89\x1c\x6d\xbe\x84\x8f\x24\x3c\xca\xd7\xf3\x74\xcd\xd4\x03\x53\x48\x98\x1f\x05\xa4\x83\xd3\xf3\x3b\xd2\xea\xf9\x50\x46\x7e\x59\xca\x24\x5b\x22\x7a\xa8\x60\x20\xd9\x50\xdc\xf0\xb1\x1f\xca\x60\xf7\xd2\xc3\x82\x0c\xfc\x22\x4b\xce\xd4\xc2\xf5\xda\x72\x37\x7a\xcd\xee\xe2\x45\x98\x1c\x0a\xfb\x2d\xd4\xc3\x43\x34\xea\xfd\x9c\xe6\x6c\x91\xad\xd2\xf8\x0f\x16\xf5\x60\xc6\xf4\x51\x44\xf3\x10\x42\x4a\xf3\x08\x49\xf9\x1d\xd4\x47\x0f\x31\x7a\x8f\xf9\xb6\x72\x77\x84\xca\x71\x8a\xa4\xfd\x41\x76\x0a\x46\xe1\x2c\xd4\xf2\xbf\x85\xf7\x64\xce\x56\x71\x7a\xb8\x47\xb5\x00\x2d\x0f\xdc\xf6\x64\x93\x6d\x20\xa2\xe7\x31\x1f\xe2\xed\x72\xd9\x86\x37\xd2\x20\x4f\x5f\x2c\x5a\x74\xcd\xf5\x7d\xf3\x7f\xe2\x04\x81\x20\x61\x7b\x52\xfe\xa9\x0e\xde\x57\x2b\x9c\xc4\x6e\x8b\xeb\x56\x75\x0a\x42\x00\x38\x80\x89\x5c\x76\xde\x6e\xff\x05\x93\x8e\x96\x33\xce\xa8\xf6\xf5\xab\x48\xfb\xbc\xc5\xa9\x86\x64\xae\xf8\x90\x08\xef\xe5\xc9\x48\x24\x8f\x45\x6c\x0f\x5d\x5d\x5d\x5d\x09\x33\x3a\x55\x0e\x56\xe4\xa9\x8b\x67\xd6\xca\xb2\x89\x23\xd5\x53\x45\x67\xd1\x7a\x8b\x30\xe6\xa5\xba\xca\x38\xdd\x65\x98\x28\xd4\xae\x46\x58\x9b\xcb\xb3\x17\x39\x0c\x67\xd2\xd0\x5d\xf7\xea\xe4\xa6\xf5\x89\x58\x51\x72\xa2\x2c\x4c\x54\x06\x25\xfb\xf6\x78\x37\x26\xb2\x1b\x66\xbe\x73\x65\x5c\x22\xf3\x8d\xcf\xa5\x7a\xf0\xb9\x4e\xb9\x50\xe6\x1f\x32\xc1\x3d\x57\xb6\x1d\xaa\x37\x17\xca\x74\x43\xe5\xb0\x95\x65\x86\xca\xf1\x44\xdb\x63\xb4\x53\xf4\x98\xdc\xb1\xb6\x9a\x50\x29\x6e\xd3\xee\xa1\xee\xf7\xd4\x84\xdd\x22\x5b\x23\xdc\xb2\x86\xd0\xa3\x1e\x93\xf3\xe3\xa3\x76\xce\x0f\x9a\xd2\xa3\x9c\x38\xda\xaa\x41\xa5\xd8\xda\x28\xa1\x9d\xa2\x07\x3a\x99\x68\xd5\xfe\x23\x33\xe3\x4e\xb4\xa6\xfe\xb1\xb9\x7b\xac\xb5\xef\xdb\xc8\xbc\xb2\x1c\xe2\x9a\xfc\xda\x15\x3a\x5b\x91\x6f\xd0\x37\x98\x8c\x5d\xad\x8f\xff\xe5\x52\xdf\x70\x36\xef\x1b\x64\x94\xd2\x90\x98\xb8\x12\x01\x5c\x0d\x8a\xf1\x44\xeb\xd2\xb7\x53\x34\x28\xc6\x63\xad\x06\xdf\x02\xce\xd8\x3e\xd2\x21\xa2\x73\x28\x60\xa1\x57\x6f\xff\xf1\xfc\xf5\xab\xef\x90\x56\x6a\x97\x25\xcf\xf7\x7b\x02\xd4\xc8\xf3\x21\xd6\xb0\xff\xdb\xd5\x9d\x6d\x07\x0f\x67\xd6\x8c\x5a\x57\xbb\xab\x1d\xc6\xf8\x8c\x98\x9f\x86\xad\xf7\x9d\x4b\xf6\x3a\x77\x75\x75\xa5\x7e\xc4\xc3\x03\xa3\xfc\x55\x71\xf5\x21\x78\x38\x3b\x3d\xbd\xda\x5f\xed\x55\xea\x95\xa5\x9f\x74\x4e\x5e\xd2\xfa\x2f\x3c\x7b\xd6\x4e\xf8\x4b\x3b\xe1\xea\xec\x20\xe5\xb7\x83\x94\xe2\x21\xdf\x3b\xaf\xe6\x07\x1f\x76\xed\x94\x81\x99\xd0\x3f\x3d\x6d\xbc\xaa\xfe\x37\x7a\x2f\x0b\xaa\x77\xaa\x3f\x8c\xae\x46\xf5\x33\x07\x8f\x4f\xff\x6b\x7f\x55\x5c\x9d\x8d\x70\x00\x30\x39\x91\x40\x39\x1b\x05\x3a\x63\xa1\x81\x7b\xb5\x87\x1e\x1a\x4d\xb5\xdf\x91\x75\x75\xe5\xa3\xa0\xf2\x7f\x43\x01\x7e\x88\x54\xf2\x37\x3c\xf9\x1b\x9e\xfc\x4d\x80\x1f\x7e\xa3\x92\xff\xaf\x7a\x28\xf3\x2d\x83\xee\xf0\xde\xc8\xae\xc0\x87\x65\x98\x14\xdd\x5f\x4e\x67\xbe\x7d\xfa\x24\x18\x76\x7e\xb4\xfc\xdf\xae\x8a\x3e\xfa\xcb\xff\x39\x25\x57\xa3\xab\xb3\xe9\xe9\xb3\xff\x7b\xe5\x9f\x5e\xfd\xf6\xff\xae\x76\xa7\xff\x25\xcb\x34\x46\xae\x47\xe8\xfb\xbf\x5d\x05\xc1\xc3\x2b\x3d\x7c\x0d\xb0\x07\xf8\x2c\x20\xf5\x16\xeb\xed\xd6\x5b\x6f\x27\xb1\x74\x42\xce\xc9\x05\x79\x44\x1e\x93\x27\xc4\xb1\x89\xe3\x10\xc7\x25\xce\x98\x38\x13\xe2\x9c\x13\xe7\x82\x38\x8f\x88\xf3\x98\x38\x4f\x88\x6b\x13\xd7\x21\xae\x4b\xdc\x31\x71\x27\xc4\x3d\x27\xee\x05\x71\x1f\x11\xf7\x31\x71\x9f\x90\xb1\x4d\xc6\x0e\x5c\xea\x83\x8b\xdc\x22\xfe\xc4\xbc\xbe\xb3\x27\xcc\x68\xeb\xe0\xe3\x22\x5b\xeb\x8f\xe3\xf6\x47\x79\xb8\xa7\x33\xd8\xe4\xa0\x7e\x7b\xbf\xdf\xef\x2d\x3c\x3d\x59\xc9\x0b\xc9\xf9\xf4\xda\x70\x98\xba\x9a\xae\x46\xef\xc5\x75\xa4\x36\x7a\x07\xdf\x5d\x7b\x0b\x83\x27\x7e\x4c\xbe\x3d\xe6\x63\x0a\xef\xf6\x86\xfd\xfd\x0b\xe9\x3a\x8d\x5e\x37\x1a\xd8\x29\x97\x6a\xde\x35\x89\xe2\x22\x2c\x0a\xb6\x9e\x27\x0d\xfe\x43\x09\x6b\x73\x15\x41\x78\x91\x45\xac\x20\x21\x59\x50\x3f\x10\xb6\x9e\xdd\xfe\x39\x84\xa4\xe5\xaf\x02\x82\xbe\x7b\xf9\xe2\xf5\xf3\x9f\x5e\x0a\xf3\x7a\x51\x03\x5e\xc8\x0b\x33\xf9\xad\x87\x86\x21\x38\x90\x18\x22\xca\x1f\x3f\x85\xc9\x96\xc9\x18\xf4\x91\xba\x87\x13\xbe\xc8\xed\xe9\xf5\xd3\x70\x14\xe6\x2b\xe5\x6d\x6a\x7a\x0d\x81\xcf\x44\x9a\x7f\x1d\x18\x81\xe8\xcd\x68\x9b\x8c\x7e\x83\xbe\x19\x32\x4d\x9d\xb9\x34\x4c\xd0\xd5\x55\x8a\xf0\x10\x08\x7b\xa4\x62\x9a\x4d\x65\xe7\x54\x67\x87\x08\xdc\xc8\x08\x31\xbb\x87\xb0\x0e\xfa\xbd\x90\x69\xbc\x8e\x3d\x61\xbf\x6f\xc3\xc4\x60\x11\xe7\x0d\xf6\x56\x42\x4e\x07\xdc\xe6\x2c\x48\x33\xad\x4f\xe9\x89\x62\xf0\xfb\x8e\xe1\x0d\xc5\x9e\x2e\x9e\x86\xd3\x85\x72\x7a\x12\x35\x2a\xf4\x17\x01\x01\xb7\x1b\xfa\x95\xd7\x1d\xc9\xf7\x3e\xa5\x4c\x3e\x56\x55\x64\x42\x0d\xbe\x18\xef\x87\x0d\x0b\x41\xbc\x51\x48\xcd\xac\x48\xf4\x57\x81\xae\xc5\x5f\x05\xba\x86\xbd\x1c\xf2\xe2\x3a\x4e\xa2\x9c\xa5\x8d\x31\xb7\x12\xfb\x94\xb6\xc6\x6c\x8e\x37\x5e\x5a\xfd\x46\x55\xfe\x22\x18\x09\x38\x1b\x55\xf9\x8b\x00\xd7\x75\xe8\x9b\x07\xb2\xda\xc6\x91\x67\x2b\x07\x87\x2d\x77\x17\x26\x0c\x39\x82\x35\x9a\xd1\x09\xe0\x7a\xa5\xa0\xbb\x24\x2e\x4a\xcf\x0f\x9a\x27\x72\xd2\x37\xed\xa2\x19\x5c\xfb\x26\xcd\x6e\x53\x61\x49\x56\x4c\x8f\x7e\x51\x2e\x32\xa5\x27\x78\xaf\x6f\x93\x93\x43\x07\xf1\x3c\x99\x85\x8b\x6b\xfe\x8b\xe2\x25\xe2\xbf\xc2\xeb\x36\xa4\x80\x2b\x6c\xfe\x94\x64\x3c\x2b\x78\xfb\x5b\x68\x8f\xe8\x11\x04\x6e\xc4\x47\xbb\xe0\x47\x01\x5d\xf8\x51\x33\x5a\xb8\xf0\x32\x00\x4e\x49\xa4\xc3\x81\x43\x7c\x96\x6e\x8b\xc0\x81\x5d\x28\xa3\x6e\x19\xe0\xb4\x60\xfd\x6d\x38\xab\x28\x22\x60\xcd\xc1\x8f\x48\x60\xcd\xc1\xdf\x76\xbc\xba\x3e\x96\x5f\x3b\xf0\x3d\xf4\xc5\x29\x7c\xe6\x19\x2e\xe2\x34\x9a\x86\xd4\x06\x57\xf3\x12\xc9\xc2\xa7\x8b\x69\x28\x83\x1f\xe8\xd1\xd4\xe6\xc8\x0d\xf7\x39\x0b\x73\x92\x47\x7c\x8e\x69\x3b\x61\x54\x64\x79\x69\x35\x6f\xa7\x94\x0c\x7e\x3a\xdf\xb7\xce\x57\x25\xaa\xbd\xef\xec\x3d\x58\xce\x49\xa1\x4d\x90\x5d\xac\x7d\xa0\xce\xa5\x79\xb0\x9c\x27\x79\xac\x26\x7a\xc3\xd1\x78\x38\x24\xb2\xb3\xdb\x42\x7b\x87\x6c\xbd\x57\xd5\xdc\x78\x6b\x22\x34\x38\x23\xd5\x20\x8b\xa8\x0d\x34\xc3\x1c\xa7\x8a\x1b\xf1\x94\x41\xec\x88\x45\xf3\xb3\x1f\x05\xc4\x7d\xb6\xa8\x2a\x01\xd6\x28\x02\x37\x9b\xd6\xe2\xd4\xa9\x0f\x1d\xf7\x04\x10\xb8\x13\x61\x94\xab\x11\x98\x29\x39\xb9\xd3\x79\x1d\x20\x60\xba\x00\x67\xa7\x26\x74\x24\x10\xad\x05\xc6\xd3\x39\xdc\x83\x76\x7d\x9d\x63\x05\xab\x50\x78\x03\x23\x92\x3c\x2e\x92\xb0\x28\xe2\xe5\x67\xb0\x6d\xb5\x42\x3c\x95\xe1\x1e\x20\x5c\x89\x38\x21\x11\x09\x32\x03\x59\x90\x39\xf6\x90\x70\xac\x22\x32\x49\xe7\x7c\x90\xa2\xaa\x21\x0d\xc4\xe5\xdb\x84\xec\x09\x22\x8b\xfb\x3e\xce\x5b\x1f\xd9\x7a\x53\x7e\xfe\x31\x2c\xae\x11\xd6\x53\x2f\xbe\x00\x10\xc1\x71\x0f\x97\x5d\x45\x1f\xc2\xf5\x3c\x5e\x6d\xb3\x6d\x61\x76\xf6\x7f\xa3\x2b\x8d\x0f\xba\xd5\x6f\xcd\x2e\x4d\x9b\x79\x36\x1b\x96\x46\x7c\xfb\x03\x07\x28\xed\xf5\x0a\xee\xc0\xe4\x19\xf1\x62\x7a\xd0\x27\xd1\xea\x01\x5e\xb6\x70\x91\xf3\x11\x51\x40\x16\x34\xf4\x95\x5b\x08\x45\xcf\xc4\x4e\xff\x1e\x9c\xe5\xcd\xac\x85\x40\x59\x49\x5d\x6a\x2c\x15\xc9\xad\xd1\xad\x58\xf9\x42\xb8\xae\x43\x44\xe6\x80\xa0\x84\x07\x9d\xfc\x50\xb7\xc1\x73\xb6\xbc\x2b\x91\x05\x50\x37\x4c\xa4\x73\x3f\x4e\x56\x20\x45\xf6\x02\x52\x39\x12\x7b\x26\x45\x5a\xb4\x67\x9d\x23\xeb\x2a\xbd\xcc\x00\x22\x24\xf4\xeb\x1b\x5a\xd5\x93\x6c\x23\xa0\xb5\xd7\xbe\x7a\xba\x16\x9a\xe1\x20\xe7\x80\x5e\xf4\xed\xe9\x5c\xb9\xeb\x13\x2b\xe0\xd5\x77\x96\x4e\x91\x1d\x34\x47\x8e\x08\x02\xb8\xd8\xa8\xd5\x99\x86\x97\x5a\x44\x04\xeb\x76\x14\x33\x54\xe4\x35\xb3\xbf\x1d\x59\xa5\xc7\x04\x44\xe6\x12\xc6\x78\x5f\xbb\x28\x3a\x28\x2b\xe0\x2a\x5d\x00\xe2\xe9\x5c\xb9\xa2\x54\xae\xd0\x14\x86\xa4\xd9\x4b\xf8\x30\xeb\x68\x51\x7c\x89\x50\x6b\xe8\x75\xcf\x9b\xeb\xee\xc0\xd1\x23\x10\xb0\x48\x46\x84\x12\xb0\x87\x10\xa9\x4c\xc6\x62\x0f\x55\x98\xf3\x16\xea\x9b\xa8\x77\x22\xe9\x6c\x7b\xba\xcd\x15\x1b\xde\xf7\x71\xd1\x39\x37\xcf\x55\xcf\x11\x9c\xde\xed\x89\x41\xc6\x0e\x56\x69\x1c\x4d\x85\xc7\x1c\x38\x5a\xe3\xc8\x2b\xa0\xc5\xd3\xac\x39\xf6\xe4\xd0\x1a\xb7\x9e\x1c\x75\x34\x79\x52\x2b\x6d\xfe\xc5\x95\xd6\x9d\x83\x0f\x48\x65\x69\x53\x98\x9c\x15\x59\xf2\x89\xbd\x97\x1a\x58\xaf\xc3\xf5\x3c\x0a\x81\xe0\xd4\xe4\xfb\x60\x66\x42\xe5\xb3\xb3\xdc\x6e\xbe\xdf\x26\x89\xf2\xf8\x20\x28\x85\xcc\x35\x85\x08\x35\x91\x9e\x37\xad\xe6\xd8\xc9\x2d\x2d\x02\xdc\x01\xe7\xbf\xd5\x59\xf8\x3a\x90\x37\xff\x0b\xac\xf5\x1f\x8f\x56\xf8\x2e\x4d\x3e\x37\xfd\x0c\xfe\x9a\x6d\x7b\xc5\x86\x2d\xe2\x65\xcc\xa2\x5e\x3b\x2f\xe9\xcd\xb7\x65\x6f\x0b\x5e\xe1\xaf\x59\x6f\x9b\x42\x06\x19\xc1\xa2\x87\x86\x27\x7c\x4f\xe8\x42\x85\xc3\xde\x91\xb9\x74\xb3\x8a\xf7\x7b\xe9\xca\xeb\x88\xd4\xd2\xdc\x45\xe7\x78\x6a\x6c\x90\xe1\xec\x60\x7f\xe4\x3b\x68\xbd\xcd\x86\x87\xdb\xec\x5c\x91\xc1\xe6\x86\xc6\xd9\xcd\x57\xdf\x1d\x2e\xf2\x03\xc4\x3a\xbe\x8e\x74\x8e\x7a\x1d\x36\x97\x7c\x92\x65\x37\xdb\xcd\xbb\xd4\x28\xa1\x32\x76\x90\x3e\x8d\x8d\x06\x9f\xe9\x08\xee\xc5\x58\x0a\x4d\x6e\xb3\xd9\x52\xdd\x40\x18\xe0\xbd\x70\xef\xd5\x41\x01\x05\x62\x44\x61\x19\x72\xfa\x0c\x22\x52\x1c\x69\x47\x8e\x9c\xa7\x8b\x65\x2c\x89\x26\xb2\x88\xef\x3d\x5e\xb0\x97\xb3\x25\xcb\x59\xba\x60\x45\x2f\xcc\x59\x33\xe0\x09\x28\x2a\xd6\x5e\x19\x0f\x70\x44\x74\xf6\xbb\xb0\x0c\x81\x61\xaf\x17\xc4\x57\x31\xd8\x07\x43\x16\x83\x95\x9e\xd4\x8e\x12\xfc\x7a\x5b\x6d\x50\x7b\xe5\x76\xed\xde\x72\xaf\xe3\x92\xe5\x7c\xd7\x99\x2b\x0f\x8b\x78\xaf\xbd\xb4\x7d\x6d\xc9\x79\x96\x25\xb0\x33\x81\xbb\x9d\xa6\x63\x3e\x51\xe4\x58\x55\x52\xd3\x77\x27\x73\xcd\x09\x97\x7e\x3d\x3f\xe8\x76\x26\xef\xe0\x3d\xde\x93\x88\x2d\x92\x30\xbf\x4f\x02\x6d\x56\xaa\x4f\x4c\x08\xdf\x57\xbd\x39\x81\xe3\x10\x2f\xe4\x75\xa9\x25\xd1\xe8\x1f\x44\xc6\x53\x3b\x9f\x60\xdb\xfd\x79\x30\x18\x9c\x58\xcd\x14\xda\x97\x5a\x17\x26\xe7\x0f\x4d\xcf\x21\xc2\xba\xb9\xda\x3b\xd9\x0b\xe5\x23\x05\x10\xa2\xe9\x7d\x98\x44\x0d\x39\x58\x7b\xab\xfd\xff\xb1\xf7\x6f\x6b\x6e\x1b\x47\xc3\x28\x7c\xae\xab\xe0\xe0\xf7\x3b\x22\x42\x0c\x35\x23\x3b\x4e\x5e\xd2\xb0\x22\x4b\x23\x47\x9f\x65\xc9\x91\x64\xe7\xff\x16\xcd\x4c\x40\xa2\x39\x03\x0b\x04\x68\x00\x94\x34\xe1\xe0\x2a\xd6\xe9\xba\xba\x75\x25\xeb\xe9\xaa\xde\x54\x6f\x00\x72\x24\x2b\xf1\xfb\x3c\x9f\x0e\x34\x44\x77\xf5\xbe\xba\xba\xba\xba\x36\xa9\x49\x46\x0d\x8a\x3b\x7f\xc0\xb1\x7e\x92\x3a\x84\x11\x6e\x03\x47\x67\x3a\xbc\x41\xf2\x40\x12\x96\xc9\xf2\x81\xe6\x4c\x03\xc5\xb1\xe3\x83\x17\xd2\x77\xa3\xeb\x1a\x8d\x17\x8a\x00\x4e\x93\x93\x93\x69\xc8\x6f\xcb\xf1\x42\x79\x16\xf1\xf1\x94\xe1\xef\x99\xa5\x94\x5a\x8f\x59\x3d\x5b\x8a\x2b\xf6\x32\x04\xad\x47\xdf\xa1\x47\xb1\xef\x4e\xa2\x83\x22\x2c\x0c\xdf\xd9\x7a\x12\x87\xe9\xc7\xb0\x24\x18\x6f\x4c\x1c\x00\x09\x47\x30\xf8\x63\x51\x5a\x72\xf5\xd0\x3e\xf4\xc1\x61\xa8\x8a\xe0\x12\xdb\x47\xbb\xb2\x29\x58\xdc\xdc\x48\x49\x9f\x7e\x23\x86\xb8\x8b\xc4\x99\xe8\x11\x9f\xbb\x87\xaf\x5e\x1b\x0e\x45\x9d\x53\x97\xb3\x99\x10\x72\x65\x90\x0c\xb0\xca\x41\x49\xc3\xad\x0e\x1e\xbe\x7a\x3d\x68\x4a\x92\x42\x7a\x38\x1e\xf0\x2a\x44\xc0\x96\x60\xb4\x08\xa7\x89\x08\x4e\x18\x70\xea\x1c\x64\xc5\x20\xb9\xb9\x19\x26\x92\xc8\x73\x32\xbb\x54\xbe\x4b\xa7\x42\x30\xb0\x54\x42\x5a\x2a\x15\x50\x51\x8d\x04\xcc\xff\x4a\xde\x26\xaf\x20\x12\xa3\x1f\x9a\xcf\xdd\xde\x89\xbb\xf3\x9f\x9d\xb9\x0f\x9e\x36\xc0\x57\x27\x38\x09\x8b\x2e\x31\xa0\x8e\x08\x5a\xb0\x22\x93\x1b\xad\xba\x27\x77\x15\x25\x24\xbf\x6f\x62\x57\x51\x12\x09\x23\x15\xde\x8d\x34\xd6\x81\x23\x86\x2b\x25\x0c\x4e\xa9\x47\xf3\xe8\x32\xb4\xdd\xe3\x6e\x7a\x82\x5b\x8a\xc3\x00\xc8\x7c\x9c\xd0\xc0\x95\x42\x8e\x9f\xc4\xb9\x27\x64\xd4\x32\xce\x9d\x90\x51\x51\x1a\xe7\xe3\xbc\xbc\x9c\x2e\xa8\xa0\x9f\x9f\x23\xcf\xe0\x8c\xa6\x2f\xfb\x77\x24\x11\x88\xd8\x14\x83\x9e\x42\xdc\xc2\x17\xab\x21\xde\xfb\x02\x08\x6c\x08\x73\xcf\xe2\x7b\xff\xc0\x67\x9f\xcf\x44\x38\xf2\x65\xf8\x20\x19\x05\xb3\x60\xb4\x1c\x05\xf3\x60\xc2\xcf\x86\x9f\x92\x3c\x4b\xf5\x4c\xfe\x94\x54\x59\xb2\xc0\x60\xa1\x02\x7c\x1c\x8c\x96\x13\x5e\xec\x2e\x94\xbb\x3b\x0f\xd4\xbe\x7f\x10\x0c\x21\x7e\xe6\xe0\xf8\x78\x10\x8c\xd8\x28\x08\x83\x09\x6b\xcd\xf0\x34\x6e\x70\x11\x43\x9e\xc6\x61\x06\xf1\x60\x06\xf5\x44\xbc\x89\x59\x32\xe7\xad\x4c\x7f\x2e\x82\x36\xc2\x7b\xdd\xeb\xf2\x9b\xed\x6a\x65\x84\x98\x33\xd5\x2c\x48\x18\x26\x25\x2e\x7c\x10\x08\x08\xa8\x7a\x1a\x4c\x76\x56\x65\x47\xa7\xea\x9a\x9b\x44\x32\x30\x9e\xa7\xbf\x0b\x00\x1f\x8c\x62\x59\x53\xdb\xb6\x51\x56\x64\xfc\x22\x9d\xfd\x8b\xd9\x5d\x33\x7b\xf6\xeb\xb6\x6c\x58\x2a\xc2\xe2\x82\xf6\x20\x5f\xd7\x7a\x93\x2c\xd9\x24\xd0\x3b\x2c\x70\x45\xde\x18\x3e\x86\x09\x3c\x23\x23\x8c\xef\x24\xa6\x4c\x1b\xe3\x92\xa4\x43\x19\x51\xce\x99\x12\xf2\x50\x84\x3a\x85\x3f\x17\x52\x3c\x00\x1e\xc0\x9d\x02\x85\x92\x45\x64\xf5\xa3\xab\x2c\x27\xd1\x22\x64\xec\x80\xe5\xcd\xcd\x8e\x86\x62\x22\xc5\xe1\x3b\xc9\xb3\xa4\x66\xf5\x64\xd7\xca\x88\xaf\x15\x4b\xb0\x07\x2a\x74\xc8\xf2\xcd\xab\xbc\x6c\xa4\x4a\x3e\x24\xfc\x94\x54\x5a\xb6\x2f\x43\xf4\x39\xd2\x7c\x7e\x2e\xd1\x37\x00\x9c\x3b\xa1\xa3\x3f\x97\x8e\xff\xf3\xac\xb0\xd2\x04\xe0\x23\x21\x62\x45\x43\x84\x44\x3d\x71\x89\x03\x35\x8b\x4f\xc5\xb3\x46\x62\x28\xbc\x65\x5f\x89\x39\xc8\x46\xa3\x70\x11\x27\xa8\xce\x93\x99\xcf\x65\xf2\x59\xe7\x81\x90\xa3\xf3\xa9\x9c\xc7\x0b\x24\x14\x13\x91\x88\x20\x73\x1a\x94\x68\x01\x6f\x32\x61\xb4\xd0\xcf\x40\x62\x56\xaa\x6c\xf3\x9c\xbd\x6f\x14\x6b\xa8\x52\x40\xc5\x4c\xb1\x00\xaf\xca\x6d\xb5\x64\x1c\xc7\xd4\xa5\x58\x4d\xb1\x10\x02\x93\x29\x51\xa6\x74\xce\x04\xba\xfe\xf4\xaf\x86\x81\xa0\xb0\x10\xab\x2b\x67\x2a\x28\xa3\xd8\x3f\x83\x9c\xad\x9a\x41\x59\x88\xf8\xc1\x86\x84\x5d\x86\xf5\x13\x68\x2d\x98\xad\x21\x0b\xdb\x48\x62\x84\xab\x5d\x36\xd3\x17\x7b\x81\x80\x61\x22\x5e\x1f\x03\x71\x4f\x27\x2f\x9c\x6a\x47\x45\xcb\x58\xb0\x9c\xf5\x20\xc6\xd6\x21\x78\xd7\x50\x06\xb6\xc2\xa0\x49\x32\xce\x55\x38\x15\x56\x1e\x14\xf5\xb5\xf0\x0d\x18\xda\xe5\x28\x90\x11\x97\xac\x3a\x55\xd4\x47\x51\xa9\x0e\x98\xa5\x45\x6f\xfa\xa6\xc8\x2b\x1b\xc5\x01\x5e\xfe\x62\xfc\x73\x73\x33\xe0\x47\x67\x38\x15\x63\x5b\x8a\x90\x03\x5e\x6a\x76\x47\x4f\xc0\x44\xfe\x8c\x06\x82\x36\x71\xd2\x24\x56\xd8\x24\x4b\x43\x29\x9a\xc1\x18\x3a\xb8\x75\xe5\x7e\x03\x84\x89\x93\x36\xf2\x2e\x91\xc7\x4c\xc2\xdc\xa6\xd2\x77\xa5\xb9\x55\xe1\x82\x12\x4e\x75\xa0\x62\x15\x31\x07\x9a\x9b\x9d\xcd\x63\xf3\x73\x14\xc0\x0c\x12\x23\x48\x8c\x02\x6b\xac\xbe\x7a\x59\x1d\x64\x5a\xb3\x0e\xd4\xc9\x04\x9d\x09\x7d\x89\x76\xd4\xdf\x65\x78\x58\x67\x96\xf0\xa4\xed\xab\x71\xb6\x94\x42\x5e\x55\xc4\xad\x32\xe0\x3d\x95\x5a\x97\x32\x55\xe8\xd8\xf1\x63\xe0\x7e\xc8\x4f\x91\xd0\x20\xb0\x52\xff\x5a\xf7\x24\x06\xdd\xef\x3b\x46\x2f\x24\xc1\x25\x8f\xd8\xa0\x22\x1e\xba\x78\x2c\x11\x47\xec\x70\x4a\x21\xe4\x9b\x1d\x60\xc8\x54\x3d\xfa\xc9\xae\x3c\x98\x49\x11\x72\x84\x6c\xdd\x7c\x32\x33\x8e\x2a\x9d\x2d\x63\xb1\x46\x32\xe6\x4c\xad\xca\x4c\x97\x82\x8a\x12\xbd\x71\xe3\x4c\x72\x1f\xb2\x96\x5f\x31\x78\x42\x16\x96\x6a\x82\xa1\x19\xf5\x15\x85\xf5\x10\x8f\x50\xb0\x2d\xc5\x18\x9d\xc9\x35\x1f\xaa\x80\xed\x18\x86\xa3\xa5\xa9\xa2\xbb\x90\xfb\x30\x92\x7b\xc1\xa0\xd0\xfc\xa8\x50\xf6\xdc\x4a\x03\x97\x53\x1f\x0c\x5a\xc2\xb9\x21\x85\xc7\xfc\x3b\x1c\xec\x7e\x2e\x06\x88\x50\x6d\x40\x4e\xe8\x44\x1d\xc2\xfa\x25\x8e\x74\xdf\xa7\xcd\x91\xc4\x77\x82\x80\xb3\x04\xf1\xa9\xbc\xb6\x23\xae\xe8\xd9\x4b\xb5\xc2\x01\x33\xf0\x7a\x39\x9f\xb2\xb1\xc9\xfd\x3c\x58\xc4\x8b\x07\x0b\xde\x8d\xc1\x60\x30\x18\x71\xf6\x6d\x2c\xb9\x21\xfd\x6b\xb8\x40\xb3\x0a\x83\x07\x5a\x8c\x82\x29\x0c\x2b\x5a\x08\x43\xf0\x30\x4a\x46\x31\xc3\xca\x02\xc5\x5d\xcb\xd7\x45\xb8\x20\x3b\x26\x2c\xf6\x56\x75\x5f\xd2\x15\x2d\xf7\xe4\x05\xe2\x05\x51\xa1\xaa\x38\xe0\xe1\x22\x2d\x2e\xc3\xa7\xea\xc6\x2b\xf4\x47\xe0\x78\x1b\x52\x41\x03\x1a\x7b\x2d\xd9\xf0\x2c\x3a\xe5\xeb\x2b\x39\x3e\xa7\x3d\xbc\x28\x04\xa3\xc4\xb0\xd5\x0e\x83\x96\xbe\x38\x7c\xf3\xe9\x46\x7b\xe7\xc0\xe1\x12\x3a\x8d\xaa\xc9\xcb\x37\x43\x7e\xbe\x98\xc3\x74\x28\x42\xb6\x1a\x0c\x8f\xa4\xc9\x7a\x52\x37\xd8\x3a\x20\xb0\x88\x33\x18\x0f\x0e\x9e\x94\xe9\xa0\x85\x87\x18\xfa\x42\xe4\x2a\x34\xf3\xcc\xac\xb8\x14\xf9\x10\x09\xdc\x93\x3e\x52\x91\xc6\x34\x1b\x04\x31\xc3\x95\xc2\xe6\x3f\x7e\xae\x47\xf7\xa2\x40\xbd\x41\x98\xe5\xf9\xe9\x86\xee\xab\xed\x15\x71\xda\xf7\x95\xf6\xa4\x11\x55\xd1\x7a\xf4\x19\x6d\x59\xf3\x65\x42\x3b\x42\xce\x81\xd3\xf6\x2a\xdf\xd6\x57\x4f\x81\x19\x1b\x1a\x7a\x03\x1b\xbd\x66\x9e\x35\x1a\x06\xa3\x3b\xfc\xb6\x75\x73\x83\x37\x91\x41\x1c\xc7\x83\x53\x5c\x23\x94\x75\x19\x5b\x7c\x98\x84\xa3\x80\xaf\x45\xf7\xe1\x20\xa4\x53\xb4\x19\x10\x50\x75\xd5\x18\xdc\xbd\x1b\x88\x4a\xe5\xe0\xc4\x83\xdc\x5e\x8c\xb7\xa3\xdd\xc6\x78\x0f\xb4\x93\x03\x67\xe0\xde\x7e\xd8\xc5\x86\xa2\xbf\x7a\x02\xf9\xee\x0c\xc3\x36\xd2\x02\x3e\x17\x07\x09\x53\x74\x14\xc7\x2a\x4e\x17\xe5\x95\x92\xb0\x8d\xac\x67\x08\x0f\x2e\x2b\xb3\x6d\x7d\x69\x37\x8f\x2f\x52\x65\x94\x44\xc1\x52\x3d\x9c\xa1\x0c\xd4\xa9\x99\x54\x0c\xe3\x11\x72\x70\x55\xe9\x1d\xbb\xd6\xb0\x8d\xbc\xaf\x6e\x7b\xd7\x45\xe6\xbf\xbe\xde\xb0\xf8\xae\x76\x57\x72\xb7\x8f\x74\x26\xfa\x32\x8f\x92\x28\x8d\x8f\xb4\xbe\xc1\x03\xcc\x10\xa7\x28\xd2\xae\x70\x30\xe1\xa9\xad\x9a\x58\x77\x3e\x3b\xe9\xb5\x3c\xa7\xa1\xad\x41\xb1\xcd\x73\xdc\x0c\x0b\xd9\x78\xc2\xb1\xf7\x81\x48\x99\x48\x2c\x26\xab\xb2\x30\xa6\x5f\x77\xe2\x31\x04\x3a\xde\x3f\xfd\xf0\xe8\x22\x2d\x35\x94\x44\xd8\x71\x9c\xd3\xb7\x76\xce\xd2\x11\x94\x47\x06\x11\x1e\xed\x40\x8e\x8c\x8f\x04\x43\xa2\x1e\x79\x47\x59\xd6\xd8\xa5\x54\xf4\x79\xbb\x61\x30\xf5\x54\x72\xdb\x03\x46\xb9\x6b\xed\x2b\x0c\x15\xb0\x2b\x5a\x09\x4c\x1a\x87\x8d\xac\x6f\x31\x41\xde\xd6\xf8\xd5\x5d\x90\x1d\xbc\xc5\x93\xdd\x03\xe2\x66\x7d\xc3\x8f\x77\x70\x69\x06\x71\x02\x1f\x35\xfc\x10\x6b\xc7\x7f\xb7\x60\x20\x64\xb7\x42\xc8\xa9\x8e\x22\xa9\xe3\x4b\xca\x46\xcb\xcd\xf0\xf0\x31\xf2\x33\x4e\x36\x4c\x19\x3c\x7b\xec\x1c\x0e\x7a\x6a\x01\x91\x25\x1e\x06\x3b\xe4\xb9\x94\xce\xac\x02\x16\xe9\x21\x32\x52\xad\x89\x67\x7e\xaa\x63\xac\x5b\xe3\x08\x9c\x60\xe5\xef\x70\x40\xb7\x38\x15\x06\x48\x0f\x47\x9a\x73\x23\x8f\x6f\x07\xb4\x9c\x88\xae\x3a\x5a\x74\x49\xb8\x13\x7a\x15\x0f\x7a\xfa\x2c\xae\x35\x84\x9c\x27\x61\x17\x32\x83\x03\x95\x36\xa2\xef\xe4\x13\x3b\x74\xb4\xff\x2e\xe8\xe7\xb6\xae\x4c\x46\x0b\x8a\x6e\x6b\xf6\x52\xdc\x67\x87\xf2\x0d\x4b\x3b\x87\x52\xfc\x11\x51\x58\xc0\x04\x68\x1f\x5f\x0b\x0e\x3e\x0d\x16\x84\x1c\x4d\x17\xb2\x5f\x70\xa3\x97\xea\xd5\x82\xc6\x4d\x13\xf1\xec\xf3\xb4\xc8\x38\xc3\xb2\x18\xc5\x41\xc4\xa1\x74\xaa\x81\x67\x9c\x5d\x58\x8c\x02\xa1\x74\x31\x78\x20\xf4\x0e\x34\xd7\xc6\x7f\x20\xba\x73\x4e\x6f\x32\xb8\xf2\x33\x77\x46\xb2\x82\x0f\x83\x70\x2a\x95\x0b\x0d\x7e\x46\xae\x0d\x51\xb3\xf0\x06\x4f\xf7\x4d\x1e\xed\xff\x52\x8c\x5e\x76\x64\x69\xf6\x37\x50\x0d\x29\xbd\x19\x1f\x15\xbe\xe5\x71\xe7\x5f\x79\xe4\x54\x24\x01\x15\x2c\x9b\x67\x04\xa7\x11\x6f\x58\x5e\xcf\x6c\x44\xa1\xd8\xa0\x2e\xce\x49\xa4\x9a\x89\xd8\xe1\x58\x43\x0f\x31\xe9\x38\xa8\x60\xef\x1b\xc9\x3d\xde\x59\x1a\xb8\x62\xf3\x54\x4b\x3f\xce\xd0\xeb\x00\xc1\xc3\x54\x5e\x04\x56\x70\x11\x30\xd1\xc8\x5a\x96\xa9\x66\x38\x3d\x5c\x25\xa9\x94\x8d\x82\xa9\xaa\x52\x9c\x69\x32\xdb\x65\x23\x7a\xdb\x54\xa8\x2b\x6e\x1e\x86\xaa\x9b\x41\x8b\x12\x61\x91\x4c\xa7\x58\x4b\x2e\x12\x25\xc6\x08\xc2\x28\xb8\x0b\xac\xcb\xdd\x20\xb2\x18\x4b\xaf\xd4\x63\xee\x93\xf8\x49\x31\x1d\x32\x0d\x53\x2f\x3e\xd6\x2c\x5f\x21\x2b\x1c\xd0\xbd\xcb\x93\xcd\xc0\xf2\x9e\xcb\x27\xe7\xc1\x89\x0e\xa2\x47\x60\x77\xc7\xee\xfb\x52\x1a\xfd\x77\x1c\x7a\xa9\x7d\x0f\x89\x96\x76\x8a\xe1\xed\x03\x4e\xd8\xe5\xf1\x31\xd3\xc7\xa3\xf2\xaa\xc6\x67\x0f\x62\xaf\x86\xd3\x94\x43\xe0\xc1\xe8\x64\xa7\xe1\x94\xc9\x83\xd0\xca\x1c\x02\x1f\x17\xa2\x42\xa2\x30\x7b\x59\x44\x96\x10\xdf\xda\xf5\xda\x06\x23\x51\xaa\xd4\x60\xf4\xb2\x82\xc0\xb4\x4b\x29\x2e\x59\x7d\x75\x39\x5d\x8d\x46\xe1\x2e\x8d\x97\xb3\xd5\x7c\x8a\xb1\xc0\x0d\x21\xd1\x14\xad\x57\x50\xb8\x94\x34\xcb\xab\xf3\xf7\x59\xdd\xf0\xe9\x12\x9a\xcc\x69\x38\xc5\xe7\xd9\x2b\xa1\x78\xec\xc8\xe9\xa4\xc8\x56\x3a\xf2\x72\x00\xa4\xdf\x19\x7c\xc6\x8b\xf9\x2f\x78\x92\x51\x71\xd6\x47\x57\x91\xb7\xe4\xec\x6a\x1e\x33\xf5\xde\x99\x46\x0b\x03\x4c\xea\xaa\xca\x52\xf4\x75\x86\x97\x4c\xc3\xc9\xb0\xaf\xcd\xb0\x6d\x23\xdf\x90\x0d\x1c\xd3\x86\x46\xa7\xd1\x32\xee\x6c\x4f\xce\xf8\xe2\xab\xe5\x74\x61\x59\xc4\x78\xfb\xb7\x40\x7b\x98\xe3\xe3\x54\x1a\x8e\x24\xa1\x12\xd1\xb5\xca\xd2\x40\xb3\x0b\x5e\x83\xf2\xce\x6d\xa6\x1e\xd5\xa5\xdc\x0f\x77\x5b\x51\x96\x9b\x80\x0a\x50\xe8\x85\x99\x28\xe5\x4f\x13\x53\xcf\x9e\x58\xfd\xcc\x16\x38\xa5\x11\x3e\xfb\x48\x51\x68\x84\x4a\xd2\x89\xad\x24\xbd\x88\x93\x59\x3a\x8f\x20\x2a\xf0\x83\x25\x15\x7a\x9e\x06\xe1\x64\x69\x4a\x41\x87\x8b\x13\xad\x5b\x33\x3c\xa5\x2e\x6d\xb0\xff\x62\x56\x86\xc1\xe4\x8e\x91\xf0\xf7\xac\xb9\x42\x0d\x98\x20\x1c\x2d\x6d\xf9\x55\x24\x05\xf7\xbe\xc3\x93\x9e\x86\x89\x4b\xd5\xe1\xca\x27\x04\x82\xe0\xb7\x45\x83\xfb\xee\x74\xe2\x81\x60\x96\xcc\xa5\xb0\x9b\xa6\x29\x3d\x27\xf3\x25\x41\xb2\xa6\x8a\x17\xd6\xac\x60\xe7\x6b\x30\x14\x81\xa0\xf5\xa4\xa0\x25\x58\xed\x14\x43\x51\xc9\xaa\xbe\x99\x58\xf2\x07\x97\xd3\xf6\x54\x16\x86\xf2\x72\x60\x0a\x95\x84\xcc\x74\x9a\x48\xdd\x20\xd2\x58\x42\xc7\xe9\xf6\xd6\x15\x1c\x49\xd1\x7d\xb1\xac\xd4\xd9\x9f\xb8\x07\xfe\x42\x2c\x55\x42\x5e\x1e\x8c\x47\x3f\xa1\x51\x46\xec\x79\xe8\x25\xdc\x73\xb4\x04\x81\xdc\xf3\x59\x2d\x7b\x84\x74\x76\xba\x7c\xe0\x9c\x23\x47\xa7\x61\x94\x0e\x88\x6b\xc7\x4b\x0e\x93\x22\xdd\x8f\x56\xf1\xd1\x69\x38\x19\xb2\xf8\x48\x08\xd2\xc4\xb3\x65\xb4\x88\x8f\x84\x5e\xb3\x94\x66\x82\x62\x82\xb8\x1b\x90\x41\x47\x8b\x38\x50\x32\x20\x1c\x8a\x18\x31\x67\x5e\xa2\x40\xf2\x64\x5a\x28\x1a\x86\x13\x27\x0d\x9e\x82\x8d\xa8\xfa\xcb\x07\xc3\x95\x7c\x41\xd1\x67\xa2\xd2\xea\x92\x1d\x3d\x39\x89\x4c\xc6\x7b\xc1\x67\x3a\x04\x6b\x90\x7b\xff\x00\x30\xa1\x82\x91\x86\x37\x37\x72\x76\x08\xc3\x46\xae\x91\x62\xc5\x52\xe8\xbf\xaa\x6a\x1a\x84\x44\xdf\x2a\x52\x45\xbb\xf4\x0e\x14\x12\x71\x86\xfc\x8e\x9a\x29\xe7\x3a\xae\x86\x20\x3d\xa9\xa9\x84\xaf\xf5\x27\xbc\xf6\xc9\xd7\x3c\x2b\x59\xf0\x2b\xf0\xf0\x3b\x32\x6b\x30\xdf\x81\xcd\x15\x94\xae\x33\xf0\xdb\xa3\x75\xe1\xad\xb1\x8d\xc8\x0e\xe8\xb8\xf4\x93\x7b\x2d\x3c\xee\xc8\xf7\x6c\xe7\xd6\x4b\x6d\x54\xf1\x08\x4b\x3a\x8e\xaa\x84\x1f\x49\x16\xfa\x76\x6c\xa1\xd4\xbe\xb7\x0e\xd3\x10\xf4\x45\x6a\xb7\xd3\x74\x76\xdc\xa7\x79\xe9\xfd\xc4\xbb\xfb\xec\x8d\xb7\x8c\x87\x8b\x07\x76\x45\x93\x3b\x4e\x27\x43\x21\xf8\xc8\x56\xc3\xa3\xe4\xf8\x78\x69\x8c\x29\x54\x36\xb2\xb0\x2d\x01\x08\x3d\x3b\x5a\xfb\xd2\xd4\x0d\x90\xb1\xf6\x21\x7b\xb0\x29\x37\x81\xad\xe1\x71\x72\xa2\xcc\x6f\xf5\xba\xef\x1f\x95\x3b\x20\x67\x3c\xd1\xc2\x72\x7b\x2c\x4c\x49\x93\xe3\xe3\x85\xb9\x5e\x52\x03\x63\xd1\x46\x94\x70\x7b\x0e\x91\xbb\xc1\xdd\x51\x42\x3d\x42\xdc\xbb\x8c\xd0\xf5\x09\xf1\x13\x01\xbe\x25\x7e\xfe\x39\xb8\xeb\x78\x08\x03\xf3\x64\x92\x58\x61\x62\x65\x24\x6e\xef\x9f\xde\xff\x33\x66\xc0\x4f\x27\xf3\xbf\x75\xe6\x7f\xa3\xb5\xb3\xd0\x12\xed\x10\x79\x20\xa2\xce\x38\x77\x72\x47\xdf\x4b\xc5\xd3\x50\x12\xa5\xd1\xd2\xe0\xdb\xbd\x77\xd1\x85\xbe\x8b\x8a\x79\xdc\xe1\x35\x71\x92\x46\xfa\xbe\x38\x49\x50\xc5\x99\x45\xfa\x12\x36\xd1\x0f\x53\x52\x2b\x20\x0d\x09\xab\x11\x79\x64\x08\x93\xe5\xf1\xb1\x7e\x69\x76\x4f\xd4\x45\xe8\xaf\xab\x15\x13\xf1\x42\xf8\xc1\xf1\xc9\x16\x66\xe0\x8f\x5c\xf8\x22\x5f\x45\x97\xd2\x3c\x3c\x00\x8b\x37\xe7\xad\xa0\x5f\x10\x48\xcb\xbe\x06\x31\xa4\x5b\x41\x44\x81\x1e\x49\x11\xa5\x0b\x17\x4e\x57\xce\x4b\x4f\xb6\x1a\x0e\x2f\x9d\x5b\xd6\xcd\xcd\x2a\xbc\x94\x8c\x52\x0f\x3b\x1b\x5d\xc6\x84\x7f\x0d\xa3\x3b\xab\x43\x0a\xad\xcc\x42\xb2\xf7\xc2\xb4\x73\x12\x8c\x56\x3a\x71\x55\x4c\x82\xd1\x25\x5a\x55\xa0\x81\x79\x02\x46\xe5\xce\x48\x22\xf1\x7e\xbe\x0a\xbb\xb5\xb3\x8f\x8f\x87\x94\xaf\xa2\x53\x98\xfa\xd3\x0f\x5b\x1c\x2d\x16\xd6\x76\xff\x20\x7d\x9d\x93\xe1\x09\x21\x72\x30\x62\x16\x84\x57\x61\x67\x49\xae\xef\x13\x71\x87\xd7\x64\x8c\xec\x2f\x67\x33\x26\x71\xb0\x93\x47\x17\x41\x55\xc0\x50\x53\x32\x8c\xe6\xdf\xf4\x20\x30\x24\x50\xa2\x43\x81\x9a\x5a\x92\x22\x7f\xc6\xc1\x28\x99\xde\x59\x58\x32\xdc\x20\x68\x5b\xa2\x7e\x11\x80\x0b\xa0\x01\x88\x61\x38\xd9\x86\x6d\x92\xd4\x6c\xb0\xca\x8a\x24\xcf\xaf\x85\x5b\xb2\x01\xf0\xa6\x4b\x7e\xf1\x1b\xac\xca\x6a\x80\x2e\xa0\x06\xef\xae\x50\xf7\xab\x68\xb2\x62\xcb\x94\x6c\x06\x3a\x8c\x8a\x60\xc2\x99\xfc\x20\x5b\x09\x97\xbe\x29\xcb\x59\xc3\x40\x5b\xa7\xba\x1e\xa4\x25\x25\xc6\xf2\x05\x63\x51\x37\x55\xb2\x6c\x06\xac\xd8\xae\x07\x59\xd1\x0c\xea\xab\xb2\x6a\x06\x0b\x8c\x0e\x3b\x60\xef\x37\xfc\x33\x2b\x1a\x56\xad\x92\x25\x03\x2f\xde\xd9\x72\xb0\xb8\x6e\xd8\x80\xbd\x6f\x58\x91\xd6\x83\xbc\x2c\x2e\x07\xf5\x76\xc3\xaa\xc1\xf2\x2a\xa9\x70\x3c\x83\x22\x69\xb2\xb7\x6c\x50\x5f\x17\xcb\xab\xaa\x44\x6f\x68\x60\x29\x31\x58\xe5\x65\xd2\x0c\x36\xc9\xf2\x4d\x72\x29\xdc\x0f\xd7\x03\x50\xa1\x1e\x5c\x96\x4d\x39\xd8\x54\xd9\xdb\xa4\x61\x83\xa6\x4a\x8a\x3a\x63\x45\x33\x00\x95\x8d\x4b\x56\x0d\xe0\xc5\x14\x6e\xa8\x83\x4d\x55\x36\xe8\x5e\xfd\x6d\x99\x27\x0d\x9f\x9d\xb4\xdc\x2e\x72\xc6\x81\x78\xa7\x37\xdb\x45\x9e\x2d\x07\x39\x6b\x06\xd7\x19\xcb\xd3\x40\xf8\x73\x0d\x38\x31\xdc\xc4\x8b\xf1\xcb\xf3\x57\xe7\x2f\x7f\x3a\x7f\x7c\xf1\xf7\x17\x2f\x1f\xbf\x8a\x77\x2d\xc8\x27\xaa\x98\x69\xf9\x44\x05\xf2\x89\xcd\x8c\xcd\x56\xf3\x39\x5a\x82\xf6\xea\xeb\xc6\x77\xdc\xb3\xec\xc8\x6e\x69\x96\xcc\x8f\x8f\xef\xfd\x63\x96\x9c\xfc\xeb\xe1\xc9\xff\x75\xf1\xd9\x7c\x76\x7a\xf2\xdf\xea\xe3\x0f\x52\x53\x38\x09\x1f\x1c\x9d\x4e\x8e\xce\x5a\x7d\x21\x18\xfe\x2b\xda\x84\x8e\x2a\x77\x1e\x5d\x45\x97\x11\x18\xc7\x20\xe9\xbd\x14\xfe\x9e\xa3\x54\xfe\x04\xfb\x60\xa9\xa2\x0d\x83\x17\x27\x38\xf8\x20\xd1\x4a\xf9\x51\x15\xe7\x42\x5b\x70\x7a\x19\x5b\xcc\xdd\x22\xae\x86\xe1\x74\xe1\x6a\xca\x83\x9e\xbc\xe8\xd5\x46\x98\x59\xb7\xd3\x85\xd7\x1c\x81\xc2\xae\x08\xec\xc3\x57\xaf\xe3\xab\xa9\xee\x64\xcc\xa6\x0b\x8f\x7a\x79\x9c\x4c\x17\xd2\xbb\xcb\x12\x8d\xd6\x6a\x16\xa7\x7a\x8a\xa6\x79\x7c\x39\x0c\xa7\x72\x14\xf1\xa5\xcc\xca\xdb\xe1\x75\xf4\x36\x7a\x18\x7d\x13\x6d\x42\x70\x1f\x73\xef\x0f\x47\x77\x06\x7f\x18\xfc\xa5\x7c\xcb\xaa\xb7\x19\x7b\x37\x18\x9c\xaf\x17\xac\x1a\x9c\x0c\x74\xbb\x83\x87\x9b\x4d\x9e\x2d\x13\xd8\x6b\x4f\xaa\x64\xcd\xde\x95\xd5\x1b\x28\xb6\x2c\x37\xd7\xe0\x96\x61\xf0\x48\xfd\xba\x7f\x7a\x76\x76\x72\xff\xf4\xec\x8b\xc1\xeb\x2c\x4f\xd9\xe0\x69\xb1\x1c\x0f\x92\x22\x85\x8d\x5b\x65\x8b\x6d\x53\x56\x35\x2f\x4d\xfe\xfd\x50\x56\x40\x44\x8c\x6a\x4e\xbf\xe4\xd5\x9c\x0d\x5e\x35\x55\xb9\xc0\x7a\x0e\x2a\xf6\x67\x2c\xc6\x7b\x2d\x5a\x7f\x98\xe7\x03\xc8\xae\x07\x15\xab\x59\xf5\x96\xa5\x50\xd5\x5f\xf2\x6c\xc9\x8a\x9a\x0d\x06\x83\x67\xf8\x2b\x1d\x6c\x8b\x94\x55\x83\xef\x9f\xbe\x1e\x88\x4c\xab\xcd\x57\x8c\x0d\xae\x9a\x66\x53\x4f\xee\xdd\xab\x92\x77\xe3\xcb\xac\xb9\xda\x02\x42\xdc\x63\x7c\xea\x7e\xa9\xf1\xef\xf8\x97\xfa\xde\x3a\xe1\xf4\xf3\xde\xb3\xa7\x8f\xce\x9f\xbf\x3a\x87\x16\xf9\xc1\xc6\xe7\x71\x30\x38\x1b\xff\x69\x7c\x7a\xb2\x60\x4d\x32\x3e\x1b\x2d\x93\x22\xa9\xae\xc7\x9f\xa7\x7f\x3e\xfb\xf3\x97\x7f\x4a\xee\x0c\xfe\x70\xef\xce\x60\x68\x21\x1f\xfa\x35\x8c\x2a\xf6\xeb\x36\xab\xd8\xf7\x65\xba\xcd\xd5\x97\xfc\xfb\x4b\x1d\xc1\x0a\x4e\x69\x61\x48\xc1\x63\xd2\xfe\x09\x3a\xdb\xd9\x6a\x28\x88\x21\x66\xc7\x31\xf1\xa2\x28\x8b\xef\x20\x34\x02\x85\x1b\x5f\x5c\xe4\x65\x92\xba\x05\x78\x67\x51\x7e\x52\x5d\x73\x9a\x52\x33\x56\xc4\xbb\x76\x8a\x10\x7a\x23\x80\x74\x2a\x65\x9b\x1a\x78\xb8\x05\xbf\x18\xec\x64\xb9\x19\x6a\x2c\xef\x78\xf6\xc4\x80\x99\xc8\x1f\x60\x27\x21\x46\x1d\x8b\x5f\xb1\x31\x3b\x66\x53\x70\x87\xe0\x7d\xb1\x15\x32\x21\x53\x6d\x49\x0e\x81\xad\xb7\xfa\x67\x8c\xd3\x74\x64\x76\x4f\x06\xa7\xe1\x67\x99\xf0\x93\xf9\xa8\xdc\xe6\x29\x18\x52\xae\xb2\x22\x1d\xac\xa1\x1f\x83\x60\x04\x6d\x80\x45\xc6\xba\x4c\x63\xb3\x1a\x98\x83\x78\x5d\x82\xb9\xa6\x1e\x28\xa4\xc8\x8f\xa8\x62\x60\xdd\x0b\xfc\x24\x1c\x49\xda\xce\x32\x8b\x4f\xa3\x3c\xe6\x65\x95\xc3\x9c\xaf\xf2\x69\xc6\x6f\x8e\xd9\x6a\xc8\xd3\x67\xd9\x9c\x2f\x92\x28\x18\xf0\xb1\x42\x6d\xc2\x71\x11\x26\xc7\xbb\x36\x04\xef\xa0\x66\xae\x31\xa3\x43\xa1\xde\x21\x6b\x0d\xc3\xb0\x85\x51\xa1\x05\x8a\xec\x2d\x55\x58\x14\x95\x29\xa2\x4d\x26\x55\x34\x7c\x73\x83\x37\x3d\x75\xa2\xcb\x46\x40\xde\x09\x83\x80\x5f\x63\x7e\xb6\x3e\x6c\x86\xa7\xe1\x51\x1c\x07\xe3\x40\x2d\x19\xe4\x42\x37\xc0\x3e\x30\x46\x68\x71\xd6\xdd\x0b\xf0\xce\xb1\x49\x2a\x56\x34\xdf\x24\x35\x8b\x79\xeb\x24\x9b\x44\x40\x08\xad\x49\x35\x6c\x76\xd5\xac\xca\x96\x30\x7b\x96\x81\xa4\x18\x12\x78\xbf\x78\xc7\x74\x63\xc2\x1d\x28\xf0\x3c\x14\x2a\x08\x77\x92\x95\xc1\x49\xa7\x45\xf8\xbc\x73\xc8\x50\xc6\x43\x20\xbd\x17\xac\xdb\xbd\x20\xa4\x1b\x60\x7c\xc1\x92\x37\x17\xb0\xd3\x24\x72\x4d\xad\x5d\xba\xc3\xfd\x37\x31\xe9\xc8\x44\x53\x10\x2c\x36\x91\x3f\x5a\xec\x97\xd8\xb5\x66\x65\x63\x4c\xdd\xbb\x01\xad\x52\x22\xb3\x6d\xc3\x61\x28\xc8\xc1\x30\xe0\x08\xb3\xd8\x56\x05\xab\x82\x68\x46\xbe\xee\x6d\x9b\x0c\x54\x79\x49\x52\xca\x56\xac\xaa\x58\x7a\x81\xf1\x55\x2e\x7e\xdd\xb2\x2d\xe3\x30\x12\xb5\xe7\x91\xda\xf3\x17\x17\x29\xdb\xb0\x22\x65\xc5\xf2\xfa\xec\xe2\x22\xa2\xdf\xf7\xe1\x5b\x14\xba\xb8\x08\x77\xc1\xb6\x66\x60\x87\xb6\x6c\x50\xfc\xfe\x23\x6f\x3c\xb6\xea\xe0\x37\x45\x60\x31\x83\x39\x00\x3d\x16\xdd\x41\xdf\xa7\x7f\x83\xce\xc4\x56\x3b\x63\x1f\x10\x94\x06\xb4\x8b\xa5\x05\x70\xb4\x29\x37\xfc\x63\x53\x6e\xc0\x75\x53\x0c\x3d\x18\xf3\x9f\x51\x56\xe3\x75\x54\xa4\xc9\xcf\x28\xab\xa5\x8a\xb0\xca\x91\x09\x51\x56\x3f\x87\x08\x48\x2a\x07\x3f\xa3\x26\x5b\x33\xb0\x6e\x89\x2e\xf3\x72\x21\xbc\x01\x45\xcf\x7f\xfc\xfe\x9b\xf3\x97\xf1\xbd\x9f\xd3\xd1\x3d\xe8\x5c\xc1\x58\x5a\x3f\x3d\x7f\x5d\x5d\x3f\xe2\x8c\xf8\x93\xec\x7d\x4c\x2c\xe7\xde\x87\xbb\xa6\xba\xde\xbd\x1f\x86\x2d\xf0\xe9\x43\x16\xee\x64\xe8\x8e\x23\xc6\x79\x0b\xb5\x99\xb3\xfa\x51\xc9\xaa\x25\xf0\x87\xd0\x83\x21\x46\x66\x52\xbb\x57\xf6\x4c\xa6\xdf\xdc\x60\x67\x90\x07\x14\x89\xda\xb4\xed\x1b\x85\x0d\x43\x58\x7d\xce\x74\xd6\xd2\x1f\xad\x90\xaf\xe9\x8c\x58\xff\x34\xcd\x95\xc4\x5f\x79\x00\x9a\xbe\x3f\xc4\x2a\xc3\x5a\xd9\x06\xf7\x24\x8b\x54\x3e\x3b\x9d\xb7\x42\x50\x84\x37\x0c\xd3\xe4\xe7\x22\x65\x8b\x72\x5b\x2c\x19\xb1\x17\xba\xe0\x87\x47\xd3\xe4\xb8\x1a\xad\x1e\x17\xb5\xbf\xd3\x2d\xa0\x73\x64\xe9\x77\x17\x3e\x84\x87\xe1\xa7\xa2\x49\x4c\x34\x3a\x80\x49\x96\xbf\x63\x24\x60\x72\x22\xe8\xe8\xa2\xb2\xf8\x86\xc3\xc6\x2a\xa6\x98\x1c\xb6\xc8\x88\x36\x15\x7b\x9b\x95\xdb\x5a\xb6\x29\x1e\xd0\xcc\x8e\x00\x39\xb4\x00\x95\xe4\x93\xf4\x4e\x10\x3a\x1b\xb2\xf5\xd5\x09\x0f\xa3\xbe\xad\x34\xb4\x56\x5c\xa1\x02\xef\x85\xe8\x76\xb8\x13\x3f\x86\xbe\xaa\x9d\x41\x85\x6d\x1b\x59\x1a\xb3\x3d\x33\x76\x5e\xa4\xbe\xf9\x3a\x2f\x52\x7b\x81\xbc\x93\x05\x52\x74\x3d\xca\x6d\x9e\xc3\xfe\x13\x57\xe2\x87\x79\xc5\x92\xf4\xfa\x51\x92\xe7\x2c\x8d\x41\xb3\x70\xca\x77\x9e\x55\x09\xbe\xc9\x0c\xc3\x56\x14\x03\x71\xa9\xaf\x8a\x70\xe7\xad\xb8\xa9\xb6\xc2\xd4\xce\x99\x76\xde\x21\x65\x06\x65\xac\x9e\x14\x69\x1b\x03\xf0\xad\xb2\xd6\x72\x73\x17\x55\x17\x6d\x61\xbd\xce\x8b\x94\xaf\xd6\x79\x91\x0e\xfb\x26\x2a\x6c\x5b\xf0\x38\x4b\xd0\xba\x49\xaa\x4b\xd6\x44\x6b\xd6\x5c\x95\xc2\xa4\xb7\x2c\x30\x8c\xdd\x25\x6b\x5e\xe0\x4f\xc3\xad\x8a\xe1\xa5\x18\xc5\xd1\xb2\x34\xfe\x8d\xb1\xce\x29\xfe\x81\xb9\xe0\xbd\x94\xf4\x77\x28\xa0\x2d\xf0\x19\x7e\xcd\xd1\x00\xb7\xba\xac\x63\xaf\x8b\x87\xfb\xc2\x30\x39\x4b\x9f\xe0\x92\x88\xe5\xc5\x69\x80\x58\x7b\x40\x64\x05\x99\xc4\x4a\x25\x67\x85\x63\x05\x63\x3d\x49\x81\xb1\x84\x28\x2a\x3e\x0d\x7c\xd0\x2d\x85\x3b\xd2\xaa\x5e\x7b\x56\xa4\x43\x3e\xb1\x70\xee\x1f\xd4\xf4\x07\x55\xdf\x46\x70\x8c\xeb\x95\x53\x9b\x37\xb2\xd6\xf0\x93\xac\x08\x3c\x08\x20\x9e\x3e\x3e\xff\xe6\xc7\x6f\x1f\x28\xf6\x7d\xa2\x6e\x31\x30\xbc\x58\xad\x95\x0c\x09\xf1\xf9\x03\xef\x4a\x7e\x1e\xea\x92\xfa\x30\xb1\xd0\x37\xdc\xe1\x7d\xfc\x21\xbf\x01\x6f\x91\x12\x29\x2b\x15\x5f\x81\x71\xbd\xbc\x62\xc0\x74\x77\xcc\x0f\x74\x32\x02\xa4\x89\x60\x50\xa1\x98\xd9\x17\x05\x7d\x64\xfe\x3f\xb3\xfb\x11\xb3\xcb\xb1\x57\x4d\x6e\xcd\x9a\xd7\xd9\x9a\x95\x9e\x78\x30\x5d\xbb\x3c\x8c\x44\xf0\x1f\xe2\x0c\x55\x36\xf0\x2e\xc9\x1a\xb3\xcd\x17\xd5\x6b\xf3\xf3\xef\x1c\x44\x7e\x3c\xac\x2e\x6b\x3e\x01\x2a\x9c\xd0\xa9\xe4\xa1\xd4\xf5\x42\x65\x9d\xa9\x35\x82\x86\xeb\xab\x6c\xd5\x0c\xc3\x29\x6f\x32\x3e\x75\xc1\xef\x4b\x70\xd9\x03\x28\x36\x3b\x9d\x4f\x69\x4f\x30\x11\xc3\x7a\x6a\x4e\x73\x48\x41\xc2\x9b\x1b\x4f\xce\x6b\x8a\x27\x08\x38\x0f\xc3\x5d\xa3\x9b\x52\x3d\x3c\xa0\xd7\x2e\x47\x69\xf4\xa0\x67\xe4\x34\x05\xa9\x5c\x4f\x73\xad\xb2\xf0\xcd\x93\x5a\x8c\x9d\xac\xe2\x89\x9c\x07\xbb\x33\x1c\x3a\x0c\x77\xba\x41\x7d\x03\xdc\x89\xaa\xf7\xcc\xf5\x43\xb1\x3d\x7a\xe6\x9a\x83\xc0\x5c\x1b\x3b\x53\xa4\x1f\x1f\x9b\x0d\x1c\xc5\xb0\x95\x75\x32\x87\x1a\x64\x92\xb0\x4b\xb0\x83\x17\xa4\x73\xea\x50\x16\xc0\xde\xb3\xe5\xb6\x61\x0f\x9b\x78\x04\x4c\x5b\xd2\xb0\x11\x48\x29\x9f\x16\xcd\x10\x90\xfe\xec\x34\x9c\xde\x92\xae\xec\x3d\xca\xd5\x05\x61\x25\xc2\x12\x19\x87\xe8\xde\xd3\x93\x9c\x9c\x61\x4b\x07\xe8\x2b\xd3\xa2\x84\xa0\x66\x49\xb5\xbc\xe2\x24\xa1\x1a\xaa\x41\x8b\x0b\x56\x38\xc5\xbf\xd2\xe8\x2d\x8b\x4e\x23\x0d\xb3\x2a\xc2\xe9\x76\x93\x26\x0d\x7b\x96\x34\xac\xc2\x2a\xe0\x22\xa6\x61\xf8\x4c\x69\x51\x77\xd1\x46\xf2\xbe\xd0\xcb\xf2\xc0\xfb\x1a\xd4\x64\x12\xd9\x28\x5b\xaf\x59\x9a\x25\x0d\x8b\x37\xe5\x46\x51\xa9\x3a\x14\x64\x48\xde\x45\x22\xd4\x1d\x83\xce\xe3\x1a\x09\xb4\x56\xe5\x29\xda\xe9\x44\x81\xf0\x2a\x61\xaa\xdb\xe3\x34\x94\xa0\xbf\xd9\x7c\x8b\x69\x2e\x7a\x80\x56\xe0\x2a\x2b\xd2\xd7\xb2\x6b\xe6\x70\x23\xfb\x12\x85\x28\xc5\x8b\x7d\x7d\x72\x66\xea\x35\x10\xa8\x19\x40\xcc\x5b\x18\x60\x8c\x57\xe0\xb1\x26\xec\x54\x6e\xca\xcf\x1a\x3d\xc0\x1d\x3c\x55\x56\x5b\x69\x8d\xcb\x3f\x05\x3a\x00\x36\xec\xed\x2f\x94\xef\xee\xaf\x9d\xad\x10\x07\xd6\xe3\x8c\xdf\x49\x10\x23\x78\xa9\x43\x7a\xa5\xaa\x8a\x67\xd6\xc4\xf1\xa1\xbb\x97\x50\xf9\xf0\x29\xbe\x89\xde\x8c\x48\xe1\xdc\x05\xde\x62\x3f\x05\x06\xe2\x38\xd5\x3d\xf9\x37\xc5\x40\xe0\x91\x3e\x02\x05\x1f\xcb\x5e\x79\x51\x50\xdf\xed\xad\x25\x55\x19\xb1\x0d\x28\xb0\xd0\x11\x0e\xd8\x8b\x3e\x5d\xe6\x2c\xa9\x24\x6e\x2a\xb8\xd9\xfd\x79\xf8\x09\x31\xb8\x6b\xb8\x88\xa2\x9d\xc3\xb5\xb3\x0f\xc2\xe0\xe3\x63\x6c\x37\x8e\x55\x15\xde\x1e\xea\xb9\xf4\x63\xb3\xd3\x38\x2a\x42\xc9\x6f\xad\xb6\x26\x53\xda\x68\xc9\xf9\xc0\x1c\x68\x6f\x6d\x33\x74\x30\xef\x4f\x1b\xb6\xae\xb5\xd8\x2b\x6b\xd8\x3a\xdc\x19\x2b\xc2\x93\x60\x31\xa6\x2c\x91\x71\xe5\xc8\x96\x8a\x74\x35\xa1\x4f\xe8\x43\x4b\xe9\xae\x7b\x4a\x99\xe2\x23\x79\x1d\xbf\xc8\xd5\xe1\x61\xf5\xcb\xc9\x9e\xda\x29\xc8\xdc\x2b\x61\xa0\xae\x33\x41\x0e\xda\x5b\xa1\xcc\x9b\x1a\x9f\x58\x15\x38\x72\x76\x27\x53\x0a\x05\xc5\x69\x28\x1d\xbe\x1c\x1d\x39\xa8\x6f\x67\x11\xca\x64\xb8\x89\x91\xcd\xca\x05\x24\xc4\x08\x67\x02\x22\xe4\xf3\x9f\x60\x5e\x23\xc3\xdd\x4b\x72\x02\x3f\x8e\x8f\x35\x40\x1c\x07\xe5\xe2\x17\xb6\x6c\x02\x91\x8a\xc2\x24\xf9\x21\x49\x9b\xa4\x86\x1a\x62\x8c\xed\x8b\x66\x15\x7b\x6a\xd4\xac\x4c\x7b\xb4\xa2\x3a\xbe\x2c\x18\xf3\x21\x9e\x16\x38\x1b\x2e\x2b\xa8\x67\xd9\xe8\x6c\x1e\xc7\xb1\x18\x94\xcd\x4d\xdc\xd7\xf4\x99\x1f\xaf\xad\x6a\xfe\x05\x8c\x45\xcb\x10\xc7\xd2\xa9\x94\xd0\x29\x85\xea\x78\xd7\x66\x38\x6a\x8c\x6f\x3e\x0f\xac\x13\x13\xc7\xc6\x91\x70\x68\x1c\x6a\xce\xb1\x8b\x1b\x30\x94\x8b\x63\x95\x7b\xac\xe9\xb9\x8d\xe5\x64\xda\xe4\x35\xa6\x8d\x48\x79\xbd\xae\xbc\xa2\xef\xe5\xa5\xac\x4a\xae\x23\xb2\xd0\x7c\x07\xe2\xd9\xa1\x16\x57\x4c\xea\x57\x9f\xeb\x67\x76\xa0\xff\x9a\xc0\x61\x65\x08\x3d\x3b\x9d\x63\x7d\xb3\xb3\x39\x56\x6f\x91\x35\xde\x42\x0c\x19\x92\x6a\xf3\x6c\xdc\xf8\x72\x7d\x38\x0d\xd8\x01\x4c\x3f\x05\x57\xc0\xe6\xe2\x19\xdd\x6c\xa7\x3e\x51\xb0\xba\xaf\xc6\xde\x5c\xb8\xf7\xf7\x17\x7c\x51\x2c\xfb\x0a\xf3\x6c\x7f\x05\x40\x34\xfc\x25\xf5\xb1\x03\x06\x0d\xce\x9b\x81\x10\xc3\x09\x1f\xb2\x2f\xb7\x85\xbf\x9a\x6a\x5b\xf8\x9b\xe6\xd4\xe5\x5d\x95\x6c\x9e\x16\xb2\xd2\x21\xa9\x0c\x05\x68\x32\xe1\xbc\x48\xfd\xb5\xb3\x22\xf5\xd7\xce\x8a\xb4\xab\xf6\xf3\x22\x25\x6f\x0e\x16\x10\x4f\xd7\xb8\x45\x74\x99\xb5\xc8\x8c\xa7\xd2\x57\x50\x2d\x10\xd0\x17\x0e\x7c\x3c\xe6\x7b\x57\xbb\xf4\xd3\xb7\x1b\xf5\xa2\x21\x6a\x24\x92\x65\x9e\x7f\x73\x63\x25\xe0\x1d\xce\x90\x40\xeb\xe4\x99\x95\xfa\xbd\xb8\x59\xa9\x86\x4d\xe9\x89\x7e\x71\x0b\x77\xfa\xb7\x12\x94\x92\x24\x75\x06\xf4\xf2\x21\xbe\x02\x20\x58\x26\x19\x28\x1d\x24\x93\xee\xdc\x8f\x80\x1b\xb0\xee\x47\xc0\xe2\xe0\xd9\xaf\xcf\xb6\x9b\x1b\x05\xf5\x95\x9d\x77\xfe\x7e\x93\x55\xac\x7e\xd8\x48\x7e\x85\x1c\x89\xbd\x63\x70\xa0\x61\x00\x9d\xd5\x63\xb6\xe8\x07\x1e\x8b\x30\x80\x50\x32\x41\xdd\x25\x55\xe7\x09\x62\x78\x2a\x82\xad\x55\x94\xef\xf4\x2d\x1b\xe8\x58\xb4\x2a\xea\x28\x8b\x44\xd7\xf8\x6a\x52\x86\xd0\xb8\xb3\x16\xe5\x3b\x75\x5b\x5d\x15\x75\x6c\x9e\x31\xa7\x51\x86\xcf\xe1\x59\x7c\x16\xe5\xf1\xaa\xf0\x9c\x56\xd0\x86\x92\xa4\xc1\x97\xef\xa1\x2c\x82\x67\xa8\x55\x01\x2a\x03\x6d\x1b\x2a\x52\xad\x82\x08\xed\xfc\xab\x2d\x8e\x42\x49\xa2\xf9\xaf\x93\xa2\x7c\x17\x92\x99\xe9\x63\x58\x09\xab\xaa\x36\x66\x56\xa4\x70\x3a\x75\x42\x9a\x55\x77\xdf\x3e\xd5\x3d\x6e\x4f\xd5\x04\xd2\xac\xda\x03\xbb\x2c\xf3\x9c\x01\x84\x7d\xba\xc5\x27\x67\x96\x6e\x82\x86\x75\xd5\x3e\xf8\x91\xa5\xf3\x85\x86\x02\x9c\x59\xa7\x70\x66\x09\x5a\x01\x29\xc0\x65\x28\x99\x30\xb4\x95\x61\xb0\x46\x75\x30\x41\xaa\xee\x3c\xc5\x21\x40\x39\x81\x44\x3b\x21\x00\xae\x9a\xf8\x34\xe2\xc4\xd5\x58\xe3\x93\xfb\xd1\x3a\x4b\xd3\x9c\x45\xf9\x14\x74\x39\x87\x00\xfa\x15\x2b\xd2\x70\x97\xc7\x43\x56\xa4\x27\x90\x12\xde\xbb\x3f\x45\xc8\x18\xbe\x47\xf9\x49\xfe\x5f\xf7\x25\xce\x7c\x2d\x6a\x9d\x21\xc8\x3c\xdc\x61\x8b\xf8\x39\xba\x8f\x0c\x05\x6f\x1d\x53\xd4\x20\x8c\xc2\x50\x66\xfe\x00\xeb\xbf\x3f\x81\xbf\x2d\xd1\x08\x18\xeb\x03\x83\x1c\x2a\xad\x4f\x6b\xa1\x53\x29\x61\x9f\x32\x03\xc0\xfd\xc7\x74\x17\xf0\x05\xdb\x56\x56\x80\x54\xd4\xd1\x3f\x4c\x07\x41\xcb\xdd\xbc\x8f\xb3\xbe\x27\x7a\x5e\x3b\xce\x51\xac\xdf\x6e\xeb\x78\x27\xdc\x6a\x7a\x1f\xef\xc9\xcf\x9b\x9b\xd9\xdc\xfb\x96\x8f\xb7\x29\xd2\xa2\xfb\x04\x12\xe2\x83\x7a\x3d\x53\x29\x73\x78\x58\x86\xde\xe2\x49\xad\x9f\x03\x64\x87\xdb\xb0\xf5\x8d\xad\xef\x99\x1e\x5b\xf1\x3c\xd9\x4b\x5a\xb9\xf7\x79\x06\x9f\x1f\xca\x62\xc9\x9e\xe4\xc9\xa5\x78\x82\xe8\x98\x3a\x6c\x2e\x76\x86\x06\xaf\x25\xbf\x4a\x25\x06\x4b\x53\xed\x7f\x97\xdb\x41\xd2\x34\x6c\xbd\x69\x58\x3a\x68\xca\x81\xec\xda\x20\x29\x06\x89\xd0\xdd\x28\x06\x09\xb6\x37\x18\x06\x23\x55\xf1\x28\x08\x07\xcd\x55\xd2\x0c\xd2\x92\xd5\xc5\xdd\x66\xc0\xde\x67\x75\x13\x84\xf8\x82\x8b\x3d\x56\x54\x11\xaf\x4a\xfc\x36\xfe\x63\x91\xfd\xba\xb5\x49\x34\x0c\x53\x3c\xb0\x90\xab\x00\x29\xd6\x53\x40\x5a\xd9\x77\xc8\xa3\x10\xf6\x02\x98\x04\xfe\xf3\xf8\x98\xc8\xef\xbf\x3e\x0d\x7b\x24\xbc\x54\x00\x8c\xf7\x26\x14\x91\xab\x26\xff\x9e\x35\x57\x82\x55\xeb\x6d\xdd\x90\x42\xff\x96\xfd\xe8\x7b\xf5\x15\x16\x6a\xb6\x50\xa3\x0b\x73\x70\x87\xd9\x7a\x14\x1a\x31\xe1\x17\xfe\x0f\x52\x89\x68\x53\x65\x65\xf5\x37\x99\xff\x14\xae\x3a\xbf\x1a\x9f\xf1\x69\x84\x9a\x3b\x2f\x56\x42\x2d\x4a\xd7\x2c\x9f\xc1\xba\xf4\x29\x40\xce\xff\x29\xd8\x5d\xb1\x74\xb1\x48\x95\x96\x5d\xf6\x72\x92\xe4\x69\xb9\x6d\x58\x95\x97\xe5\x66\x82\x47\x96\x39\xca\xaf\xcc\x31\x86\x9a\x0e\x50\xd5\x20\xb3\xcc\x7c\xda\xb5\x5b\xf5\x04\x63\xe6\x18\x4f\x92\x6f\x58\x56\x5c\x3e\xe1\xeb\xc9\x52\x23\x43\xe8\x2d\x86\x53\x9a\x18\xcf\x90\xbc\xc3\x87\x30\xf9\x10\xa5\xe4\x14\x2f\xd8\xaa\xac\x44\x07\x5e\x48\xc5\x15\xfa\x35\x46\x88\x28\x59\xf1\x8b\x5f\x0f\x1c\x00\xf8\xe8\x16\xec\x4f\x81\x31\x3e\x74\x20\xa3\x84\x9f\x24\xd2\xa3\x0b\x77\x7c\x8c\xfd\x09\x77\xf8\x77\x18\xb6\x64\x31\x3c\x0b\x81\xa2\x33\xf9\x9a\xa5\x5b\x99\xe9\x02\xf2\xb1\xcd\x9f\x3b\x3a\x9b\x4f\x41\x78\xed\xcf\xbd\x3f\x9f\xe2\x33\xb7\x3f\xfb\xf3\xf9\x6d\x1e\xb7\xb2\xd5\x50\x33\x5f\x1c\xe7\xfa\xa8\x48\x4b\x9a\x89\xbf\x68\x3b\xd1\x44\x6a\xed\xf8\x26\x13\x16\x2d\xdc\xc1\x9f\x21\xd0\xec\xa1\x67\x3f\xc7\xc2\xa3\xfb\x0f\x2a\x8b\x6f\x11\x3c\xff\x6a\xeb\xa4\x84\x02\x61\x78\x84\x32\x5c\x8b\x10\x78\xea\x9e\x2a\x23\x1e\xb5\xbd\x5a\xb3\xd4\x68\xd4\xb6\x2d\xd1\x21\xec\xeb\x4b\x9a\xfc\x2a\x15\xad\xfe\xa6\x66\x87\x10\x3c\x4d\xc2\x6c\x06\xda\x2e\x34\xcd\xbe\x8a\x05\x07\xad\x37\x72\x9a\xfc\x4a\xa8\x22\x67\xa5\x71\x9f\xa9\x74\xfb\xc4\x35\xb6\xa8\xbc\xde\x48\x46\x5a\x72\xa3\x27\x67\x06\xb7\xe9\x55\x24\xf5\x25\xfa\x39\x50\xc1\x49\xce\xfc\xac\x64\x17\xab\xa8\xa6\x17\xb9\x1f\x3e\x8f\x05\xe5\x7b\x50\x63\x2f\x4d\x7e\xe5\x63\x25\x8e\xda\xb5\x5f\x76\xbc\x30\xbf\xb0\xd8\x30\x1f\x6f\x86\x1a\xdf\x42\x6e\x2c\x09\x55\xfb\x37\x3c\xe4\x35\x1f\x95\x26\xbf\x22\x9f\x04\xc6\x9d\x2e\xfb\x24\xf6\x01\x7e\x60\x3d\xf8\xdb\xf4\x2e\xd6\xc9\x31\x68\xac\x88\x49\x57\xa6\x87\x30\x1b\xd2\x18\x15\x1b\x85\x0d\x80\xb0\x13\xa3\xc8\x04\xff\xb4\xe8\x41\x01\x59\x9e\x0f\xee\x98\xc4\x6b\xa1\x15\x22\xbe\x84\x28\x94\xdf\xf1\xf1\x7a\xce\x91\x99\xa2\x9b\xbc\xa0\x7f\x11\xee\x8c\x0a\x10\x88\xa3\xb0\x51\x93\x4c\x1e\xa1\xb6\x81\x59\x44\x5f\x16\xcd\x32\xfa\xca\x28\x4b\xdf\x9f\x83\x2e\xc0\x54\x7e\x7f\x3e\x8f\x61\x6c\xb7\x9d\xb8\xf6\x93\xac\x46\x37\x43\x64\x4c\xb8\x89\xd1\x2e\x92\xfb\x99\x16\x71\xa2\x3a\x5a\xa0\xc6\x39\xea\xe4\xe2\xe9\xa9\x14\x1b\x68\x33\x9a\xed\xf1\x26\x4b\xe6\xa7\x27\x73\xe6\xcd\x93\x8c\x50\xe7\x91\x9d\x39\xa8\xb4\x1a\xe6\x9e\x03\x58\x20\x1e\xc1\xb4\xc6\x42\xb1\xb5\x83\x5b\xfa\x44\x05\x6c\xa1\x67\x28\xa0\xcb\xb4\x8b\x3d\xfe\xc4\xca\x1c\x32\xe2\x9e\xaf\x0d\x83\xe7\xde\x5b\xbb\xc9\xa1\xb7\x38\x77\xee\x79\x4b\x27\xf8\xeb\x5c\xd0\xd9\x0b\xc2\x16\x0a\xce\x2e\x17\x0f\x6d\x52\xb9\x17\xf5\x32\x35\xb0\xa8\x22\x3e\x6d\xdd\xb7\x30\xbc\xc1\xbd\x2e\x1f\x41\xfa\xef\x99\xbe\x98\x3d\x1d\x77\x91\x1b\x0b\xcc\xa0\x3e\xfa\x59\xec\x0b\xeb\x65\xc5\x19\x32\x65\x93\xe8\xfd\x58\xbc\x40\xfd\x0f\x19\x30\x3e\x0e\x02\x97\x67\xbe\x02\xb6\x53\xca\x56\xa0\x8c\x07\xfe\xf7\x33\x0e\x42\x2a\x75\x4b\xc6\x81\xe4\x10\xa9\x52\xbc\x83\x88\xe3\xaa\xbc\x96\x3f\x12\xfb\x3e\xc2\x81\x4d\xb3\xaf\x3c\x22\x4c\xce\x7c\x49\xf0\xa1\x21\xc2\x84\xbb\x77\x6d\x3b\xcc\xa8\xb7\xf5\x86\x2d\x1b\xfd\x7a\x89\xcf\xbd\x22\x39\x8e\x63\xe9\xb5\xb6\x25\xd6\x32\xb7\x29\xae\x5e\x70\x5b\x65\x52\x73\x9b\xe2\xc8\x81\x07\x6d\x4b\x16\x80\xb3\xbf\x49\x26\x0c\x9e\xd4\xc7\x3d\x92\x7c\x98\x4c\xb0\x6b\x7d\xd0\xea\xea\xfb\x17\x8f\xcf\x9f\x5d\x3c\x79\xf8\xe8\xf5\x8b\x97\xff\xfb\xe2\xe9\xf3\xff\x75\xfe\xe8\xf5\xd3\x17\xcf\x5f\x69\x35\x73\x84\x3b\x7f\xfe\xd3\xf1\xb1\x61\xd8\x79\xfe\xfc\xa7\xce\xd2\x47\x3e\xeb\xd0\xee\xb6\x8e\x8e\xf6\x57\x09\xda\x27\x8f\xe4\xe0\xfb\xe4\x96\x1d\x88\xa7\xca\xfa\xe6\xf8\x5e\xc7\x6c\x67\xc5\x15\xab\xb2\x26\x2b\x2e\x2f\x52\x3e\x6b\x1f\x39\xe7\x7c\x0c\x4f\x55\x95\x8f\xb3\x65\xd3\x37\x10\xc5\x7a\xab\xae\x0f\xd1\xc2\x4f\x3a\x04\x83\x8f\x18\xff\x98\x11\xd9\x49\x5c\x22\xb0\x92\xac\x04\xd4\xf1\x31\xfe\x55\xe9\x37\x37\x84\xdb\x69\x69\x2c\xa3\xea\x1a\x84\x9e\x66\x77\x87\x4e\x35\x08\x2a\x2d\x37\x92\xe5\x15\x3b\xa0\x18\xc0\xc9\x73\x2b\x59\x36\x65\x75\xfd\xe8\xc0\xa2\x14\x3c\x34\xc6\x78\x68\x0d\x14\x5c\xd4\xc0\x11\xfb\x69\xf1\x0b\x52\x91\xfa\x80\x3a\xcc\x02\x32\x84\x87\xae\x41\x4e\xa5\xe8\xed\xeb\xdb\xd6\xef\x2d\x67\x4e\xd8\x53\xb7\xb5\x0b\xc9\x77\xee\x6f\xe0\xc2\xb4\x6e\xb9\xe0\x03\x7a\x71\x78\x69\x02\x1e\xb6\x0a\x3d\xe9\x25\x0d\x21\x85\x09\x9a\xf4\x7f\x09\x5f\x12\xf5\xe4\x97\xb0\x28\x45\x48\x08\xc7\x0d\x3f\xcd\x29\x96\x66\x6b\xe6\xf7\x85\x71\xef\xa3\xbd\x22\x0d\x3b\x5a\x5b\x8a\x88\xf0\x81\xea\xbd\x05\xd6\x00\xe6\x36\x12\xee\x7d\x25\x88\x76\xaa\xa2\x68\x49\x54\x33\xa2\xe7\x8f\xca\x32\xd1\x1b\x76\x8d\x41\x55\xc3\x1d\xa6\xcc\xde\xb0\xeb\x79\x0c\x49\x3e\x37\x86\xab\x6d\x0e\x31\xd5\x23\xb1\xb4\xf4\x15\x24\xcf\x52\x08\x78\x84\x10\x0a\x14\x5e\x47\x05\x78\x1c\xc7\x8a\xd8\x52\x19\x3e\xc7\x1e\x21\xc7\x7f\x88\x32\xfc\xac\xb8\x1c\x34\xe5\x40\xf6\x60\x90\x14\x2a\xd2\xb3\xa8\x6b\x32\xf8\x67\x30\x92\x8d\x8c\x82\x7f\x06\xa8\xf6\x57\x94\xd5\x3a\xc9\xb3\x7f\xb1\xf4\xb9\x8a\xc2\xa6\xd2\xcc\x4e\x69\x42\x30\xbe\x4a\xea\xa1\x59\x32\xf4\x59\xc3\x27\x45\x51\x36\x83\x8a\x9d\xa8\x99\xb1\x3a\x11\x0d\x92\x7a\x90\x35\x83\xab\xa4\x1e\x24\x68\x92\x36\x58\x30\x56\x0c\xf2\xb2\x7c\xc3\xd2\xc1\x76\x33\x0e\x84\x41\xa0\x44\xa7\x71\xcd\x1a\xab\x6d\x39\xbb\xa1\xb9\x59\x7c\x90\xc4\xee\x33\x6c\xa3\x6d\xd1\xbd\x64\xbd\x4b\x74\x9b\x99\x33\x7b\x5f\xb1\x75\xf9\x96\xd9\x93\x47\x88\x6c\x2f\x04\xa5\x91\xbd\x80\x94\x14\xf6\x02\xaa\xc9\xf2\x03\xa9\x88\x0e\x9f\x70\x82\xd0\x0f\xd0\xf2\x8a\x09\x97\x84\x46\xdf\x2f\x9d\x35\x04\x5c\x44\x78\xed\x02\x00\x3e\x5b\x74\x3d\x01\xa5\xcd\xba\x2a\xbb\x0e\xa1\xaf\xa6\x96\xc5\xd7\x8c\xdb\x19\x0f\x42\xc9\xe6\x14\x05\x91\x09\x6d\x94\xb2\x7a\x59\x65\x0b\xef\xd4\x29\x3d\x21\x4c\x68\x23\x55\xed\x41\xd0\xeb\xe4\x0d\x7b\xed\x44\x8b\x94\x44\xc6\x2d\x88\x19\x4a\x17\x70\xe8\x89\x7b\xa1\x48\xd5\x21\x24\x4a\xba\x94\x41\xef\x6d\x28\x7f\xe9\x58\x5e\xfd\x8e\x2a\x9a\x7c\x22\xe8\xd1\xed\x10\xca\x1c\xc9\x13\x61\xff\xd1\xd9\x6a\x08\xfa\xa8\x1f\xd6\x06\x27\x6e\xfb\x2a\x17\x83\x7a\x52\x82\xaa\x27\x91\xf0\x5d\x6f\xc8\x0c\x4a\xa2\x29\x99\xbb\x2c\xcf\xd9\x65\x92\x83\xd7\xe8\x17\x1b\x56\x81\x57\x1d\xe5\x4f\x4b\x54\x26\x09\x1e\x3d\xf4\x00\xf3\x8c\xba\x55\x17\xba\xda\xa6\x12\x2a\x51\xb3\x5d\x83\x71\x10\x5b\xf5\x6c\x84\x7b\x94\xe8\xa0\x99\x3b\x70\xa0\x46\x83\xe2\x00\x92\x95\x80\xca\xac\xfc\x90\xee\x39\x26\x41\x38\x3b\x85\x5b\xb4\x01\x86\xc1\x87\xbb\x4f\x1c\xe4\x26\x06\x89\x75\xda\x0c\xca\x62\x50\x36\x57\x0c\x02\xe3\x5d\x6f\xd8\x28\x18\xd6\xe1\x78\x20\x5d\x9d\x0d\x9a\x2b\x66\x97\xe0\xe7\xd2\x20\xcd\x56\x10\x28\xbf\x81\x0b\x1e\xb8\x33\xda\xb0\x6a\x55\x56\x6b\x28\x62\x8c\x8a\x9f\x57\x49\x9a\x1a\xfc\xdd\xd0\xc3\x8a\x46\x1d\xb3\xdc\x6a\x56\xc8\xb3\x37\x15\xbc\x02\x7a\x2e\x5d\xdb\x1c\x32\xff\x99\x31\xf7\xd6\x6a\x9a\x55\x5a\x14\xfc\x29\xcd\xb4\x49\xb9\x55\x92\xac\x96\x0e\x0c\x3c\x09\x42\xa1\xe4\x6f\xf8\x63\x35\xa6\xc9\x1d\x66\x47\x07\x3c\xbd\xff\xb0\xa3\xe7\x43\xb8\x9a\x87\x54\x6b\x82\x32\x5c\x6a\x1a\xc0\x6d\x5d\x82\xc8\x02\x8a\x12\x3d\xec\xcd\x60\x78\x37\x18\x99\x8d\x8e\x82\xbb\xd1\xe0\x6e\x30\x92\xb3\x20\xbf\x8d\x69\x1e\x05\x77\x43\x44\x35\x0b\xcd\x34\x27\x1d\x59\x47\xd5\xfe\x59\x8d\x7c\xb7\x93\xfd\x84\xe1\x40\xec\xf3\x55\xde\xb9\x5b\xbc\xf7\x24\x6b\xd3\xf4\xd0\x67\xfb\x2a\xf5\xa9\xf7\xd2\xed\xb8\x9d\x0f\xdb\x57\xfb\x76\xec\x2d\xf6\x9d\x6f\x76\x6d\xce\xe6\xa3\x36\xa1\x9c\x44\x83\x61\xfd\xa8\xfd\x35\xb0\x97\xf4\x3f\xba\xcb\x9c\xab\xfa\x07\x6c\xb6\x94\xd5\x4d\x55\x5e\xfb\x02\x6d\x0a\x23\x11\xe3\xc6\x6a\x6b\x79\x1a\xb9\xb3\x6c\x3e\x16\xf5\x0d\xa5\x07\x15\x22\x31\x62\xc9\xf2\xea\x31\x66\x27\x8b\x5c\xa8\xba\x59\x96\x4d\xfc\x7f\x52\x87\x74\xb5\x8f\xa2\x28\x6d\x82\x8f\x44\xa6\x16\xb5\x09\xe7\x21\x70\x4d\x60\xcd\x87\x0e\x05\x0a\x03\x8e\x0c\xed\x51\x85\xad\x95\x19\x52\xcd\x00\x8e\x51\xea\xca\x6e\x52\x24\x95\x4c\x88\xbb\xa6\x10\x3b\x2a\x37\x97\x46\x4a\xba\x88\x74\x41\xa6\x8f\x65\xd5\xa4\xe0\x79\xdd\x56\x35\xeb\xd5\xe1\x64\xa8\xb7\x47\xfa\x5d\xb0\xce\x8a\xcb\x9c\x35\x65\x71\x14\xa3\xac\x56\xdf\x72\xac\x0a\xf8\xa5\x45\xf7\x50\xfb\x61\x43\xff\x2b\x4d\x96\x34\xcc\x37\x3b\xbc\x2f\x08\x68\x88\x17\xc4\x13\x08\xea\xae\xc8\x3e\xf8\xca\xf7\x76\xd5\xee\x63\x4d\xfa\x28\x44\x27\x52\x23\x17\xa5\x26\x5a\xcb\xc3\x4b\x67\x4b\xf9\xcb\xa5\x14\x2a\x6b\x14\x0c\xb2\x1a\xbc\xee\x89\x47\x94\xfc\x7a\x50\x6f\x37\x9b\xb2\xe2\x54\xa4\x14\x1e\xe2\xf4\xf4\xd5\x01\x59\xcf\x3d\x83\x45\xa5\x66\x09\x21\x96\xd4\xb7\xfa\x81\x02\xd2\x2e\x7a\x9d\xf9\xd1\xcd\x2e\xb6\x59\xae\x29\x02\xc5\x62\x7d\x80\x63\xe3\x18\x85\x0e\xdd\x54\xd1\x3c\x7d\x5b\xb9\x12\x06\x9c\x22\x4f\xd4\xc0\x37\xba\xa5\xf2\xa2\x8b\xbb\x3a\xe3\x32\x8b\x00\x81\xe2\xb8\xaa\x2b\x76\x30\x5f\x41\x8e\x0d\xdc\xd2\x45\x8e\x0c\x04\xe3\x3d\x9d\xe9\x32\x92\x42\xce\x63\x5d\x40\xbe\x71\xfa\x8f\x04\x21\xe4\x92\xdc\xbd\x16\x71\x69\x96\x99\xf3\xef\x6e\xb7\x50\xdc\xd5\xd2\x19\x53\x0b\xd1\xbd\xa2\x98\xa3\xb1\x40\x6e\x6b\x8d\xe2\x4a\x78\x62\xec\x44\x70\xe1\x63\xbd\xf6\xcf\x74\x65\xf3\x23\xcf\xb6\x1b\x78\xe0\x60\x55\x9b\x9e\x6b\x91\xa7\x43\xf4\xce\x78\x29\xee\x8c\xb4\x43\xbd\xed\x11\xfb\x04\x7d\xcd\xee\xda\x13\xa0\x0b\x24\x93\xd0\x67\x95\x10\x5a\xba\x64\xb4\x50\x9c\x0f\xae\x0d\x4b\x85\x10\x40\xcb\x7e\x48\x29\xca\x33\x4c\xf7\xcd\x41\x97\xb0\x54\x53\xb3\x3e\xf2\xef\xa3\xa3\xe0\x3b\x0b\xab\xbc\xb9\x11\x0f\x63\x52\x80\x82\x1e\x9f\x8f\xe8\xbb\xe0\xcd\xcd\x51\xff\x23\x18\xbe\xae\xc5\x71\x1c\xac\xcb\x94\xe5\x81\x2d\x95\xd1\x8e\x46\xc8\x33\x83\xfe\xd9\xb1\x06\x74\xc6\xc9\x83\x81\x93\xd2\x55\xdc\x01\x1c\x5f\x48\xe9\x10\x59\x0a\x2a\x67\x72\xc5\x4b\x53\x6b\x35\x63\x73\x9a\x86\x84\x5a\xd9\xa0\xe3\x8a\x95\x1b\x56\x3c\xca\x93\xba\x1e\x3a\x7d\x09\xa7\x9e\xc3\xc3\xaa\x41\x11\x59\x2b\x9d\x60\xf1\xde\x49\x44\xe2\xce\xf1\xe9\x39\xc5\x66\x82\x62\x70\xe3\x88\x15\xc8\xec\x74\x4e\xe8\x33\x18\x4e\xfb\xd6\x4c\xc6\x0c\xd0\x13\x69\x5e\xfe\xf5\xd6\xbc\xb9\x99\xcd\xc3\x43\x2b\x21\x94\x59\x76\x75\xee\x54\x70\xd0\xc1\x42\x0a\x80\x51\xee\xf6\x52\xbd\x96\x7c\xc7\xae\xf5\xb6\x36\x7b\x23\x1e\x57\xd4\x2f\x73\x05\x38\x94\x43\x41\xf6\x22\xe2\x07\x2d\x81\x8b\xf7\xb3\xb9\x8b\xd1\xee\x66\x70\xa7\xd4\x7b\xcd\xb4\x97\xe7\x63\x6a\x7e\xda\xb9\x66\x6e\xad\xdd\x4b\xe7\xd9\x21\x9e\x0d\xdc\xb3\x90\x26\xc9\x79\xea\x59\xb0\x3d\x4c\xe3\x8e\x52\xf8\xfe\xe3\x41\x1f\x37\x5e\x3e\x89\x34\x04\x77\x53\x93\xc7\x95\x44\x51\xd3\x75\xbc\x91\xfb\xe8\xb0\x65\x61\x6f\x09\xbb\xd1\xa6\x75\x68\xda\x95\x58\x99\x7b\x29\x44\x48\xcd\x73\xed\x5b\x94\x86\xd7\x1a\x2e\x36\xff\xcb\xcb\x3c\x2b\x97\x49\xae\xed\x30\xc9\x23\xa2\x6f\xa6\x78\x76\xff\x24\xb5\x4a\x43\x46\x30\xd4\x84\x9d\x25\xb7\x25\xfd\xba\xf9\xef\xe9\x15\x94\x36\x6e\x90\x76\xb3\x69\xb6\x6c\xe2\x1d\x99\x51\x47\xf6\x53\x6d\x73\xd6\x29\x1b\xb5\x0f\x49\x00\x36\xd9\x1c\x83\x43\x36\x29\x35\x42\x2b\x41\x3a\x01\x6c\x09\x99\x83\x77\xe1\x9d\x6c\x7b\xe2\x74\x62\xa2\x1e\x61\xf0\xc6\xf5\xd3\xc3\x67\x4f\x1f\x5f\x3c\xf9\xf1\xd9\xb3\x8b\xe7\x0f\xbf\x3f\xbf\x78\x79\xfe\xed\xf9\xff\xff\x87\xf8\xde\x3f\x66\xff\x98\xcc\x47\xe3\xd1\x04\xfe\x7e\x76\x4f\xdf\x59\xbb\xa5\x26\x60\xcd\xec\xaf\x10\xbd\xe1\x12\x06\xc6\xfb\x18\x2c\xa3\x20\xf1\xaa\x41\x97\x7b\xc0\xde\x6f\xe0\x70\x9c\x0c\xfe\xc9\x47\x3d\xe1\xa9\xff\x1c\x5c\x96\xcd\x64\xa0\x05\xdd\xa1\xb9\x22\xf6\x6a\x88\x3d\xd3\x2b\x34\xf3\xad\xcc\x8c\x14\x9c\x7b\x92\xc0\x92\xef\x36\x53\x6f\xb4\xd9\x86\xed\x07\xe9\x03\x39\x8a\x3f\x1f\xaa\x36\xef\x55\xa4\xe8\x56\xe0\x91\xb8\x6f\x16\xeb\x52\xac\xe0\xd0\xf8\xeb\x92\x8a\x55\xde\xb0\x6b\x11\x0d\x80\xd7\xa6\xea\x85\x50\x95\xbc\x36\xcb\xb5\x3d\x07\x57\x74\x91\x03\x80\xba\x42\x6b\x4b\x38\x8d\x98\x6d\xa8\x07\xc2\x37\x15\x2f\xdd\x5a\x7a\x10\x84\x4a\xa8\xd6\x2d\x1d\x88\x75\x49\x5f\x8b\xa1\xc7\x22\x10\x8b\x59\xc2\x7a\xa1\xfb\x98\xa1\x81\x14\xe7\x80\x51\xf1\x4b\x00\x8c\xca\xf0\xb8\x11\x29\x6a\x48\xb4\x17\xa5\xe3\xfd\x45\x06\x71\x13\xbd\x5d\x93\x97\x6b\x8e\xa9\x83\x0c\x67\x18\x9d\xee\x7b\x3a\xcc\x81\x42\xad\xdc\x88\xca\xc2\xa2\x76\xd8\x56\xb0\xe6\x33\xfe\x6b\x1e\xda\xaa\x9c\x14\xbd\x4d\x04\x22\x38\x0e\x91\x27\x4e\x12\x1d\xaf\x03\x70\x1b\x12\xd7\xac\x49\xf2\x7b\xcb\xb2\x02\x83\x63\x48\xaa\xb6\x45\x93\xad\xd9\xbd\xfa\xba\x6e\xd8\xfa\x5e\x9e\xfc\xeb\x1a\xfc\xb4\x2b\x00\x52\x91\x04\x4a\x93\xcb\xbe\x6c\xf9\xd8\xde\x07\x63\x74\xcf\x03\xc6\xde\x37\xa0\xb2\x57\x95\x79\xce\xaa\xdb\x19\x45\xeb\xef\xcf\xad\xef\x2f\xac\xef\x3f\x5a\xdf\x5f\x7a\x15\xfa\x30\xf4\xc5\x1e\x43\xea\x6a\x5b\x3c\x2b\x93\xf4\xaf\x65\xf9\xc6\x75\xfe\x4e\x33\xd1\x65\xfc\xc3\x6f\x63\xab\xa3\x76\x85\x2f\xa5\x62\x9f\x35\x80\xb1\xcc\x90\xbe\xe7\x79\x99\x4e\x60\x2b\x1f\xca\x90\x50\x2e\xb1\x35\x1b\xb4\x13\x78\x9d\xa5\xc0\xe4\xb7\xc8\xe5\xe3\x78\xfc\xf0\x5b\xf1\xa5\x7a\xa1\x9a\x13\x50\x56\x27\xed\x4e\xd1\xe9\x19\x06\x4e\xbb\x41\x44\x3e\xc2\x3e\x4c\xb7\xd1\xa6\x0f\xf1\x31\x49\x9e\x2e\x17\x97\xac\xe9\xca\xaa\x9d\x2c\x30\xb0\xb5\xd2\xa4\x69\xbf\xd9\xe0\x7a\xb3\x6d\x58\xea\xec\x36\xdd\xc7\xda\xe8\xaf\x04\x2b\xb7\x7c\x63\xcb\xcd\xa2\x21\x2e\x56\xe5\xc1\x7a\xc1\xbf\xe9\xb6\x30\xbe\xff\x64\x7d\xff\x79\xaf\x4e\xec\x41\x5b\xe8\x92\x35\xce\xce\xb9\x64\x0d\x46\x49\xb0\xf2\x3e\xbf\xb8\xe0\x3c\x9c\xae\x1c\xcd\x67\xac\x51\xd9\x2d\x64\x05\x6a\x64\x5b\x83\x1d\x8b\x74\x14\x43\x89\x35\x8b\xad\x19\x18\xcb\x8c\xa9\x54\x54\xc6\x25\xf9\x3e\x7b\x9f\x99\xfb\xe8\x4f\x17\x17\x63\x2b\x1f\xca\x70\x9c\x70\x9a\xe6\x89\x53\xa9\xb5\x88\x25\x9e\x58\x03\xf9\x33\x34\x4e\x72\x09\x13\xc9\xaa\x6c\x75\xfd\x9c\xb1\xb4\x7e\x2c\xe1\x33\x86\x57\x46\x04\x8f\x34\xef\x0e\x8e\x99\x64\x14\x21\x59\x79\x94\x45\x79\xb4\xc6\x60\x88\x32\x0a\x29\x4a\x89\x01\xdc\x11\x10\xeb\x92\x08\x20\xbc\x8a\xe8\x64\xdf\x9b\x23\x29\x14\xe8\xae\x4d\x82\x91\xce\x00\x79\x9b\xbe\x28\xf0\x23\x5a\x67\x86\xe1\x4e\x74\x51\x3a\xf4\x53\x39\x60\x5f\x23\x33\x75\x78\x55\x25\x39\x56\xb8\x31\x14\x8b\x4c\xe6\x26\x1c\x05\x18\xe1\x62\x30\x1b\x04\x23\x59\x09\x8d\x4a\x3d\x98\x0f\x16\xdb\x66\x10\x8c\xac\x26\xbe\x3e\x7b\x10\x34\x57\xec\x3a\x98\x04\x59\x03\x80\x4b\x15\xf2\x67\xc1\x06\xab\x72\x5b\xa4\x81\xf0\x10\x2b\x50\x50\x63\x44\xfd\x48\x60\x92\x64\x0a\x62\x89\x5a\x76\xb0\x27\xdd\x55\x60\x37\xa4\xb9\x1b\xf4\x79\xc2\x79\x33\xb2\xce\x01\xa4\x06\xa1\x5e\x70\x07\x42\xeb\xc0\x87\x91\x90\x99\xcb\x2e\x50\x83\x0d\x59\x80\x08\x79\x79\xd5\x32\x50\x30\x4b\xeb\xc8\xc4\x9f\x8f\x47\x9a\x38\x8e\xed\x76\x0d\xaf\xdd\x0a\x2f\xc4\xe3\x83\x89\x45\x56\x51\xe1\x7f\x18\x2d\xdd\xea\x3a\xb9\x84\xa7\x30\x77\xed\xff\x7f\xb8\xf6\x69\xc9\xf0\xd5\x28\x2b\x96\xf9\x36\x05\xdd\x1f\xb3\xc6\x51\xf0\xcf\xf1\xe0\x75\x39\x48\x96\x4b\x56\xd7\xa0\xec\xe3\x82\x90\xc5\x1a\xac\xaa\x72\x3d\x08\x46\xde\x56\xa3\xae\x8c\x41\x7d\x05\x38\x74\x95\xbc\x65\x83\x64\xf0\x4f\xe8\xdd\x3f\x07\xf2\x18\xc2\xc7\xed\xac\x06\xc7\x1c\x55\x95\x5c\x0f\xca\x15\x74\x85\x9c\x25\x4a\x87\x56\x74\xb4\x1c\x07\x53\xbd\x17\x5e\x32\x50\x5f\x5a\x32\xe2\x25\x42\x4c\x10\xba\x35\xff\xb1\x0b\x27\x0c\x76\xdf\xe3\x41\x64\x89\xfa\x56\xe5\x5b\x56\xbd\xab\x32\x60\xf1\x19\xbe\xeb\xf1\x4e\xfe\x93\xf4\x70\x1c\x8c\xde\xb0\x6b\x50\xc2\x5a\xf9\x27\x22\x04\x23\x19\x8b\x7e\x0a\x39\xf1\x70\x87\xf2\x35\x56\x24\x7a\xfb\x64\x10\x47\x13\xb1\x7f\x8e\x44\x6e\x32\x9b\x47\x59\x91\x39\x0e\xda\x11\x8f\x41\x52\x70\x95\xd5\x7a\xcb\x08\x0b\x3a\xd0\xfe\x04\xfc\x0e\x30\x25\x08\xb5\xa7\x75\x61\x82\x68\xe2\x63\xb8\xeb\xa2\xc0\x5a\x73\xd0\x26\xc0\xad\x6e\x9f\x4c\x8c\x52\xf7\x83\x00\x92\x1d\x4e\xe3\x22\xe3\x18\xe8\xde\xb3\xe4\xa1\x58\x41\x0f\xcd\x66\x25\x1d\xb0\xf7\x0e\x49\xa8\x27\xfb\x49\x57\x1b\xf6\x99\xe3\x90\x15\xec\x65\xdb\x7c\x97\x02\x83\x75\xfb\x48\xae\xed\x63\x2f\x39\x56\xf9\x22\x59\xb3\x7a\x93\x2c\xdd\x5b\xd4\x9a\x0f\xb5\x56\xbe\xa0\x6e\x75\x4b\x12\xfd\xcf\x93\x66\x55\x56\x6b\x2b\xb9\xda\x16\x17\x79\x59\x6e\x3a\x98\xce\x0e\xf3\xb1\xdb\xf0\x9c\x82\xb3\x2d\xb6\x6b\x56\x25\x8b\x9c\x5d\x98\x0c\xad\xaf\x16\xb4\x7d\xb8\xf0\x31\xb0\x1e\x68\x20\x5a\x3e\xe0\xb7\x19\x7b\x57\xcb\x69\x61\x6f\x59\xd1\x5c\xa4\x59\xbd\x49\x9a\xe5\x55\x17\xd4\x2f\xbf\x6e\x59\x75\xdd\xc5\x2f\xf3\x4f\xd6\x9b\xe9\xb2\xda\x79\x29\x96\xe7\x2a\xa9\xaf\x2e\xe4\x57\x0f\x58\x56\x37\x65\x75\x7d\x00\x64\xb2\x6d\xca\x03\xc0\x8a\xb2\x60\x2e\xd8\x55\x52\xa4\x39\x5b\x24\x55\x7d\x22\x42\x88\xfe\x6e\xf9\x7f\xfd\xfd\xdf\xd6\xf7\xd9\xa9\x9d\x60\xf7\xf0\xcc\xee\xe2\x99\xdd\xc7\x33\xbb\x93\x67\x76\x2f\xcf\xec\x6e\x9e\xd9\xfd\x3c\xb3\x3b\x7a\x66\xf7\xf4\xbe\xdd\xd3\xfb\xce\x5c\xda\x3d\xbd\x6f\xf7\xf4\xbe\xdd\xd3\xfb\x7f\xfc\xcf\xde\x8f\x3a\x45\x13\x5f\x1c\x22\x9a\xf8\xa3\xdb\x91\xe7\x92\xfe\xd9\x77\xa4\xae\xc8\x78\xde\x3b\x92\x07\xb8\x53\x94\xf1\xe7\x0e\x51\x86\x08\x6e\x6b\x21\x9f\x8c\xdc\x2b\x06\x1f\xdb\xb8\x68\xb7\xbc\x4c\x8a\xa7\xe8\x13\xca\x46\xd2\xb1\xca\x9a\xf6\x98\xa7\xde\x77\xab\xd4\xa7\x5f\x6c\xa3\x35\xb9\x1b\xe2\xda\x2b\x92\xeb\xf1\xd8\xe7\xb9\xc4\xa2\x6b\xe7\xae\x06\x3c\xcb\x05\xae\x9d\xbb\xe0\x3d\xab\x76\xce\x49\xf0\x63\x45\x81\x63\x7b\x4f\xd9\xf0\xbf\xfc\x8d\x13\xe3\xd8\xde\x69\x8e\x40\x8b\x13\xde\xd8\xde\x7e\x5e\x28\xb3\xcd\xfb\x9e\x25\xfb\x6b\x52\x83\xac\xd6\x11\x62\xdd\xf7\x6c\x9c\xbf\x22\xad\xf6\xc3\x7b\x16\xef\xe1\xb6\x29\xfd\xc0\x1e\x39\xdd\xf3\xb2\x60\x7e\x60\xcf\xda\xc1\x3e\xff\xab\xa2\xe9\xb1\x4d\x26\x6c\xf8\xef\x44\xec\xcc\xef\x4c\xf4\x7b\xcc\x16\xdb\xcb\x87\x69\xb2\x69\x58\x45\x5d\x2f\x6e\x2a\xc6\xb9\xe3\x54\xdb\x3c\x12\x4e\x55\x78\xe6\x76\xdf\xef\x5b\x4f\xc1\x71\x2a\xd3\xb4\xe7\x7b\xcb\x07\x7a\xa7\xd5\xa5\xd5\x90\x63\x53\x29\x9d\x5e\x09\x26\x57\xf3\xc7\x84\xd3\x6d\xa7\xbe\x4e\x91\x57\x12\x5d\x3f\xbe\x8f\x08\x3b\xa6\xde\xa1\x0c\x03\x84\x0a\x42\x65\xce\xb6\x07\x5e\x80\x41\x01\x61\x21\xb8\xb7\x04\xc2\x05\x61\xeb\x08\x5b\x15\xdd\x94\x9a\x31\x06\x7d\x8c\x76\x55\x59\x36\xe7\x18\xd7\x7d\x12\x2c\xca\xf4\x3a\x88\x98\xb9\x17\x65\xc4\xc7\xba\x29\xd7\xb0\x4d\xa5\x65\x6c\xc5\x92\x34\x2b\x58\x5d\x63\x95\x49\x5e\x4f\xce\x9c\x2b\x90\x0a\x9b\xf5\x99\xc0\x86\xcf\x62\xdc\xbb\xe2\xea\xa1\xe7\xf4\xe2\x02\x57\x11\x54\x11\x34\x36\x09\x65\x60\xb1\x47\xf1\x05\x44\x50\x65\x48\x92\x00\x78\x89\x91\x5f\xd2\xa5\xe4\xd3\x22\x6b\x32\x54\x69\x0f\x85\x64\x38\xcf\x16\x55\x52\x65\x4c\x9a\xe0\xb1\xea\x51\x59\xb1\x67\x90\x7a\x3d\x0c\xf4\x4e\x09\x22\x6b\xeb\x8c\x7f\x3a\x7f\xf9\xea\xe9\x8b\xe7\x07\xd6\x84\xe3\x0c\x22\xfc\x3b\x0c\xc7\xc8\x41\x86\xda\x01\xc2\xb3\x17\xdf\x5e\xc8\x3a\x77\x4e\x92\x70\x97\x20\x35\xde\x9e\xc1\x95\xb0\x8e\x2d\xda\x3d\x5e\x27\x9b\xa1\xd5\x1f\x5b\xbf\x5a\xec\x06\x7e\x1b\x03\xbf\xbe\x01\xc4\x21\x96\xf7\xcd\x16\x35\xba\xd6\xc9\xfb\xe7\xaa\x99\xf8\xfb\xa4\xb9\x1a\xaf\x93\xf7\xf4\x56\x48\x7a\xe1\x4e\x01\xb8\x40\x35\x23\x6c\x8b\x98\xe3\x52\xd1\x26\x59\x32\xb4\x03\x87\xc3\x61\x68\xb4\x77\x42\x7a\x34\x3a\x0b\x85\x40\x6c\xc0\x3b\xd7\xb6\x91\x89\x12\xdd\xb6\xd7\x1e\x94\x22\x7b\xc1\xc6\x2c\xb4\xcd\x76\xad\xaf\x0d\xf4\xb2\x70\x99\xe2\xa2\xa5\x84\x70\xa7\xdd\xd7\x99\xa9\x59\x01\xd5\x8d\xd0\xe6\xc0\xc3\x00\x6f\x0b\x93\x75\x92\x15\x01\x55\x64\xf0\x43\x44\xb4\xc6\xd6\x51\xd7\x36\x0c\x1f\xad\xba\xdb\xc8\xdd\x26\xf6\xe4\xaa\x98\x3a\x3a\x00\xde\x67\xc2\x82\xf5\xb3\x71\x56\xbf\x64\x49\x7a\x1d\xee\xaa\x6d\xa1\x9d\x71\x07\xe8\x3f\xa6\x0e\x20\x6c\x4b\x14\x5c\x64\xaa\xf6\x80\xba\x12\xfa\x6c\x18\x8e\xc1\x64\x62\xa8\x55\x48\xb6\x05\xdd\xb1\xbc\xde\xa1\xaf\x92\x50\x86\x72\x7c\x29\x69\x10\xed\x37\xce\xbc\x4b\x9e\x46\xa3\x36\x4a\xd2\xb7\x49\xb1\x64\xb7\x2a\x77\x72\xa2\x83\x94\xb8\xb9\x22\x1c\xde\xb6\x18\x97\xc5\x92\x11\x21\x4c\x9a\xa5\xdf\xb0\x65\xb9\x66\x38\x49\xad\xcf\x4a\x7f\x3f\x06\x7b\x10\xa0\xef\x10\x13\xda\x11\x1f\xd8\x82\xd6\x5f\xee\x6f\xc2\x87\x2d\x6d\x74\xe1\xcf\x50\x31\x5c\xb5\xe5\x06\x55\x92\x35\x76\xc4\x2d\xfa\xfa\x5b\x6d\x19\xb4\xb5\xa6\x88\x57\xd5\xc3\xd0\x7a\x20\x34\xc4\x44\xc4\xa9\x83\x8d\x4e\x43\x12\xbc\x2a\xab\x3d\xb6\x29\x9d\x58\x74\x46\x4d\x4b\xf8\x89\xf3\x92\x17\x15\xcb\x57\x91\xd3\xcf\x98\x0f\x25\x9c\x36\x67\x00\xbf\xc6\x15\x56\x31\x95\x71\x29\xcd\xb2\x51\x20\x14\xa6\x02\x19\x8e\xd6\x3e\x79\x3b\xb6\xb5\x69\xc2\x23\xc7\x94\x91\x8d\xdb\x86\x2d\x2f\x0b\x54\x1c\xa0\xc9\x90\x42\x88\x9e\x4b\x67\xdb\x46\xd6\x8c\xe4\x29\xc9\xe9\x78\x59\x16\x75\x53\x6d\x39\x21\x8b\x02\x0a\x42\xdf\x1f\x3c\x53\x14\x5d\x56\xc9\xe6\x0a\xa3\x38\x3f\xfc\x36\x52\x82\xb4\x58\x9d\x69\x04\xa1\x2b\x78\x57\xe0\x89\x83\xac\x30\x3a\x12\xee\xc8\x57\x4c\x73\x84\x87\x49\x68\x66\x9c\xa4\xe9\x79\x7a\xc9\xea\x21\x81\x18\xdb\x8d\x8c\xf5\x6f\x23\x59\x78\xed\xa3\x49\xe8\xc3\xad\xc5\xca\x9b\x72\x53\x97\x15\x09\x0e\xf1\x96\x55\x8d\x74\x39\x4a\xbb\x87\xe9\x63\x10\x87\x4f\x49\x06\xd9\xd0\x6a\x1e\xf8\x62\x45\x26\xad\x72\x10\xb6\x66\xcd\x76\x63\xdd\xd1\x86\xca\x4d\x01\x27\xe1\x92\xef\x6a\x92\x0a\x4e\x4e\x30\xf5\x87\x33\x03\x19\x85\x86\xd5\x0d\x28\xb3\xe0\xa7\x66\x4b\x37\x55\xb9\x64\x75\xfd\x30\xcf\x15\x87\xf6\xcd\x8b\x17\xaf\xcf\x1f\xa3\x75\x17\xf5\x84\x20\x8c\xb0\x22\x5f\x6f\x1c\x82\x47\xf8\x55\x22\x7d\xa7\xc9\x9c\xc3\xd6\xdc\x2f\x01\x22\xa9\x41\x18\x69\xb9\x60\xdf\xfe\xb3\x65\x88\x72\x27\xd6\xaa\x56\x8b\xad\x0e\x48\xc5\xe1\x54\xff\xc6\xb9\x1e\xd2\x8e\xd2\x6e\xf2\xe1\x93\x39\xb6\x87\x7d\x5b\x42\xc1\x17\xa8\x12\xb4\x57\x90\x64\x41\x3b\xcc\x95\x6c\xc5\x0e\xfe\xf1\xe5\x33\xdd\xe4\xb6\xca\x3f\x8a\x3c\xa9\x2a\xa1\x26\x4e\x2c\x39\xee\x7d\x67\x39\xf3\x79\x69\x7c\xbd\xcb\xf2\xfc\xb1\x6b\xbd\x68\x20\x8e\x08\x56\x7e\x60\x6f\x14\x95\xf4\x14\xd0\x1a\xa5\x74\x53\x12\xdf\x3c\x86\xcb\x03\x42\xa1\xc6\x74\xd3\x29\xb7\x07\x6d\x38\xa5\xfc\x28\x35\x44\xa0\xd4\xa5\x9e\xec\x3a\xda\x23\x89\xfa\x5c\x85\x8b\xcf\x92\xd7\x42\x5b\xad\xa9\xad\xcf\xf1\x71\x1f\x64\x1c\xcb\xe0\xe9\x94\xdc\x89\x9d\xd7\xd5\x45\xa1\xc6\xec\x16\x6c\xc5\x91\x6a\x90\x48\x9b\x1a\xce\x29\x05\xed\x66\xf0\x35\x91\xea\xf3\xb2\x34\xa5\xb7\x62\xf5\x7a\xa4\x01\xfb\x85\x14\x84\x5d\xa8\x59\x13\xd7\xac\x99\x3a\x66\x44\x55\x2c\x7f\x3c\x11\xc7\x03\xf6\x8a\x40\x2a\x63\x5b\xd7\x08\x89\x64\x92\x02\xd2\x47\x8b\x0f\x5e\xe6\x4d\xfd\xf6\x30\xbe\x22\x34\x9f\x14\xb3\xdc\x70\x04\xcb\x72\xbd\x29\x0b\x4e\xd9\xa2\x9d\xb2\x11\x9c\xa0\x36\x62\xd8\x53\xee\x6d\xc6\xde\xdd\xb2\x48\xc3\xd6\x9b\x3c\x69\x58\x10\xed\x88\xf6\xf6\x01\x05\xaf\x58\xbe\xe1\x04\x72\x4f\x31\xcd\xdc\x11\xee\x4c\x70\x78\x6a\x89\x0e\xaf\x84\x3c\xef\x2f\x92\x3a\x5b\x06\x91\x96\x5f\x7e\x50\x2d\x22\xb6\x5f\x64\x0b\x4f\x3f\xa8\x32\x78\xc9\x0a\x22\x4b\xae\x7a\x78\x55\x40\xf2\xe4\xc0\x80\xf5\x3d\xbc\xac\xff\x6c\x8b\xac\x13\xf8\x00\xbe\x5b\xb0\xdc\xbe\x0b\x87\x05\x19\xd0\xf7\x4e\x67\x79\xfd\x4d\xc9\x87\xac\x49\xb2\x6d\xca\x20\xa2\x12\xd5\x3d\x05\xae\x92\xfa\x2a\x88\xa8\x7c\x77\x5f\x01\x94\xee\x06\x91\x25\xe6\xdd\x53\xac\x28\x0b\x16\x44\x54\x7a\xdb\x31\x17\xc6\x8b\x25\xba\x69\x0d\xa2\xce\x5b\x4e\x57\xc1\x83\xe7\xd0\x5e\x05\xd5\xd6\x61\x8d\x92\x17\x44\xce\xa9\xfc\xf8\xf2\x59\x10\x05\x27\x32\xf5\xa4\x66\x0d\xb0\x2a\x3c\xef\x64\x5b\xe5\x5d\x37\x34\x41\xc9\x4e\x56\x65\x75\x02\xf6\x44\x97\xbc\x14\xe2\x83\x87\xe0\x5d\x5c\xc8\x9f\x17\x17\xfb\x70\xd9\x9a\x21\x48\xc4\x36\x4e\x12\x14\x69\x4b\xbc\x23\x4f\xe4\x7d\x1d\xea\xa8\x3c\x4d\x9a\xc4\xae\x71\xe9\x93\xa0\xd3\x74\x5f\x47\x90\x33\xf3\x0a\xdf\xc3\x9d\x37\x39\xae\xd8\xaf\xdb\xac\x62\xdf\x97\x78\x5b\xc3\xb7\x5c\x10\xfa\xd6\xb0\x0a\x68\x95\xae\x1f\xeb\xd1\x66\xeb\x42\x34\x1b\x84\xe4\x1d\xa0\xed\x22\x46\xdd\x13\xe7\xef\xaa\x2b\x5d\x6b\x49\xbc\x74\xff\x99\xca\xf9\x1a\xf5\x05\xd6\x00\x7a\x51\xc2\x70\xd7\x52\x45\x65\x60\x4c\xe2\x4e\xe8\x9b\x1b\x2b\xeb\x25\xc9\xf2\xbd\xed\x55\xb6\x36\x31\x34\x20\x4d\xb6\x76\xaa\xb6\x89\xfa\xe5\x19\x8f\xeb\x3d\x4d\xe1\xac\xeb\xdc\x41\xa4\x68\x6e\xa0\xdb\x07\x9b\xaa\x05\xd9\xd8\xc7\x50\x62\x63\xc2\xb6\x53\x59\xa1\xc1\x2f\xec\xf7\xd3\xe6\xe5\x23\x5c\x70\x5d\xbf\xe6\x77\x3c\x3d\xce\x56\x43\x97\xf7\x71\xdb\xf2\x38\xa9\x31\x4d\xe6\xa4\xc1\x93\x6e\x96\xee\x7a\xc5\x94\x59\x0e\xf0\xba\xac\x73\x08\xef\x7d\x88\x6a\x10\x68\xe3\xcc\xfc\x4a\xd8\x1f\xeb\xb0\xb7\x43\x7f\xb8\xcb\x59\xef\xdb\xac\xce\x1a\x71\xdb\x8f\x56\x45\x04\xdf\x2c\x8d\x36\x49\x73\x45\x6c\xe2\xc5\xb5\x5f\x0a\xdf\x9b\x6c\xc9\x6a\x99\x98\x15\xcb\x72\x9d\x15\x97\xc8\x1a\xd9\xa9\x70\x1f\x8f\x72\x56\xe0\x66\x92\x81\x92\x32\x20\x43\xa2\xb5\x70\x27\x7e\xc4\x3b\xd0\x80\x3d\xc2\xd6\xf9\xff\xf1\x0c\x4c\x7b\x44\xbe\x6d\x7f\x52\x50\xc3\xf7\x96\xc3\xa3\x4a\xad\xb0\xcd\xc7\x42\x28\x45\x81\x4b\xff\x94\xf8\xf8\x67\x05\xaa\x73\xea\x19\xe0\x83\x02\xe0\x7a\x96\xcd\xe7\xce\x6c\xb4\x2b\x29\x16\xc1\xef\x29\xb6\x57\x6e\x86\xc4\x54\xf1\xf1\xc3\x6f\xa5\x68\x03\xa7\x43\xba\x36\x56\xb3\xb6\x6b\xdb\xc7\x0f\xbf\x25\x21\x5b\x93\x34\x8d\x8d\x7b\x09\xbe\x6d\x15\x64\x13\x29\x69\xa6\xac\xa5\x77\x22\x06\x06\x28\x0e\x1f\x3d\xa9\x40\xef\xe3\x1d\x46\x22\x41\xd1\x11\xae\x12\xde\x0b\xc9\x8a\x4d\x66\xf3\x88\xb7\xb1\x6d\x2e\x4b\x90\x06\xf0\x93\x0f\xd5\x26\xe1\xba\xdc\x4e\x3d\x8d\x88\xb5\xd7\x71\x55\x6a\xba\x1c\xd2\x43\x0a\xc0\xb4\x53\x73\x12\xd6\xc9\x26\xb6\xde\x78\x88\x45\x56\x92\xa6\x58\x09\x0a\x9e\x84\x5d\xd6\xd4\x99\xc7\xf3\xf4\x92\x52\x8d\xaa\x5c\x83\x81\x5f\x53\x6a\x53\x44\x99\x78\x73\x73\x84\xc9\x37\x37\x32\x89\xdf\x56\x4b\x4a\xbb\xd0\x97\x5f\x55\xae\x63\xd5\x0b\x09\x1b\x46\x4d\xa9\x53\x45\x31\x10\xe6\x97\x0a\xf5\xed\x45\x52\x65\xb5\x6b\x7e\x89\x36\xcb\x2b\xb6\x7c\xf3\xe8\x7a\x99\x33\x03\xc5\x78\x8f\xc9\xd6\x23\x1d\xf4\x2a\x85\x07\x4b\x5e\xc3\x20\x65\x8d\xb0\x8f\x0c\x46\x08\x3f\x0a\x06\x5f\x9d\x0c\x82\x11\x60\xac\x78\x01\xe3\x09\x61\xd8\xb6\x88\xff\xbc\x6f\x91\xee\x45\x38\xe5\x09\x63\x82\x01\xb8\x7f\xc8\xe8\x66\x72\x38\xf3\x98\xff\xa2\x59\xcf\xf5\xd2\xab\x31\xdb\xab\x25\x24\x8e\x64\xb5\xc4\x73\x9e\x26\x05\x9a\xd2\x18\xb8\x26\xe8\x8c\x46\x32\x0f\x75\x89\x04\x26\xfa\xf6\x3b\x6e\x02\x77\xc3\x23\x45\xc2\xd9\x26\x03\xa7\x14\xc2\xa0\x91\x61\xdb\x76\xa0\x60\xed\x43\xe5\x88\x46\x4e\x11\x82\x55\xdc\x29\xeb\x64\x43\x51\x9e\xf7\x43\x06\x27\xd1\x56\xe2\x22\x1e\x8b\x76\xfe\xaf\xb7\x06\x6f\x12\x2b\x10\xc5\xf0\xa8\xd3\x63\xc7\x64\x23\x1e\x41\x57\x59\x0c\x4a\xc0\xe9\x8d\xe8\xa7\xee\x01\x86\x7c\xe9\xec\x00\x86\x7e\x29\xf4\x51\xab\xdb\x87\xac\xee\xe6\x21\x7b\x96\xcd\x45\xe1\x1e\x33\xc1\xc7\x0f\xbf\x3d\xe4\x7c\xd5\xac\xf6\xc7\x98\x4c\xe5\xe5\xe5\xa5\x47\x0b\x54\xb4\x21\x26\xa1\x23\x57\xde\xd0\x0f\x55\xb9\xbd\x22\xba\x01\xbf\x0f\x85\xc8\x4f\xaa\xe0\xf7\x0c\xa6\x76\x9f\xd1\x20\xc8\x13\xb3\xd5\xb5\xa3\xe6\x27\x33\x84\xbe\xdb\x26\x6b\x90\x5f\x74\xe0\x54\xd6\x14\x6d\x57\x96\xc9\x9a\x79\x21\x75\x96\x1e\x20\x4a\x57\x7e\x33\xf5\xc1\x3e\x6d\x29\x8f\x1e\x9a\xd2\x1c\x24\x7d\x91\x9a\x36\xf4\xba\x00\x91\xc5\xfa\xfc\x2c\x3b\x36\x0e\xd2\xa0\x7e\x99\xe4\xf9\xa0\x29\x07\xff\xec\xe3\x9a\xff\x39\x1e\xfc\x90\xb3\xa4\x66\x60\x0f\x51\x65\x29\x9a\x43\xdc\x55\xa0\x77\x07\xa8\x00\x35\xc8\x8a\x41\xbd\x5d\xc0\xd2\x80\x9d\x84\x69\x45\xf9\x4f\xde\xd2\xa6\x02\x81\xcf\x60\x95\xe4\x39\xf8\xbd\xba\xaa\xca\xed\xe5\x15\xcf\xe2\x04\x01\xad\x5c\xc6\x41\xbf\x83\xee\x5b\x8c\x47\x5e\x8a\x36\x49\x55\x0b\xdf\x8c\x5d\xe3\x11\xa0\x9f\x66\x34\xd0\xbe\x70\xb4\x20\xc6\x43\xba\xf4\x01\x23\xfa\x06\x9c\xbb\xdc\x62\x5c\x58\xe0\xd3\x8c\xce\xb9\x34\x7e\xe4\xaa\xf5\x5c\x42\xbb\x46\xe9\x14\xf9\x34\x23\x3d\xd4\x43\xf9\x2d\x06\xeb\xbd\x14\x0f\xf6\x0e\x98\x16\xfb\xa4\x3b\xf0\x45\x63\x3c\x81\x7e\x1c\xda\x42\x65\xb7\xc0\x5a\x80\xff\x34\xc3\xbb\xc8\xcb\xcb\x67\xb6\xb7\xf8\x72\x5b\xa4\xd1\x07\x0e\x51\x57\x28\xea\x19\x1c\x30\x4e\x5d\xe8\x93\x8c\xd2\xb4\x67\xf2\x58\xb4\xfb\x34\xd5\x3f\xf6\xbc\x51\xbe\xaf\x3c\x7e\xaf\xa2\xfb\xd4\xf3\xd5\xec\x14\x59\x3e\xf1\x85\x91\xc5\x78\xf6\x51\x1c\xeb\x37\x1e\xf1\x10\xcc\xea\x6d\xde\x60\x9c\x4e\x94\x01\x6d\xf3\x46\x5b\xe7\x8e\x83\xf0\x6b\xf4\x07\x0c\x60\x22\xbb\x62\x9b\x3c\x59\xb2\xe1\xbd\x9f\xc7\xc3\x71\x78\xef\x52\xf3\x53\x5a\x75\x71\x3d\x5e\x5e\x25\xd5\xc3\x66\x78\x16\x8e\x9b\xf2\xc7\xcd\x86\x55\x8f\x92\x1a\x35\x4d\x84\xbc\x50\x37\x73\xd1\xdf\xcc\xc5\x07\xb5\x42\xe2\x6c\x8d\x82\x49\x30\xc2\x5a\x3b\xc4\x55\xfd\xa1\x2b\x2a\x82\x74\xb1\x74\x12\x82\x47\x0f\x09\x5e\x20\xaa\xc0\xa8\x6c\x00\xaa\x4b\x8d\x9d\x4c\x15\x0d\x02\xee\x47\x64\xf7\xc2\xe5\x0b\x82\xec\xc8\x04\xf0\x58\xb4\xc7\x8d\x8f\x72\x7c\xe3\x44\x4d\x59\x6f\x6b\xb0\x37\x16\x96\xa0\xe0\x8a\x9e\x3a\xf8\xc1\x60\xec\x7c\x54\x33\xa7\x93\x73\x58\x13\x1d\x23\xc3\x03\x41\xe9\x0e\x08\x99\x54\x94\x8b\x9d\x37\xbc\x86\x43\xac\x78\x21\x3a\x51\x65\xd9\x18\xa3\xe7\x09\xa0\x65\xfb\xf2\xfc\xd5\x8b\x67\x3f\x9d\xbf\x94\xfa\x4b\x9a\x32\xc8\x86\x28\x91\x69\x9d\x18\x1b\x1e\x76\xc1\x75\x53\xf9\x43\x52\x35\x75\xb7\x6b\x39\x05\x02\xae\xe5\x04\xd4\xdf\xb3\xe6\xaa\xdc\x36\xaf\x4d\x80\x33\xb1\x0b\x3d\x50\x44\xa7\x89\xd8\x99\xaa\xdb\x0b\xaa\xb9\x68\x29\xb9\x77\xff\x1e\x1f\x9b\x7b\xe8\x5e\x20\xa3\x2a\x0b\x7c\x6d\x50\xce\x2e\x87\x70\x2f\x08\xa7\x85\x40\xca\xa6\x9e\xc1\xff\xe2\xee\x78\x72\x36\x57\x4a\xcb\xd0\x20\x20\xaf\xe6\xf2\x87\x08\x8c\x91\x26\x4f\xa3\x13\xa5\xee\x3b\x0e\xc2\x70\x0a\x7d\xd5\xea\x41\x0b\x70\xd8\x34\x34\xea\x92\x8b\xb1\x73\x3c\x63\xc1\xac\x4e\xc0\xc9\x96\x67\x9e\x26\x5d\x73\x87\x52\x36\xde\x32\x3c\x52\xb9\x5b\x6f\xa2\xb4\xf2\x47\xf2\x56\x83\x8e\xbf\xda\x03\x19\xab\x03\x37\xfd\xd4\x44\x5e\xe9\xbd\x93\x50\x59\x1c\xb9\x4a\x19\x24\x0d\x08\x8c\x54\x11\xcf\x10\x29\x81\xbd\x77\x19\xf1\xa5\x13\x4e\x02\x54\x97\x63\x6b\x83\x8c\x82\x31\x19\xa9\x45\x4c\x7c\xbd\x3c\x22\x3e\x46\x49\xbd\xa3\xd8\x57\x09\xce\x9c\xf4\x0d\xa5\xa1\x7f\x93\xe0\x32\xdb\x9a\xe1\x33\xf3\xf3\x64\x6d\xd4\x42\x39\x06\x6b\x44\xb1\xf5\x6d\xcf\xd8\x45\x60\x8f\x59\xc8\xf9\x02\x7c\x50\x77\x2b\x0c\x02\x7d\x08\xbc\x16\x6b\xe5\xef\x0a\x78\x99\x15\x10\x36\x95\x3f\x6c\x31\xb5\x3d\xc1\xeb\xf3\xef\x7f\x78\xf6\xf0\xf5\xf9\xab\x19\xad\x71\xae\xe6\xab\x17\xaa\x35\x7a\xa1\xaf\xda\x43\x9a\xfe\x9b\x35\xa6\x66\xe7\xa7\x8c\xbd\xeb\xe2\x5c\xb3\x7a\x6c\x2d\x27\x05\xa0\x9a\xb6\xdd\xc7\x81\x6c\x47\x2b\x4d\xfc\x3b\x5a\x83\x5a\xfe\x1d\x0d\x7d\xcf\x37\x5d\x37\x66\xc1\xf6\x43\xfa\xdb\xb5\x9b\xa5\x93\x3d\x38\x3b\x2c\x3a\x10\xa9\xf2\x34\x36\x9c\xe3\x31\x53\xf5\xe6\xaf\xa0\xb9\xe3\xef\xce\x21\xc3\xba\xb9\xb1\x4d\x6e\x50\x17\x08\x0e\x98\x9e\x5d\x31\x3f\xe4\x26\x74\xe0\x7c\x78\xe9\x1e\x90\xac\xdf\x64\xa6\x0e\xbb\xd2\x00\x7b\x7e\xbd\x5e\x94\x79\xb4\x49\xd2\x34\x2b\x2e\xa1\x56\x0e\x17\xee\x30\x23\x0e\x66\xff\xef\xff\xf3\x7f\xcf\x03\x64\x41\x55\xda\x60\x1e\x58\x2c\x90\xe2\x3e\x84\x53\x89\x2f\x4f\x39\xbd\x82\x4a\xe3\x60\x2c\xca\xcb\x04\x6d\x9f\xf3\xe5\xe9\x49\x77\x25\xe4\xc8\x6e\x51\x4c\x38\xce\x8a\x55\x39\x54\x7d\x76\x0a\xca\x71\xa0\xf2\xbd\x2b\x3d\xf0\x14\x09\x9d\xbb\xd1\x1e\xaf\x5e\x8e\xd4\xd9\x51\x7f\xe8\x95\x35\xbb\xca\x12\x69\xd2\x24\x4a\x43\xa2\x1b\xac\x4b\xa7\xe2\xc3\x45\xc3\x1f\x2a\xce\x7d\x9c\x34\x89\x54\x08\xb1\x9a\xf0\x99\x0b\xbb\x5a\x24\x3d\xc2\x5e\xe1\x58\x8d\xb4\x40\x7e\x8b\x5c\x7f\xa5\xde\xd4\xfd\x8b\xd5\x39\xaf\xfb\x1f\x0c\xfc\x8e\x24\x0e\x7a\x14\xe8\xf6\xb4\xe1\xbc\x1a\xfc\x3b\x5e\x00\x3e\x5a\xc2\x0f\x7e\xf9\x57\x8e\x90\x1f\x93\x51\xe2\x9e\xd4\x57\xac\xb2\x05\xee\x9f\x5f\x5c\x8c\x55\x4e\xb7\xa4\xff\x73\x5b\xd2\xef\x17\xb5\x77\x19\x26\x1f\x26\xbe\xf7\xa3\x95\x4f\x06\x62\x99\xe8\x9a\xaa\xe4\xcb\xa4\x78\x94\x34\x49\x5e\x5e\x9e\x17\x4d\x95\xb1\x1a\x05\xae\x66\x98\x29\xf5\x98\xa6\xfd\xe6\xa3\x33\x7e\x93\x13\xa7\x7e\x3c\x8d\x50\xe8\xd1\xf2\x80\x26\x8c\xfb\x51\x2d\x2c\xae\x1f\x0e\xf5\xbd\xe7\xf9\xc3\xef\xcf\x5f\xfd\xf0\xf0\xd1\xf9\x2b\xbc\x2a\x6a\x98\x30\xd2\x36\x79\x72\x7d\x5f\x6d\x57\xab\xec\xfd\x4b\x76\xc9\xde\xc7\xe8\x76\xe9\xf2\xfc\xfd\x66\x68\xde\x55\x46\xc1\x67\xe2\xd2\x86\xad\x8e\x57\x65\x75\xee\x58\x6d\x7a\x94\xb0\x8e\x62\x6c\x5c\x47\xd6\x79\xc3\xae\x07\x59\x31\x30\xe1\x8f\xb4\xb2\x95\xd7\x63\x2a\x5f\x9a\xac\x10\xee\x52\xcd\x4e\xa3\x8f\x61\x04\x83\xfa\x4d\xbd\x2e\x70\xda\x2a\xaf\xad\x2f\x56\x43\xc8\x0e\xf9\x7a\xc0\x08\x83\x70\x07\x53\x24\x1c\xb5\x49\x9c\xe5\xf5\x29\x76\xd9\x6a\x30\x0a\x82\x10\xdc\x3e\xf1\x13\x86\x88\x76\xea\xb6\xdf\xbb\xd0\x87\x50\x31\xf3\x10\xf9\x98\xb7\x4e\xc7\x23\xcf\xa7\x22\x6c\xfe\xe2\x4d\xf6\x96\x5d\x08\x45\xe4\x83\xdd\xac\xfe\x1e\x5e\x49\xff\xad\x6e\x23\x6d\xef\x1f\x9e\x27\x53\x3f\xc1\xfd\xc2\x21\xb8\x7e\x52\xea\xa1\x8f\x5d\xa4\xd4\xf3\xc0\x09\xeb\xf6\xd0\x71\x1e\xf9\xb0\xd7\x4d\xeb\x9f\x0f\x8a\x86\xef\xa3\xc7\xb6\x3f\x00\x8f\xad\x7e\xc5\x40\xe8\x8e\xd2\x96\x3a\xc6\x0e\x0e\x85\x5b\x30\x42\xcb\xbd\x8a\xb4\x13\x65\xe3\x12\x25\x4d\x53\x65\x8b\x6d\xc3\x9e\x65\xeb\xac\x99\x7c\x1e\x99\x15\x4f\x64\xc5\xd1\x25\x6b\x9e\x64\x79\x63\x59\x1e\x0a\x2a\xa0\x9b\x7f\x97\x34\xcb\x2b\xb8\x5f\x71\x0a\x6e\x45\x3b\xad\x1f\xa6\x29\x4b\x91\x34\xff\xb8\x49\x13\xd4\x8f\x4b\xaa\xc1\x5a\x15\x40\x29\xcf\x25\x6b\x74\x1d\x94\x78\x63\xd9\xd7\xe5\x2b\x56\xa4\x51\xc7\x1c\x4c\x09\x4c\xac\x6b\x06\x5d\x14\xcf\x89\x82\x64\x13\x74\x5c\xe0\x27\xac\xe9\xbb\x2a\xd9\x6c\x58\x1a\xf3\x86\xc7\xfc\x43\x75\x07\xe9\x28\xf4\x63\x2c\x95\xbf\x68\x37\x90\x9e\x42\xb9\x72\x51\xb3\x4a\xdc\x36\xad\xa2\x6a\xf8\x8a\x90\x8a\x16\x5b\xd1\x7d\x98\xa9\x21\x19\x49\x28\x74\x6d\xa1\xad\xd8\x58\x02\xa3\x79\xe7\x7c\x5a\x15\xe1\x6e\x55\x80\x7f\x7f\xe8\x95\x05\x8f\x0e\xc0\x11\x01\x87\x22\x2f\x6c\x7d\x48\x06\x23\xb3\x00\xb5\x12\x29\x7c\xb7\xd1\x05\x9f\x93\xd7\x25\xa8\x00\x77\xb0\x08\xe5\x6a\x20\x39\x03\xad\x6e\xc3\x13\xbc\x2e\x24\x95\x15\x3e\xac\xe4\x04\x23\xc1\x1a\x2f\x0b\x02\xe9\x5e\xb2\x65\x59\xa5\x76\x7c\xdd\x0a\x53\x11\xf1\xc4\x87\x98\x7b\xf9\xf9\x12\x66\x20\xb5\x4c\xf7\xbb\xb0\x4b\x96\x52\x88\x2a\xda\xc5\x31\xca\x52\x62\xb1\x78\x8e\x68\x4d\x2f\xd9\x16\x13\xb0\x1c\x5f\x3f\xda\xa9\xe1\xcc\xc8\x9e\x0b\xef\x24\x02\x48\x20\xb5\xf8\x32\x31\xba\x52\xf5\xf5\xa3\x23\x56\x2c\xc0\x23\xa3\x8f\x1a\x1b\x15\xde\x1b\xd0\xd2\xeb\x05\x5f\x23\x30\x63\x49\x1f\x5d\x25\x05\xd5\x4b\x84\x83\x2e\xca\xd2\xf7\xc2\xb1\x7c\xfa\xa8\xdc\x16\x4d\x94\xf0\xe9\x87\x9f\x34\xd0\x60\x96\xbe\x9f\x66\x5f\x65\xe9\xfb\x91\xce\x17\x8a\x6c\x6a\xc8\x31\xd4\x38\xc6\x53\xf6\x61\x33\xcc\x42\xff\xfe\x34\xfb\xb9\x77\x4f\xee\x9b\x04\x8d\x34\xc3\x99\x68\x6b\x0e\xaf\x24\x74\x58\x6a\xed\x04\x06\x0d\xed\x71\x87\x2d\xae\x9e\x68\xb4\x8a\x77\xa9\x9c\xb2\x89\x3d\x87\x60\xa4\x29\xf2\x84\x2f\xa1\x56\x76\x64\x9c\xa4\x29\xc8\x17\x5e\x88\x8a\xd0\xbf\x83\xac\x56\x0d\xf7\x03\xc9\x82\x6c\x05\xbb\xde\xdb\xd0\x2d\x28\x88\x31\x89\x06\xfe\x7a\x8f\xb0\x83\xa8\x4b\x87\x21\xeb\xde\xf3\xb1\x6f\xf8\x6d\x84\x4a\xa5\xc4\x8b\x2a\x70\xca\x3b\x33\xe8\xc0\xb2\xcc\xb7\xeb\x8e\x08\xe2\x9e\x73\xd0\xa6\xfd\x16\x59\x72\x8f\x40\x4a\x78\x7a\x08\x0c\xe2\x53\x61\xef\x3b\xc1\xcc\x2b\x22\xe2\x39\xb7\xa0\xb8\xa4\x27\x3e\x8c\xa4\xc8\x43\x7c\x18\xbc\x28\x96\x8e\x1f\x03\xd9\x81\xb0\xbd\x1d\xda\x62\x61\x85\x4d\x9d\x27\xda\xa1\xf8\xd8\xba\x18\x42\xc7\x6c\x4d\x7a\xa1\xa4\x84\x02\x7c\x0f\x2d\xe7\xff\x0b\x56\x43\xdf\x1e\x75\x22\x51\x36\xc7\xbb\x2e\x79\x52\x89\x96\x7c\xff\x83\x63\x67\xd1\x86\x76\x55\x2b\x51\x69\x22\xce\x3b\x8a\x57\xa2\x65\x24\x77\xf0\x26\xd7\xd2\x9b\x16\x36\xdc\x46\x06\x7f\x64\x9b\xb3\x03\x26\x10\x96\xc9\xcb\x02\xaa\x21\x0f\x3b\x6c\xad\x42\x23\x04\x2a\xcd\x1a\x77\x48\x04\x86\xf2\x31\x4b\x20\x63\xdc\x55\xba\xa7\xa8\xf0\x74\xa3\x39\x41\x7e\xa1\x43\xaa\x50\xbf\x28\x14\x6b\x5f\x0f\xc3\x16\x81\xc4\x8e\x83\x8f\xd0\x3c\x10\xa9\x95\xc1\x0e\xf6\xf4\x04\xb6\x05\x65\x51\x10\x48\xbf\x67\xb6\x92\xff\xb2\x2a\x5e\x01\xeb\x6b\xb3\x8f\xf4\xb0\x44\x22\x32\xd4\x7c\x64\xa8\x2f\xc9\x46\x5d\x6d\xd4\x31\x26\xc7\x09\xb2\x16\x75\x88\x0a\xfa\x24\x1d\x8a\x3f\xd1\xa8\x7a\xa0\xd4\xe2\x37\x93\x4f\x1c\xd1\x89\x30\xe5\x10\x14\x52\x59\xde\x18\x42\x07\x34\xde\xd3\xc5\x44\x80\xb3\x25\x67\x17\x69\x58\x09\x7c\x73\xc7\x1e\xe9\xfd\x16\xc2\x5e\xd4\xc2\x8f\x51\x70\x2f\x18\xc1\x82\x12\x21\x87\xd0\xc1\xb6\x64\x17\x91\xde\xf7\x7b\xa9\xba\xe6\x34\x26\x0e\xdf\xa5\x79\x16\x49\x1e\xc4\x2e\xc6\x44\x79\x82\xfc\x94\xe4\x5b\x30\x95\x21\x0b\x45\x8b\x8d\x0d\x30\x93\x30\x3d\x22\x59\x84\xd5\x21\x85\x6b\x96\x54\xcb\xab\xef\xd8\xf5\x3b\x0f\x5d\x93\xc9\xfe\xa2\x88\xe2\xde\x76\x9f\x90\x2c\x7f\xe1\x65\x99\x97\x95\xdb\xdb\xb2\x22\xe0\x82\x50\xeb\x52\x64\xea\xe9\xc8\xdc\xa9\x15\x7b\xb8\x25\x05\xe4\x58\xba\x80\xc9\xa2\x79\x87\x71\x50\x23\x30\x82\xce\x16\xc0\x56\x28\x32\x18\x4a\x1b\xd6\xe2\x2c\x3d\x1e\x19\xdb\xb6\x75\x23\xa5\xb8\xe2\x30\xc3\x75\x4f\x34\x9b\x53\x4f\x42\x54\x1a\xe3\x54\xe5\xf5\x4b\xec\x17\xa7\xfd\x26\xe6\x79\x7d\x42\x20\x7d\xff\x43\x4e\x21\xa9\x6b\x56\x35\xfc\x1e\xa8\xe4\x11\x81\xf4\x4a\x22\xf2\x8c\x99\xb2\xcb\x3f\x39\x7f\xf8\xfa\xc7\x97\xe7\xaf\xfc\x35\xa8\xdc\x5d\x56\x9f\x17\xc9\x22\x67\xe9\xc4\x9c\x78\x64\x84\xc0\xcf\x00\xba\xa7\x15\x62\x18\xb4\x5c\xbd\xb9\xa1\x0f\xa2\x10\xa2\x4a\xd9\x34\x3d\xe1\x15\x3c\x21\x6e\x2e\x45\xe4\x30\x89\x19\xec\xdd\xe0\x09\x32\x5a\x3f\x65\xec\x5d\xf4\x48\xfa\x8f\x10\x2e\x51\x95\xa2\x3c\xf6\x34\x5b\xc3\xa4\x1e\x1f\x1b\x9f\x63\x0d\x87\xbe\xe3\x84\x3f\x12\x9d\x0c\x14\x53\x7f\x62\xe0\xda\x72\x35\x10\x46\xcd\x56\xb8\x45\xd2\xac\x00\x18\x06\xc4\x36\x03\xd5\x5b\x6c\x4d\x7e\xec\x11\x49\xa0\xf3\x35\xd4\xe9\xc2\x0b\x91\xf3\x06\xed\x37\x7c\x83\xb8\x79\x19\x7b\x17\xee\xf8\xff\x7e\x23\x6c\x74\x23\xae\xff\x0f\xc2\x59\xc0\xa1\x03\x30\x9a\x3c\x52\x53\x1a\xee\xd4\xcf\xfd\x15\x69\x47\x1e\x86\xe5\x76\xb6\x1a\xf2\xaa\xe5\xd1\x85\xbd\x14\x78\x44\x86\x24\xcd\xba\xf1\xc1\x1e\x47\x64\xc3\xac\x93\x37\xa0\x9d\x21\x60\x44\x55\xc8\xd6\x74\xd5\xf7\x4d\xb9\x2d\x52\x2c\x20\x5c\xc8\x81\xe8\xce\xf0\xb2\xda\xdf\x8e\x9e\x66\x9e\xf6\xc8\xbc\xbf\x38\x7e\x77\xa8\xae\x89\xab\x35\x30\xe6\x53\x85\xe1\xce\x80\x7d\x54\x35\x46\xda\x25\x4f\xc7\x6a\x77\xa2\x87\xcc\x77\xd1\xe4\x91\x20\x4a\xc6\x4e\xe7\x88\xed\x81\x71\x57\x44\xe6\x90\x9d\xd8\xd5\x03\x17\x34\x6c\xf7\x57\x37\x96\x44\x33\xee\x82\x75\x46\xf4\xbf\x92\xb7\xc9\x2b\x78\xa1\x3f\x64\x6c\x2e\xb4\x3b\x4a\x17\xe6\x80\xf1\xf6\x15\x72\x97\xa1\x0f\xba\x7b\x0e\xdc\x52\xce\x94\xf6\x56\xac\x55\x30\x03\x9b\xd0\x04\xb7\xeb\xa2\x3e\x1f\xbf\xd9\xae\x56\xe6\x94\x0b\xed\xbf\xbb\x77\x03\x17\x6f\x7b\x2b\x4d\x36\xfc\x20\x7b\x5d\xda\x55\xa2\xd4\x52\x55\x9c\x26\x4d\x32\x5e\x00\x0c\xf2\x99\xc1\x08\x21\x46\x41\x38\x0d\xf0\x18\x78\xfc\xe2\xf5\xc5\xb3\x17\x2f\xbe\xfb\xf1\x07\x0c\x10\x1a\xdf\x13\x3b\xe2\xe7\xf1\x70\xfc\x87\x07\xe1\xcf\xe1\xbd\xe8\x9b\x97\x0f\x1f\x7d\x77\xfe\xfa\xe2\xd5\xeb\x97\x4f\x9f\x7f\xdb\x01\x3e\xbb\x0b\xf0\x77\xef\x45\x4f\x9f\xff\xf4\xe2\xd1\xc3\xd7\x4f\x5f\x3c\xbf\x78\xf5\xc3\xb3\xa7\xaf\x5f\xf3\x42\x02\x7a\x38\xfe\xc3\x22\x2f\x97\x6f\x90\x3a\x7c\x8f\x21\x91\x7e\x86\x4d\xfd\xf3\x70\xfc\x87\x70\x58\x37\xc9\xf2\xcd\xec\xf4\xe4\xbf\xe7\xa3\x70\x18\x8d\xff\x10\xde\x3b\x64\x6a\x70\x58\xd9\xea\xfa\x59\x52\x37\xdf\x38\x0d\x3c\x2d\xde\x4a\xff\xda\x7a\xae\xca\x6d\x25\x3d\x51\xe1\x18\x08\x14\x66\xce\xf0\x8f\x56\x84\x8d\x10\x10\x34\x8e\x86\xf6\xcc\x8d\xd9\x7b\xb6\x1c\xda\x55\x85\x37\x37\x3d\xd3\xd7\x51\x26\x9c\x9d\xcd\xa3\x35\x38\xe2\xa9\xe3\xee\xe9\xec\x28\x3d\xed\xe8\x7d\x2c\x6a\x9c\x9d\xcd\x47\xc1\xdd\x60\xa4\x07\x03\x9f\x32\xf7\xf3\x39\x62\x86\x9a\x53\x77\x3e\x0f\xd8\x6f\x87\x2f\x09\x8a\x7d\xaa\xec\x32\x2b\x92\x1c\x00\x81\x11\x3e\xa4\x0d\xbd\x23\x16\xaa\xdc\xed\x76\x92\x2e\x47\x37\xa6\xdb\x1b\x7f\x38\x9d\x69\xcf\x1c\x09\x6f\x6e\x88\x65\xad\x31\xc8\x87\xeb\x45\x76\xb9\x2d\xb7\xf5\x87\x8e\x36\x71\x2b\xb8\x25\x01\xf1\xf4\xc0\x33\x7e\x4f\x47\x3f\x7a\x22\x0e\x38\xda\xd6\x5b\x4e\x05\xae\xa8\xe3\x78\x91\x82\x1c\x9a\xfa\x1c\x6f\x92\x2a\x59\x4b\x4d\xf5\x9b\x1b\x95\x7e\x95\xd4\x57\x42\xf9\x20\x4b\x41\x87\x82\xb4\xf8\xf0\xd5\xeb\xf1\xd3\xf4\x79\x99\xb2\xe1\x6c\xb7\x49\xaa\x66\x12\x5c\x34\x55\x96\x5c\xb2\xef\x45\xf9\xa0\x9d\xe3\xad\x5f\x55\xc8\xea\x65\xb2\xe1\x17\x25\xa3\x89\xd8\xf8\xba\xb9\xf1\x34\xf4\xd7\xa4\xbe\xc2\xa6\xe6\xe1\xd4\x00\x1f\x6f\x92\xac\x12\x02\x80\x59\xb0\x2d\x44\x13\x41\xe4\xa9\x05\xa5\x09\x50\x4f\xd0\x54\x5b\x16\x84\xf3\xb0\x55\xd3\xe4\x29\x20\x47\x82\x4d\x67\xe9\x5c\xc6\x95\x9f\xa9\x3e\x64\xe9\x3c\x8c\x8c\x1e\x45\xee\x78\xe5\x73\xd6\x61\x0b\x46\x98\x33\xb5\x62\xee\x8a\x6f\xf8\xdd\x13\xea\xb0\x4f\xae\x28\xa9\xf1\xa6\x83\x4b\x97\xd4\x4d\x4c\xcb\x25\x55\xcd\xe4\x19\x87\x1b\x0a\xf9\xbe\x78\x07\x51\xc7\x10\xeb\xea\xc9\x0e\x45\xc2\x13\x3e\x51\xd1\xb6\x58\x70\x26\x16\x3f\x82\x45\x56\xa4\x27\x49\xd3\x54\x01\x26\x48\x05\x20\xfc\xe2\xfc\x25\xfe\xb2\xf0\x61\x82\xaa\x40\xfc\x3c\xc5\x7c\xec\xc4\x0f\x80\x7d\x98\x39\x95\x5d\x8f\xd5\x0f\xe2\xb1\xf1\x01\x87\x99\xc8\x1c\x7c\xb9\x2f\xde\x66\x55\x59\x80\xb3\xd2\xa1\xf2\x29\xe1\x63\x2e\x25\x9b\x33\x4c\xea\x46\xb1\xba\xe2\x46\xe7\x2d\xe9\x61\xdd\x54\x1d\xa4\x59\x59\x57\x44\x1e\xdd\xe5\xfc\xdb\xdc\xa0\x28\xee\xb2\x80\x1d\x2b\x79\xdb\x05\xec\x9d\xda\xdf\x62\xba\xa8\x62\xfe\xab\x0d\x5b\xfa\x2b\xf9\xf0\x99\xe3\x3d\x35\x5b\x71\x48\xba\xcc\x18\xd2\x7e\x84\x53\xf9\x35\xce\x6a\x7c\x14\x8a\x4d\x2d\x34\x91\xdd\x76\xf9\x41\xb2\x9a\xe9\x11\xb4\x68\xf9\x4a\x47\x50\xa8\x2e\x55\xa6\xbd\xd1\xcf\x74\x7d\xf7\x78\x3a\xa9\x8d\xe4\xb0\xf7\x8d\x2f\xd9\x52\x73\x22\x39\x82\xb5\xbc\x57\x5f\x25\x34\x14\x9a\x07\x42\x84\xbf\xee\x03\x59\x96\x79\x8e\x8e\xdd\xfa\xa0\xd0\x31\x66\x77\xbe\x20\x27\x7d\x20\xa0\xdc\xda\x07\xc0\x92\xe5\x55\x5f\xbe\xf6\xb4\xd9\x0d\xc3\x8f\xad\x8c\x44\xb5\xf3\x80\x5c\x67\x2c\xef\xed\x68\x5e\x2e\x7d\xd9\xc2\xe9\x60\x7d\x0f\x3c\xd3\x2c\xca\xf7\xbd\x40\x35\xcb\xa9\x96\x99\x0f\xa4\x61\xef\x9b\x8b\xa4\x62\xc9\x7e\xa8\x55\x57\x9f\x4d\x30\xa5\xfe\xdd\x0d\xe8\xcf\x13\x42\x96\x0b\x11\xc5\xc5\x03\x83\xe2\x18\x9d\x70\x01\xeb\x7d\xd1\x85\x17\x08\xce\xb7\xcc\xba\xac\x36\x57\x0a\xee\xf7\xa8\x27\xf7\x7f\xc2\xab\xf5\x87\x57\x23\x09\x5f\x1e\x26\x53\xee\xf0\x2c\xe2\x51\x31\x74\x45\xd0\x1e\x1d\xfe\xce\x30\x6b\x9f\xfb\xc2\xac\x2d\xca\xb2\xa9\x9b\x2a\xd9\xec\xd3\xcc\x56\x96\xe3\x3f\x24\xcd\x95\x13\x3e\xda\xc8\x35\x0f\x30\x1b\x54\x66\x88\x00\x33\x6f\x18\x91\x0f\xba\x61\xa9\xcd\x7c\xf1\xa4\xee\xc8\x15\x9d\x72\x1e\x18\xea\xcc\x91\xf3\xd3\x9e\x32\x2a\x8f\xc2\x22\x13\xd1\x05\x8d\xb9\x52\x01\xf4\x1c\x19\x5e\x07\x58\x67\x01\xa4\xde\xfa\xdf\x32\x37\x0a\xb8\x91\x8b\x6c\xcb\xdb\x24\xdf\x26\x0d\xfb\x11\xcf\x8d\x8e\x31\x7b\xa1\xa6\x5a\x32\x21\x6e\x52\x1d\xa5\x3d\x30\x88\x20\xce\x55\xac\xa3\x82\x2e\x40\x73\x2e\x9b\xab\xbd\xfe\x73\xf8\x31\xec\x44\xdd\xe3\x89\x90\x6b\x31\xd5\x9e\xce\x70\x70\x2f\x94\x81\x01\xfe\x72\x46\xae\xea\x4d\x07\xb0\xce\x12\x5b\x69\x5b\xa4\x4f\x57\x5d\xc0\x34\x17\xe0\x05\x17\xd0\x59\xc2\xca\x47\xc5\xb0\xac\xb9\xea\x00\xd7\x59\x18\x63\xbe\xab\xda\xcc\xec\x43\xce\xea\xba\xb3\x03\x3a\x53\xcd\xc5\xc3\xa6\xa9\x7a\xe6\x43\x67\x7b\x4a\x68\xa7\xeb\x7b\xca\x6a\x40\x55\x0b\xc8\xe8\x59\xed\x2d\x28\xf2\x84\xf2\x9e\xe4\xd0\x3c\xbd\xf4\x04\xfa\x23\xaf\x0c\xf6\x61\x36\xd6\x79\x53\xf4\x6f\xd7\x0d\xfa\xd6\x04\xdd\x76\xee\xd4\x33\x0f\x5d\xcf\x4b\xdf\xa6\xe2\xa7\xe5\x58\x65\x09\x3f\x58\x8b\xed\xe5\x25\xf3\x2d\x00\x40\x9b\xf9\x78\x66\x24\xcb\x2b\x78\x86\x72\xe2\x3f\xca\x1c\x00\xfb\xb6\x2a\xb7\x1b\x96\xf2\x34\x17\x92\x64\x22\x3d\x4a\x96\x3e\x2c\x04\x58\x9d\x67\x1c\x03\x3e\x70\xcf\x29\x23\x38\x52\x1f\xb4\x47\xc5\x1d\x98\x53\x1f\xac\x47\xc7\x3d\x2f\x97\x3e\x48\x0f\xfd\x79\x24\x38\xd6\xbd\x91\x24\x5f\x01\xd7\xea\x84\x92\x1c\x63\x3a\x01\x79\xb1\x71\xb4\xe7\x09\x20\xe6\x9a\xe0\x97\x7c\xc6\x7b\x0a\x40\x3e\x14\x79\xcd\xde\x37\x0f\x2b\x96\xec\x0d\x55\xc9\x01\x9f\xf0\x09\xdb\x1b\xa7\x92\x43\xbe\x42\xe6\x78\x6f\x8c\xca\xac\xd8\x6c\x1b\xcf\xc4\x72\x7e\x69\x4c\x32\x05\x32\xbc\x6f\x38\x0b\xdf\x05\x6f\xe6\x0b\x2b\x2f\xc1\x6d\xa3\x7d\xec\xde\xc8\x96\x17\x9a\x9b\x82\xb3\xdf\x41\x7d\xce\xa6\x8d\x7d\x50\xb8\x00\xd9\x7a\x93\x33\x9d\xeb\x2f\xee\x83\xc2\xd6\x31\xe7\x7b\xc9\xc9\xbb\xc5\xbf\xe4\xad\x7b\xa0\xb0\xf8\xbe\x82\x7d\x45\xfa\xc0\x1d\xe9\x99\x66\xfb\xd4\x2f\x07\x46\x71\x70\x8a\x63\xf3\xbd\xd2\x52\x2e\xcc\xe6\xd6\x0e\x78\x11\x8e\x7d\x9c\x9a\x5b\x4e\x73\x6d\x94\x4b\xeb\x80\x13\x1c\x9b\xc9\xa1\x75\xd5\x29\x7b\x41\xcf\x7d\x1b\xf6\x92\x35\xb1\xc9\x95\x79\x20\x24\xef\x47\x78\x3d\x1b\xca\xcf\xc7\xf9\xf9\x36\x67\xc5\x38\x57\x04\x5c\x90\x2f\x47\x9e\x8e\xf4\x34\xb4\xe1\xd4\x49\xa0\x08\xbf\x0d\x41\x0f\x01\x4a\xf3\x3b\xe7\x99\x73\x73\xf4\xc3\x81\x24\xa7\x2b\x39\x4c\x6d\x28\xf3\x6e\x61\xde\x25\x1c\x15\x0d\xab\xb0\x32\x32\x36\xe9\x84\xf5\x2d\xa0\x2e\xbc\xfb\xdb\xbb\x9d\x45\x01\x2f\x39\xf1\x51\x0f\xa3\x01\x6b\x1f\xfb\xf6\xbb\x80\xb7\x20\xfb\x61\x62\x7b\x47\x8f\x29\xa9\x26\xbf\xe5\xa4\xc8\x93\x4c\xfe\x10\xe9\xe2\xe0\x12\xe7\x14\x4d\x13\x27\x95\x71\x30\x59\xf9\x78\x34\x59\x27\x91\xee\x0d\x9c\x45\xf2\x07\x49\xc7\xa3\x47\xfd\x3a\xa4\xff\xdd\xba\x29\x81\x71\x5b\x09\x22\xcf\xe5\xc5\x55\x02\xb0\xeb\x70\x2f\x2c\x41\xd4\x75\x89\x39\xa0\xb6\xac\x48\x83\x48\x5f\x09\x0e\x28\x81\xdc\x7d\x10\x19\x6c\xfe\xfe\x72\xf6\x33\x93\xfd\xce\x70\x68\x3d\xea\x7e\x11\x44\xd6\x55\x63\x7f\x59\x7e\xd9\x08\x22\x7d\xe5\xd8\x5f\x22\x5b\x05\x51\x76\x70\xfd\x78\xf5\xe0\x1d\xd3\x57\x90\xc3\xd6\x00\x1f\x66\x22\xf3\x3e\x71\x58\xd1\x87\x9e\x92\xfa\x26\xb2\xbf\x0e\x2a\x1c\xb6\xaf\x21\xfb\x4b\xe7\xe5\x65\x10\x29\x76\x7f\x3f\xbc\xe4\xf5\x83\xc8\xe4\xfa\xf7\x97\x44\xd1\xb1\x66\xd4\x0f\xe9\xdb\x92\xf7\x6d\x79\x28\xbc\x12\x2c\x1b\xfc\xfc\xfe\x72\x5a\x68\x6d\xde\x1b\xf6\x97\x14\x72\x6a\x72\x23\xd8\x5f\x06\xc5\xac\xfa\xe6\x76\xf0\x96\x51\x1b\xe6\x60\xe4\xe7\x8c\x70\x10\x11\x7e\xf8\x90\xb9\x40\x66\x98\xcf\x05\x65\x8b\xed\x30\xa4\x8e\x6a\x91\xad\xb4\xd7\x69\xbc\x7e\xf8\x9b\x8f\x47\xe8\x3d\xfb\x2d\x1c\x61\xec\x95\x8d\x7a\xec\x97\x3d\x17\x16\xfb\xf0\xf7\x19\x1d\x1b\xe6\x96\x66\x34\xb9\x88\x44\xa7\xf7\xc4\xa5\x17\xa1\x8d\x75\x20\x79\xde\xa4\xf4\x47\x13\xeb\xe8\x69\x13\x54\xc9\x57\xa8\xfb\x44\x81\xa8\x07\x62\x05\x5b\xdf\xb3\x80\x5f\x8a\xd5\x67\xa9\x6e\xf8\xf8\x58\x5b\x8b\x5e\x25\xf5\xd0\xae\x18\xa3\x16\x38\x15\xd0\x18\xd2\x3a\x0e\x91\xf2\xb9\x13\xe4\xc9\x75\xc9\xb1\xd1\xa9\xae\x35\xe6\x32\xee\x32\x55\x5d\xf5\x37\x7f\x73\x43\x94\x57\x2d\x5d\x56\x4f\x0c\x21\xd5\x2f\x8b\x8f\x0b\xa7\xb7\xe8\x89\x54\x30\x50\x45\xda\x5e\x9f\x0d\x06\xb6\xf4\xa3\xbd\x7c\x07\x72\xdf\x3c\x6f\xf9\xc4\x75\x9b\x97\x29\xe3\x99\xcb\xf3\x92\xda\xf1\xf0\xfa\x9f\x76\x3d\xe3\x17\x9c\x98\xdb\xf5\x4e\x8f\x28\xc2\x2f\x89\x70\x84\x1b\x1e\xe7\x09\xee\xc3\x48\x97\x6f\x99\x8e\xc7\x16\x8f\x70\x49\xea\xfc\x76\xe8\x02\xeb\x40\x3c\x84\xaa\x6b\x25\x64\x14\xf3\xd7\x57\xb1\x48\x41\xd5\x18\xb4\x65\xa2\x49\x60\xe2\x86\x07\x03\x38\xf7\x04\x9d\x1e\x30\xe7\x2b\x0b\x08\xa6\x87\x29\x65\x31\x4d\x59\xce\x1a\x36\x50\x00\x46\x42\x59\xf0\xcd\xa8\xab\x89\xe3\x40\x61\xa5\xd2\x88\xee\xd0\x80\x96\xcb\xa6\x15\xa0\x41\x9d\x9b\xd6\x17\xee\x54\xb3\xb1\x4a\x6c\x45\xcb\xd8\x4d\xf1\xf7\xe6\x26\x60\x45\xc3\xaa\x60\xda\xdf\xa8\x42\x01\xa2\x76\x4d\xbd\x7a\x51\xb9\x12\x15\x23\xa9\x59\x37\x0f\xc5\x0f\x9c\xf8\x03\x3a\xc9\xd1\x4f\xf7\x91\x76\xd1\x92\x66\x99\x9f\x87\x50\x15\x42\x38\x66\x87\xba\x7b\x51\x59\x35\xc9\x72\x8c\x09\x7e\x23\x62\xd0\xb7\xd9\x6d\x77\x27\x67\xc4\xdd\x49\xed\x71\x85\x52\x8b\x3c\x47\xb2\xf5\xb9\x10\xb4\x9b\x24\x04\x0c\x16\xb4\xc3\x90\xba\xa9\x40\x49\xf0\x71\x56\x6f\xf2\xe4\x7a\x72\x77\xb7\x03\xac\x40\x57\x0b\x1a\xd7\xdb\xf6\xae\xf6\xba\x57\x4f\xe4\xb4\xaa\xfc\x79\xd4\x24\x97\xe8\xbd\x55\xf0\x64\xca\x43\xc8\x37\xa8\xfd\xc1\x0b\xf1\x4a\x83\x08\x6b\x05\x95\x91\xac\x48\x59\xc3\xaa\x75\x56\xa0\x46\x45\x9a\xd5\x60\x71\x03\x91\x18\x17\xe0\x20\x57\xc4\x56\x0c\xa2\x20\xd9\x36\xe5\xaa\x5c\x6e\x6b\x88\x17\x08\x26\x1b\x1c\x70\x55\x56\x6b\xde\xfe\xf5\x86\x4d\x74\x87\x23\xd1\x88\x08\xd3\x24\x2b\x16\x9f\x46\xbb\x2a\x6d\xaf\xf7\x14\x88\x69\x08\x46\xcb\xc2\xa0\x19\x61\xd0\xf5\x82\x08\x1a\x0d\x7a\x98\x18\xe5\xfb\x69\x51\xb3\x4a\x06\x93\xee\xae\x5a\xfb\x11\x66\x32\x10\xf6\xd8\xe8\x60\x7c\x74\xa4\x61\xcc\x29\x0b\xdb\xc8\xd3\x3c\x6d\x4b\x07\xc5\x56\xd3\x0e\xcd\x7f\x36\x0c\xc7\x1c\xe9\x87\x2a\xdd\x71\x01\x68\x1c\xee\x62\x62\x0f\xda\x7f\x52\xed\xe4\x70\x85\x26\x56\x6c\xd7\xac\xe2\x4b\x74\x61\xba\x93\xfb\xed\x36\xae\x93\xa1\xaf\x92\xa6\x02\x89\xcf\xab\x1d\xa6\x65\xf5\x05\x86\x15\xb5\x58\x88\xf5\x66\xdb\x10\x15\xa8\x43\x9c\x39\x61\xd1\x75\xf6\x3e\x2b\xfc\x03\xca\xd8\xef\x26\xf0\xcd\x27\x50\x55\xf9\x2d\x95\x37\x14\xea\xfc\xc8\x97\x6c\x1f\xeb\x63\xd3\xd7\xcf\x7b\xe8\xeb\x17\x7d\xf4\xf5\x8f\x06\x7d\x55\xb8\xe4\xc0\x79\xde\xcc\xb2\x1a\xbc\x13\x38\x8e\xa1\x44\xba\x80\x79\x5e\x16\xac\xcf\x33\x14\xbe\xca\x22\xee\xd9\xaf\xb1\x63\x99\xd1\xe5\x87\x0a\x1e\x57\x1f\x9a\x4e\x1d\xec\x85\x93\x5e\x4f\xe4\x1b\x29\xdf\xf6\xd2\x8e\xdb\xf7\x46\x4a\xf3\xc5\x23\x16\x78\x38\x8f\xad\x25\x92\x9e\xcf\x81\x0c\xbf\x67\x75\x17\x04\xcf\x89\x84\x09\xba\x03\x21\xd2\x23\xe1\x74\xce\xc9\x17\xe9\x91\xd6\x67\x7e\xdd\xa5\xfa\x29\xf2\xdd\x87\xc5\x3d\x87\x65\xe0\x4a\x78\x03\x7d\x0e\x96\x22\xc1\x77\x10\x82\x7d\x5f\x10\x05\x48\x28\x59\x1a\xcc\x23\xb1\xae\xae\x03\x6b\xf0\xf8\xf2\x5e\x2b\xcb\xee\x4c\xb5\x5c\xc9\x7b\xf1\x8f\x88\x33\x60\x93\x5d\xb7\xa1\x1d\xbc\x69\x20\x23\x26\xab\x05\x69\xcd\x38\x4f\x16\x2c\x0f\x34\x3f\xe6\x3f\x0d\x01\xea\x87\xa4\xb9\x52\xee\x67\xe4\xc9\x08\x03\xf2\xe6\xc8\x63\x0e\x0c\xd7\x31\x08\x9f\xc4\xcd\xa1\xe5\xb9\x40\xf8\xb6\x21\x8e\xf5\x45\x4a\x10\x8a\xc2\x7c\x51\x74\x2e\x5a\xcf\xc2\x22\xa9\x6c\x74\x40\xe1\x85\x59\x6f\xf3\x26\xdb\xe4\x2c\x08\xa9\x0b\x06\x2c\x76\x7c\x2c\xbd\xf1\xab\xa4\x48\x34\x8e\x63\x7b\xb1\x1a\x86\xe1\xd7\x27\x67\x46\x10\x0a\xd9\xe1\x58\x15\x6a\x5b\x3c\x55\xc1\xd5\x81\xea\x7e\x57\x57\x23\x77\x42\x27\x72\xcf\x0d\x69\x19\x5c\x97\x67\x12\x3a\x88\xac\x99\x53\xf5\xf8\x67\xc7\x2e\x8e\xe6\x13\xaa\x90\x0a\xbe\x68\x6e\x61\x51\x8f\x40\x0d\xdf\xa2\x89\x69\x50\x6d\xea\x1a\xe9\x34\xe8\xd4\xb0\x0d\x23\x17\x53\xfa\x86\xfc\x93\x84\x76\x86\xac\xea\xe9\x1b\xb2\x2e\x8e\x43\x56\x85\xfa\x87\x2c\xb6\xe7\x21\x43\xd6\x35\xd2\x21\xeb\xd4\xb0\x95\xde\xaf\xac\x87\x1e\xf3\xc4\xb8\x05\x95\x81\xe2\x26\x9d\x11\x49\x3e\x4a\x83\xab\x37\xd7\xfb\x47\xe4\x4d\xfc\x28\x19\xc9\x4d\xe2\x03\x53\x1b\x28\xb2\x10\xca\x07\xec\xa0\xac\xb5\x22\xdd\x65\xc8\x9a\x67\x0d\x5b\x2b\x43\xe2\x9e\x12\x9c\x7d\x33\xa6\xf9\x56\xa4\x9b\x4c\xa6\xe4\x5c\x3d\x77\x1d\x91\xe5\x52\x6a\x5b\x50\xac\x4d\x09\xd4\xa5\x3a\x29\xca\xe2\x7a\x5d\x6e\x6b\x62\xb5\x11\xa5\x6c\xd3\x5c\x9d\x8a\x37\xb6\x5a\x8a\xf4\x6b\x30\x64\x11\x04\x57\x72\xcb\x4f\x8b\x55\x19\xcf\xbe\x88\x82\xaf\xe3\xc1\xd9\xf8\x74\x7c\x1a\xcc\xa7\x52\x8e\x82\x01\x33\x59\x75\xc9\x86\xb2\x2a\xa7\x47\xca\x8e\x9a\xd7\x1d\xf3\xff\x6e\x6e\x76\x68\xba\x81\x16\xa8\x71\x10\x44\x60\xdc\x79\x16\xa1\x71\xd1\xf9\xfb\x4d\xc5\xea\x9a\x13\x5c\x68\xc0\x4e\x25\x6e\x48\xd4\x28\x37\x55\x79\x59\x25\xeb\xb3\xa1\x18\x19\x0e\xc4\xd7\xc8\xd4\x31\x7e\xbd\xfb\x15\x2e\x25\xee\xeb\x38\x08\xbe\xbe\x1b\x4e\x11\x38\x96\x87\x97\xf5\x1e\x87\xe7\x98\x68\x0b\x8f\xb1\x4d\x55\xae\x37\x4d\x10\xed\xc4\x41\x18\x29\x89\x84\xfc\x78\x84\xc7\x1e\x7c\x2f\xe5\xef\x19\x56\x82\x97\x48\xbe\xe2\x4f\x1f\xf3\x75\xe6\xc7\x2b\xff\xaf\x05\xe2\x81\x9d\xb9\xb9\x11\x9d\x8a\xe3\xd3\x70\xe7\x0c\x03\x33\xc3\xd6\x35\xee\xfd\xea\x1e\x0e\xf0\xeb\x40\x39\x35\xc1\xfc\xd6\x9e\xbf\xcf\xdd\xf9\x13\xb3\x66\xcd\x07\x4b\x96\x57\x9e\x49\xb8\x44\x0d\x83\x47\xf2\xf0\x39\x6c\x32\xb2\xe2\x2d\xab\x6a\x86\xbe\x8e\x8a\xb2\xdc\x44\xab\x02\x3f\x44\xb7\x86\x5f\x44\xe2\xd7\x17\xd8\xb3\x4f\x39\x7f\x70\xca\xba\x93\x18\x84\xad\x33\x5d\x5f\x98\xd3\xe5\x14\xb2\x31\x77\xe8\x0a\xa5\xdc\xe9\x03\x8a\x22\x67\x4e\x1c\xe3\x13\x7d\x9e\x03\x55\x9d\x08\xe2\x6a\x4c\xac\x82\x7d\xfa\x58\x81\x3d\x7d\x1c\xd8\xf3\x2d\xc1\x44\xcb\x08\x88\x1f\xb7\xc1\xcb\x30\x74\xa6\xe3\xcb\x8f\xc4\x9e\xe5\x6f\x8d\x36\x7f\x92\x68\xf3\xa7\xdf\x15\xda\xfc\xe9\x37\x46\x1b\x72\x12\x39\x78\xd3\x8d\x22\xfd\x78\x71\x4b\x54\x30\x17\x78\x16\x64\xab\x60\xfe\xd1\x44\x72\xff\x02\x9f\xc9\x05\x3e\xfb\xf4\x0b\x7c\xe0\x10\x71\x31\x40\xd5\x0a\x19\x89\x0f\x18\xab\x1c\xde\x97\x72\x78\x5f\x8a\xe1\xd9\xe3\xff\x5c\x02\x7c\xfe\xe9\xc7\x6f\x9e\x1c\xa1\x97\xe5\xd3\x6c\x5a\xbf\x3c\x95\xc8\x50\xa9\x68\x15\xe4\xa9\x51\x50\x67\xff\x62\xc1\x5c\xf1\x83\x7e\x39\xaa\xac\x42\x7c\x4a\xec\x05\x3f\x34\x8a\xa9\xc4\x4f\x0c\x94\xef\xb2\xd4\x6f\xd8\x35\xf1\xef\xa3\x8c\xd6\x85\xd5\x78\x1c\xc7\xf7\x15\xd3\x8d\x31\xee\xbb\x98\x7f\x87\xe3\xd7\xe1\x9b\xfe\x21\x3a\xf6\xf3\xf8\xc1\xbd\x28\xd0\x07\xb0\xaa\xe6\x81\xae\x46\x75\x7b\x1c\x8c\x34\x1b\x3f\xf1\x00\x04\x06\xcb\x4f\xd3\x23\xdc\x62\x38\x70\x8b\x11\x26\xa7\x88\xd5\x63\x27\x47\xe1\x2f\x56\xa4\x0e\xa6\x89\x79\x17\x88\xcc\x03\xbf\xf3\x7a\x7d\x29\xab\x73\x26\x4d\x6f\x14\xe4\xa1\xcd\x0a\xb5\x87\xec\x3d\x97\xf4\x9b\x9b\xd9\x7c\x2a\x5d\x06\x8a\x54\x7d\x6d\xe3\xbc\x3c\xb9\xad\x42\x05\x3c\x2d\x52\xfd\x52\x57\x77\xb3\x7d\x7e\x05\xad\x85\xe7\x43\x21\xa8\x08\x8f\xe2\x18\x7e\x85\x3b\x13\x96\xba\x83\xdd\xe1\xa9\x0a\xff\x2b\xd4\x54\xfe\xdd\xc2\x76\x4f\x4b\x6a\x58\xb8\x03\xa1\xfb\xda\x09\xa0\x59\xd0\x40\x04\x87\xf8\xc8\x19\x1a\xff\x05\x34\x84\xc2\x48\x9f\x15\x13\x2a\x3c\x8a\x2e\x96\x8e\x4b\x55\x43\x98\x41\x25\x18\x28\x5c\xc1\x02\xdf\x8b\xf4\xa1\x74\x84\x49\xf2\x5e\x65\xc5\x25\xe4\xb4\x7a\x47\xfa\xae\xde\x1a\xef\xb1\x97\xf6\x7d\xdb\x27\x80\xe9\x94\xba\xd0\x8e\xf2\x7b\xb7\x10\x6c\x6a\xe1\x4a\x48\x1f\x26\xc8\xf5\x53\x2c\xcf\x4c\x25\xcd\x95\x73\xe9\x56\x88\x93\x9c\x41\xf8\x47\xef\xc2\xe9\x99\x10\x52\x08\xdf\x34\x88\xab\xff\x2d\x24\x53\x78\x61\xd1\x39\x58\x03\x11\x74\x7c\x18\x8d\x52\xe2\x32\xf4\xff\xf1\xb1\xa4\x4a\x2f\x3e\x5f\x29\x80\x3e\x92\x72\x2b\xd1\x06\x5f\x12\xb9\xc6\xa2\x33\x0f\x24\xe6\xae\xb2\x82\xd0\x93\x72\xf1\x8b\x49\x94\xe3\x38\x1e\x9a\x3d\x2c\x17\xbf\x10\xd9\xc8\x84\x97\x68\x43\xa0\x63\x28\x16\xe4\xab\x4f\x17\x5e\x63\x06\x5f\x1e\x7e\xd3\xbb\xbc\x64\x95\xeb\x62\xf8\x10\x54\x54\x27\x84\xbb\x2a\x53\xc4\xc6\xe7\x65\xc1\x0c\x64\x14\x7d\xb2\x51\x66\x88\x71\x51\x45\x01\xe9\xe0\x4d\x4b\x3c\x29\x20\xdd\x74\xc3\xb0\x8d\x8c\xfd\xe7\x1f\x02\x4b\x9f\xf2\x23\x39\x96\x0f\x72\xb3\xd3\xf9\xd8\xc8\x89\xfa\x10\x0f\x0f\x19\x2a\xfe\x42\xc6\x0e\x07\x29\xe0\x6e\x6e\xe0\xed\x70\xa9\x08\x9c\xf0\x26\xac\x04\x60\xd9\x6a\x88\xe5\x8e\x8f\xcd\x4e\x01\x23\xe2\xdd\xa4\x7c\x15\xd5\xae\x54\xe5\x25\xfa\x88\xf2\x27\xf1\x59\xeb\x2d\x2d\x51\x4a\xf9\x66\x37\x8a\x85\x7a\xe6\xbe\x57\xac\x87\x39\x77\x52\xfe\x2d\x66\x4d\x6c\xaa\x89\x92\xa5\xf7\xcc\x4c\x54\xae\x56\x35\x6b\x62\xfc\x7e\x70\x36\x39\xed\x9d\xe1\x03\x68\x9e\x9c\x67\x3a\x9f\x86\xce\x84\x31\x3a\xa2\x2b\x61\xf8\x1c\x36\x23\xf6\x01\x9f\x76\x82\x5d\x6d\xc3\x71\x53\x22\xf1\x44\xc4\x2e\xd8\xbb\x57\xf6\x36\x15\x73\x59\xdb\x93\xc9\x6a\xe8\xa3\x8f\xfa\x4a\xba\xa3\xc5\xdd\xa7\x11\x1f\xa4\xfe\xd6\x8e\xa7\x69\x93\x82\xc6\xfa\xf1\xc2\x80\x6b\xdb\xa8\x93\x08\xdb\x4b\xca\x72\xe2\x58\x5a\xbd\x82\xc3\xfc\xf2\x33\x5e\x4c\xed\x87\xbc\x11\x78\x49\x20\x22\xb8\xa4\x71\x52\xf2\x2f\xf7\x88\x9e\xa6\xc9\xc9\x59\xff\x2e\x33\x31\x5f\xd6\x3c\x8a\xcf\x38\x1a\xf0\x9e\xb3\xdc\xdc\xd0\xb1\x09\xe9\x9f\xa3\x2e\xc4\xff\xf8\xb1\x6b\x34\x34\x06\xcf\x6a\xff\xf0\x67\x27\x67\xf3\x5b\x6d\x26\xff\xd6\x0c\xc2\x28\x49\x7f\xd9\xd6\x0d\x46\xcc\xb6\x1f\xb2\x40\x12\x41\xf7\x82\x04\x8e\xf5\x6e\xf8\xfa\xe4\xec\x81\xb3\x37\x26\x27\x67\x53\x42\xb8\x59\x1a\x9b\x8f\x38\x6a\xb4\xaa\x79\x78\xc1\xe1\xac\xd0\x81\xca\x1e\xb6\x12\x87\xa1\xf6\x61\x9c\x51\xfd\x1a\x22\x4b\xe1\xf6\xbe\x5b\xbf\x42\xd8\x8c\x50\x3d\x28\xd3\x9a\xc4\xcd\xf1\xd9\x94\x78\xa1\x7c\x96\x25\x07\xe9\x71\x10\xa5\xc9\x03\x14\xa9\xfc\x1e\x53\x6f\xed\x2e\xc4\xd2\x8c\xf8\x14\x0a\x10\x1f\xaa\x7f\xa5\x35\x67\x0f\xd0\xaf\xf4\x59\x7a\x7a\x54\x2c\xbd\xaf\xef\x5f\xd0\xc7\xf7\x7d\xea\xb6\xf2\x99\x83\x34\x1a\xf9\x9e\x3c\x76\x3b\xa9\x4a\xd7\xb6\xde\x17\x0e\x9e\x7d\x02\xcb\x4d\xd4\xb9\xb4\xba\xbc\x4f\xd6\x50\x95\xef\x6a\xb8\xe0\x80\xae\x8c\x10\x2c\x28\x0a\x72\x0e\xbe\x78\xd4\xe7\xab\x26\x81\x75\x7e\x57\x25\x9b\x60\x1e\xf1\xb2\x32\xda\x54\x2e\x7e\xf9\x94\x99\xf6\x31\xe7\x5d\x0c\xf8\x67\xf2\x54\xf9\x6c\x08\xc4\xfa\x33\x96\x1f\x1f\x4b\xce\xf7\x33\x96\x73\x16\x6e\x18\x86\x3b\xf9\x13\xd9\x3b\xce\x7e\xfe\x16\xd4\xc1\xa7\x14\xe6\xf1\xd9\xbd\x4f\xa5\xf9\xb7\x53\x60\xfc\xb0\x2d\xf9\x7b\xda\x7e\x7d\xea\x8f\xfe\xad\xe9\xd9\x6f\x5d\x5b\xf3\x8b\x83\xc2\xae\xdd\x76\xd3\x59\xfa\x94\x7c\x76\xbb\x74\x29\x61\xf7\xe1\xaa\xdf\x4a\x9b\x52\xe9\x92\x64\xff\x62\xa0\x69\xd0\x34\xac\x2a\xf4\x6e\x5c\x03\x1d\x5d\x27\xef\x83\x28\x48\x96\x4b\xb6\x69\x84\xc0\x8f\x23\x44\xce\x1a\xa9\x5a\x59\x27\x6f\x99\x10\xff\x25\xd2\x13\x17\xff\x60\xc5\x52\xb4\xc4\xbf\xd6\xe0\x04\x4d\x7c\x14\xe5\xdb\x24\xcf\x52\xd4\xdd\xe4\x09\x4d\x52\x21\x66\x5e\xb1\xec\xf2\xaa\x01\x0d\xcf\xcd\xb6\x59\x97\x29\x87\xc8\xb3\x9a\x27\x11\xf9\x64\xdd\xb0\x0d\x27\x08\x59\xda\x5c\x05\x73\x21\x23\x0c\x02\xa1\xcc\x09\xb3\x15\xf1\x71\x21\x71\x10\x43\xc3\x8f\x75\x26\x7f\x24\xef\xe1\xc7\x6d\x36\x57\x47\x84\xe2\xdb\x6e\x2f\x9f\x12\x9f\x54\xfe\x83\xd4\xfa\x1e\xce\xc8\x05\xce\xe8\xff\xc4\x8d\xf5\x3d\x1f\x87\xa3\x31\x07\xa9\xb8\x9f\x60\x80\x0f\x91\xc0\xef\xdf\x57\xf6\x16\x84\x8a\x84\xeb\xfc\xa1\xa7\xae\x68\xa7\x90\xc2\xb7\x07\xe0\x12\x73\x55\xe6\xe8\xd4\x8e\x88\xbb\xd7\xc9\x7b\x71\x7f\x31\x44\xdf\x15\x4b\xd2\xb2\xc8\xaf\x3b\x64\xde\x9a\x15\xaf\x94\x37\xba\x7a\xc3\xf2\x1c\x74\x64\x4d\x99\x79\x93\x35\xb9\xdc\x3b\xcb\x64\x93\x35\x60\x5b\xad\xf6\x56\x55\xa1\xb6\x00\xe9\x21\xe2\xab\x25\x42\x57\x1d\xc5\xdc\x03\x8f\x1e\xe8\xf8\x8b\xad\x79\xe4\x30\x72\xd8\xa8\xcb\x44\x3f\x63\xba\xaf\xc8\x26\xa9\x9b\xdb\x95\x58\xde\xb2\x53\x82\xc0\xdd\xa2\xc4\x1b\x76\xfd\xe3\x86\x96\xc8\x8a\x86\x55\x9b\x8a\x35\xdf\xb1\x6b\x30\x96\xa8\xc3\x36\x4a\xc8\xdb\x83\xb0\xa1\x98\x08\x13\x8a\x68\xb1\x5d\x2c\x72\x56\x2b\xc5\x6f\xbb\xb8\x5e\x00\xf6\x16\xee\xf6\xe8\x52\x6b\x43\x4d\xa9\xc7\xdf\x9d\xff\xef\x8b\xf3\x9f\xce\x9f\xbf\x7e\x85\x1e\xb7\xd0\x3b\xe4\x3a\xd9\xcc\xa0\xd0\xf8\x0d\xbb\x7e\x54\xa6\x6c\x3e\xed\x19\x15\x32\x26\x58\xd4\x90\x01\xcc\x30\x6d\x2e\x3a\xc0\xef\x89\xde\x0a\xfc\x9a\xde\xe2\x48\x50\x7a\xde\xc8\xe8\xf0\x5b\x0f\xe7\x56\x9e\xb3\x77\x79\x56\x30\x67\x90\x35\x2b\x52\xdc\x7b\x43\x39\x51\x50\x1d\x66\x4f\x69\x36\x56\x74\x52\x60\x4d\x06\x5c\x1b\x2d\x93\x62\xc9\xf2\xfe\xea\xe1\x71\xf5\x04\xde\x56\xad\xd2\x80\xd9\x4f\x8b\xde\xe2\x00\x73\xc2\x89\xae\x5b\xf4\xc5\xb6\x39\xa0\x6c\xa9\x70\x4e\x16\x7e\xc3\xae\x7f\xe0\xdd\xe9\x2d\xfc\x86\x5d\xfb\x3a\xdd\x86\x53\x3f\x66\xc4\xbb\xb3\xcf\x27\x81\x31\xed\x41\x74\xff\x4f\x93\x00\xe7\x28\x68\xb5\xf2\x0c\x69\x06\x6a\x05\xdb\x3d\xce\xb9\x45\x04\x07\x13\x7d\xc5\xd7\x59\x60\xa9\x17\xd1\xe4\x40\x20\xbc\x21\x9d\xc6\x1c\x22\x07\x2d\x8b\x38\x8e\x55\x0d\x37\x37\xf0\x1d\xc8\x79\x08\x8e\x8f\x55\x9e\x48\x17\x43\x0f\x77\x6f\x51\x69\x4c\xcf\x8b\x64\x18\x04\x0b\x6d\xe7\x93\x01\x01\x00\x6f\x1d\x8b\x88\x56\xf5\x38\xe0\xb9\x40\x77\x57\xec\xd4\x20\x0c\x77\xb8\xab\xea\xa6\xdc\xfc\x50\x95\x9b\xe4\x32\x41\xb4\x6f\x3b\x5d\xaf\x92\x25\xe9\xe3\x0c\x80\xc9\xe8\x89\x14\xdd\x1f\xf7\x79\xbf\x69\x43\x0f\x53\x61\x3b\x46\x15\xb6\x10\x55\x55\xda\x95\xf8\x0c\x05\xb2\xfa\x82\xad\x37\xcd\xf5\xef\xd5\x4c\xe0\xa3\x23\x3f\xaf\xd6\x2e\x5b\xb2\x5a\x37\x7b\x8d\x04\x3c\x5c\xff\x3e\xa3\x43\x1f\x87\xf4\x05\xe1\x90\xb2\xfa\xdb\xbc\x5c\x24\xb9\xd7\x49\x23\xcd\xd4\x9d\x3b\xe7\xcb\xb8\xcf\x12\xe0\xe9\xab\x8b\x6f\x9e\x3e\x7f\xfc\xf4\xf9\xb7\x8e\x31\x80\xce\x72\xfd\xeb\x45\x9d\x9e\x92\xb2\xfa\x9c\xe3\xc4\x3e\xbb\x81\x3a\xcf\x96\x2c\x9e\xcd\xc7\xf0\x23\x92\x2e\xe5\x3b\x55\xe4\x95\xab\x22\x45\xaf\x0c\x6f\x32\xc3\xaa\x2c\x1b\xce\x9f\x5f\x11\xb5\xa3\x37\x32\x9c\x18\x4f\x3a\x3e\x06\x9d\x06\x99\x76\x73\xb3\x03\x92\xcb\x3f\xa2\xac\x16\x61\xb9\xa6\x22\x25\xe6\x35\x8d\xeb\x4d\x9e\x35\xc3\x60\x1c\x44\x67\xe1\xec\x14\xe2\x40\xc9\xe2\x9e\xa0\x72\x3c\x3d\x0c\x77\xbc\x23\xb1\x04\x9b\x89\x1f\xf3\xa9\x6a\x22\x6e\xaa\x2d\x03\xd1\x6d\x02\xda\x05\xb2\xe4\x0e\xbe\x83\x00\xc5\xdb\xf0\x81\x9d\xd8\x2e\xea\xa6\x92\x0d\x08\xad\x84\xd1\x59\xd8\x0a\x55\x0c\x68\x70\xa2\x86\x3f\x81\x39\x50\xad\x4d\xd4\x2f\xa2\x80\x64\x78\x3c\x22\x33\x67\x3c\x1b\x80\xa2\xa6\x48\x39\x3e\x36\x94\xfc\xd5\xcc\xa7\xae\x5b\x1f\x7b\x21\x90\xe0\xf2\xf1\x9a\xd1\xad\xc6\x2a\xb8\x95\x2f\xe2\x57\xb2\xa9\x4f\x84\x3f\x02\x7c\xc0\xa5\x18\x0e\x33\x07\xee\xfb\xe5\xc9\x82\x55\x63\x01\x68\x5b\x3c\x12\x68\x08\xb3\xcb\x63\xe8\xa4\x95\x86\xe5\x84\x7a\x3d\x5f\x44\x4f\x99\xe9\xc6\x18\xb0\x2e\x38\xd5\x4d\xa9\x09\x08\xd5\x43\x27\xf5\xf5\x7e\x7c\xcc\x01\x8e\xe2\x98\x76\xfa\xf8\xf8\xd6\x03\x6c\x0d\x9d\x14\xb5\xb6\xda\x49\x55\xd7\xc2\x56\xac\xde\xe6\x96\xdb\x2b\x0f\xec\x14\x82\x06\x03\x68\x1c\x73\x26\xf6\xe6\x46\x7d\xaa\xc1\x70\x96\x11\xd2\x04\xde\x0e\x20\xfe\x02\xa6\xd1\x40\x88\x64\x23\xbf\x4a\x56\x0c\xe3\x15\x84\xaa\xb4\x88\x86\x88\x5f\xf8\xe2\x49\x2d\x7a\xc7\x2a\xfa\x81\x2a\x41\x2a\x44\x6b\x1b\x47\x5b\x4e\x56\xa6\xe2\xf7\xf1\x4f\xc3\xcc\xd7\xef\xda\x4b\xcd\xa4\xe1\x65\x4c\x59\xab\x60\x48\x09\x67\x46\x39\x64\x2a\xdc\x93\xcd\xe6\x96\x55\x32\x06\x36\x85\x92\x90\x33\xd5\xa1\xa4\x4f\xa3\x3c\x36\xa2\x54\x4c\xb3\xaf\x72\x8c\x25\x0d\xc9\x22\x73\x96\xcd\xa7\x18\x6a\x9c\x57\xc5\xbf\x44\x4c\x39\xce\x18\x3d\x7d\x0c\x96\xe0\xb4\x0f\xa8\x31\x62\x2e\xb1\x31\x02\x35\x80\x50\xda\x93\xb8\xc5\x01\x50\x23\x9a\x09\x62\xcc\x64\x9f\x7b\x36\x7b\x3e\xff\x9a\xd4\x57\xaa\x2f\x60\xc2\xed\x9d\x4b\x70\x09\xb7\x6b\x3b\x0d\xeb\x8d\x79\x14\x11\x40\x21\xac\x07\xf0\x6f\x80\x35\xfd\x71\x3f\xc9\x74\xbe\x61\xd7\xdd\x13\xca\x3b\x02\x10\xb1\x7f\x3a\xaf\x64\xbe\x65\x65\xef\x2b\x2f\x7e\x39\x53\xca\x61\x7c\x13\xea\xf8\xc5\xd3\x24\xdc\xf5\x64\x85\x54\x03\x86\x6f\x1c\xd5\x6a\x28\xca\x23\x9e\x27\xd8\x5c\x8f\xd3\xfc\x70\x16\x18\x15\x04\x73\x78\x07\x05\x26\x11\xee\x07\x71\x10\x18\xd1\x1a\x94\x0a\xdd\xcc\x56\xa6\x3b\x39\xa3\xcc\x90\xe9\x9b\x6f\x48\x8f\x98\xb1\xd2\x04\x06\xef\x20\x9a\x9c\x5e\xa9\x21\x11\xf3\x7e\x1a\x74\x06\xd8\x09\x54\xc8\x54\xad\x47\x67\x1c\xcd\x81\x1b\x0a\xfe\xeb\x2f\x84\x18\xe1\x20\x26\x83\x47\xe5\x36\x4f\x07\x45\xd9\x0c\x56\x59\x91\x0e\x24\xc3\x3c\xb8\xfb\x5f\x7f\xb9\x3b\x28\x0b\x11\x6c\x71\xf0\x5f\x7f\x19\x07\xe4\xfd\x70\x2c\x38\x0d\x3e\x05\x4e\xe7\xdb\xe6\xaa\x2a\xdf\x0d\x54\x14\x09\x60\xc6\x86\xab\x75\x33\xc4\x89\x9b\xc1\xf5\x02\x28\x2e\xef\xf7\x3c\x34\x5d\x10\xf8\x1c\x3b\xfb\x1c\x39\x2b\x84\xe8\xf2\x6f\xf6\x6f\xc6\x8a\xdf\x39\x0e\x10\xd3\x39\xa9\x4d\x6d\xcc\x2a\x71\x11\x21\x4e\x59\xba\x28\x9d\x1e\xb3\x3b\x3d\x64\x13\xe2\xe7\x38\xc3\x44\x0f\x45\xab\x42\x18\xa8\xe8\x8c\x87\xd5\x65\x1d\x77\x8c\x01\x5d\xca\x3d\x29\x6c\x8f\x9c\x74\xf8\x56\x55\x7b\x1d\x52\x41\x3f\x44\xbd\xa1\x45\x86\x0e\x73\xeb\xa9\x86\x69\xf5\x0a\xa2\xd5\x73\xd4\xf3\xdd\x16\xc2\x9d\xd7\x67\xe3\x3e\x44\xec\x8b\xc0\x10\xce\x02\x5f\x9d\x02\x37\xe5\x7d\xa4\xf9\x8e\x5d\x77\x4e\xb0\x4d\x62\xc5\x13\x9f\xb6\x89\xf7\x17\x3c\x8d\x4e\xce\xc2\xa8\xd8\xae\x7f\xd0\x80\xba\x8c\x40\xfd\xe8\xa0\xdd\x41\xf9\x52\x5d\xd9\x0c\xd5\xb6\x0d\x42\x23\x0e\x47\xd8\x2c\x59\x2d\xbc\x8c\x3e\x20\xfd\x33\x19\x90\xb3\x70\x62\x26\xb8\xde\x54\x80\x96\xa9\xcd\xa7\xf4\xc8\x15\x90\x4c\x88\x96\xdb\xaa\x62\x45\x23\x74\xd7\x63\x99\x8e\x8e\xad\xf8\x2f\x31\x9e\x07\xf2\x7b\x76\x3a\x9f\xe0\xbe\xaa\xd8\x2a\x7b\xcf\xd9\xdc\x27\x65\xf5\xd8\x58\x92\x00\x5c\xd1\x45\x39\x2b\xa0\x6b\x42\x27\x15\x46\x25\x7e\x4b\xca\x4c\xe6\x08\xb5\x13\x7d\xcb\x4e\x03\x36\x9a\xe0\xda\xab\xfb\x0b\xb1\x22\xc0\x30\x18\x29\xbb\x16\xd8\x0b\xdd\x11\x83\xc3\xd0\x77\xe3\x71\xc3\xea\x86\x80\x85\xe1\x8e\xd6\x33\xd3\x39\x78\xd5\x1d\x9e\x46\x27\x7f\x0a\x05\x37\xa0\x33\xe7\x18\xd6\xf7\x1d\x44\xd9\x33\x17\x1e\x6d\xd5\x36\x46\x12\xef\x5a\x5e\x2e\xe3\xd3\x69\x5e\x2e\xbf\x32\xf0\x6e\x3a\x1a\xe5\xe5\x52\xa8\xf0\x13\x1c\x44\x9e\x4e\x7d\xcf\xf2\x72\x89\x61\xcc\x90\x09\xe2\x9f\x8a\xf9\x79\x4b\xe3\x42\x40\x6f\xac\x5b\x9e\xb9\xfe\x91\x55\x2d\x5e\xfd\xa6\x3e\x44\x16\x11\xcd\x8d\x9c\x70\xea\x0c\xdb\x0b\xa6\xdc\x17\x99\x18\x1f\xee\xba\x1b\xda\xe1\x9d\xd8\xec\x5e\x2b\x6a\xea\xe9\xdf\x36\xcf\xc3\x16\x22\x37\xdb\x6d\xc9\x30\xdd\x3e\xdf\xbe\x48\x7f\x57\x85\x77\x0b\x6b\xfe\xf0\xad\xf0\x7c\x0f\xf4\x8e\x73\x08\x3e\xec\xc5\x58\xba\xf0\x5f\xc7\x65\x28\x32\xf8\x90\xa9\xac\xd1\x46\xf6\xd8\xd2\x56\x48\xf8\xf1\x32\x9b\xd3\x7d\x05\xe8\x44\xbe\x39\xaa\x53\x24\x46\x22\x4e\x53\x6c\xe6\x9a\xe4\x51\x26\x5b\xee\xd7\x7e\xec\x31\xf6\x0b\xf9\x90\x78\xa4\x46\x86\x52\x11\x51\x27\xde\xbb\x8d\xbc\x97\xfc\xda\xae\xf2\xe1\xc2\x0e\xdb\x8c\xd6\x19\x5b\xd3\x83\x94\x52\x56\x13\xb6\x07\xec\x2c\x77\x54\x64\x99\x01\xc3\x84\x6a\x1e\x40\x85\xbb\x8f\xe9\x3f\x5f\x2d\x7b\x33\xf8\xfa\x2d\x50\x5a\x83\xdb\x3b\xbd\x6d\x75\x9e\x15\x25\x6e\xb0\x2a\x04\xff\x60\x2d\x0c\x2f\x11\xb6\x53\x60\xc4\x30\xa8\xec\xa3\xab\x2c\x4f\x75\xab\x07\x21\xce\xe1\x78\xb3\x8f\x0c\x7c\x00\xf2\x84\xad\x5e\x51\x7e\xb2\xc4\x6e\x1b\xe2\xe2\xcd\x97\x3b\x67\x85\xb3\xc8\x4e\x01\x5c\x61\x98\x14\xc9\x0c\xbd\x90\x1a\x42\xc6\xe2\x45\xc6\x52\x47\x72\xd6\xd4\x8f\x71\xc5\x2a\x7e\xfc\x55\x61\xab\xc8\xf0\xe9\xfc\x08\x89\xf0\xcd\x8d\x97\x3c\x29\xab\xa4\x53\x43\x2b\x55\xc3\xfa\x91\xf2\x74\x1e\x29\x04\xd3\x00\x63\x25\xf6\xa1\x89\x80\x97\xa8\x75\x0e\xa2\x5c\x29\x8e\xea\x39\xb9\x39\xc4\x28\x18\x07\xad\x29\xd9\x30\x38\x2e\x47\xc0\xd1\x31\x83\xa2\x9b\x3d\x8c\xc2\xc8\xa8\x77\x96\xcd\x7b\xa7\xb6\x15\x17\x84\x8b\x2a\x79\xf7\x44\x90\xc2\x78\x55\x98\x1e\xe2\xb4\x00\xcd\x4f\xd8\xe5\x6d\x7f\x1f\x6d\x37\x28\xac\xcb\x5f\xf5\xf3\x1c\x82\x9f\xeb\x61\xe0\x14\x7f\xa4\x18\x21\xf9\xe3\xf5\xf5\x86\xfd\x5b\x48\xba\x4b\x50\xfd\x72\x91\xee\x7d\xa9\xce\x41\x73\x63\xf6\xa0\x7b\xe7\xde\xec\x26\xc0\x74\x5e\x62\xcd\xe1\x50\xc2\xfc\x9a\x8a\x7b\x34\x71\x34\x87\xd3\xb7\xa1\x2d\x19\x9a\x43\x7b\xaf\xa5\x4c\xf9\x10\xca\x6b\x90\x5c\xe2\x0c\x51\x78\x72\xa8\x37\x6c\x89\xd8\xd5\xc4\xf6\x63\x09\x66\x4e\x9b\x71\x56\xbf\x2e\x37\xf8\xc0\x20\x9f\xf2\x2d\xc7\x86\x76\xe0\x07\x9a\xdb\xe7\xac\x9f\xc2\xed\x0b\x0e\x61\xc8\x31\x8c\x80\x58\x66\xa8\x05\x0a\x77\x8b\x00\x0a\x7d\x4f\xa9\x4e\xc0\xc7\x9e\x67\xd5\x8f\x7a\x38\xed\xd1\xc6\x32\xfd\xb6\xf5\x3f\xde\x8a\xca\xf2\xa4\x11\x0a\x40\xfb\x9d\xbd\xed\x71\x54\x67\x3a\x79\xeb\x74\x43\x87\xc0\xd5\xb6\xb8\xc8\xcb\x72\x63\x25\x4b\x7d\xd7\x3d\x8f\xc5\x58\xad\x18\xd8\x2f\xbf\x6e\x59\x75\xbd\x2f\xae\xa7\x9c\x8d\x37\xec\xda\x1b\x82\x71\x4f\x78\xc5\xdf\xe3\x23\xf3\x6f\xe0\x8b\xce\x0c\xb4\xf4\xa9\xc2\x26\x7e\xf4\x6b\x78\xdf\x8b\xf7\x6f\xe8\xe7\x0e\xe8\xa1\xf3\xc4\x0d\xa9\xde\x47\xf9\x2f\xc9\xa3\x7c\x79\x81\x8a\x7c\xce\x5b\x36\x26\xdf\xc2\xaf\x5d\x9f\x53\x3f\x4f\xb0\x31\xe9\x24\xce\xf1\x70\x27\x32\xfc\x1e\xfc\xc0\xc7\x9d\x7a\x39\xaf\xb6\x85\xe3\xd4\xce\x89\x01\xc9\xd6\xe5\x5b\xf6\xc2\xeb\x30\x0f\xc2\x40\x1a\xf9\xfd\x9a\x03\x1c\xb7\x5c\xd5\x01\xd8\x93\xdf\xd8\x91\xfa\x00\x56\x85\xea\xfb\xe5\x6f\x7c\xb3\xef\x8d\xe2\xe5\xf3\x32\xf8\x47\xcb\xcb\xa0\x71\x24\xf8\xa2\x2c\x72\xfc\xb6\xc3\x2c\x72\xf2\xb1\x37\xda\xd7\xde\x80\x51\x67\x7f\xfe\xa8\x80\x51\x50\xbc\x53\x0d\xa2\x3b\xaa\x26\x0c\xc8\x0d\xab\xd9\x1d\x3a\x12\x0a\xb8\xb1\x23\x3b\xa2\x52\xfa\xe6\xeb\x72\x9b\xa5\x4f\x4a\x37\xb2\xa3\x48\xc7\x10\x5e\xd7\x1b\xf6\x62\xe5\x06\xf5\x84\xe4\x83\x55\x58\xf4\xeb\xae\x03\xa6\xb3\xb4\x8c\x95\xbd\xcf\xea\xa6\x16\x86\x0f\xe2\x3e\x63\x1a\xbb\xc2\xed\xe6\xef\x59\x73\xd5\x19\xa0\x87\x38\xd9\x32\x35\x57\xa5\xc5\x5a\x55\xe6\x39\xab\xa6\x44\x42\x4e\x74\x5a\x23\x25\x81\x0d\xa7\x86\xce\x08\xc0\x48\x3e\xe9\x31\x55\x1d\xa1\x70\xa0\x9c\x66\x80\xfe\x95\x73\xf5\x24\x97\x42\x03\x2e\x74\x42\x2b\x54\xd0\x9d\xee\xa8\x9e\x8c\x0a\x85\xd3\x0c\xf6\xbb\x94\xc6\x42\x01\x2b\x91\x33\xbe\x66\xbd\x52\xb0\xcd\xde\x66\xe5\xb6\xb6\xcb\xd2\xc4\xa9\x2e\x18\x37\x46\xc4\x04\xcb\x6d\x7f\xa0\x01\x27\xc1\xc8\x6a\x4e\xea\x58\xef\xd0\x7b\xda\x23\x0d\x6a\x35\x17\xa1\xca\xba\x9d\xdc\x4a\x7f\x8e\x97\xac\x60\x55\xd2\xa0\xef\x03\xd1\x2d\x32\x23\xfc\x5e\x63\x0d\x5e\x99\x57\x37\xb4\x8b\x68\x09\x8c\xbf\xa9\x17\xc9\xe7\x72\x6f\x56\xfc\xba\xa8\xc5\x67\x42\xa3\x60\xa7\x4b\x61\x8d\xeb\x32\x65\x79\x10\x89\xec\x29\x71\xcd\x88\x50\xad\x54\x46\xa1\x2b\x0b\xa8\x80\x74\x74\xcc\xde\x6f\x92\x22\x2d\x47\x62\x3b\x0e\x69\xb7\x94\x26\x91\x59\x74\x4e\x47\xac\x48\xb6\x52\x4f\x8a\x4c\xe8\x51\x30\x16\x9d\x24\xa8\xa6\xea\x86\xae\x98\x05\x5a\xb4\xaa\xb6\x26\xd1\xd3\x0e\x41\x74\xa3\xee\xb6\x8d\xde\x65\x79\xfe\x98\xd5\x4d\x55\x5e\x77\xeb\x93\x67\xab\x61\xe7\xa2\x4a\x58\x4f\xd6\x38\xc5\x8a\x41\xfb\x92\xbc\xd9\xf0\x13\x4a\xdd\xbe\x54\x18\x7e\x6b\x20\x51\x7d\x55\x6e\xf3\x54\x58\xc8\x44\xd6\x9a\x47\xcb\xab\x2c\x27\xd7\x49\x57\x1b\x0a\xdf\x5e\x56\x85\xfa\x5e\x15\xd2\x71\x8f\x4a\x12\xdf\xf6\x83\x8a\xbe\xaf\x46\x92\xc9\x8e\x32\xdc\xf3\xe6\x83\x0a\x1f\xf9\xcd\xcd\xbb\xac\x48\xcb\x77\x53\x9f\x70\xa7\x47\x0a\x7f\x2d\xc4\xa6\xd9\x6a\x18\x88\xa8\x2d\x71\x0c\x77\xe0\x72\x05\xba\xdd\xa1\x96\xa1\x17\x75\x96\x32\xf0\x14\x12\xee\x94\x21\x20\x59\xad\x77\x57\x59\xce\x40\x15\x76\x7c\x21\xae\xa8\xf8\x76\x07\x03\x73\xd2\xdb\x6a\x5b\x8c\xcb\x62\xc9\x84\xf6\xac\x94\xc2\x04\x61\x6b\x04\x0d\x95\x2f\x4b\x91\x57\x19\xa9\x6b\x58\xe4\xf2\x0c\xa5\xac\x95\x7b\x60\x7d\xcb\x0d\x3b\xc1\xbf\x53\xd1\x66\x6c\xa1\xc3\x03\xb3\x39\x09\x9d\xad\x86\x06\x9e\xc8\xda\xc2\x9d\xba\x45\xaf\x0a\xa5\xf4\x24\xd6\x9b\x64\x8a\x94\x56\xdd\xe0\xe5\x90\x5d\xaf\xb9\x6d\xa8\x29\xc4\x5b\xe9\x6c\xd2\x1f\x8c\x4e\x82\xa8\x57\x2a\x6b\x30\x93\x5e\x5c\xe7\xf4\x6c\xd2\x8b\xfd\x00\x61\xef\x88\x14\x61\xb5\x67\x60\x85\xef\x2a\x49\xe2\x3b\x7d\x6e\xb9\x56\x22\xc7\x89\xb3\xa2\x06\x65\xb7\xb3\xb3\x5a\x30\x2f\x93\xae\x97\x0f\x7a\x2e\x9b\x0e\x88\xe9\x39\x39\x31\x64\x6f\xc8\xa6\x80\x51\x9b\x4a\x57\x49\x2d\xd5\xeb\xc8\xea\xbf\xeb\xf8\x67\x3b\xbd\x22\x92\x0d\x31\x1f\x70\x50\x4d\x01\xce\x36\x90\x8e\xc3\xe3\x8d\x2a\x14\x91\xd5\x0a\xfb\x24\xe9\xbe\xdd\xc7\x77\x53\xbd\xbc\x62\xe9\x36\x67\x2f\xf8\xae\x0a\xc4\x76\xd2\x02\x4f\xb5\xc5\x9e\xae\x9e\x33\x96\xb2\x34\x08\x81\x78\x5b\xf2\xdc\xa3\x38\x0e\x82\x2e\x91\xab\x2d\x10\xb6\xca\x2a\x52\x05\x24\xc5\x21\x8f\xab\xb2\x1a\x66\xf1\xe9\x34\xfb\xca\xca\x52\x02\xdf\x6e\x61\xef\x9e\x96\x47\xc1\x38\x18\x59\xb5\xce\xb2\xb9\xee\x50\xdb\xb6\x1d\x2e\xf7\x7c\xf7\x8a\xbd\x84\x85\x7a\xe9\xab\x81\xb3\x87\xd3\x6e\x5f\xb1\x8e\x13\xe2\x00\xda\xaf\x84\xdd\xe5\xb6\xd9\x6c\x9b\x0f\xa5\xf4\x5d\xa2\x7d\xa9\x66\xcc\xf3\x8e\x8f\xdd\xc3\x40\xe6\xfd\x67\x0e\x04\x1c\x73\xfc\x41\x2b\xe5\xfa\x6f\xc5\xda\x08\x25\xdd\xff\xc2\xaa\x6a\xb5\x5a\xbb\xe5\x7b\xeb\x85\x76\x07\x0c\x13\xf0\x29\x77\xf9\xa7\xdc\xdd\x62\x2b\x7d\x9a\x65\x21\x1b\x8b\x9e\x3f\x32\x30\xa5\x70\x63\xa6\x78\x6c\x60\x16\xaa\x6d\x73\x75\x1d\x63\xd2\xf1\x31\xe8\x56\xc3\xef\x28\xc8\xea\xd7\x90\x19\x28\x05\x06\xce\xda\x20\x7c\x1c\x07\x8b\xb2\xcc\x59\x52\xe8\x00\x49\x98\xd5\x12\x57\x34\xea\x34\x27\xfe\xb4\x65\xed\xd2\xef\xcc\x51\x1c\x9f\x52\x9d\xb1\xa3\x23\xa1\x45\xac\x07\xe3\x8d\xd0\xe9\x70\xa0\x22\x78\x11\x0a\xb5\x7b\xe3\x15\xf7\x6b\xc0\xc9\x17\xe5\x6e\x2d\x38\xad\xbf\xa6\x5e\x59\x2c\x7d\x37\xed\x80\x5f\xa8\xe3\x58\x5d\x6d\x1d\x85\x5d\xfd\x02\x86\xdd\x28\xa4\x99\x94\x74\x82\xc9\x13\xe6\x76\x30\x2a\x4c\x6d\xa5\x87\x22\x11\x70\x8f\x27\xca\xe8\x0b\xc3\xe0\x24\x08\xe3\x38\x3e\x39\x33\x9e\x32\xc5\x34\xd9\x77\x4c\x19\x1a\x56\x04\xe3\x43\xdf\x3c\x72\x12\xde\x8a\x48\x14\x34\x56\xa0\x5b\x81\x82\x10\xb6\x05\x93\x75\x92\x49\x77\x5d\x34\x26\x9d\x51\x8f\x75\xc5\xb5\xc2\x0a\xf2\x5e\x90\x30\x78\x1d\x4b\xbc\x4e\xde\x30\x1d\x25\x99\x14\x98\x7a\xe2\xe6\x99\xe3\x14\x6c\x8b\x56\xc3\xb6\xdf\x2b\x75\x60\xda\x0e\xb4\x93\x6c\xaf\xad\xc3\xa5\x8d\x3a\x6c\x9d\x2d\x3b\x5d\xea\x6e\x4d\xa9\x62\xfe\xaa\xd0\x41\x0c\xc8\x51\xd9\x45\x19\x5a\x97\xe7\x8a\x31\xb4\xae\x72\x46\xed\x44\x86\x70\x2e\x72\x68\x2e\x8b\x42\x23\x82\xa8\x46\x88\x5b\x3d\x0b\x52\xb5\x52\x4e\xc0\xaa\x20\x63\x27\x1f\x72\xd8\x24\x49\x8d\x78\x55\xd0\x0e\x1b\x5f\x37\x37\x2a\xd0\xef\x01\x43\x58\x15\x51\x53\x6d\x59\xd4\x47\xfd\xfa\x33\x67\x9a\xea\x29\x12\x35\x27\xb3\x60\x85\xfa\xfd\x4d\xe7\x01\x75\x0f\x57\x85\xc9\x63\xf3\x04\x72\xf7\x5d\x15\xea\xda\x4b\x78\x1d\xd9\x0d\x50\x5a\x11\xf7\xbd\x1e\x3e\xa7\x83\xc1\xa1\x95\x74\x3c\x38\xd3\xf1\x02\xa6\xf6\x1e\x34\x46\x8d\xe1\xe1\xf7\x36\x71\x5f\x53\xb3\xae\x23\x25\xbb\x71\x52\x24\x17\x42\xae\x3d\xc6\xdd\x4c\xcb\x5c\x22\xba\x2b\x20\x04\xf3\xd4\xef\x8b\xf6\x0b\xc3\xb2\x0d\xc4\x2e\x70\x88\xf3\x93\x9d\x4f\x20\x9d\x79\xd1\x1f\x10\x2b\xba\x9a\xa7\x9f\xcf\xa7\x54\x86\xa9\x33\xee\xcf\xd1\xca\x49\xa7\xa0\xe9\x1b\x2a\x92\xeb\x8e\x8e\xe2\x60\x10\x8c\x90\x4d\x1f\x24\xf5\x20\x18\x91\xfa\x80\x92\xe7\xe5\x12\xbb\x22\x6f\xab\xf2\x79\x46\x3f\x83\xdb\x20\x63\x64\xa3\x2d\x38\xc1\x71\x79\x81\x95\x58\xd6\x5f\xca\x30\xf8\x13\xce\xe8\x5c\x4b\x2b\x32\x55\xa0\xcb\x62\xeb\x07\x5a\x58\xaa\x14\xc4\x2d\x96\xd0\xab\x49\x23\x97\xc6\x61\xce\xc9\x9e\xfc\x8e\x5d\x77\x09\x03\x65\xf1\x7d\xc3\x9f\xe9\xaa\xe6\xb1\x2c\x34\xb5\x07\xf6\x40\x43\xc1\xe5\x0a\xee\xeb\x3a\xad\x75\xda\xb8\xb2\xc4\xd9\x31\x15\x6d\xf7\x42\x2b\xb1\xa2\xc4\x41\xb2\x15\x30\x6e\x83\x12\xc8\x50\x0c\xb5\xeb\x9c\x3a\xd2\xed\x6a\xcb\x70\x7d\x6c\x5c\x14\xf5\x19\x0d\x79\xce\x32\xa7\x46\x38\x56\x7c\x07\x94\xfe\x39\xf5\xc9\x06\x0c\x4d\x0b\x4d\xfb\xe9\x96\xb7\x68\x82\x43\x02\x9c\xb3\x4c\x46\x52\xef\x8c\xba\x44\xfb\xe7\x26\xdd\xdc\x04\xd9\x8a\x4c\x85\x65\xad\xe2\x51\x64\x95\x7c\xa1\x3a\x3e\x4c\xcd\x23\x32\x6f\xf6\x60\xfc\xf6\x14\xb7\xaf\x85\x1e\x61\x3a\x28\xbc\x9f\x9c\x1e\x26\x75\xa5\xd4\x54\x04\x9c\x97\xef\x1f\x20\xc8\xee\x40\x9c\x56\x57\x2d\x8f\x81\xa9\x55\x75\xbc\x2a\xa6\x07\x2e\x04\x41\x9e\xff\x59\xab\x60\xc6\xc9\x37\x9d\x89\x26\x4d\x53\x99\xe6\x78\x4a\x24\xe9\xda\x40\x89\x17\xeb\x26\x9e\x89\x58\x71\xcd\x7b\x53\xb0\x2d\xe5\x26\x4f\xd3\x78\x34\x42\x1b\xd7\xed\x36\xc3\x37\xcb\x25\x89\xb8\x53\xc7\xd0\xee\x2c\x80\xc4\x00\x8e\x23\x23\xff\x08\x2c\x54\x05\x9b\xc3\x33\x5e\x02\x9f\x51\xc7\xb0\x17\x79\x02\xab\x87\xcb\xe6\x7d\x64\x94\x42\xef\x16\xd8\x01\x2a\x5c\x6e\x44\x44\x18\x00\x8e\x83\xbb\xa3\xfd\xd6\xa6\xb4\xd1\xf1\x2f\x65\x56\x0c\x83\x41\x10\x86\xa3\xbb\xc1\xdd\x50\xc6\xf3\x35\xc7\xd0\xca\xe9\x04\x05\xca\x37\xec\xba\x1e\x02\x40\x28\x1d\x98\x0b\x13\x13\x01\xa1\x55\x5e\x78\x8a\x78\xbb\x83\x63\x1a\x6a\xe5\xff\x53\xcb\x91\x1e\x0e\xab\x79\xef\x3b\xba\xb4\x1f\x3b\x61\x97\x1e\xf0\x95\x0a\x1e\x58\x87\xd6\xc4\xe2\xbd\xac\xca\xc2\x48\x99\x55\xbe\x10\xb6\xcf\xa1\xe1\x64\xd0\x15\x80\xa8\xac\x61\x8f\x79\xb2\xd3\x0e\xaa\x2a\xe4\x6c\x8d\x22\xa7\xcf\x86\xc1\x8c\x8f\xe3\x84\xaf\x37\x9f\x8b\x93\x60\x84\xeb\x3a\x0a\xe2\xbb\xfa\xf7\xdd\xb9\x72\xea\xca\xd6\x37\x37\xfc\x7f\x4b\xa3\x96\xaa\x4f\xdc\x42\x30\x2a\xee\xaf\x3f\x09\xc9\x4f\x7e\xfd\xd0\xf6\x15\x35\xe4\x8d\x81\x0b\x29\xf9\x52\xd8\x4a\xae\xea\x48\xce\xf6\xf1\xf1\x11\x6d\x53\xd9\xee\x1f\x1f\x5b\x2d\xc7\x20\xf0\xf9\x78\x89\x0f\x31\x7a\x15\x9a\x69\x37\x37\x32\xa1\xd8\xf2\x0d\xc9\xfb\x94\xd5\xcf\x93\xe7\xca\xf9\xb4\xda\x1f\x7c\x2c\xa3\xbb\x87\xed\x0f\x2c\x0c\xdb\x41\xbd\x99\x40\xda\xf1\xb1\x6c\xcf\x10\xda\xd8\x2d\xe0\x2f\x5e\xba\x85\xd7\x7b\xb2\x4d\x83\x8e\x85\x87\x72\xf2\x37\xdf\x86\x82\x44\x82\x38\x50\xe9\x22\x0c\x79\x3d\x7a\xc3\x76\x51\xc1\xc7\x6c\x53\xb1\x65\xd2\xb0\x74\xe8\x08\x3a\xe0\x1a\x7b\xc2\x1b\x0f\xe6\xd4\x0e\x4f\x6b\x16\xdc\x31\xab\x55\x04\x49\x32\x09\x2e\x51\x92\xad\x13\xc2\xb4\xd3\xd4\x34\x2a\xd4\xeb\x02\xdc\xaa\x38\x6a\x69\xa2\x89\x03\x7b\x52\xe2\x1b\xb3\x7e\xbe\x46\x5d\xef\xaa\x46\xb7\x05\x66\xbd\x6f\x93\x3c\x12\x3e\x27\x24\x80\xd2\x03\x37\x08\x02\x78\x25\x00\xfe\x52\xad\xa3\x46\x48\xc8\xd3\xfc\x19\xff\xda\xe7\x66\x40\x8a\x35\x50\x92\x6a\xf6\x1f\xee\x66\x50\x7d\x84\xfd\x53\x5d\x53\xde\x0b\x69\x22\x67\xe3\xae\x1f\xc9\x9c\xb0\x35\x09\xa9\x31\xc9\xd2\xb5\xc7\x20\x08\x35\x61\x15\xfa\x8d\xc2\xc7\x77\x8e\xcb\x64\x52\x2f\xa4\xba\xb2\xc5\x58\x89\x7f\x6b\x15\xc0\x0f\x68\xac\xac\xc9\x3b\xa5\x5a\x11\x5f\xae\x3f\x21\xdb\x84\x22\x04\xc7\xc7\x06\x71\x08\xbb\xef\x23\xda\xb4\xdf\x7b\x25\xf1\x3e\x0d\xf8\xee\x2a\xad\x4f\x3c\x2d\x71\x2d\x76\x91\x8b\xfa\x14\xb0\xd1\x6a\x0a\xd4\x59\xe3\xf1\x83\x4e\x42\xad\x61\x90\x58\xd3\x6f\x4e\xb0\x27\xa2\xe4\x6d\x28\xb7\xb6\x22\x30\x09\x9e\xb4\x20\x93\xcb\x1b\xee\xa0\x26\x2c\x0d\x29\x3a\x0b\x04\xed\x62\xf0\x02\x2e\x49\x31\x4f\xa7\x4f\x25\x78\x2c\x93\x84\x14\x5d\x25\x6f\xf3\xbc\x6d\xdb\xfe\x95\xdd\x67\x0a\x61\x0e\x02\xcf\xe9\x5b\x2e\x87\x24\xb8\x84\xbc\x8a\xf3\x59\x75\x15\x5d\x89\xe8\x10\x23\x15\x33\xd5\xc7\xf9\xc2\xc0\x8a\x1a\xaa\xdb\x5e\x11\x78\xec\x4d\x9d\xfa\x7c\x1c\x78\xec\xc0\xa7\x76\xab\xd2\xce\x3a\xf3\x2a\x99\x1b\x72\xaf\xd8\xf8\x32\xe0\x2c\x09\x59\x6c\x7d\x1b\xb0\x5a\xae\x13\xeb\x9f\x06\x84\xbc\xa9\xc5\x99\xbf\x2d\x7d\x95\x89\xe9\x87\x33\x36\x7d\xc8\xc4\xe6\x67\x0f\xa4\x3e\x8e\xe2\xae\x0c\xa7\xb4\x38\x75\x28\x4b\x7c\x88\x2a\xbd\x0e\x52\xde\xab\x4d\xef\xd3\x7d\xef\xd3\xb0\x3f\x48\x2f\xde\xa7\x7f\xdf\xa1\x59\xee\xe9\xb9\x47\xe1\xdd\x89\x94\xbe\x27\x1c\xfb\xff\x04\x85\xf3\x8f\xd6\xeb\xce\x8a\x7a\xc3\x96\xae\xa7\x33\x91\xfe\xa9\xbc\x9d\xd9\x7a\xdc\x5f\x10\x3d\x6e\x5b\x77\xfc\x8f\x44\x77\xbc\x5b\x51\xd6\xaf\x27\xab\x1f\x5e\x1c\xad\x70\x9d\xd5\x1d\xcb\xfc\xcf\x76\x2c\xf3\x9e\x48\xeb\x1e\xc5\xf0\x24\xcf\x92\x3a\x96\x15\x8c\xe1\x53\xeb\xab\x69\x94\x23\xde\x3a\x34\x67\x26\xce\x0c\x3c\x2e\xc6\xe8\xc5\x4c\xfd\x1c\x67\xf5\x4b\x78\x13\x7e\x0c\x6e\x48\xa4\xfc\x0c\xb8\x36\x38\xdc\x95\x97\x26\x3c\x91\x5a\x47\x7e\x32\xf5\xea\x2d\x08\x9c\xf0\x4a\x56\xf6\x5d\xf6\x89\x44\x5b\xbd\x6c\x89\x0c\x39\x50\xe4\xaa\x94\x3c\x99\xa8\x96\x1a\xe2\x4c\xaa\xe3\xaa\xaa\x22\x5a\x8a\xe8\x69\x40\x68\x03\xea\xb6\xac\x76\x2c\xf6\xd3\x91\xdb\x86\x37\x37\x9d\xba\xac\x7c\x50\x13\x94\x90\x0a\xbe\xc1\xae\xdc\xc4\x04\x7c\xbc\x74\x4c\xfe\xb2\x86\xad\xa5\x33\xa3\x75\xd2\x2c\xaf\xac\xf9\xf8\x41\x3a\x29\x88\xad\xea\xd1\x7d\xc1\x30\x34\x63\x10\xc3\xd3\x6f\x52\x5f\x8d\x65\xea\x87\x4f\x21\x99\x36\xa3\x09\xe7\xe5\xd4\x9e\x12\xb3\x7d\x75\x0f\x30\x92\x05\xd7\x64\x56\x6c\x3f\xdc\x38\x73\x10\xb9\x75\x58\x72\x2e\xbb\xa7\x4e\x15\x66\xe9\x56\xc8\x5e\xdc\x7a\xa7\xbe\x1c\xe5\x51\x8a\x1f\x3d\x86\xc3\x07\x9f\x47\x29\x0e\x14\x86\x3b\x58\x55\x30\xdb\x1e\xc3\xcf\xe1\xbd\x7f\xf0\xfa\x86\xe3\x70\x38\xfe\x43\xf8\xd9\x3d\x74\xb1\xcb\x73\x8e\x8f\x39\x14\xe7\xfb\x38\x80\x56\x67\x0d\x70\xa2\xc0\x55\x14\x00\xce\xce\xe6\xe3\xa6\x7c\x56\xbe\x63\xd5\xa3\xa4\x66\xc3\x70\x84\xc9\xf7\xe7\xc2\x71\x04\xaf\x67\x4e\x87\x80\x29\xe8\xb2\x00\xbc\xae\x88\xfa\xc6\xe4\xb1\x4e\xc2\x6b\x0a\x80\x9e\x9c\xd6\x9b\xe6\xda\x40\x30\xb1\xdb\x8f\x8f\xc5\x0f\xe9\xad\x8e\x50\xf2\x9f\xbe\x87\x58\x9c\xe1\xce\x2c\x1d\x5f\x76\x2c\x6c\x60\xc2\x05\xe1\xd4\x2a\x68\x7e\x2a\xa5\xfe\xc6\xd6\x30\x94\x8e\xe9\xf5\x00\x31\xa1\xb5\x10\xd1\xac\xcf\xe9\xa7\x87\x30\x78\x8a\x69\xe4\xcb\x56\x43\xbb\x46\x13\xde\x1a\x40\x2b\xfb\xa1\xfc\x3b\xaa\x0e\x4b\xfd\x28\x90\x85\x6a\xac\x36\xf3\xe0\xa0\xd0\x01\xfc\xd1\x0e\x82\x6a\x7e\xea\xb3\x8b\x38\xf9\x78\x52\x95\xeb\xbf\xbe\xfe\xfe\x99\x00\x1a\xea\x37\x4b\x18\x9d\x9a\x34\x29\x44\x71\xb7\x45\x6c\x7c\xc9\x65\x30\x94\x18\x0f\x7d\x88\x20\x9c\xe3\xd4\x12\x4f\xeb\x10\xb6\x30\xf3\x16\xe5\xd3\xb3\xde\xe1\x58\xd7\x3e\x36\x0f\xe1\x63\x53\xb6\xd8\xf6\x1b\x84\xfa\x58\x58\x4c\xcb\xcb\xcb\xcb\xc3\xac\x43\x5d\xee\xf4\xdf\xc1\x42\xfe\x5b\x58\xc0\x67\x30\x09\xfb\x38\xbf\x3e\x1f\xb6\xdd\x36\x51\x7f\xbc\xa5\x49\xd4\x1f\xbd\x9c\x5e\x72\x61\x7a\x95\xd5\x7c\x56\x5e\x4a\x77\x68\x52\x72\x0e\x9e\x0a\x45\x01\xbf\x33\xa7\xc3\x9c\x35\x21\x6a\xc4\x38\x39\xe3\xbc\xbc\x44\x91\x1c\xd8\xff\x27\x79\x5e\xbe\xfb\xa1\xca\xd6\x59\x93\xbd\x65\x35\x3e\x17\x12\x0f\x09\xd3\xec\x2b\xcb\xf7\x23\x68\xca\x0a\x63\x2c\xd3\x7d\xa4\xeb\xf3\xf1\xe6\xe6\xc8\x6a\xe0\xb6\xfa\x3e\xb3\x6c\x7e\x73\x03\x1b\xf0\x00\xc9\x92\x70\x43\x69\x89\x97\x5c\x5d\x44\x53\x52\xb8\x75\x5d\xf9\x80\xf8\x89\x3a\x68\xf5\xda\xdd\xef\x95\x61\x6b\x95\x5d\xa7\x26\xd5\xd9\xb0\x6d\x71\x7d\x84\x58\x16\x3f\xc4\x0a\x11\x59\x2f\xd0\x86\x4b\xe6\x7d\xf1\x92\x07\x90\xf1\x72\xad\x0d\xe6\x5e\x5b\xd9\x62\xc7\x0c\xad\x62\x9c\x40\x61\x1b\x86\x44\x45\xe1\x65\xac\x7e\x19\xf7\x76\xb3\x63\xb1\xf9\x79\x08\xd5\xc3\x48\xaa\x1f\x68\x05\xff\xc1\x77\xf4\x83\x03\x02\x39\x17\xee\x1e\x73\x73\xd9\x1b\xcd\xc0\xd6\xf7\xa8\x31\x57\x0f\x18\x18\xc5\x5f\xf4\x00\x8b\x58\x29\xa6\xf1\xbc\xae\x69\x73\x7d\x98\xe1\x3c\x78\x88\xf7\x1a\xb6\x53\x51\x45\x87\x28\xa2\xc3\xf6\xde\xb1\x8e\xe7\x70\xeb\xb2\xda\x5c\xfd\x8f\x92\x52\xfc\x5e\xcc\xe2\x3f\xfa\xa8\xfc\x4e\x38\x6e\xfe\xee\x43\x6c\xe2\x3f\x44\x2e\xf2\x79\x8f\x5c\xe4\x8b\x1e\x9b\xfa\x3f\x1a\xc1\xa9\x3a\x65\x16\x1e\x9f\xf0\xe2\x95\xc4\x11\x97\x88\x74\x51\xa3\xdc\x4c\x6e\x7c\x9e\x3f\x5f\x5c\x8c\xad\x7c\x28\x03\x9a\xd7\xc4\x68\x73\x8f\xe8\x04\x26\xc9\xb5\x20\xe7\xf8\x63\x83\xf2\x2d\xea\x58\xd6\x3b\xb6\xf3\x07\xd8\xd7\x97\x85\x6b\x53\x5f\x16\xfb\x0c\xb4\xbf\xf0\xb2\x23\x5e\x71\x12\x47\x54\x53\x9e\x94\xa4\xa9\xdf\x9e\xff\xcb\x8b\x8b\x31\xc9\xdc\x6b\xff\xff\xa5\xdf\xfe\x3f\x49\xd3\x6f\xd8\xaa\xac\x7a\x4a\x39\x20\xa4\xad\x7d\x65\x7d\x50\x68\x7f\xff\xbd\x24\x54\x8e\xa9\xfe\x58\xe7\x59\xa0\xae\x95\xbd\x09\xae\x8c\xe0\xce\x93\x25\x02\x9b\xa8\x2d\x2f\x2c\xba\x44\xe4\xb5\x0b\x37\xef\xdf\x24\x76\x9f\x7d\x31\x9f\x4a\x25\x4e\x8e\xf8\xfc\x6a\x6c\xe4\xdb\x46\xe6\x56\x64\x54\x5b\xce\x12\x84\x3d\x06\xd3\x78\xf8\x68\x33\xe9\x8b\xac\xfe\x29\xab\x9a\x6d\x92\x4f\x40\x73\xd8\x31\x9b\xf6\xb5\x15\xa0\xb8\x88\x40\x99\x9f\xd2\xb6\xba\xa3\xec\x05\x13\xd3\x0a\x5a\xbf\xd2\xe2\x5a\x04\x8c\x12\xaa\xb3\x72\x91\xeb\xa1\x37\xf4\x8f\xbc\xb1\x1a\xc6\xd5\x62\x02\xc1\x14\x47\x50\x11\x7d\xb7\x8d\x82\xff\x8f\xbd\x7f\xed\x6e\x1b\x47\x16\x85\xe1\xef\xfb\x57\xc8\x5c\x7b\xb9\xc5\x6d\x46\xb1\x9d\xe9\xb9\x58\xc3\xce\x9b\x8e\x9d\x9e\x9c\x5c\x77\xec\x9e\x9e\x39\x6a\x8d\x0e\x2d\xc1\x36\x13\x99\xd4\x90\x54\x1c\x8f\xcc\xf7\xb7\x3f\x0b\x55\x05\xa0\x70\xa1\x24\x27\xe9\xee\xd9\x67\x9d\x2f\xb6\x08\x14\x6e\x85\x02\x50\x28\xd4\x45\x37\x0b\x5c\xe5\x69\xb9\xac\xa6\x22\x8a\x07\x65\x21\x7e\x82\xb0\xc3\x54\x5c\x22\xb2\x90\xcc\x15\xab\xba\x8d\x87\xa6\xed\x49\x66\xef\x30\x56\x27\x58\x6c\xf6\x2d\x06\xb4\xa1\xc7\xdb\xf5\x13\x2e\xd9\xad\x7e\xe3\xb6\x4c\x9f\xdb\x64\x92\xd5\xb5\xa8\x1a\xd8\xe1\x5e\xe6\x1f\x58\x3c\x24\x6a\x27\x5e\xb5\x49\x47\x57\x19\x6c\x36\x9f\x9f\x67\xd3\x0f\xea\x09\xd4\x5e\x89\xee\xa4\x80\x3f\xc9\x68\x42\xdf\x3f\xe5\xf3\x39\x86\x71\x8a\xe2\xa1\xf3\x82\xba\xb6\xa0\x0e\xff\x14\xc5\x43\xd5\x01\x73\x9f\x8f\x87\xde\x86\x72\x8f\x7e\xb0\x2d\x6f\xeb\x4e\xb4\xb6\x90\xf4\xc8\xde\x30\x12\x5b\x34\xe3\xe6\x3a\xb6\x9b\x06\xb5\xa0\x89\x81\x4a\x59\x68\xde\xc6\x27\x90\x65\x72\x17\x0f\x6c\x07\xa0\x14\xda\x43\xa8\xd3\x2c\x12\x92\x96\xed\xb0\xc0\x22\xcc\x96\xd0\x00\x72\x6b\xd7\x08\x6d\xac\x52\x79\xe2\xf5\xf1\x0e\x66\x6b\x41\xa3\x68\x65\x5e\x16\x82\x94\x87\xea\x3e\x2e\x91\x40\x5d\x49\xa0\x02\x1d\xb2\x44\x45\x68\x6e\x73\x1d\x9a\x99\xdc\xfb\x16\xcd\x20\xaf\xf9\x26\x58\x5b\x63\xe2\x6b\x0f\xa2\x53\xa9\x48\x15\xb9\xb8\x69\x93\x99\xef\x12\x20\xbf\xe8\xef\x58\x6b\xc3\xb2\x07\x72\xd6\x34\x43\xb0\xb7\xdc\x31\xae\x93\x9d\x18\xaf\x9c\x04\xe6\x3b\x80\xad\x4b\xcb\x8d\xc0\x24\x9b\xcd\x34\x8d\x3c\xbd\x12\xd3\x0f\xfd\x78\xa5\x4e\x9c\x41\x25\xca\x85\x28\xfa\xab\x09\xc4\xe4\xd3\x70\x47\xe1\x88\xac\x6c\x9c\xad\xdc\x0b\x88\x13\x79\x5e\x1c\xcb\xcb\x9c\x51\xb4\xb8\x88\x57\x17\x7d\x32\x93\x07\xfb\x4b\x31\x03\x8f\x42\x2e\xab\xc8\xf3\xec\x0d\xe3\x53\x28\xda\x47\x2d\xe6\x17\xa9\x7b\xc7\x77\xeb\xdc\x5a\x9b\x44\x7b\xff\x60\x4e\x9f\x31\x51\x07\xac\xa1\x30\x79\x4a\xe3\x9f\x94\xb8\x2d\x1f\x26\xfc\x09\x8a\xfb\x13\xc9\x8b\xcb\xbf\x86\xdf\x96\x00\xca\x0c\x20\xa8\xd0\xe2\xc0\xb8\x2a\xf7\xa6\x6f\x6a\x25\xc2\x07\x9e\xc7\xca\x2a\x84\x46\x98\xcd\x66\xde\xd9\x60\xb2\x60\xc3\xf6\x32\xec\x31\x40\x9c\xc0\x1b\xb9\xad\xcd\x45\x56\xbd\x23\x7b\x4e\xeb\xc0\x9c\x5f\x30\x4a\x8c\xdb\x21\x9b\x58\xe3\xb9\x3a\x5d\x79\x5b\xa4\xe7\x4c\x03\x37\x6e\xb7\x57\x6d\xe2\x6e\x93\x5e\xc1\xad\x10\x11\x1e\xad\xb2\x47\x7d\x6a\x8d\x9a\xb5\x0a\xc5\x58\xa7\x5f\x58\x19\xdd\x7d\xea\xae\xd8\xea\x20\x2f\xa7\x64\xcb\x9e\x44\xdf\xa1\x98\x24\x40\x21\x09\xa7\xd6\xb8\x4d\xbc\x01\x07\xf7\x29\x7d\x3e\xd3\x36\xc5\x13\x3d\x9c\xe1\x66\xb5\xba\x31\xb8\x88\xc2\x38\x8a\x92\x99\x46\x4b\x14\xc4\x56\xd4\xc6\x6d\x12\x9a\xee\xfb\xf7\x32\x50\xcb\xd7\xee\x68\x60\x15\x1d\x59\x41\xf6\x43\x3c\xc2\xb6\x73\x96\xf0\xd1\x98\xae\xf9\xec\xc3\x67\x55\x68\xa2\x7e\x2a\x7c\xaf\x1b\x49\x27\xe3\xb5\x35\x01\x06\xc6\x11\x60\xc7\xee\x5b\x9d\x3d\x0a\xb9\xaa\xb6\xa2\x13\xce\xad\x70\x00\xb5\x82\x5f\xa2\xda\xdd\xa5\xb2\xbd\x2b\x98\xc9\xb4\x96\x9a\xf3\x75\x15\x8a\x5c\xa0\x3d\x91\xf2\x83\x61\xc8\x7c\x10\xc0\x01\x17\x90\x98\x5b\x9d\x30\x12\x73\xeb\x50\x2a\x9a\x01\xfa\x3a\x78\xd2\xf4\x73\xf3\x60\x65\xf3\x39\x65\xc0\x66\x69\x6c\x0e\xb5\xb5\xe6\x7f\x12\x9f\xa1\x7d\xca\xbd\x66\xea\xd3\x77\xd8\x6d\xe4\x8f\x3e\xe3\xed\x79\xe1\xa7\x83\x98\xd1\x69\xe1\x9c\x30\xaa\x07\x7d\x08\xeb\x1e\xe2\xab\xd8\xe9\x10\x38\xce\x94\xeb\x25\x3d\xfd\xeb\x0e\x13\xbc\x36\xa9\x0e\xa1\x8e\x2f\x8b\x1d\x2a\xef\x6f\x41\x0d\x16\x32\xfb\xb0\x2c\x72\x40\x26\xbd\xb5\x7d\xa3\x6d\x87\x18\xb4\x63\x74\xcc\x15\x0f\xc7\x43\xd7\xc0\x87\xd5\xb7\x17\xf5\xf2\x82\x0c\x17\x87\xb6\xf6\x32\x46\xe0\x83\xc7\x8b\x36\x44\x1d\xdc\xf6\x4d\x3f\x36\x07\x06\x71\x10\xd2\xc6\xa1\x7a\x83\x86\x6b\xa8\x7b\xcb\x5b\x34\xf7\x4b\x25\x8c\x83\x9a\x3c\x0b\x9a\xaf\x60\x8b\x64\x3c\x7e\xec\xee\xda\x9e\x2f\x2e\x91\x23\x79\x57\xde\xd4\x6e\x96\xa3\xe6\x21\x6f\xc9\x8c\x7f\xf1\xed\x35\x06\x9a\x56\x43\xd6\x4a\xe6\x21\x80\x74\xb5\x9b\x4f\x49\x84\x62\x56\xc6\xa5\x2a\x06\x3c\x62\x46\x4b\xfc\xb1\x44\x8b\x84\xd4\x0f\xeb\x29\x85\xf3\xcd\xec\xb7\xed\x85\x58\x93\x71\x6a\x7e\x6e\xf3\xcc\x32\x2f\xa7\xe6\x95\xa5\xf3\xd9\x64\x1b\x39\xfd\x3a\xf9\xf4\xbc\x9c\x7a\x11\xd4\xe7\xe5\x74\xd8\xf1\x4a\xce\x5e\x3f\xa7\xb4\x38\xeb\xc6\x78\x8c\x98\x97\x53\xf8\x6e\xb7\x19\xe0\x22\xab\x9a\x3c\x9b\x6f\xf1\x7e\xee\x7a\x2d\xde\x5e\x5f\x93\x3d\xf8\xfc\xda\xb1\xe9\xb7\x7b\x24\xf7\x1d\xc7\xc2\x1b\x39\x24\x6f\x10\x11\x3f\x0a\x4a\x88\xcf\x5d\x37\xab\xda\xcb\xea\xa6\x29\xa5\xf9\xe0\x11\x9c\x7e\x29\xa7\x0f\xdb\xaa\x7b\x28\x12\xe1\x3b\x8c\x8a\x69\xa0\xdd\xac\x33\x0b\x4b\xef\xf2\x7a\x51\xbc\xe1\x43\xa0\xfa\xd0\x10\x37\x68\xf1\x4f\x01\xb4\xde\x18\xcb\x3d\xb9\xc7\xbc\xc5\x72\xfc\xe9\x5a\xd5\xc3\x80\xdb\x6e\x9f\x0d\x1c\x9b\xe8\xb4\x41\x59\xe9\xd2\xde\x15\x6a\xc5\x9a\x02\xeb\x68\xdc\xec\xe2\x94\x79\x5c\xd9\x58\x35\x86\xe6\xc9\xae\x85\x84\xaa\x53\xf0\xa7\x42\xc6\x2c\x0f\xa3\x38\x99\x67\x75\x23\x73\x52\x0d\x32\xd2\xbf\x58\x00\xb6\xb5\xb9\x69\x34\x89\xf6\x54\x45\x6b\x34\x3e\x93\xa5\xec\x6d\x2d\xf7\x00\x3c\xa9\x4d\x5d\x68\x50\x25\x3b\xa4\x19\x3d\x90\x4b\xa9\xaf\x67\x25\x50\x4d\xdf\xa9\x21\x4e\x66\x5a\x7f\x5d\x47\x02\xde\x51\x85\x76\x77\x83\x75\xa0\x37\x18\xcf\xb5\xfd\xdd\x9d\x5f\x57\x17\x57\xe7\x38\xe3\xdb\x66\x43\xac\xaf\xb2\x4a\xcc\xcc\x7e\xf8\x79\x8a\x3f\xeb\xf6\xa4\x35\xef\x4d\xde\x66\xb2\x69\xbb\xd0\x21\x39\x9b\xab\xba\x1f\x32\x28\x53\xab\xde\x8f\xf4\x55\x95\x25\x4b\x86\x2f\x9f\x9f\x77\x22\x9a\x3a\x7b\x8b\x09\xf9\xa1\x4d\x4f\x7c\xb3\x30\x50\x2e\x61\x9a\x29\x16\xc3\xcd\xc2\xb8\x36\x5b\x4d\x8f\x9a\xe8\xcf\xd1\x7d\xf8\x9c\xc3\xe7\xd7\x76\xae\xbe\xe9\x21\x79\x13\x41\x68\x37\x89\xa1\x03\x64\xdb\x1d\x5f\x23\xd9\x55\xef\xa3\x2d\x37\x6c\x0c\xb9\xd5\xfc\x91\x69\x4e\x68\x7d\xf9\x7a\x2a\xeb\x79\x89\x5f\x50\x2f\x6f\xe3\xac\x77\x4c\x68\x60\xfe\xb7\xd1\x0c\xb0\x2d\xa6\x5c\x3e\xc4\xb6\xa0\xfa\x1c\x76\xc4\xd1\x9e\xdb\x44\x43\x4b\x2b\x42\x8e\xe7\x6e\x68\x3b\xfd\x39\xa3\x98\xbe\xce\xf3\x19\x62\xc1\x38\x2d\x58\x36\xc9\xb4\xf9\xa4\xaf\x43\xa1\xcb\xe4\x77\x87\x86\x90\x6d\xa7\x0b\x28\x55\x08\xc6\x1f\x9d\xfa\xbe\xd6\xd4\xe5\xc9\x89\x14\x3a\x2c\x97\x4d\x6a\x85\x1e\x95\x97\x96\xae\xc8\xa3\xae\xe6\xb5\xdd\x21\xb5\x7c\xca\x65\xd3\x2a\xc6\xed\x9e\x4e\x9a\x24\x36\x82\x72\x50\xcd\x05\xb1\xe9\xd9\x6a\x05\xa2\x72\xd1\x9a\xdd\xd3\xb9\xe6\x90\x73\xc9\xaf\x11\x41\x05\xb4\xb1\xb6\x0a\x33\xb2\x21\xbe\xc9\xe6\x5d\xe0\xcb\x2f\x6c\xff\x76\x8a\x55\x5f\xe7\x28\x7a\x03\xd3\xf9\x4b\xc5\xf8\x30\xe1\x33\x3d\x95\x25\x93\xd5\x15\x6a\x22\xa0\xb1\xe4\xa9\x8d\xfc\x81\x07\xd6\xe8\x8c\x80\xf1\xc7\x50\x00\x8c\x6e\x2d\xe5\x3f\xdd\x53\x4b\xf9\x4f\xc1\x5d\x16\xd0\x4b\x31\x12\x36\xe9\x35\xbd\x7c\xf3\xd3\xc9\xbb\xa7\x4f\x4e\x4f\x26\x4f\x26\xff\x3b\x7d\xf8\x8f\x51\xf6\xe0\x5f\xe3\x87\xc9\x5f\x9f\x9f\xfc\x34\x79\xfb\xee\xe4\xd9\xf3\xbf\xa5\x0f\xff\x21\x09\xff\xe7\xc1\x43\x27\x0a\xaf\x72\x3b\x21\xf7\xc7\xa7\x21\x57\x3a\xbe\xa9\x92\x8a\xae\xee\x87\x5b\x5f\x6f\x17\x23\x41\xd0\xfe\xc4\x0a\x20\xfa\x91\x9c\xb5\x69\x73\x95\x40\xdc\x54\x32\xa1\x21\xb1\x98\x02\xdd\x8b\xa8\xfb\xd1\x18\x8d\x92\x87\x56\x33\x3c\x3b\x3a\x3d\x7b\xf7\xfc\xf5\x0f\x91\x6f\x0b\xc3\x53\x4c\x0f\xd1\x42\x26\x64\xcd\x13\xe5\x33\x55\x6d\x4c\xc6\x1d\xf9\x2c\x60\x27\xa2\x90\x49\x10\x54\xc6\x18\x5a\xab\xf6\x64\xe9\x50\xef\x4c\x19\xb7\x87\x26\x07\x83\xc1\x32\xcb\x45\xb6\x26\x4d\x1c\x85\x2e\xb3\x0f\x23\x03\xde\x30\xe1\x61\xdb\x3f\x50\xa1\xaa\x73\x0c\x82\x8b\xce\x29\x04\x46\xab\xd3\xce\x6b\x92\xd9\x72\x81\x6e\xb3\x8c\x3d\xda\x2c\x5e\x99\x92\x03\x81\xef\xdf\xcf\x67\x29\xe5\x0e\x65\x11\x90\x1b\xab\x12\x4d\x76\x69\x15\x21\x43\x9e\x54\x65\x5a\x25\xa8\x1b\xf1\x4a\xf5\x87\xfe\x33\x4f\x0e\x43\x56\x97\x76\x10\xa1\x01\xfd\xf6\xb9\x47\x08\xab\x23\xba\xb0\x76\x3f\xe4\xc1\xf3\x66\xc3\x15\xf3\xf2\xb0\x52\xd6\x36\x90\x1a\x6b\xcd\x78\x2d\xe0\x68\x1c\x1c\xa6\xce\x5f\x97\x29\x39\x86\x69\xd6\x74\x74\x92\x0d\x29\x30\xa6\xcc\xf5\x67\x63\x61\xcc\xcb\x05\xb7\x07\x56\x2d\xb3\xe5\x02\x57\x95\x71\x74\x87\x16\x5e\x2d\xac\xa4\xd8\x59\x22\xd6\x27\x10\x03\x5b\xdf\xda\x0f\x14\x07\xe2\xd3\xd3\x2a\xf7\x48\xdd\x1b\xd7\xce\x1a\x8b\xbe\xa9\x0a\x76\xd8\xb5\x63\xa1\xd7\x9a\xf2\x82\x6d\x37\xcc\x87\x0e\xbd\x24\x70\x65\x89\x25\x9c\x19\xd4\x3b\xd0\xb2\x30\x25\x4d\xb8\x06\x72\xb1\x68\xea\x84\x87\x01\xd8\xb1\xd6\xcd\x2b\xfa\x60\x07\x81\xa2\x1c\xe2\x7a\x50\x50\x31\x5e\xce\xe7\x6b\x29\x65\x74\x3e\x66\x8e\x95\x01\x9c\x0f\x6f\x4b\x37\x28\xb2\x1c\x39\x45\x5c\x8f\x0b\xd7\x43\x8a\x83\x90\x0d\x3d\xc5\xe8\xa3\x21\xef\x30\x75\xdb\x6a\xbf\xb9\x36\xd5\xc1\xf6\x67\xea\x55\x7a\x0b\x81\xce\x99\xcd\xd4\x74\xcd\x89\x8f\xed\xd8\xcc\x80\x96\x9a\x3d\x8e\x90\x53\x27\x25\x0c\x8c\x82\x41\x86\xc8\x37\xa3\x09\x30\x11\xf0\x5a\xa9\x1c\x1a\x2d\xe7\x73\xcf\x19\x0f\xbc\x36\xdd\xdd\xb1\xd7\x2d\x6a\x8d\x79\x2b\x57\x13\x12\xf1\x47\x99\x10\x80\xea\x4c\x4b\x17\x31\x83\x13\x7e\x20\xfa\x2f\x7f\x9b\xa2\xa6\x14\xe2\x06\x98\xb4\x8d\x0c\x0b\xc4\x32\x21\xf2\xb3\xdd\xd7\x63\x43\xa8\x1b\xd2\x25\x79\xa6\x43\x78\x77\xd7\x62\xa7\x68\x39\xcb\x3a\x76\x77\x77\x18\x4b\xc5\x32\xe2\x15\xd6\xcc\x9d\x82\x62\x9f\xd7\x30\x06\x0b\xd7\xef\x0a\x75\x57\x95\xe4\x2b\x89\xaa\xa7\x2c\x58\xe9\x98\x14\xeb\x86\x02\xf7\xe1\x0e\xbb\x6c\x2a\xd9\xda\x1d\x85\xae\xbb\xd6\xa3\x14\xe6\xa9\xcb\x6e\x54\x4b\xbf\xcd\xb0\x62\x1e\xa6\xc6\xee\xd8\x90\xd5\x6c\x85\xcc\x4a\x35\x4f\x41\x9d\x01\x7b\x60\x35\x5a\xd4\x72\x7a\x6c\x7d\xf5\xe3\x23\x45\x14\x64\xc8\x1c\xaa\x3b\xbd\x28\xc0\xb1\x38\xaf\x75\xc0\x7d\x03\x74\xe5\x10\x91\xed\xee\xee\xf0\x6a\xad\x92\xe1\x0c\xcd\x26\xf0\x6c\xcb\x90\x57\x45\xa9\x62\x34\x68\x84\x65\x76\xb9\xb5\x72\xb5\x96\xa1\xd8\x0a\x22\x40\x43\xb2\x02\x8a\xc8\x9b\x3c\x7f\xc0\x64\x1c\x23\xf3\x6d\xa1\x2f\x06\x1f\x8d\x0f\xf2\xaf\xe9\x68\x62\x8d\xe4\x26\x48\xa9\xea\x8e\x13\x74\x0a\x1e\x94\x34\xc2\xdd\x7e\xc8\x5c\x85\x91\xe5\x33\x02\x05\xfc\x3a\x58\x0f\xc3\x66\xd8\xa9\xf9\xb9\x8d\x0c\xe4\x36\x17\xf3\xd9\x16\x6f\x9e\xae\x98\xe3\x37\x91\x20\xbb\x77\xf1\x43\xba\x8b\x6f\x12\xe3\xc1\x20\x43\x96\x8f\x1d\x7e\x3e\x4c\x04\x90\xdd\xdd\x1d\xa3\xa4\x3c\xcf\x6e\xcb\x65\x23\xaf\x4e\xf9\xc5\x3d\xe2\x83\xa0\xf1\xa6\xcc\x33\x55\xb1\x13\x28\x8a\xdb\x16\x0b\x41\x37\x9d\xd0\x06\xeb\xe6\x70\x5e\x66\xa0\x5e\x13\x78\xa0\xd1\x1e\xfe\x27\x48\x9d\x5b\x89\x9a\xc8\xc2\xaf\xaa\xca\x4e\x03\xc9\x79\xf6\xaf\xdb\x89\x6c\xf7\x97\x78\x61\xf8\x9a\x36\xe1\x4f\x9d\x50\x09\x1b\x28\x2b\x20\x83\x09\xc8\x82\x80\x48\x4f\x24\x7e\x36\xd9\x88\x97\xc5\xcb\x32\xf3\x1f\xbe\x31\x79\xa3\xf0\xdc\x09\x34\xca\xa2\x00\x94\x4d\xdd\x54\xd9\xa2\x3f\x6d\x3e\x69\xf5\x2b\x21\x37\x9e\x3a\xfd\xa6\x9e\x56\xf9\xa2\x19\x81\x4e\x6d\x24\xa9\xef\xe1\x27\x36\x3b\xd1\x38\xe9\x85\x20\xaa\xec\xc6\x82\xfa\x66\x88\xb8\xe8\xeb\x9a\x13\xd9\x18\x28\x8e\xf4\x5d\xdd\x2f\xa8\x8f\x6e\x3b\x64\x17\xa1\xcc\xc2\xf2\xb9\x48\x31\x1f\xae\x4e\xfd\x48\xb6\x0a\xc1\x30\x3a\x5a\x7e\x4c\xec\xeb\xa2\x2a\x3f\xdd\xf6\xd9\xfb\x00\xd5\x96\x98\xa4\xf8\xc8\x82\x75\x1f\x14\x54\x01\x27\xdd\xbc\xd4\xc2\x2e\x6c\x75\x0e\x1c\xf6\xa9\xec\x07\x45\x76\x2d\xa2\xf8\xee\xce\x02\xc9\x67\x32\x29\xca\x16\x8b\x79\x3e\xcd\x1a\xf0\x16\xa6\x4f\x6b\x6a\xb2\x4f\x25\xae\x9a\xeb\x79\x3f\x06\xce\x08\x75\x7c\xce\x4e\x5e\xbd\x7d\xf9\xe4\xec\xe4\x74\xc4\xfb\x30\xde\xe1\x97\xe2\x55\x73\x55\x95\x37\xe0\xbc\xd3\x10\x5a\xff\x1b\xf5\xb2\x0b\x4f\xe2\xb3\x5e\xf4\xcd\x1e\xaf\x62\xef\x9b\xa8\x97\xcd\x2b\x91\xcd\x6e\xe9\x1d\x7e\xf0\x4d\xdc\xae\x6d\xd4\x84\x46\xa7\xde\xa2\x42\x1c\xa8\x68\x1b\xfb\x00\x43\x6b\xf1\xca\xfc\xa6\xa9\x9e\x95\x53\x90\xfc\xc7\xd6\xcb\x3e\xfa\xf6\x73\x56\x9e\x79\x70\xc0\x4b\xa7\x1b\x0a\x24\x1c\xb1\x24\x71\x6a\x89\x5b\x5c\x3a\x7d\xd2\x99\x7a\xc2\x67\x41\x53\x25\x4b\x8d\x57\xec\x63\x90\x17\x79\x93\x67\x18\x32\x6f\x25\xf1\x78\x14\xcd\xca\x6b\x85\xd9\x3a\x4a\x0c\xc0\x91\x19\x79\x1b\x0f\x37\x54\xd2\x31\xe6\x28\xc9\x2e\x1a\x51\xad\x69\xa4\xa3\x60\x1b\xdb\xdc\x0e\x3f\xcd\x78\xb7\x3a\x8f\x04\x25\xd8\xff\xc5\x15\xb5\x98\x88\xd7\x8f\x1e\x7d\xd0\xb1\x7f\xc9\x65\x71\x9a\x5d\x08\x4b\x49\x4b\xd2\x7b\x30\x86\x2e\xaa\x6e\xb9\x0d\x0d\x54\x25\xa9\xfa\x61\x56\xd9\xc9\xdf\xce\x4e\x5e\x1f\x4f\xde\xbe\x7b\x73\xf6\xe6\xec\xef\x6f\x4f\x4e\xe5\x45\xaa\x5a\x8a\xbb\xbb\x8e\xfc\x01\x56\x1c\xaf\xf0\xbf\x31\x4a\x30\xad\x04\xb4\xf0\xd5\x28\xd0\xf6\xad\xcb\x83\x8b\x02\x5b\x37\x5d\x6b\x83\xc1\x6f\xf3\x2e\xdc\xc9\xaf\xd9\xa7\xf8\x17\x3d\x55\x89\xea\xd2\xad\xbd\xc3\x39\xc0\x5a\xdf\x83\xd6\xe3\x15\xcf\xa8\x1b\x5c\x1e\xdb\x7b\x03\xf8\x0d\xfd\xd0\xfc\x06\x4e\x02\xbe\xe2\x13\xfc\x76\xb1\xab\xc3\xfc\x78\x80\x1f\xb2\x1d\x05\x18\x63\xe8\x4a\xfc\x73\x99\x57\xe2\x55\x39\x5b\xce\x45\x3f\xd2\x13\x48\x76\x82\xdb\xb3\x51\x9f\xeb\x0c\x00\x68\x76\xd3\x8b\x9a\x6b\x2c\x1f\x08\xb0\xbe\x9d\xbb\xc4\x90\x93\x44\xf3\x34\x07\x86\x8a\xa7\x40\xe3\x7e\xec\x7c\x96\x89\x83\xea\x80\xab\x0d\x88\x5c\x04\x54\x1d\x4b\x5d\x67\x5f\x7e\x10\xb6\x2f\x5f\xa3\x7d\x75\xe8\x3d\xeb\xe9\x3d\x3c\x1c\x66\x90\x3b\x7d\x36\xc1\x4d\xad\x20\xa6\xa4\x7d\xef\x58\xd1\x69\xe7\xcd\xea\x07\x26\xeb\x2a\x52\xfd\xcb\x36\xb0\x03\xd9\x0b\xff\xc0\x6c\xa4\x3f\x3d\x56\x65\xcb\x05\x88\x4a\xa3\x45\x25\xc8\x4e\x0d\x93\x97\x8b\x59\xd6\x88\xe7\x33\x14\xe5\xa3\x7d\x26\x8b\x74\x68\x52\x31\xdc\x1f\x3a\x3a\x0e\x21\x80\x5b\xb3\x39\x36\xed\x79\x8d\xc6\xe6\xf2\x77\xd8\x30\xd4\xea\x0a\xc6\x4a\x9c\x66\xc5\x54\xcc\x9d\x9c\x40\x9f\x5b\x1d\x5c\xda\x74\x5b\xc5\x94\x66\x32\x4e\x32\x90\x00\x19\x0b\x1e\x5a\x0c\x59\x66\x94\x84\x25\x6d\x03\x11\xb5\x5a\xa7\xc2\x32\x73\x53\x89\xc6\xc4\xed\x05\x33\xbd\x04\x97\xe6\xae\x95\x88\x91\x90\xdb\xfe\xc1\x2d\x1a\xa0\xa8\x01\x16\xd5\x38\xf6\x0b\x14\x3a\x41\x95\x20\x83\x77\x8b\x26\x5c\x2a\x19\x06\xc3\x2d\xd8\x8e\xa7\x51\x11\x8f\x97\x6a\x99\x3e\x1e\x04\x44\x24\xf3\xa2\xb3\xf2\x7b\xa0\x05\x33\x40\xa4\x0d\xba\x10\xe1\xde\x1a\x45\x43\xfc\xb5\x97\x1a\x44\x4b\xf4\x56\xcd\x59\x76\xd9\x8f\xed\x5c\x65\x37\x10\x2a\x23\x8a\x19\x96\xe0\x01\x27\x11\x2e\x68\xf1\x04\x8f\x9b\xb0\x5e\x52\x7b\x1d\x29\xed\x2a\x89\x09\xc7\xa8\x0a\x7d\xd0\xc3\x65\x85\x00\x52\x20\x8a\xbb\x3b\xfd\xc9\x2e\x29\x94\x16\x45\x5a\x1e\xbf\x43\xc5\x7a\x79\x51\x37\x92\x70\xcb\x0b\x76\xd0\xc4\xba\x88\x8e\x46\x80\xa1\x21\xf2\x8b\x3e\xf6\x54\x03\x6c\x8e\xb1\xa0\xca\x7a\x53\xe3\x63\xa2\xbe\xc9\x9b\x29\xc6\xb1\x42\xc2\x8e\x57\xd3\xac\x16\x6c\x0f\x38\x82\x6f\x43\xed\x47\xe7\x95\xc8\x3e\x0c\x21\x35\x2f\x70\x9a\xa3\xa3\xe0\xa5\x2c\x3a\x2d\xaf\x45\x73\x95\x17\x97\xbd\xdb\x72\xd9\x9b\xe5\xb3\x5e\x53\xe5\x62\xd6\x6b\xca\x5e\x25\x16\xf3\x6c\x2a\x7a\x59\xd1\x5b\xad\x84\xee\x7b\xdb\xf6\xce\xc1\x7c\xae\x97\x37\xbd\x9b\xac\x96\xd8\x12\x55\x23\x66\xbd\xbc\x68\xca\x5e\x73\x25\x7a\xc7\x6f\x5e\x0d\xc0\xdb\x40\x2d\xa2\xab\xac\x56\xf6\xd5\x47\xd4\xa3\xe3\x37\xaf\xa2\x23\x7b\x0f\xd8\x60\x72\x15\x21\x60\x14\x0f\x61\x68\x96\x31\x78\x82\x79\x9e\x31\x55\x60\x4f\x44\x52\x84\x3b\xad\x45\xb0\x71\x9b\x34\x55\x56\xd4\xb9\x2c\x7f\x56\x9a\xaa\x08\xdf\x6c\x53\x81\xbf\x6d\x3b\xa4\xf3\x8d\x1d\x7b\x7d\x73\x9e\xc5\x43\x38\xb7\xb1\x78\x3d\x98\xd0\x59\x9c\xac\xdc\x00\xd0\x47\x2f\x5a\x07\x16\xb0\x13\x00\xb4\x1c\x1d\x18\xb9\x9d\x47\xfc\x3b\x29\x09\xee\xe6\x59\xdd\xbc\xb6\x73\xb5\xef\x7a\x63\x8c\xd6\x22\x23\x13\x8a\x5f\x9e\xda\x27\xad\x7e\x03\x96\x8b\xa3\x82\x4b\x33\xf8\xf6\xc4\xc0\x8a\xa6\x7c\x94\x4c\x70\x28\x47\xf8\x2f\x10\xd5\x1c\x1f\xdd\x9c\x60\xe8\x18\x2f\xd2\x8d\x36\x0e\xa0\x6e\x4c\x73\x48\x74\xa3\x9a\xeb\x97\x3c\xf3\x0b\xc2\x99\xc3\xd7\x36\x9b\xba\xf1\x55\x20\x3f\xa3\xd8\xec\xed\x76\x8e\x4c\x8a\x62\x37\x18\x3b\x03\x0a\x84\x69\x8f\xe2\xaf\x72\x24\x98\x36\x1c\x37\x13\x5f\x78\x32\xdc\x2f\x38\xbf\xd9\xa6\x7c\xea\x54\xd6\xea\xf8\x2e\x02\xab\x61\xe0\x42\xd3\xc9\xed\x6d\xfa\xfc\xfc\xa1\xad\x9f\xf9\xfa\x51\xfb\x3f\xb1\xde\x16\x55\x31\x38\x8f\xda\xe4\x44\x3a\x31\xe4\xd8\x7c\xda\x39\x51\xac\x9e\x96\x6d\x18\x4e\x92\xd4\xbe\x43\x7e\xbc\xa7\x76\x4e\x14\xbb\xf4\xcb\x60\x9d\x1c\xaa\x7b\xfd\xe9\x86\x4c\x51\x60\x79\x53\xf4\x65\x49\x55\x16\x16\x4c\xfc\xe4\xda\xa3\x9f\xc8\xed\x1c\x3e\xe5\xdb\x68\xe1\x05\xd5\x83\x40\xa4\x30\x65\xe2\x74\xb8\x35\x05\x4b\xa9\x83\x4f\x15\xfa\x9f\x72\x50\x73\xb6\x85\xd2\x54\x20\xa9\xd6\x3c\xfc\xdb\x53\x1f\x46\xb8\x0b\xf4\x99\x08\x5f\x87\x5c\x17\xc2\x34\xee\x09\x81\xa2\x28\xec\xf3\x88\x16\xa3\xfb\x68\x19\x3e\x28\x02\x89\x56\xa9\xd0\x4d\x23\x0d\x25\x6e\x16\x31\xb9\x32\x94\x7b\xbf\xf7\xdd\xc7\xe9\x65\x40\x4d\xd9\xd6\x77\xf6\x85\x48\xbf\x85\xe8\xe6\x17\x7b\x8e\x0c\x49\x27\x02\xc2\x8d\xa7\x65\x25\xbc\xcb\xfa\xef\xc0\xb1\x20\x66\x84\x85\x0b\xbf\xe3\xc2\x05\xdf\x33\xe1\xb7\x93\xc9\xc0\xf8\x23\x74\x65\x1c\x01\x31\xc8\x56\x62\x1b\x7d\xfd\x2f\xca\x26\xbf\xb8\x7d\xb5\x6c\x40\x26\xfe\x32\xaf\x1b\x51\x80\xfd\x3c\xdc\x5b\x4b\xc9\x83\x62\x38\xff\x0e\x40\x72\xf3\x7d\xfc\xe6\xd5\xab\xac\xc8\x2e\x45\x95\x92\x6f\x09\x97\x55\x03\x9e\x0b\x39\x4f\xf5\x3e\x31\xec\x6c\x5c\x5e\x54\x61\x8c\x8e\x67\x2b\xc9\xb3\x5a\x55\x11\x58\x1f\x32\xd6\xd5\x87\x02\xfc\x0d\xb5\x01\xd0\xe6\xba\x24\xc0\xa6\xaa\x80\xbb\xde\x58\x13\xdd\x2d\x3c\x5c\x65\x55\x0f\xa7\xd0\xd4\x38\x44\x4b\x42\xc6\x9f\xf7\xd9\xdd\x27\xb6\xbc\x35\x74\x78\x6a\x20\x63\x4d\x8b\x9f\xed\x1b\x26\x3a\xaf\x8f\xf1\xee\x04\x12\x74\xe5\x59\x03\x7d\x73\x69\x8f\x40\x02\x55\x3b\x2a\x51\xf4\xc9\xd1\x20\x8a\x52\x88\xa5\xe6\x57\x6a\x09\x00\xf5\x16\x1f\xcb\x0f\xe2\x9d\x98\x2e\xab\x3a\xff\x28\xe6\xb7\xfd\x10\x69\xf8\x92\x89\x7e\x44\x1a\xb9\x51\xdc\xc6\x6a\xf8\xf9\xe5\xa5\xa8\x78\x5d\xe0\xb2\xc8\x76\x60\x15\x0f\x15\x9d\x01\x76\x7f\xca\x9b\x2b\xda\xc8\x07\x78\xd5\xee\xc7\x71\x08\x9d\x78\x25\xfb\xac\x5e\x6b\xd1\xc9\x96\x9d\xf6\x9c\x6e\xad\x23\x93\xb8\x45\x77\x70\x6b\x96\x14\x90\x5b\xb4\xb6\x96\xd6\x75\x71\x09\xbb\x8a\x56\xcd\x76\xc4\x5c\x2a\x66\x41\x24\x4f\x6a\xfb\xa6\x63\xf6\x91\xc4\xf5\x53\xc9\x8f\xce\xb8\x43\x82\xd7\x26\x78\x6f\x7e\xd7\xc1\xf7\x72\x16\x23\x28\x6d\xb1\x84\x27\x6f\x16\xa2\xc8\x8b\x4b\xc8\xa0\x55\xbe\x45\xc5\x4f\xe7\x65\xad\x4a\x0d\x3b\x1a\x54\xa2\x9a\xb8\x25\x77\x7b\x34\x55\xee\xad\x89\x16\x00\xbb\x49\xb3\x05\x80\x3e\x65\x96\x8d\xa8\xfe\x72\xf6\xea\x65\xea\x50\x21\xb9\xe1\x92\xab\x4b\x95\x68\x93\x59\x79\x4d\x5b\xe9\x91\xd9\x55\x5d\xfe\x83\x39\x2a\x5d\xeb\x97\x34\xec\x60\xb4\xab\xb2\xc0\x7d\x17\x2b\x45\x26\xc5\x86\x53\xa7\xda\xc6\xea\x43\x85\x43\x89\x1e\xd7\x03\x6c\xc5\x16\xbc\x4d\xe8\x45\xcb\x10\x2d\x3d\x2a\x6f\x8c\x98\x10\x7a\x61\x13\xc5\xf2\x5a\x54\xd9\xf9\x5c\x4c\x42\x45\x24\x37\x79\x51\x56\xd7\x4e\xb2\xed\x93\xfb\xbe\xf1\x18\x82\x7e\xb9\x6d\x4f\xdb\x81\x57\x3d\x5d\x55\xb0\xa0\x51\x9b\xbc\xc7\x3b\x61\xe6\x3e\x07\x5e\x8a\x66\xd2\x59\x53\xbd\x2e\xf3\x26\x6b\xa6\x57\x93\x0f\xc2\xc5\xca\xf4\x2a\xcb\x8b\x30\x30\x48\x1f\x02\x19\xbe\x3f\x77\x0c\x3f\xdf\xdd\xf8\xb6\x6e\xcb\xbb\x39\x5b\xd7\x28\x6f\xed\xa3\xe9\x3c\x3f\xaf\xb2\xca\xef\x86\xeb\x65\x44\xa7\xc2\xde\xee\x27\x9f\xcf\xb3\xe2\xc3\xff\xc5\xcf\xa0\xb6\xcb\xea\xaf\xe4\x2b\x9d\x25\xb8\x1d\x3d\x70\x7b\x7a\xe8\xf6\xf4\xd0\xc3\xa5\xdb\xd3\x43\xb7\xa7\x87\x6e\x4f\x0f\xdd\x9e\x1e\xba\x3d\x3d\x74\x7b\x7a\xe8\xf6\xf4\xd0\xed\xe9\x23\xb7\xa7\x8f\xdc\x9e\x3e\xfa\x4a\x1a\x99\xfe\x43\x6b\xe0\x99\xd8\xec\xad\x9e\x25\xa5\xc9\xc2\x5b\xd3\xf2\xbc\x9e\x56\xf9\xb9\xf0\x00\x75\x0e\xc0\x2d\x8b\x6e\x48\x96\xa7\xc4\x42\x01\x13\x4e\x48\xa5\x5b\x5c\x21\xaa\xac\x11\x3f\x2c\x73\x5f\x61\x8f\x67\xa2\xdf\xd2\x1f\x9f\x1f\x4f\x5e\x9c\xfc\xdd\x83\x54\x19\x06\x8a\xac\x17\x83\x80\x98\x87\xed\x2f\xf3\xd9\x33\xe7\x29\x1c\x9a\xc6\x74\xbc\xa3\x9d\x9c\x3d\x99\x1c\x9f\x9c\x3e\xf5\xa0\x74\x0e\xce\xd9\xab\xb7\x67\x7f\x9f\xc8\x34\x0f\xd0\x64\xd1\xc4\x35\x99\x07\x23\x13\xd5\xcd\xf6\x55\x08\x80\xd2\xd5\x0d\x37\x08\x53\x33\x18\x59\xa1\x67\x63\xaa\x5a\xd2\xe6\xa5\xa1\xd0\x3c\xbf\x73\x42\xf3\x60\x28\x12\x0f\x04\x93\x11\xa2\xba\x7d\x2a\x37\xfc\x67\x79\x91\xcd\xe7\xb7\x3e\xa8\x9d\x4f\x66\xb3\xbe\xf3\x7d\x68\x19\xd3\x71\x0c\xd9\x07\x11\x86\xd2\x39\xf8\xce\x9f\x15\xcf\xe1\x0e\xe0\xc1\xe9\x1c\xd5\xcf\x0e\x38\x9d\xa3\xe0\xd6\x0c\x85\x8f\xe2\xa6\xca\x16\x1e\x8c\x4c\x44\xe7\xf8\x8b\x45\xa0\x0a\x48\x35\xf9\xa7\x8d\x4f\x80\x2a\x63\x9d\xce\xc6\xb7\x01\x25\x59\xcd\x03\xf9\x8a\x61\x01\xf1\x03\xf2\xca\x9e\x65\x33\x26\x03\x84\xe2\x9a\x3c\x18\x95\x41\xd3\xb4\xf0\xb4\x34\xae\x09\x05\x14\x25\xdb\xcb\xa7\x74\x84\xc9\xe7\x8d\xb3\xdf\x01\x08\x24\x13\x99\xce\xc4\x27\x87\x06\xc1\xbc\x1a\xd3\x87\xff\xf1\x31\x1c\x42\x2a\x10\xf7\xc1\x95\x1c\x81\x8e\xc7\xa5\xde\x90\x1a\x79\x05\x3d\xc6\x12\x41\x38\x96\x6f\x1b\x74\x9f\x2d\x17\x73\xe1\x17\xb1\xf3\x91\x47\xbf\x14\x8d\xb7\x34\x01\x58\xe5\x04\xa3\x45\x1c\x98\x68\x11\xd9\x6c\xa6\xee\x8b\x3e\x0c\xcb\x64\x91\x16\xba\xe1\xed\x7c\x3a\x0c\x6a\x09\xd2\x5d\xc6\x01\x08\x15\xaa\x37\x96\x22\xbd\x1b\x51\xcc\x4e\x3e\xba\x27\x14\xc2\xab\x2c\x52\x9a\xa9\xd7\xd4\xcd\x73\x71\x69\xca\x1d\x47\x60\xf9\x00\xbc\x95\x8d\x0e\xf0\x54\x71\xf7\x48\x00\x78\x9e\x6b\x83\x1f\xe7\x17\x17\x6b\xe0\x65\xb6\x5d\xe0\xc7\x22\x0f\xcd\xad\x9d\x0f\x45\x94\x93\xcc\xd3\x80\x96\x90\x4b\xd8\xbe\x54\xc6\x0f\x36\xe2\xc3\x58\x45\xb5\x68\xa4\xbb\xa4\x06\x41\x12\xfd\x28\xaa\x2a\x9f\x89\xa7\x70\x39\x08\x04\x37\xb1\xf2\x51\x08\x25\x2e\x73\x6d\x12\x8b\x55\x05\x0a\x86\xa0\xd0\x7c\xbc\x98\x6d\x2c\xec\xc3\xe0\x76\x07\xbf\xdf\xea\xbb\x87\x5f\xd0\x85\x80\x62\xc7\x02\x75\xb5\x5d\xa2\x90\xfb\xb4\xc9\x03\x50\xbc\x13\xab\xb6\x7d\x70\x3b\x3f\x28\xac\x3e\xe0\xba\x74\x4d\x75\xeb\xcd\xfc\xb7\x78\x08\x9d\x12\xc8\x9b\x0a\x24\x7d\x1e\xd8\xef\x27\x93\x81\xc9\x43\x4e\xc6\xd9\xa6\x01\xe6\x15\xed\xd3\xaf\xb2\x45\xe7\xce\x47\x70\xee\xce\x27\xf7\xaa\x0e\x64\x06\xf4\xf9\xea\x6e\xe8\x3f\xfa\xd0\xb0\x3a\x5f\x08\x07\x87\x7f\x52\xeb\xf6\x85\xb8\x25\x66\xb4\x1b\xd0\xe4\xe1\x21\x33\x5f\xd6\x57\x6f\x05\xdc\x0e\x03\xe4\x2a\x6f\x18\x03\x1f\x86\x6d\xa0\x90\xf0\x13\xec\x1a\x95\x5f\xd4\x87\xc1\x87\x06\x99\xf0\xba\x9c\x09\xbf\x84\xce\xa2\x33\xb0\xc8\xeb\xab\xce\x8e\xb1\x5c\x83\x1f\xef\x0c\x39\xd4\x1b\x9b\x3e\x44\x08\x0b\x61\x50\x96\x69\x6a\x4d\xdd\x6b\x15\xd6\x48\x4c\xdb\x4f\x74\xb1\xf7\xa1\x4c\x1e\x6f\xd8\x87\xa3\x0c\xc2\x6c\x07\x10\x65\xd0\xaa\x02\x51\xb7\x0f\x44\x19\xe4\x56\x62\x91\xe9\x65\xef\x52\xd8\x61\xf0\x09\x08\x45\x0d\xc1\xd5\x7a\x88\x6f\x41\x36\x44\xb7\x5a\x2a\x80\x5b\x7a\xa9\xd3\x6c\x7a\x25\xdc\x73\x04\xc1\x28\x47\x9d\xe3\xc1\xd8\x47\xf2\x6a\xea\x45\x67\x52\x52\x10\xef\x7c\x02\x68\x9e\xcb\xa8\xb6\xbb\xfa\x7b\x07\x73\x52\x9d\x0a\x45\x63\xa2\x93\x7d\x53\xe9\x30\x9c\x55\xc5\xe6\xc2\x5b\xb4\x5c\x6f\xdb\x74\x1d\x6c\x7b\x4d\x71\xbb\xe0\xb9\x5d\x59\x70\x62\x7c\x18\x36\x3d\x9b\x10\xd6\x19\xff\xaa\xc3\xc7\xd1\xe1\xef\x7d\x27\x47\xd7\xde\x43\x25\x40\x5d\xeb\x97\x4a\xff\x25\x13\x00\xd8\x53\x26\xbe\x4e\xce\x7c\x18\x95\x83\xe4\x33\xcf\xb3\xfa\x95\x68\xae\xca\x00\x24\xcb\xb4\xa8\xd9\x87\x2c\xf9\x38\xf3\xeb\x6b\x31\xcb\xb3\xa6\x03\x47\x12\xde\x03\x09\x4c\x8d\x5f\xea\xdc\xc7\x69\x28\x32\xdd\xa1\x1b\x9a\xae\xd3\xdd\x13\x40\x7a\xfe\x9e\x3c\x27\xbc\x00\x06\x5e\x78\x91\xc7\x17\x3f\x39\xd7\x5b\x00\xc0\xf4\xe0\x3b\xf2\x61\xe0\xb8\xd4\x82\xcc\xd4\x15\x4e\x6d\xe1\x66\xf8\xd1\xbe\xed\x67\xb8\x08\x02\x14\x2a\x3b\xaf\x4f\xae\x17\xce\x7e\xf9\xe8\x00\xaa\x80\x0c\xdc\x8e\xc3\x20\x42\x03\xe4\xf5\xf7\xf3\xac\xf8\x90\xba\x92\xb1\xa0\xdd\xe7\x73\xfb\x85\x80\x4c\x1f\xdc\xd4\x55\x3b\x0c\x41\x33\x41\x57\xca\x64\x5e\x41\x50\x23\xda\x32\x82\xac\x20\x20\x97\x82\x71\xa9\x57\x10\x18\xc5\x60\x28\xf6\xc2\xae\xaf\xe9\x52\x77\x1f\x2c\x89\x58\x6a\x89\xc7\x30\x5f\x0b\xc8\xb4\x40\x8c\xa5\x93\x48\x8c\x8b\xc0\x30\x97\xa4\x00\x74\xeb\xc7\x34\x7d\xef\xb7\xee\xf9\x26\x64\xe2\xdb\x72\x7e\x7b\x91\xcf\xe7\xe4\x51\x72\xe0\x24\xaa\x99\xb0\x93\x07\xd7\xd9\x22\xbd\xce\x16\xc1\x3c\x25\x27\x50\x72\x81\x20\x0c\xca\x09\x48\x2e\x10\x82\x50\x72\x02\x25\x17\x20\xdb\x33\x90\x9d\x18\x31\x8a\x42\x27\x49\xff\x94\xb4\x0f\x53\x8d\xbc\xcf\xc8\xf7\xa8\x1a\x23\xe1\x63\x12\x3d\xcc\x03\x99\x1e\xc8\xf0\xd4\x54\xa1\x84\x4e\x49\xed\x68\x6a\x29\xb5\xb6\x52\xb5\xa4\x4e\x4b\xe6\x34\x91\x80\x6c\x4e\xc9\xe2\x30\x95\xa4\x71\x24\x7d\xa3\x34\x47\xfe\xe6\xca\xdb\xa8\x3e\x92\xb8\x29\x09\x1b\xb5\xae\x65\x6c\x46\xa6\x46\x84\xa1\xa5\x6a\x46\x8a\xa6\xdb\xa3\x1c\x23\x37\xd3\x39\xac\x13\x76\xfb\x20\x2b\x03\xd9\x18\x7e\xa3\x74\x0c\xa5\x61\x2c\xe5\xb4\xa9\x52\x2d\xff\xc2\xf4\x97\x3c\x0c\xb6\xc1\xb0\xc4\xae\xf9\xe2\xd7\x17\x47\x4e\x83\x30\x8e\xa4\xc6\x11\xcc\x20\x8c\x11\xcd\x28\x49\x0c\xcd\xbd\x23\x59\x73\xbe\x09\xaa\x2c\xd2\xb2\x50\x63\x61\x22\x1a\x2e\x91\xc1\x5c\x47\x26\xe3\x88\x60\xa8\x2f\xae\x14\xc6\x15\xba\x84\xc1\x6a\x17\xae\xd6\xd4\xa7\x04\x2d\x46\xae\x82\x39\x96\x64\xc5\x12\xa4\xd0\xcc\x59\xa2\x14\x5b\x72\x82\x10\x96\xec\xc4\x12\x95\x38\xf9\x20\x2c\xb1\x65\x23\x0e\x04\x4a\x47\x1c\x61\x08\x0d\x95\xcb\x43\xd8\x6f\xb5\x6b\xf9\x12\x90\x80\xc0\xc3\x86\x35\x22\x0f\x5f\xc2\x41\x93\x6a\xcb\x38\x1c\x91\x06\xc2\x04\x85\x1a\x41\x19\x06\xc2\x07\xa4\x18\x01\xa1\x05\x2d\x43\x57\x6c\xe1\x49\x29\x10\x8e\xc9\x29\x98\x58\x02\xf3\x1c\xc1\x84\x23\x87\xd0\x9b\x53\x6a\x4e\x28\x12\x3d\x90\xa4\x01\xd3\x98\xac\x81\x89\x16\x68\xdb\xcc\x16\xe9\x2b\xbd\xb4\x1d\x69\x82\x23\x3c\xd0\x4b\x96\x0d\xca\xfa\x32\x3d\x62\x10\x75\x00\x42\xdf\xfe\xf5\x55\x1f\xd3\x99\x5c\x80\x89\x01\x30\x2f\x20\x08\x08\xdc\xfb\xf9\x32\xb5\x6e\xfe\x81\x8b\x3e\x11\xa7\xb9\xeb\x9b\xab\x3d\x35\xc9\x2f\xf7\xd6\x5d\x9e\x0d\x03\xb6\x1d\x73\x1f\xb7\x06\x02\x79\xfc\xb6\xce\xca\x61\x19\xbd\xc7\xeb\x0b\x3a\xbb\x8f\x5b\x75\xa9\x7a\xf4\x10\x31\x55\xdd\xb8\x15\xc1\xe0\x9d\x5b\x5d\xb1\x89\x6c\xdd\x4b\xb6\x9b\x40\x70\xde\xdd\xda\xbb\x4a\x13\x69\xab\xcb\xb4\xbe\x3b\xab\x93\x87\x6e\xcf\xfa\xb2\xac\xf7\x54\xcd\xd0\xf3\xdb\x31\x2d\x54\x7e\x0d\xb3\xae\xc3\x7c\x32\x75\x05\xce\xfd\x57\xb7\xe0\x5c\xc9\xfc\x0b\xaf\xbd\xed\xba\x37\xb8\xf0\x0d\x77\x5d\x99\xba\xa3\x50\xed\x94\xf2\xda\xe8\xa8\xdd\xaf\xd7\xad\x31\x70\x6d\x0d\xdc\x52\x39\xd6\x9c\x51\x06\xaf\xa5\xc4\x95\x9b\x8b\x29\xbb\x87\xaa\xba\xe8\x1e\xa9\xaf\x8d\x84\x75\x76\x71\xe4\xf7\x44\x7b\x5e\xf5\x9c\x2a\x5a\xf7\xae\x86\xfe\x4d\x30\x34\x5e\x67\xac\x8a\x0f\x82\x4b\x30\x5e\x8a\x69\x13\x83\x94\x57\x2c\x85\x6e\x6b\x74\x39\xa3\xba\xe5\x05\x0f\xee\x73\xf8\xad\x2e\x91\xea\xce\xa8\xd6\x25\xbb\x35\x5a\x97\x44\xc2\xcc\xb2\x48\xab\x65\xa1\xcf\x42\x75\x9d\xd3\xbf\xdc\x9c\x81\x71\x63\x51\x89\x97\x90\x7a\x4b\x1e\x3a\x22\xf4\xbe\x32\xf8\xeb\xc9\xbb\xd3\xe7\x6f\x5e\xc7\xba\x0b\x70\xf3\xa3\x8b\x9e\x62\x89\x0a\xc9\x08\xe9\x6f\x75\xb7\x53\x57\x39\x5a\xf6\x90\x26\x58\x8a\xba\xbd\xd1\x7f\xcd\xc8\x56\x97\x22\x85\xbf\x06\x61\xc0\x7b\x83\x41\x9b\xf6\x15\x31\x99\xa0\xfb\x24\x1a\x43\x75\xab\xd4\xc6\x66\xe2\x7c\x79\x19\x8d\xe3\x95\xa3\x0e\xcd\x73\xe3\x2e\xa7\x0f\x50\x77\x58\x31\x4d\xa9\x79\x8d\xc2\x1a\x3a\xeb\x54\x31\xf0\x82\xa1\x4d\x8c\xe1\xd3\x98\x1c\xab\x2b\x75\xd6\xe4\x1f\xc5\xb3\x65\x31\x65\x11\x57\x97\xc5\x54\xfb\xad\x90\x1f\xbb\xbb\xcf\x28\x8f\xf9\xba\x68\x4a\x72\x7f\x01\x5e\xdd\xa1\x8c\xba\xc4\xf4\xa3\x51\x01\xf5\xf6\xa6\xe5\x4c\x8c\xa3\xf8\xbb\x07\x07\xad\x7e\x6f\xe5\x8d\xf6\xed\x4e\xca\x7b\x56\xfc\xd8\x4f\x3b\xe2\x7d\xd3\xe6\xcf\x69\x9a\x7e\x2c\xf3\x59\x6f\xff\xee\x8e\x3e\xe5\x64\x71\x8f\x38\x67\xb7\x0b\x01\xf7\x26\x50\x1f\x97\x8c\xd7\x7b\x1d\x7e\x1a\xa5\x0f\xa2\x48\x1b\xe5\x18\xff\xbb\xef\xf6\x2d\xe7\x9e\xc5\x4e\x9a\x46\xaa\xe5\xa8\xbb\xde\x4a\xd4\x10\x0e\x1b\xfa\xdd\x9f\x8b\x02\xeb\x96\xad\x2c\x98\x97\xff\x83\xb1\x13\xb1\x6f\x2e\x0a\x8c\xfe\x91\x5f\xf4\xf3\x5e\x5e\xf4\x20\xd4\x60\x3d\xca\xc1\x09\x99\x09\x1b\xbd\x48\x9a\x51\x3e\x4e\xf2\xa4\x89\x5b\x66\xc4\xda\x5a\xaf\xd4\xeb\xb0\x4a\x30\x1e\x66\x29\xfd\xdf\x1b\xbb\x9f\x85\xc6\x6e\xfc\xb5\xd6\xab\xfc\x3a\xac\x11\x8c\x87\x35\x4a\x67\xce\xa4\xcf\xdf\x27\x17\x55\x79\xfd\x5c\x66\x40\x37\xf4\x97\xb6\xb5\xe2\x29\xcc\xdc\xca\x24\xef\x6b\xc3\x26\x9d\xf6\xe7\x7d\x0e\xf0\x2a\x6b\xae\x06\xd7\xd9\xa7\xfe\x3e\xc6\xb2\x44\xb4\xee\x99\x86\x5b\x83\x16\x9d\x98\xbc\x4f\x19\xf0\x30\xff\xf3\x7b\x8d\x2a\x99\x2e\x49\x2d\x4d\xcb\xf3\xf7\x7a\xb9\xe7\x8a\xc2\xd4\x8a\x25\xc9\xc5\x5a\xf2\x02\x10\x9f\xba\x20\x99\x11\x57\xa1\xad\xaa\x40\xa5\x39\x47\xb3\x4e\x32\xa4\x4a\x47\xe3\x84\x02\x05\xf2\x1e\xcb\x31\xe9\x69\xd6\x81\x2d\x95\x03\x03\xc7\x4b\x71\x1e\xcb\x9a\xe7\x4b\x34\x63\x1f\xe5\x63\xf4\x95\x69\x47\xb1\xc2\x46\x73\x40\xa2\xb6\x5e\x43\xbd\x6c\x0a\x3b\xd5\x3a\x96\xe2\x66\xfb\x3f\xfd\xcb\xf3\x57\x93\x93\xd3\x6f\xd1\x51\x72\x60\xef\x5a\xf9\x69\xe9\x75\xb6\x68\x03\xe0\x6a\x51\xba\x45\x1c\x71\x52\xb0\x28\x22\xdc\x2b\xc9\x85\x4c\xa1\x72\x8a\xa2\xdd\x82\x8e\xec\xc9\x8e\x1e\xa8\x44\x5f\x3c\xcd\x15\x79\x59\x79\x96\xa8\x8b\xe7\xb8\xcd\x84\x0f\x3c\xad\x06\xfb\xd5\xad\xcd\xba\xb5\xb2\x7d\x2d\xe4\x0e\xbd\xdd\xdf\xda\xfa\xcc\x52\x65\xfa\x0d\xac\xd1\xd6\xbd\xef\x3f\xb2\x9f\xf7\xb7\xd2\x50\x74\xde\xf5\xbf\x65\xcf\xfa\x5d\x0f\x8c\xbf\x0f\xbc\x2f\xae\x79\x30\xfc\x7d\xf8\xbd\x70\xed\x9b\xdd\xef\xbb\x9e\xec\x36\x38\xff\x21\x91\xdf\x9b\x1f\xd4\xe5\xe1\x14\x63\x01\xdc\xdd\xed\xec\x90\x30\xee\xf5\x5f\xad\x7c\xf5\x20\xf6\xc3\xcb\x37\xdf\x3f\x79\x99\x3e\xfc\x47\x7f\xf4\xe4\xc1\xff\xfe\xcf\xf1\x5d\x7f\xb4\xff\xe0\x4f\x63\xfc\x88\x63\x16\xc3\xc2\xf7\x77\xad\xb6\x6e\x5d\x0d\xf3\xd3\x6c\x1c\xed\x91\x5c\x11\x0b\xd7\x70\x66\x59\xa5\x2f\x45\x13\xf0\xa5\xfd\x98\x78\x77\x74\xb2\xa7\x0b\xb5\xfc\xcd\xc9\xf8\xbc\x2e\x21\xd2\xb2\x3c\x7c\xde\x42\xd5\x68\xa8\x33\xcb\x2b\x8c\x61\x9a\x46\x17\x37\x33\x72\xa2\x33\x91\x50\xa9\x02\xa5\xb4\xa6\x4c\xb1\x8e\xa1\x53\x92\x44\x34\xca\x8c\x28\x6e\x87\x2a\xdc\x80\x15\x10\x7e\x71\xeb\x9a\xcd\xc8\x34\xe0\xcd\x08\xbe\xaf\x1a\x4a\x4c\x2f\x4c\xc4\xdf\x09\x5e\x8f\x62\xa8\x4a\x7d\xa1\xa3\x7e\xc2\x92\xcc\x68\x61\x84\xb6\xfb\x73\x35\x56\x18\x15\xf8\x29\xb2\xbc\x66\x34\x65\x18\xbc\x29\x03\xc0\xd8\xac\x6f\xf0\xc4\xba\xe3\xd6\x8e\x9c\xb8\x3b\x78\x55\x80\x95\x7e\x1c\x8d\xf0\xc7\x38\x3a\x8a\x94\xe3\xe0\xc8\xba\xfe\xfd\x39\xda\xa3\x25\x8a\x9c\xdc\x5e\xf4\x5d\x3f\xda\x33\xc3\xdb\x8b\x7a\x0f\xbe\xeb\xa9\x94\xa6\xdc\x8b\xe2\x68\x0f\x2b\x05\x67\xf1\x85\x98\x36\x16\x6f\x44\xae\xf5\x69\xaa\x53\x53\x53\x82\x93\x9d\xaa\x9a\x86\xb8\x7b\x00\x6d\x12\x2d\x05\xa8\x56\x93\x97\x1d\xd2\x9c\x67\xb1\xb8\xe5\x32\xc9\x84\xfb\x1e\xea\xd8\xde\x7a\xaa\xdd\x3a\xa8\x61\x53\x43\x53\xb2\x70\xe1\x58\x16\x1c\x67\x9e\x95\xa7\xb7\xc5\x34\x30\x1d\xb3\xbc\xee\x46\x43\x73\x53\xca\x39\xb1\x3a\xe1\x86\x34\x87\x6e\x30\x2c\xad\x19\x0c\x56\xa7\x22\xad\x07\x6a\x20\x4a\xdf\x6a\x28\x18\xb7\xc4\x1a\x8b\xd5\x22\xf3\x6e\x9f\x55\x97\xa2\xd1\x96\x78\x64\x10\x2a\x2b\xa1\xac\x04\x96\x7a\x2c\x69\xf3\xf3\x8a\x9f\x67\xd3\x0f\xb2\xbc\x95\x6b\xb3\xdc\xb3\x9c\xfc\x57\x58\xdb\x84\xbf\x73\x90\x92\x4d\x5e\x37\x79\x71\x79\x9c\x57\x29\xcf\x94\x87\x1d\xcc\x0e\x90\x06\x83\x42\xd3\x64\x63\xeb\x5a\xdf\x16\xd3\x88\xe1\x72\x22\x13\x12\x28\x69\xd5\x57\x13\x01\xcb\xde\x61\x7c\x0a\xd3\x70\x9a\xe2\xb8\x76\x77\x67\xf8\x05\x48\x5a\x05\xcb\x13\x02\x25\x06\xdc\x91\x2b\xd7\xfe\xe4\x8e\xcf\x3e\x50\xf2\x0b\x09\x62\xcc\x6c\xc5\xec\xee\x6e\xc7\x9b\x6b\x2b\xa6\xfd\x36\xf8\x33\x9b\x78\x18\x7b\xdb\x2e\x71\xab\x34\x99\x68\x2b\xf4\x9b\x36\x34\x6a\x54\xb5\xe8\x73\x23\xb0\x1b\x38\xdb\xf8\xbc\xbc\x8c\x57\xfc\xe5\x6d\x30\x2f\x2f\xfb\x51\x2f\x52\x0b\x80\xbc\x54\xc4\x49\xf4\xe0\xbb\x28\xd1\x55\xc3\x44\xb6\xde\x39\xe0\x6f\x48\xba\x04\x79\x86\x70\xd9\x84\x8d\x7b\x08\xf7\x0a\xb1\xb6\xfa\xd8\xb8\xba\xb0\x10\x83\x2b\x03\x37\x93\x52\xe3\xc5\x5a\xf2\xf7\x45\xc5\x9f\x1f\x44\x09\xd5\x85\x88\x08\x8e\x6a\xd3\xee\x1a\x18\x99\xc5\x50\xe8\x8d\xdb\x67\x2a\x4c\xd5\xa5\x19\x3d\x8b\x15\x0c\xb2\x4d\x23\xab\xef\x37\x25\x14\x31\xf1\x5d\x3e\x88\x5b\x79\xf3\xc7\x44\xba\x43\xbb\xb7\xc3\x0f\xe2\x36\x8e\x57\x4d\x39\xfa\x20\x6e\xc7\xc0\x7a\xc0\xaf\xb6\x6d\xdd\xea\x55\xe8\xaa\x95\x7d\xd0\x23\xd2\x9f\x02\x31\x27\x74\x4d\x01\xe6\xe2\x29\x8f\x99\x2c\xb9\x12\x68\x1e\xa3\x1f\x52\x12\x8f\xf3\x69\xb1\x03\xdb\x57\xda\x94\x6b\xaa\x74\x99\x06\x58\x7c\x17\xf3\xec\xb2\xbb\x7e\x8c\xc7\x82\x4b\xc7\x69\x0a\x6b\xeb\x43\xf9\xb6\x65\x8e\x1c\x24\x00\xd1\x2b\xcd\x00\xf3\xc7\xab\x79\x2c\xca\x1b\xd0\x31\xd8\x47\x9a\x62\x37\x41\x23\x79\xd6\x35\x53\x93\x5b\xd7\x4d\xf0\x6b\x1a\xb1\x45\xde\x3c\xc7\x15\x74\x5b\x97\xd4\x2e\x71\x77\xc7\x75\x55\x19\x97\x7e\xc9\x6d\x35\x74\x25\x0d\x99\xf7\x5a\x06\xae\xbf\xb5\xaf\xfc\x2f\xbe\x5e\xae\x31\x3f\x39\x0c\x5b\x9f\x78\xe6\x67\x8f\xb8\xf9\x19\x28\xbd\xb8\x46\x76\x8f\x94\xb5\x9b\x32\xb2\x0b\x59\xf5\xfc\xce\xb1\xea\x09\x6a\x66\x7f\xbb\xa5\x06\xf7\xb7\xbe\x02\xb7\xec\xa2\xbc\x0a\xcb\xff\xc9\x4d\x56\x29\x35\x30\xf9\x33\x79\xf6\xfc\xdd\xe9\x19\xf4\x5b\xde\xfe\xfe\xf1\xf3\x60\xbc\xc7\xef\x7b\x17\x79\x55\x37\x2f\xc4\xad\x7d\xd7\x5b\xa0\x30\xb0\x99\x5e\xf5\x75\xf9\x78\xb4\x3f\xc6\xf8\x5e\xf8\x1c\xfc\xdf\x4b\xb1\x14\xe9\x88\x79\xd2\xf6\x1f\x8b\xd1\x31\x07\x2f\x40\x82\xb7\x34\x4d\xf7\x2d\x26\xe1\x9f\x50\x1b\x87\x1c\x7a\xed\x20\x0a\x51\xdc\x06\xf0\x86\x36\xff\x19\xaf\xfe\x39\xda\x1f\xcb\x9b\x7b\xff\x9f\xa3\x83\x71\xdc\xc6\x43\x39\xfc\x7e\xa4\x9e\x7a\x7b\x59\xd1\xd3\x92\xd1\xde\x25\xac\xbb\x04\xa9\xac\x27\x3e\x2d\xc4\xb4\xa9\x95\x61\x0c\xe5\xd6\xbd\xa6\xec\x9d\x8b\x5e\x2d\x9a\xe5\xa2\x77\x7e\x0b\xee\x10\x9b\xfc\x5a\xc0\x8f\x6a\x59\xf4\xe6\x65\xb9\xe8\xe5\x35\x0e\x5c\xcc\x92\xde\xf4\x4a\x4c\x3f\x48\x1a\xe8\x35\xb7\x8b\xb2\x8e\x92\xae\xa1\x5b\x3b\xc9\x76\xef\xee\x1a\xcd\xd9\x6c\xc6\x1f\xd9\x61\x4f\xfb\x20\x6e\x21\xd0\x7e\x51\xce\x04\x4a\x0f\xcb\xf3\xf7\x77\x77\x11\x45\x87\xdd\xd1\xb1\x9b\x98\x30\x16\xf0\x7e\x9d\x12\xf5\xc0\x06\x07\xe5\xeb\xf4\x7a\x30\x65\x0d\x40\x98\xdf\x1d\xef\xbc\x8b\x2c\x98\x28\x8e\x57\xc1\xc2\xe9\xaa\xc5\x98\x41\x32\x73\x44\xfd\x1c\x13\xb0\xfe\x4e\x47\xe3\xd6\x4e\x41\x91\x29\x8c\x67\xa8\xa8\xdd\x1a\xea\xb5\xe5\xe6\xdf\x55\x3d\xf8\x52\xac\x94\xe7\xef\x47\x6a\x61\x83\x9c\xf7\x7a\x77\x77\x1b\x1c\xb0\x4a\x08\x1d\xbb\xbb\x01\x74\x42\xde\xee\x6e\x10\x29\xa9\x9d\xea\xc4\x78\x87\x4c\x2f\xc0\xbb\xaa\x12\x25\xee\x38\x5e\x84\xac\x17\xf3\x7c\x2a\xfa\x79\x72\xa0\x1c\x6e\xb6\xad\xd9\x3f\x3a\x31\xaa\x15\x35\xfa\xe8\xb2\x57\x02\xa1\x6c\xdb\x76\xe5\x9b\xe2\x3f\x92\xa8\x7c\x10\xb7\xe9\x07\x71\x4b\x5f\xca\xd5\x01\xc6\x12\xe5\x2f\x13\x04\x80\xe9\x18\x69\x54\x55\xda\x5c\x81\x96\xa4\xe6\x95\x55\x25\x5a\x4c\x81\x01\x72\xb1\xd9\xc1\x47\xe3\x26\x96\x67\xc3\xbd\xdb\x22\x07\x9e\x9b\xe8\xce\xa2\x94\xbe\x75\x3d\x16\xef\xee\xf2\x2f\x1c\x56\x9a\x46\xff\x3f\x91\x4d\xaf\x22\xea\x08\xb5\x8c\x11\x43\x35\xb6\xcc\x7b\xa8\x4e\x62\x6f\xa2\x1a\xbb\xf3\xec\x5f\xb7\x3f\x10\x57\x2d\xf9\x46\x45\x9b\x31\xed\xbf\x06\x51\xfa\x5c\xf2\x09\x52\x34\xd9\xee\xae\xfc\x8b\x2d\xd0\x4b\x8b\x57\x43\x7e\xd1\xb7\xfb\xcf\x24\x72\xaa\x7d\x65\x4d\x32\x4d\x59\xad\xf2\x1b\xc8\x10\x9a\x93\x5f\xbb\xbb\xf2\xef\x60\x02\xca\x27\xd9\xf9\x1c\x17\x15\x31\xc7\x50\x06\x72\xf4\x31\x62\x92\x90\x15\x66\xe1\xee\x4c\x07\xf5\x73\x08\xef\x50\xeb\x63\x14\x31\x9e\x06\xdc\x54\x4f\x3c\xfa\x52\x13\x68\x88\x07\x15\xeb\xe9\xb9\x6a\xe2\x50\x0f\xaf\x85\x4f\x8d\xa6\x13\xc7\xad\x1e\x40\xb6\xc3\x40\x1f\x95\x76\x50\xa8\x97\x5d\x9d\x41\xa2\xa4\x9b\xb5\x92\xb5\x78\x7b\x99\x4b\xb3\xce\x12\x03\xe1\x4a\x1b\xec\x13\x08\x29\xfd\x0b\x7e\x25\x1a\x64\xd4\xf5\x4a\x47\xf7\xaa\xf2\x0f\x9c\x05\xb8\x16\xd9\xba\x4c\x74\x64\x4f\xf9\x43\xce\x39\x24\xeb\x30\x66\xf5\x48\xfe\x1d\xff\x59\x1e\xed\x3a\x94\x67\x25\x1a\x38\x95\x51\xb0\xab\x5f\xbe\x9a\x60\x57\xb3\xd9\x2c\x75\x24\x99\x84\xab\xa4\x91\x6c\x1a\xec\x42\x75\x35\xc5\xbe\x0d\xbd\x1e\x0e\x59\x37\x52\xde\xa7\xbb\xbb\xfd\x78\xef\x60\xa8\x91\xae\x67\x3e\xa0\xf0\x6a\x84\xd7\xb0\xad\xc8\xa4\xd1\xfe\x78\x77\x57\xfd\x52\x4f\x9a\xe8\x3e\x1c\x12\x0f\xc6\x43\xb9\xc6\x6c\x66\x6a\xa8\xbd\xca\x63\x60\x7f\xb9\x50\xd4\xb3\xea\x41\x6c\x1c\x60\xaa\x7a\xe3\x95\xc5\x2d\xc0\xf9\x37\x6a\x54\x88\xb5\x31\x75\x56\x71\x11\xfb\xca\x65\x25\xfa\x87\xac\xa6\xa9\xaa\x07\xba\xc2\x9a\xdd\x4f\xf6\x1f\xf4\x55\x3f\x4d\x07\x54\x84\x50\xca\x68\x9d\xda\xd1\xab\x93\x9c\x22\xd9\x6f\xf4\x3b\x5b\x57\xd3\x38\x38\x6f\x48\xb3\x5f\x36\x75\x36\x11\x7d\xb7\x8f\x08\xa6\xcf\x07\x0f\xda\x2f\x98\xbb\xaf\x38\x63\xbf\x14\xa6\x97\x85\x8d\xeb\x30\x9e\xa7\xe5\xb2\x68\xd2\xfd\x60\x96\x4c\x32\x33\x60\xcd\xd9\x8a\x8c\x7c\x73\x15\x81\x72\x82\x1f\xc0\x18\x01\x77\x87\xdf\xf1\x2a\x00\x24\x19\x38\x09\x97\xe2\xa7\x3e\x10\x76\x0c\x97\xc1\xb3\x9c\x3d\x05\xe8\x97\xa6\x3e\x86\x7a\x70\x10\x7b\x7b\x26\xce\xec\x7d\x27\x62\x88\xd5\x38\xf8\x0a\x22\x8c\xd0\xea\xe3\x65\x3d\x4e\xdc\xb1\xb2\x20\x8d\xa4\x6e\x72\xf0\xb9\xdd\xf6\x27\xda\x20\xe5\xc1\x03\xc5\x1b\xe2\x37\xec\xa4\x14\x6b\x99\x7a\x04\x99\x13\xe8\x17\xfc\xa4\x03\xa7\xdf\x31\xfe\x1b\xa3\xf0\xad\x51\x80\xce\xb5\x3a\x11\x20\xbb\xa0\xc8\xc1\x91\x7f\xa9\x64\x43\x31\x61\x21\x98\xde\xfc\x19\x1a\x59\x57\x54\x0f\x3c\xbe\xcb\x66\x2d\x89\x6b\x36\xc5\x98\x74\x5c\x62\xef\x20\xd1\xf5\x74\x2e\x88\x9f\x02\xe3\x87\x0c\x0a\x14\x2c\x16\xcd\x95\xaa\xc6\x9c\xd4\xc0\x92\x99\xe8\x10\xf2\x7b\x2f\x52\xc1\x78\x3f\xa3\xcf\xa6\xad\x3d\xd3\x69\xed\x6a\x59\xa6\x4b\x7a\xc2\x0c\xe6\xc2\x8f\x36\x3a\x22\x13\xe8\x0f\xc4\x17\xa6\x9e\x0c\x59\x4f\xac\x7d\x73\x43\x45\x6b\xd0\x65\x74\xfe\x7f\x45\x6c\x19\xb7\x93\xff\x63\x90\x35\xf3\xf1\xe4\xa1\x65\x4b\xde\x13\xd9\x3e\x79\x15\xb5\xee\x2f\x01\x2e\x70\xdd\x15\x66\x68\x5d\x8e\xca\xf3\xf7\xc3\x90\x94\x20\xcc\x43\x22\xdf\x6b\x5d\x18\xb6\xbf\x0c\x59\x77\xa1\x5f\x79\x47\xd1\xb3\x60\x6d\x28\xf8\x5b\xeb\x13\x12\x97\x74\x7f\x3a\x0c\x6f\x34\x4c\x70\x66\x8c\x15\x0c\x53\xed\x08\x0e\x12\xc2\x86\x11\x02\x58\xc8\xd0\x3f\x15\x06\x77\x88\x51\xe1\x32\x19\x2a\x97\x5a\xff\x80\xa9\x47\x99\x34\x2c\x0d\x4a\x35\x18\x81\xc1\xb7\xb6\xaa\x55\xb7\xb1\x05\x87\xda\xce\xb2\x83\x97\x08\x98\x77\x74\x49\xb3\xb5\x17\xc3\x5f\x51\xfb\xea\xf3\xfc\x5f\x7e\xa6\x9f\xc6\x35\x21\xee\xd6\x38\xae\x0c\xfa\xbb\xec\xf6\xaa\xa8\x5c\x30\xfe\x3b\xa8\x88\x59\x6e\xa7\x7e\x21\xa7\x8a\xbf\x99\x1a\xda\x7a\x87\x74\xc1\x17\x81\xdf\xb9\x2f\x02\xdb\x28\xaa\x6d\x76\x24\xb7\x8d\x3b\xba\x75\x4e\xce\x02\x3e\xd1\x02\x4e\xce\x7e\x6f\x3b\x39\xf3\x5d\x90\xfc\xc1\x72\x7a\x12\xf2\x64\xf2\x07\xc7\x91\xc9\x5a\xf7\x23\x01\x83\x7d\x63\x8c\xbc\xc9\x5f\x59\x97\xfb\xa1\xfd\xfb\xb9\x1f\xda\x0f\xbb\x1f\xda\xe4\x34\xea\xe0\xb3\x9d\x46\x1d\x74\x3a\x8d\x0a\x39\x10\x08\x39\xb4\x0a\xb8\x2a\x00\x2f\x4d\xcc\x55\x81\xf5\x26\x94\x4d\xe0\x3a\x92\x8e\xc6\x78\x2f\x49\xca\x89\x6d\xdb\xae\x4f\xb5\x1f\x5f\x1f\x9f\x3c\x7b\xfe\xfa\xe4\xb8\x1f\xaf\x5a\xd2\xb1\xbf\x6c\xae\xde\x66\x4d\x23\xaa\x22\x7d\xf8\xf3\xa0\x8f\x29\x77\x3f\x8f\x7e\x1e\xc7\xff\xc9\x5e\x92\x3e\x88\xdb\xfa\x59\x59\x1d\x8b\x85\xe4\xd2\xea\x57\xb2\xe1\x99\x58\xbc\x90\xdc\x21\x9d\xf8\x75\xaa\x72\x46\x98\x83\x17\x49\x99\x03\xd7\x29\x3f\x5f\x5e\x3e\xb5\xa0\x44\x65\xba\x2c\x02\xb5\xd2\x55\x85\x1a\x6c\x1f\xda\x51\x22\x28\xf9\x61\xc4\xdd\x84\xae\x63\xb1\xa8\x41\xb0\xaa\x45\x98\x6c\x54\x80\xca\x48\x56\x1f\x31\x41\x79\x36\x9b\x1d\xd3\x2c\xc8\x8b\x60\x0d\x82\xd2\xc4\x12\xab\x43\x7d\x48\x86\xb2\x47\xb2\x8b\xf5\x74\xa0\x27\x0f\x8a\x25\x1a\x67\xf9\xec\x53\x32\x17\x05\xe1\x4e\xd6\x82\x0f\x30\x54\x98\xc4\xb7\x43\x05\x9f\x7a\x5d\x47\xa5\xf6\xd9\xa7\x74\x5f\xd6\x93\x52\x39\xfd\x64\x30\xfb\x84\x26\x0d\xb3\x4f\x7b\x7b\xf2\x76\x29\x73\x15\xd0\x28\x9f\x7d\x02\xa9\x46\x9d\xae\x99\x4e\x00\x30\x4f\x37\x7d\xeb\x93\x24\x6d\xb0\x01\xa0\xa6\x12\x8e\x03\xba\xd6\xba\x4f\x36\xff\x0f\x75\x0e\xea\x1e\x1c\x0c\x69\xf7\x5c\x87\x3c\xd7\x6a\x14\xec\xa3\x92\x72\x21\x2f\x20\xf2\xe7\x60\x32\x01\x96\x61\x92\x55\x79\x73\x3b\x99\xc0\x35\x45\x0d\x03\x55\x6b\x94\x49\x16\xdd\x1c\xb4\x48\x3f\x95\xb5\xec\xee\xca\xbf\x03\x9d\xc8\x43\x82\x3f\xb6\xb3\xc0\xd3\xbe\x52\xa8\xe5\xd3\xc2\x2b\xb2\x32\x86\x46\x5d\xec\x4d\x31\xbf\x25\xb8\x3e\x00\xaa\x44\xde\xe0\xdd\xdd\xce\x8e\x95\x19\xdf\xdd\xa1\xb8\xdb\x45\x03\x53\xd7\x2d\xc4\x4d\xcf\x39\x04\x5c\x68\xf6\x56\xd3\x59\xcf\xb0\xb3\x90\x3b\x5a\x73\x7f\x5a\x53\x84\xf4\x9e\xc4\x6c\x3b\x70\x60\x3f\xb6\x81\x34\xb3\xa7\x39\xc1\xec\x19\x68\xe7\xb8\xb3\x0b\xc9\x3b\x69\x40\x19\x73\x4d\xf5\x1f\xcb\x79\xd6\xe4\xf3\x50\xdc\x69\x14\x13\xab\xea\xfb\x50\x6d\xbc\xae\x2e\x3d\xed\xba\x2e\x3d\xad\x2b\x87\x30\xf4\x0f\x87\x18\x54\xfa\xb6\xdd\x57\x87\x6d\xea\x68\x45\x65\xd5\x65\xad\x6c\x01\x9e\x54\x4c\xd3\x5c\x15\x88\x57\x12\x04\x65\x03\x3a\xad\x1d\xca\x44\x52\x48\x60\x0f\xb3\x5a\x5d\xca\x7b\x9c\x75\x59\xa0\xbe\xb1\x36\xcb\xc7\x09\x36\xae\x2e\xe3\x36\x51\x41\x0f\xb7\x1c\x25\x10\x8b\x1e\x02\xee\x9c\xf9\x45\xdf\xed\x16\xd7\xbc\xa0\xe7\x2c\x09\x7b\x77\x47\x27\xed\xca\xa4\xa1\xdb\x16\xde\xfc\xba\xf6\x03\x32\x11\xb6\x95\x33\xc1\x88\xa6\x16\x25\x59\xd0\xab\x42\x5d\x7f\x35\xeb\xcd\xef\xc1\xea\xcd\xd3\x3c\x28\xc2\xa6\xb9\x63\x19\xbc\x05\x00\xd8\x02\x0a\x9d\x39\x70\xd7\xf7\xce\x9c\xb6\xf3\xaa\x3f\x55\x57\x5c\x26\xcc\x40\x02\x30\x39\x1e\x05\x98\xac\x51\x3e\xf6\x6f\xe9\xdd\x48\x95\x17\x97\x30\x3a\xe9\x09\x2f\x81\xc1\x42\xa7\x13\xd3\xca\xd0\x47\x36\xe2\xc6\xc6\x28\x64\xa6\x06\x67\x64\xec\x02\xf6\x72\x36\x12\xad\x38\xac\x9a\x49\x8c\xfd\xc7\x5c\xc5\xac\x21\xf0\x8e\x13\xfc\x8d\x9b\xbd\x55\x82\xc2\xe2\xc1\xd9\x04\x4a\x3d\x7c\x80\xd8\xa2\x13\x3e\xce\x99\x59\xdd\x11\x12\x82\xd8\xb9\x95\x68\x5a\x83\x12\x1a\x26\x57\xc4\xa0\x77\x6e\x2b\xcd\x1a\xb1\x35\xd7\x1d\x44\xd0\x7a\x0c\x60\x07\x45\xa9\xc7\xef\x75\x83\xb6\xdf\x47\x3b\xa9\xa2\xee\xa0\x0a\xa5\xa0\xf1\x51\xf9\x59\x84\x2d\xdf\x21\x04\x10\x16\x98\x4e\x24\x2e\x59\x24\x86\x64\x92\x72\x3e\x3b\xd5\x47\x96\xb3\x58\x93\xab\x6c\xf6\x54\x82\x52\xc4\x42\x0c\xfa\xe9\x92\x14\xb4\xf6\xa4\xba\x7c\x09\x2b\x02\xb3\xb1\x40\x52\x89\xc6\xd0\x29\x3f\x04\x02\xb1\x6d\xbf\x79\x9a\x15\x45\xd9\xc8\xcb\x7a\x4f\x82\x3e\x28\x8b\xf9\xad\xbe\x68\xf5\xa2\x6f\xf6\x08\x05\x7b\xdf\x44\xbd\xb2\xe8\xa1\x20\xf4\xa8\xf7\xcd\x1e\x5d\x90\x81\xe0\xd5\x26\x6b\x8e\xe1\xf2\xfc\xfd\xb0\xa9\x6e\x41\x12\x67\xb6\xa5\x75\x3b\x0c\x1b\x81\xbb\x46\x1c\x84\x80\x61\x8f\x35\x7c\x64\xc3\x6e\xaa\x6c\xb1\x10\x33\x65\xf3\xfe\x38\x94\xe8\x32\x70\x47\x21\xae\x0e\xcc\x4f\xad\xfa\xd3\xf4\x11\x2c\xb3\x34\x48\x5e\x64\x9b\xca\x46\x60\x5e\xa1\xdd\x7a\x0e\x37\xd6\x43\x14\x6d\x5f\x9d\x6d\xb5\xab\xe5\x7c\x6e\xb5\x36\xac\x8d\x8a\x07\xab\x68\x68\x64\xb4\x36\x0a\x69\x26\x08\x9f\xa9\x5c\xd1\x96\x86\x15\xe9\xeb\x21\xb9\x29\x81\x9d\xb5\x82\x09\x22\x5e\x05\x22\x73\x59\x0b\xcf\x6b\xdb\xdb\x6c\xcc\x1e\xc7\x89\x05\x45\xd7\x6e\xd1\x6d\xf7\x84\xaf\xb2\xc7\xb5\xa1\x71\x1a\x61\xb6\x35\xcc\xf6\x02\x1d\x8f\xad\xbc\x85\xc0\x56\xfa\x96\xbb\x50\x23\xb2\x6a\x56\xde\x14\x6b\x0e\xa8\xe0\x21\x4e\x10\xbe\xce\xd0\xd6\x87\x73\xe8\x74\xa3\x67\xd2\x00\x03\xa0\x86\x03\xb1\xe9\xcd\xa9\xae\x64\xd1\xe4\x8f\x42\x33\x84\x01\x9e\xe9\xbb\x03\xe4\x04\x53\x12\xa4\xe0\x8a\x30\xfa\xf1\x50\x69\x8a\xbc\x62\xb9\xe8\x63\x07\xb5\x23\x82\x69\xa7\x27\x02\xb6\xc1\x45\x0a\xcf\x3d\x85\xe8\xde\x4c\x4c\xe7\x59\x25\x66\xbd\x9b\xbc\xb9\x2a\x97\x4d\x2f\x33\x1b\x9e\xa9\x0e\x1f\x5d\x16\xf8\xec\x1e\xba\x16\xc6\x34\xa2\x3a\x5e\x4d\x17\x9a\x17\x26\x5d\xff\xe9\x22\x81\x2c\x6d\x80\xb8\x30\x97\x4c\xe5\x62\xc8\x68\xa9\x85\x95\xd1\xd8\x9e\xaf\x4e\x54\xd8\xf9\x25\x65\xc3\x2f\xb6\xa1\x8e\xcd\xb1\xbe\x8e\x8b\x60\x04\xa8\x7a\x61\x1f\x7a\xd8\x02\xd3\x49\xcc\x2f\xfa\x9e\x16\x18\x5b\x4b\xdd\xeb\x68\x8c\xfa\x87\x6d\x3b\xd4\x2d\x5d\x06\x5b\x32\x5a\x53\x5f\x30\x1a\xd3\x88\xab\x32\xc3\xda\x61\x7d\x33\x95\x0c\xb9\xa9\x2d\xbb\x4b\xd4\x62\x7e\x91\xa8\x59\x95\xf4\x5e\x9b\x8e\xae\x5a\xc7\x97\x85\x05\x37\xe0\x2e\x0f\x2a\xd1\x8c\xac\xdc\x51\x3e\x1e\x83\xe5\x8f\xdf\xc0\x28\x1f\x5b\x9c\x0a\x93\xe9\x28\xcf\x3b\xb4\xb4\x0a\x58\xb3\xd9\xb4\x2a\xe3\x95\x5a\x6f\xa3\x02\x76\x2e\x3d\x70\x7e\xe3\x31\xcb\xb0\x73\xa9\x69\x4b\x59\x6a\x82\x17\xf7\x43\xe2\xf6\xa0\x71\x22\x76\xd8\x4d\x90\xdc\x6d\x49\x94\xdd\xeb\x9f\xf2\xe6\x8a\x21\x78\x9b\x31\x50\xe8\x71\x23\xe4\xee\xea\xfd\x47\xe6\x28\x1b\xbc\xe2\x58\xbb\xd0\x86\xae\x8f\xec\x99\xc7\xd7\x72\xfd\x1d\x83\xd2\xbb\x83\x1e\xd9\x86\xb7\xe6\x59\x1e\x2f\xdf\xb6\x2a\x87\xfc\x1a\x75\x4c\xd1\xba\x19\xd8\x8b\x88\xaa\x02\xe1\x89\x95\x78\xbb\xaf\x63\x66\x5b\xf5\xca\x49\x19\x7a\x14\x14\x15\x65\x73\x82\xaf\x60\x6b\xbb\xb3\xb3\xb1\xf2\x60\xdd\x85\xd8\x50\x2f\xc9\xda\xef\x59\x6d\xb3\xa9\xb7\xe1\xea\x82\xb5\x9d\x97\xe5\x7c\x53\x75\xf7\xa9\x0f\xcc\x3a\x3a\x2a\x4c\x2a\x71\x29\x3e\x2d\x90\x9c\x3f\x6a\xe3\x3f\xbf\x66\x2d\x15\xc0\x53\x4e\x6d\xbd\x11\x06\x85\x8c\x1e\x63\x3d\xe8\x29\x00\x77\xe8\x23\x14\xd9\x85\x7a\x24\xfe\xb9\xcc\xba\x86\xa8\xf6\x77\xa6\x23\xec\xf7\x26\x4d\x69\x13\x0f\xd5\x7e\xd9\x35\x19\x5b\x55\xfd\xdd\xba\x8a\xbb\x88\x67\xbb\x9a\xd7\xf4\x79\xfe\x45\x7d\xfe\xf3\xba\x8a\xbf\xa8\xcf\x7f\xee\xec\xb3\xb3\x69\x46\x59\x31\x63\x0d\xb1\x5d\xc6\xd5\x00\xe1\x59\x10\x3d\x5d\x7d\x86\x14\x41\x76\x77\x77\x0c\x00\x9c\x90\xc6\x91\x18\x2a\x40\x2b\xba\xac\xb6\xea\x65\x59\xfd\x22\x9d\xec\xea\x23\xf4\xaa\xb5\x3a\xbc\x0d\x26\x6f\x7f\xd5\x4e\x3a\xe9\xad\xc5\x3e\x6f\xee\xee\xb4\x9c\xcf\xc5\xb4\xe9\xe8\xb2\xf2\x67\xc6\xa4\xa7\x9f\xd3\x7b\x74\xc6\x85\x3b\xb3\x3b\x0e\xf0\xb9\x44\xd6\x43\x20\x5e\x23\xc1\x8b\x2d\xc7\xd5\xe0\x96\x3b\xa6\x36\x1e\xea\x33\x10\xdc\x2d\x7e\xce\x19\x98\x58\xca\xa6\x86\x3f\x0d\xdd\x2a\xea\xd0\x32\xb3\xaf\xc5\x1d\x4b\xd1\x32\xa6\xe8\x00\x91\x27\xaa\x1e\x0f\xd9\xab\x7e\xd1\x80\x36\x6c\x0f\xb2\x3d\xed\xcc\xea\xd9\xc9\x93\xb3\x1f\xdf\x9d\x9c\x0e\xf2\xfa\xa4\x90\x77\xb4\x59\x3f\xfa\xe7\x52\x54\xb7\x0f\x16\x59\x95\x5d\xd7\x0f\x0a\x71\x13\xc5\x86\xa7\x82\x97\x81\x3a\x75\xfa\xdb\x5a\xd9\xf6\xc3\xc1\x2f\x32\x02\xdd\x4e\x9f\x23\x8f\xde\xdf\xcf\x4a\xde\x3a\x24\xbd\xe5\x76\x93\x3e\x37\x27\x49\xa0\x10\x37\x7f\xf5\x24\x2f\x1d\xb2\xf9\x83\x50\x07\x4d\x43\xad\xb1\x59\x86\x6a\x76\x40\xcb\xed\xb1\xfa\x3c\x0a\x17\xb2\x47\xb2\xa8\xc4\x34\x6b\xf2\xe2\xf2\xc9\xbf\x0b\x85\xe3\xa1\xb2\x25\x41\x5b\x9a\x67\x1b\xdd\xe9\x72\x68\xdf\xa9\xae\x95\xeb\xba\xd6\xed\xd4\x61\xab\xc4\xbd\x1d\x66\xe6\x17\xfd\x48\xdf\xe5\xa2\x54\x1b\x1e\xc2\x52\x21\x3f\x0a\xe9\x0a\x8d\xc9\xf2\x6b\xa8\x23\x55\xbe\x5c\x03\x5f\xe8\x33\x51\xe9\xd7\xb0\xfc\xe0\x17\x83\x46\xa7\x08\x29\xf7\x90\x60\x7d\x10\x28\x15\x1c\x9c\x5c\xa7\xe6\xa7\xec\x22\xfc\x35\x6e\x53\xe5\x6d\x70\x91\x4d\x51\xd6\xa9\xfc\x63\x93\xe7\x07\xff\xb1\x90\x9c\xb0\x52\x08\x04\xe5\x85\x35\x8d\x0e\x06\x7f\x18\xec\x3f\x38\x17\x4d\x36\x38\xd8\x9b\x66\x45\x56\xdd\x0e\x1e\xcd\xfe\x78\xf0\xc7\xdf\xff\x21\x8b\xcc\x86\x72\xf2\xfa\xaf\xf1\x4a\x0b\x2c\x19\x3a\x77\x6c\x74\x02\x9c\x2e\x92\xaa\xb4\x0d\x25\x9d\x42\x04\xcf\x92\x56\x6d\xab\x7c\x33\x17\x17\xb9\x72\x8e\x82\x1f\x77\x77\x68\xb2\xd8\x3d\xc7\xe0\x9a\xeb\xf8\xf9\xe9\x93\xef\x5f\x9e\x4c\xde\x3d\x79\xfd\xc3\xc9\xe4\xc9\xdb\xe7\xac\x49\x3f\x13\x05\xc8\x5d\xb5\xea\xa8\xe3\xd0\x73\x35\x4b\x3c\x55\xf6\x98\x7f\x07\x5a\x58\xd3\xfa\xd0\xde\xc5\x19\xa8\x4a\x82\x41\x77\xed\xf5\xcc\xdd\xab\xc8\x9a\x65\x45\x02\x41\xfa\x40\x81\xae\x5d\x76\x44\x79\x63\x6b\xc6\x07\x27\xaf\xa1\x5f\x4f\x5e\xbe\x9c\x28\x48\x9b\x9f\xd2\x12\x6c\x5e\x75\x0a\xc8\xbb\xbb\x73\x12\xc9\x5d\x9a\x93\xea\x3f\x51\x71\x00\xdd\x80\xd7\xa7\x37\x6f\xcf\x9e\xbf\x79\xfd\x64\x5d\xc7\x1c\xee\x54\xc5\x4c\xf8\xdb\xd9\xc9\xeb\xe3\xc9\xdb\x77\x6f\xce\xde\x9c\xfd\xfd\xad\x85\x5d\x2f\x8f\x79\x35\xed\x2a\x9d\xa6\x8c\x44\x34\x4d\x79\x60\xd0\x2b\xe3\xd3\xe7\xf4\xec\xc9\xd3\x17\x67\xef\x9e\x3c\x3d\x99\xbc\x79\x3d\x39\x3e\x79\xfb\xee\xe4\xe9\x13\x39\xa2\xd4\x76\x26\xd7\x09\xa7\xd5\x08\x6c\xef\x95\xac\xb8\x4e\x22\xc8\xc7\xf0\xf7\xa8\xa3\x83\xcc\xc1\x9d\xda\x1b\xec\x9e\xa8\x54\xbb\x36\xb6\xf7\xbc\xe8\xd0\x50\xd8\xb4\x38\xb3\xba\x16\x55\xa3\x30\x87\x5f\xd4\xf6\x8b\xce\x15\x68\x9c\x2c\xa8\x82\xcc\xf7\xc2\xa6\x62\xe0\xb2\x59\x95\x83\x8f\x2d\x0b\x56\xcb\xe2\x79\x71\xcc\x4b\x9b\x94\xad\xdb\x46\x16\x40\x98\xf6\x29\xe1\xbe\x15\x3c\x03\xd1\x79\x20\xd1\xcc\xc3\x24\xb9\x70\xfd\x3d\xab\x8d\x74\xb9\xcc\x67\xe9\xfe\xf0\x33\xbc\x56\xfb\x2a\xdd\xa3\xb0\x77\x93\x6d\x34\xa4\xd7\x69\x17\xbb\x01\x7c\x0f\x36\x04\xf0\x3d\x70\x5c\x7d\x84\xc2\xf3\x1e\xb0\xf0\xbc\x1f\xc3\x41\x7e\x0f\xec\x20\xbf\x68\xc3\xef\xba\xd8\x26\xd3\x7e\xd4\xc4\x05\x85\xdf\x95\xe5\xcb\x1a\xdf\x72\xe7\xf3\xf3\x6c\xfa\x01\xac\x19\x9e\x54\x97\x7a\x1e\xca\xf3\xf7\x72\x20\x8f\xe9\xbf\x79\xe3\xf3\x4a\x1c\xad\xcf\x6e\x13\xcf\xcd\xf3\xc6\x86\xa9\xc4\x63\xf6\x7b\x5d\x07\x36\x83\xb4\x89\xeb\x0d\x78\x73\x1f\xa0\xc0\x63\xf3\x73\x6d\x0f\x36\x41\xb4\x49\xd0\x6d\xb3\x98\x0b\xc9\x0f\x63\xa6\xd5\x3c\x81\x3f\x66\xbf\x4d\xf5\x76\xb1\xa3\x0d\xf9\xd4\xb6\xa8\x3b\x5a\xaf\x75\xc3\x2a\x81\x9f\x79\x8f\x47\xe3\x23\xa0\x1e\x49\x06\x7d\x05\x61\xd6\x4b\xde\x08\xe3\x2a\x09\x01\x95\x1b\x76\xd9\x06\x64\xb7\x71\x9b\x80\xa3\xc3\xf7\x96\x57\x42\x58\x85\x08\xb1\xd2\x8b\x21\xb5\xeb\x60\x30\x72\x8f\xce\xc9\x87\xf5\x03\x78\x71\x03\x72\x97\x97\x76\x6c\xa5\x4d\x94\x1f\xc2\xaf\xd3\xce\x0e\x6f\x47\xf9\xc9\x00\xb7\xd6\x07\xe0\x19\xaf\x12\x8b\x79\x36\x15\x5e\x43\xb3\x4f\x49\x76\xdd\x24\xa8\x63\x50\xb3\x37\x8b\xd1\x58\xf2\x83\xd3\x0c\x1e\xb9\x21\x2f\x99\x5e\x2d\x8b\x0f\xf0\x14\x36\x1a\x27\x75\xfe\x2f\x91\xfe\x5e\xfc\x2e\xa9\x9b\xac\x6a\x52\x59\x91\x28\x66\x75\x2a\x6b\x03\x83\xcf\xe1\xcd\x55\x3e\x17\xf0\x5a\x47\x57\x28\x79\x3f\x5e\x16\x4d\x2a\xe1\xbe\x93\xe5\x1f\xcb\x3f\x47\xf2\x13\x34\x54\xb4\x99\x28\x99\x06\xb7\xd0\x20\xbe\x45\xd2\x90\xf6\xa1\xdd\x78\x88\x39\x23\x68\x1b\x9b\xd3\xdd\x85\xac\x78\x08\x59\x7b\xa9\x04\x1f\xca\x16\x1e\xa4\xd8\xab\x0a\x82\xb4\x35\x0a\x1a\xeb\xa5\xd7\x04\xc4\x09\x56\x60\xbd\x0a\x25\xdb\xa2\x2f\xa7\xd9\x19\x50\x01\x4d\x6d\x56\x6a\xdf\x2d\x67\x7b\x93\x80\xc9\x56\x33\xd6\xd1\xd2\x7f\xb4\x72\xa9\x34\xa2\xaa\xd1\xdd\x9d\xd3\xb3\x83\x04\xfe\x1d\x2a\x22\x32\x80\xe9\x68\x3c\xc4\x16\x68\x2b\x52\x05\x8c\xf5\x1f\xae\x1b\x18\x4c\x80\xf0\x0e\xd5\x5a\x8c\xbf\x93\x73\xc5\xeb\x46\x02\x57\xd9\xad\x79\xc2\xe1\x40\x6d\xdb\x75\x4a\x42\x63\x5d\xa7\x24\xda\x22\x8d\x3a\xcd\x9d\xbe\xf4\x74\x0c\x58\x90\x1c\xd8\x16\x24\xd0\x05\x79\x19\xaf\x53\xd9\x6b\xd4\xc7\xcd\xcb\x22\x4a\xa2\x8b\x7c\x2e\xe4\x05\x32\x4a\xa2\x79\x5e\x88\xd7\x4b\xb8\x1c\x26\xd1\xb5\xa8\xeb\xec\x52\x26\x17\x98\x5b\xa8\x9c\xba\xc9\xa6\x1f\x22\xe6\x70\x8a\xbd\x9f\x93\xc7\xc2\xeb\x45\x0a\xdf\xce\x8b\x9f\x7a\x7e\x93\x5c\x3c\x64\x4f\xb3\x85\x64\xf0\x4f\x65\x8d\x67\x15\x10\x5d\x47\x06\xd6\x41\x7c\xa8\x04\x61\x8e\xf0\x67\x9f\xd2\x7d\xd0\x0a\x37\xc3\x64\xba\xe2\x7b\x7b\xa8\xd1\x3a\x32\xb9\xa0\x24\x3e\x4e\x9b\xeb\x85\x97\x48\x4c\x11\xf6\xc2\xe8\x31\x93\xe9\x82\x93\x1c\xaf\x65\x9a\x30\xb8\x41\x07\x4d\x90\xa5\xd9\x46\xfb\xbb\x4d\xa6\x72\x5f\xc3\xf6\xec\x8b\xed\xba\x3c\xfb\xac\xc3\x8d\xf6\x59\x87\xae\x7d\x16\x0b\xcc\xe7\xc2\xb1\x40\x7d\xb0\xc7\x43\x58\x3e\x17\x08\xc3\xf4\xe9\xfc\xd3\xa6\x0a\x83\x9c\x36\x55\xd7\xa2\x79\x64\x2f\x1a\xcf\x5c\xc7\x32\xe6\x79\xf3\xfa\xe9\x49\x7a\x90\x9c\xfe\x78\xfa\xf6\xe4\xf5\xf1\xc9\x71\x7a\xc8\xbc\x77\x5b\xa7\x1d\x39\xbb\xbd\x86\x90\x41\xfc\x68\x7c\x70\xc0\xf4\x02\x70\x97\x45\xb2\x7d\xf0\x68\x98\x7f\x27\x69\xfa\x41\xfa\x08\x35\x76\xa1\x8a\x34\x45\xa8\x51\x3e\x06\x0d\x8f\xab\x72\x66\x92\xf6\x0e\xc6\x72\x47\x93\xf5\xe6\xca\xc3\x94\xde\xc2\x66\xe2\x13\x33\x95\x81\x7f\xb5\x52\x29\x01\x52\xec\xd6\x15\x4a\xe4\xbd\x2e\x4e\xa8\x10\xfa\x20\x13\x4d\x66\xc2\xe1\x91\xb6\xaf\xfe\x56\x9e\xc6\xae\x03\x26\x42\x91\x86\x8a\x62\xaf\x1c\xad\x31\xa7\xf6\x96\x5a\x4e\xed\xf4\x91\xee\x36\x08\x2a\x08\x68\x77\xd7\xe9\x9c\xdb\x01\x33\xd8\x78\xb5\xb1\xe2\xee\x1c\xf2\x2b\xc1\xbc\xc7\x50\x65\xdb\xd4\x3a\xd2\xaa\x50\x04\x6b\xa6\xc6\x0e\x2a\x68\x4f\x4f\x52\x36\x57\xa2\x7a\xa2\xda\xe9\x50\x02\xe2\xcd\x93\x1a\x90\xae\xd4\xfd\x76\x70\x68\xc6\x40\xba\x7d\x8c\x38\x31\x27\x48\x9e\xb0\x78\x91\x3e\x09\x6c\x94\x8f\x89\xda\x4d\xca\xde\xc1\x18\x1c\x95\xd6\x2c\xe9\x50\x75\x17\x43\x9f\x68\x7e\x96\x8d\xd3\x59\x3c\x66\xaa\x9f\x33\x0e\x95\x17\x20\x0f\x02\xbc\x14\xb6\xeb\x5a\x61\xaf\x0f\xe7\xe8\xcf\xc8\x71\x7e\x71\xf1\x2b\x4e\x48\x32\xcb\x2f\x2e\xa8\x6e\xc9\xf7\xfc\x8f\x9c\x1f\xe2\xec\xb5\xd7\x80\xed\x26\x6a\xc8\x86\xbe\x66\x3a\x69\x0d\x31\xe0\xf0\xfc\x06\x02\x7a\x72\xab\x41\x15\x4a\xd4\x99\x5b\xbb\xc9\xb2\x98\x92\x8a\x29\x26\xec\xee\x1a\x4d\x42\x23\x95\x51\x0e\xcf\x09\xb7\xf8\x39\x24\xdc\xc3\xbb\x2d\x1c\x2b\x34\xa9\x9d\xdb\x70\x10\xe9\x59\x10\xdf\x34\x65\x10\x72\x09\xfa\x08\xdf\x77\xa9\x3c\x9c\xc2\x73\x41\xa4\x93\x6d\x9c\x84\xfc\xa2\x1f\x1a\xa3\xbc\x28\xcf\xf2\xd9\x13\x83\xb8\x78\xe5\xa7\xf5\x3b\x10\x19\xdb\x6b\xb0\x2b\x04\xad\x63\x9d\xb8\xcd\x14\x7d\x8d\xd9\xd1\xcd\x4e\x9c\x76\x03\x27\xf8\xd7\x9c\xc5\xf0\xae\xe6\xcc\x14\xdd\x22\x19\x5c\xf2\x68\xd3\x2c\xbd\xb3\x86\xa1\x27\xca\x4e\x5e\x33\x57\x68\xea\x03\x63\x5e\x8f\x12\xbc\x04\xfe\xdb\x1c\x49\x6e\x67\xd9\xbe\xc7\x37\x3c\x79\x24\xe8\x39\x77\x62\x12\xaf\xdd\x0e\x94\xdc\xe9\xdf\x71\x4b\x08\x2f\x7b\x35\x6c\x96\xb3\x77\x38\xbe\x4b\x35\xfb\x6a\x10\xd1\x54\xb7\x60\x43\x68\xde\x9e\x69\xb4\x14\x6a\x0d\x47\xd4\x72\xb3\x2c\x70\xfc\x56\xa1\x93\xc5\x6d\xdb\xde\x4d\xff\xff\xa6\x71\xa3\x2f\xa4\x38\xfd\x3e\x75\x23\xd1\xd5\xdb\xce\x7a\x37\x85\x9e\xee\x9a\xd7\xda\xc6\x6c\xfd\x0b\xcf\xac\xd6\xec\x37\x47\xb9\x22\x41\xd9\x23\xf9\x69\x88\x4c\x4d\x68\x9e\xcc\x55\x44\xb4\x64\x9e\x9a\xbe\xfa\x16\x8d\x2a\x8b\x01\x8d\xf2\xf1\x70\x23\x3d\x0d\x0d\xd5\xfd\x82\x34\x35\x74\x47\x8f\xc7\x0d\x83\x8f\x87\x0c\x19\x3c\xb7\xe6\x9a\xc1\x5f\x42\x91\xb6\x6d\xa0\xd7\x21\x17\xa3\x2e\x5e\xdc\x02\x0c\xbb\xb2\xcb\xa3\x7c\xfc\x8b\x92\x75\x20\x54\xba\x1e\xa5\x15\xe5\x9c\x05\x0c\xd1\x45\xad\x5d\xd8\x6c\xb1\x24\x05\x85\xe0\x11\xe6\x0e\xa7\xf0\xa4\x69\xa4\x97\x33\xe6\x17\x96\x43\x68\x93\x86\x29\x21\xd9\x99\xa6\x2e\xae\xcb\xd5\x58\xc3\x5b\x17\xa7\xdd\xac\x58\x15\xfc\xdd\xd9\x83\x51\x5f\x29\xd1\x47\x82\x76\xd9\x05\x32\x8a\xf0\x2a\x95\x27\x9e\xae\x0f\x0f\x40\x53\xbd\x5b\x35\x18\x8c\x98\x23\xa7\xc3\xe7\xef\x67\x1e\x67\xed\x6f\xc3\xc1\x0f\xcd\x3e\xc6\x18\xf1\xfc\x02\xa2\x3e\xd4\xbb\x9a\x56\x43\x99\x92\x8b\x54\x06\x41\x5b\xf1\x60\x30\x46\x1d\xf6\x07\x7b\x5c\x9e\xbf\x87\x67\x4c\x52\x49\x36\x53\xc3\xf8\x36\x42\xff\x4a\x09\x68\x1c\x8e\x54\xcd\x0e\xda\x45\x43\xd6\x08\xb3\xc6\x7d\x8a\x9f\xe2\xd5\xb2\xae\x0a\x4c\xb3\x37\x0f\x5b\x65\xd5\x5a\x92\x8a\x5e\x52\xfd\xcb\xd0\xea\x55\x56\x77\x9c\x2c\x5f\xfd\x86\xae\x74\xcc\x8d\xac\xc3\xa6\x19\x7b\x23\xe1\x1d\x4b\xf9\x47\xe0\x6a\xdb\x21\x09\xa2\x7d\xe2\x97\xe7\xea\xd0\x7a\xc5\xb6\xe2\x0f\xed\xcf\xf7\x5a\x0b\x43\xbd\x31\x8d\x2c\x52\xb0\x6d\x66\x82\x37\xc6\x67\x65\x95\xf2\x0f\x1e\xbe\x84\x24\xdc\x68\x69\x16\xb4\x2e\x49\x1e\x1c\xc4\xa3\x7d\x3a\xd7\xbb\x4c\x50\x92\x7d\x09\x36\xb4\xcc\x49\xb1\xc9\x7a\x32\xc1\xd3\x5c\x7b\x1c\x80\xb7\x7a\x3b\xe4\x49\x5a\x16\x01\x67\x71\x9a\x19\xb2\x3f\xbb\x44\xd0\xbe\x0b\xb5\xd1\x46\x1f\x6a\x21\x27\x6e\x9f\x23\x82\xde\x28\x72\xf6\x5d\x4f\x05\xe4\xce\xeb\x3c\x6d\x05\xfc\x35\x29\x4d\x01\xa7\x98\x7a\x4d\x4a\xbe\x07\xe5\x9a\x93\xbf\xbd\x7d\xf2\x1a\xf4\x5b\x1e\xfe\xa3\xdf\x7f\x7c\x04\xc1\x3a\xfe\xeb\xe7\x41\xfc\x5f\xf1\xcf\xab\xfe\xe0\xbf\xe2\x9f\xdb\xff\x7c\xd8\x25\xf8\xd7\x94\xe2\x39\x9b\x58\xa0\xef\x26\xc6\x61\xa2\x62\x43\x33\xbd\x4a\x16\x95\xb8\xc8\x3f\x25\x92\x00\xc8\xcd\xad\x04\x35\x71\xb6\x7b\x10\x5b\xbb\xcb\x64\xf1\xfb\x2a\x9b\x0a\x6a\x50\xcc\x98\x06\x77\x6f\x8a\xd6\xda\x72\x67\xcf\xf2\xa2\x07\x3a\x82\x75\xd2\x8b\xf6\x22\x31\xb8\x1c\xf4\xfe\xcf\xb2\x16\xd5\x60\x05\xce\x73\x61\x37\xef\xcd\x33\xfc\xd5\xfe\x9f\x5e\x7d\x55\x2e\xe7\xb3\xde\xb9\xf0\xc1\x0c\x54\x04\x5b\x3e\x0c\x22\x75\xb0\x37\x10\x9f\xc4\x54\x0d\x25\x8e\x57\x38\xc6\x14\x60\x47\x07\xe3\xa1\x1c\x2c\x7d\x1d\xea\xa0\x22\xc0\x63\xc0\x55\xb7\xe9\x47\x49\x14\x1b\x92\xaa\x97\x17\x17\xf9\xa7\x78\xa5\xd0\xd7\xc7\xfa\xf6\x28\xbd\x55\x0e\x18\x75\x36\x35\xdc\xb6\x1d\xe4\x7f\x29\x9a\x35\xb4\xbf\x4d\x18\x9f\xaf\x4d\xf7\xae\x77\xbc\x03\xe6\x1d\x2f\xe0\x99\xee\xd0\x78\xa6\xdb\x44\x8c\xb6\xc1\x9a\xe5\x7a\x7e\xd5\xda\x46\x85\xc6\x7f\x4a\x92\xa7\x07\x21\x2b\xdc\x34\x4d\x0f\x77\x77\xb1\xe5\x3e\x0f\xd8\x1d\xa7\x69\x1a\xa1\xca\x4f\xbc\xca\xd3\xfd\x61\x47\xc5\xa3\x83\xb1\xde\xed\xe7\xa2\x48\xc3\xd6\x90\x26\xe0\x77\xb7\x4d\x24\x78\x19\x5f\x67\x12\xd9\x31\xf7\x79\x51\x37\x15\x74\x26\x03\x7e\xf1\x1e\xcf\x70\xbf\xc8\x66\xb7\x69\x9f\x6b\xaa\xdb\xa7\x72\xa5\xac\x79\x20\xe3\xf9\xa8\xac\xb4\x3c\xaf\xa7\x55\x7e\x2e\xcf\xff\x91\x32\x0e\x5e\x61\xb4\xef\x45\xb9\x58\xce\xb3\x46\x18\x0e\x41\x8f\xa6\xd0\xc7\xbf\xb9\x48\x8c\xc6\x89\xa9\x6d\xe8\xde\xa8\x74\x33\xde\x65\xca\xe4\x71\x30\x0a\xd8\x6d\x52\x06\x60\xa5\x86\x46\x6a\x05\x3e\xcd\x98\xf7\x1b\x38\xc1\x19\x2c\x39\xe6\x6d\xd1\x20\x99\x0c\x40\x35\xb8\x3a\x32\x75\x02\x8e\xb7\xc9\xaf\x85\x67\x25\x2a\xaa\x8b\x34\xa8\x83\x7c\x93\x17\xb3\xf2\xe6\x31\xfe\x1b\x48\xb8\xb2\xba\xce\x8a\xa9\xb8\xbb\x5b\xb5\x47\x84\xc2\x8b\x22\x95\x39\x83\xa2\xbc\xb9\xbb\x83\x5f\xd7\xe5\xbf\x5e\xeb\x8f\x1b\x71\xfe\x21\x6f\xcc\xf7\x75\x6d\x7e\x97\xaf\xcb\x1b\x7d\xb6\x17\x8f\x2f\x0a\x08\x94\xd6\x97\x79\xf1\x91\xa7\x38\xb9\x07\x2e\xb4\xb2\x46\xb4\x6d\x3f\xe6\x4f\x8c\x8a\x84\xd1\x32\x76\x91\xdd\xce\xcb\xcc\x08\x30\x54\x10\x38\x77\x2e\x19\xda\x12\x89\x16\xd8\xd0\xc9\x05\x08\xe9\x8f\x9e\xbd\xfb\xf1\xe9\xd9\x8f\xef\x4e\x40\x27\xf4\xd9\xf3\x97\x27\xf1\x4a\x41\xa6\xb2\xe0\x5e\x74\xd4\x8b\xf6\xa8\x41\x9a\x90\xe1\xb4\x2c\xea\x72\x2e\x06\x12\xb2\xaf\xc0\xf1\x42\xc0\x6e\x91\xa6\x1f\x1e\x09\xe2\xd4\xb7\xfc\x9e\xe9\xba\x4a\x4a\xed\x7b\xbf\x1a\xe1\xfa\xae\xf3\x8e\x9d\x14\x33\xd6\x37\xb6\x4f\x48\x1c\x9d\x8b\x8b\x92\x74\x8d\x81\xe4\x55\x37\x50\x1c\xe3\xcb\x22\x8c\x84\xc6\xed\xb0\x59\x01\x2a\xc7\x80\x48\xea\xe7\x2d\x8d\x72\x43\xbe\x03\xcc\xc0\x09\x05\x44\xc6\x6a\x5e\x8d\x67\x80\x20\x0a\xb8\xb7\x80\x66\x7a\x05\x3d\x14\xf1\x8a\x0a\xa7\xf4\x1f\x34\xc5\xd5\xbc\x89\x4f\x53\x01\x3a\x20\xa9\xe8\x96\x9c\x7c\xde\xf8\xf4\x78\xb2\x8b\x46\x54\xa1\xe1\x24\x0e\x0a\x60\xde\x3f\x67\x0e\x99\x84\x85\xef\x80\x5a\xcc\xa2\xd1\xd1\x25\x70\x31\xeb\x28\x35\x3f\xb9\xf4\x90\x76\x1e\xcd\xbf\x29\xcf\xe0\xb0\x87\x40\xf4\x0c\xc5\xae\x11\xdb\x32\x88\xd0\x69\x39\x1a\xf1\xfa\x0e\xca\xa0\x90\x87\x49\x1d\xb2\x40\xed\x8f\x90\x90\xa6\xd1\x7f\x45\x92\xf6\xe5\x06\x09\x5b\x61\x34\xfa\xc7\xcf\x92\x1f\x8d\xb4\xe2\x95\xce\x22\x4f\xe9\xd8\x2c\xa6\xbf\x2f\xf3\xa2\x1f\xfd\xfc\xf3\x20\x02\x8b\x41\x95\xbe\x17\xf5\x7f\xfe\x79\x30\xf8\xaf\xf8\x71\xe4\x9c\x15\xe9\x8a\x46\x73\xa4\xc6\x0b\x05\x8e\xe4\x26\xf4\x4e\x5c\x9e\x7c\x5a\xf4\xa3\x7f\x44\x7b\x54\xcb\x7f\x46\x31\xe1\xe3\x08\xff\xb5\x43\x7e\x1e\x38\x7b\xb7\x72\x74\xb5\x6a\xd5\xee\x67\xf2\x1c\x21\x18\x25\x9b\x63\xc3\xcc\xc8\xb2\x30\x73\xc2\xea\x36\x6a\x15\xf7\x38\xa0\xac\x63\x88\x82\x76\xf1\x3a\x49\x9d\xa2\x6d\x79\x25\x8e\x86\xa2\x1e\x94\x35\x04\xd6\xcb\x94\xfd\xe6\x2f\x5b\xb5\x68\xfa\xfc\x8c\x84\x67\xde\x60\x65\x00\x9b\xc2\xdf\x2e\x86\xa6\x9e\x9c\xcf\xb3\xe2\xc3\x16\x9c\x0c\x77\x67\xfd\x9b\x30\x33\x21\xef\xba\xce\x65\x6d\x13\x3f\x9b\xd7\xdf\xcb\xd1\xf6\x59\xbc\x38\xed\xd5\x40\xa6\xdd\xdd\x19\xf1\x1f\x33\x87\xdf\xdd\x45\x35\xeb\x66\x7a\xd5\x7f\xf8\xf3\xe9\xc3\x98\xbc\xd3\x77\xb2\x89\x1a\x55\x5f\xe2\x26\xfd\x2b\x3b\x0a\xff\x45\x9d\x70\x07\x3c\x1a\x3f\xb2\x6b\x60\x73\x60\xf0\xed\x38\x69\xc0\x29\x90\xb8\x36\x07\x38\xde\x18\x70\x4a\x2c\x47\x3c\xee\x5c\x51\x50\xc0\xdd\x5d\xc5\xe0\x47\xe4\xc9\x42\xce\xd6\x3e\x9c\xd4\xe8\x16\x23\x60\xee\xd0\xa7\x18\xf7\x00\xd0\xcb\xeb\x9e\xce\x9d\x0d\x7a\x6f\xe7\x22\xab\x45\x4f\xe2\x4c\x19\xce\x9d\x20\x5c\x51\x37\x22\x9b\x0d\xa2\x84\x52\x2c\xb5\x3e\x72\xc2\x01\x7f\xbb\x08\x93\xca\x39\x11\x66\x91\xcc\x43\x79\xac\xca\x6e\xd2\x43\xa2\x09\x53\xde\x97\x6a\x8c\x6e\x24\x14\x36\xcd\x7a\x4a\x99\xde\x3c\x2d\x1c\x98\x64\xae\xc5\x4e\x01\x17\x0b\xb1\x6e\x76\x64\xfe\x16\x93\xf3\x1a\xc0\xd8\xdc\xc8\x04\x7b\x6a\xa0\x25\xf9\xa7\x7b\x62\x5e\x3b\xb9\x54\x31\xe5\x74\x60\x7f\x9e\x9f\x57\x59\x15\x12\x89\x7d\xa6\xf8\x6b\xed\x5c\xac\x11\x62\x05\x96\xef\x26\x21\x96\x32\x75\x71\xf3\xb9\xa9\x8b\x1e\x9f\x7b\x29\x9a\x98\x1c\x92\xfc\x4a\x8a\x7b\x99\x9f\xe3\x6b\xd8\xbe\xda\x40\x5e\x02\xd8\xad\x7b\x6d\xb4\xbd\x1c\x99\xca\x2c\x17\x47\xf9\x45\xdf\xe4\x8c\xf2\xf1\x40\x96\x95\x04\x05\x55\x10\x8d\x59\x10\x6d\xdb\x0e\x59\x65\xca\xf5\x81\xdd\x7a\xf2\x51\x54\x75\x5e\x16\xf8\x72\x6b\xfa\xa8\xae\x94\xac\x02\xe0\x4b\x56\x32\xfd\x88\x97\x3c\xa2\xff\x6d\x1c\x6e\xef\x29\xa2\xc2\x1f\xf8\x3d\x9a\x26\xe6\x81\x63\x75\x6f\x2f\xd9\x4f\xb6\xef\xcd\x4c\xbc\x0b\x8e\x5f\x5d\xf4\xce\x53\xb7\x03\xf8\xd2\x77\x1e\xfb\xdd\x50\x02\x46\x93\x93\x48\xc0\xe4\x20\xb6\x9a\x14\x92\xde\x98\x87\x2c\x25\xc0\x54\x42\x3b\x56\x5c\x43\xc9\x7a\x8c\x34\x6e\x9e\x9f\xc3\x34\xcb\xea\x07\x0a\x5b\xe8\x68\xc8\x99\x6e\x79\xc9\xed\x58\xcc\x06\xa6\x63\xd5\x42\xfc\xfb\x2d\x0e\x6b\x2d\xd8\xfe\x4d\xf8\x9f\x0e\xf1\xf6\x61\xc7\x06\x4c\x77\x9f\x57\xf0\x78\xc1\x66\x9a\xd2\xdf\x9c\xbf\x4f\xe6\xe5\xe5\x59\xf9\x14\xbf\xcd\x65\x98\x6c\xd4\x07\x04\xa8\x6f\x51\x6f\xce\xdf\xa7\x41\x08\xad\xcc\x4a\x07\x32\x25\xef\x38\x66\xad\xac\x1a\x55\x90\x9e\x88\x40\x0f\xc2\x2a\xfb\xc6\x3a\xd3\x1f\x9b\x54\x94\x40\x1c\xc9\x43\x64\xc8\xb4\x8c\x4c\xe3\xf4\x46\x87\xba\xde\xb6\xe3\x3e\x3e\x5c\xbe\x81\xf1\x22\x7d\x86\x1e\x16\x40\x7f\xc8\xcb\x0e\x66\x79\xbd\x98\x67\x20\x39\x4c\x23\x75\xc7\x8c\xf6\x64\xd7\xb4\x20\x89\xc1\xdb\x96\xc4\xf6\xc6\x49\xd6\x12\x9e\x6d\xa0\xbc\x80\xb9\x4f\x3f\x51\xd2\x8b\xe2\x21\xf6\xb6\x4f\x05\xe3\x96\xeb\x22\xa1\xe5\xeb\xdb\x72\x7e\x7b\x91\xcf\xe7\xfd\x46\xd4\x4d\xa2\x00\x61\x8f\x91\x29\xf1\xaa\xa9\x6e\x3b\x9e\x04\xb0\x02\xb8\xd1\x67\xf9\x5c\xcc\x8e\x7a\xd1\x9e\x6e\x09\xee\xc4\x7d\x58\x04\xe0\x17\xe2\x2c\xbf\x16\xe5\xb2\xe1\xae\xcf\xb0\x56\x00\x69\x93\x7d\x47\x75\x96\xaf\x49\x39\x19\x47\x36\x89\x46\xf3\xf2\x32\x8a\xef\xee\xc8\x86\x15\x22\xa1\xbb\x20\x32\x8d\xc3\x40\x4b\x2e\x10\x2e\x53\x06\x95\x17\x17\xa5\x0b\x24\xd3\x38\x0c\xd8\xf0\xba\x40\x90\x28\xa1\x36\x14\x46\xb4\xb9\xa5\x31\x55\xc2\xd9\xf3\xd2\x75\x6d\xb8\xce\x16\x9d\xcf\x09\xdb\x85\x4a\xd2\x76\xb3\xbf\xa0\xd1\x87\x1b\x70\x68\xdd\xbe\xe6\xc6\xe6\x39\x60\xb1\x79\x42\x71\x75\x0e\x9d\xb8\x3a\x21\xf3\xdb\x47\x8e\xf9\x6d\xc0\x1e\xe3\x77\xc6\x1e\x83\x6d\x87\x14\x70\x0b\xc3\xb9\x2d\x9b\xc5\xd2\x72\xb0\x28\x31\xdd\xcb\x0b\x0c\x25\x8e\x1a\x22\xae\x0d\x80\x04\x89\xe3\x15\x96\x85\x97\x85\x31\xbc\x6d\xc3\x2f\x2d\x51\xc2\xec\xd6\x6a\xf8\x55\xb6\xe8\x97\x55\x7e\x99\x17\xd9\x3c\x29\xc4\xcd\x1b\x26\x0b\x82\x90\x13\x2a\x73\x20\xbf\x30\x38\x58\x8c\x4e\x56\xea\x14\x7b\xae\x00\x30\x31\x1e\xea\x5a\x06\x3a\x66\x05\x4b\xa3\xa2\xf8\x8f\xa5\xd3\xbd\x4a\xd7\x46\xfc\x95\xf1\x4a\x83\x70\xa6\xf7\x6f\xaa\x99\xa8\xc4\xec\x14\x64\x0e\x18\x2c\x60\x2e\xb2\xaa\x1f\xb7\x26\x87\x70\x1d\xb0\xdd\x97\xdb\x8b\x81\x6b\x87\xac\x8c\x31\x91\x5a\x41\x8d\x47\xd6\x2e\x92\xd7\x83\x45\x25\x6a\x51\x4c\xc5\x29\x3a\xc2\x84\xb4\x39\xaa\xbe\x81\xb5\xaa\x65\x2b\x8b\xa8\x94\xa4\x93\x12\xfd\x60\x3c\x7c\x5e\x89\x5b\x2b\x08\x6a\x53\x5d\xaf\x3c\x4e\x64\x59\x74\x66\xa5\xa1\xb4\xca\x0d\x4b\x1b\x49\xb8\x31\x3a\x4d\x99\x6b\x05\x34\x88\xe6\x46\x26\xae\x5f\xbd\x73\xe4\x1e\xd7\xeb\x84\x59\x26\xa9\x65\x66\x2c\x0b\x25\xca\x63\x2f\xe4\xc0\x43\xb0\x7e\x26\xb5\x4d\x65\xe9\xae\xe9\x3f\x22\xf4\x74\x0f\xd8\x95\xbc\x4d\xae\xb2\xfa\x8b\x47\xa8\xdd\x63\xf9\x38\x0f\xd8\xa4\x5f\x14\x49\x2d\xe6\x17\xe6\x55\x02\xeb\x6b\x4a\x38\x38\xfb\xb1\x25\xbc\x7b\x9f\xb2\x1e\x0f\xf3\x3f\xbf\xc7\x0b\xc4\x05\x9d\xa8\xe0\x11\x75\x8e\x5a\x78\x72\xf4\x54\xc9\xda\xd1\x2b\xbb\x9d\x44\xae\xc6\x23\xe7\x10\xaf\x29\x14\xb7\x21\xef\x61\x0d\x24\x6e\x46\x0f\x8b\xd8\x45\x01\x38\xd4\x1e\x84\x46\xa3\xe4\x9c\xa2\xe1\x81\x0c\xe4\x36\x42\xab\x03\x16\xbd\xb7\x04\x55\x2c\x74\x5a\xfe\xda\xe5\xcd\xab\x6c\x91\xbe\xca\x16\xc3\x57\xd9\x62\xfd\x62\x7d\x95\x2d\x5a\x80\x62\xcb\x13\xd1\x78\xb4\x9f\x5c\x0a\x66\xb4\xad\x3d\xea\x52\x5b\xac\xdd\xc4\x22\x84\x0f\xcc\xdd\x24\xe6\x23\xe5\xb6\x49\xed\xd4\xc7\xdd\xdf\xc3\xf8\xf4\x48\x93\xad\x1a\x81\xbd\x33\x9b\xcd\xfa\x14\x12\xdf\xb4\x85\x1b\xe1\x50\xfb\xb2\x52\xa2\x21\x08\x31\xc4\xc9\x3b\xb0\x80\x3f\x58\x01\xb0\xee\xd9\x25\xe5\xd6\xd8\xb3\x27\x93\x50\x14\xf1\x8a\x94\x70\xb0\x00\xad\x73\xde\xf9\x6d\xba\x3d\xdc\xe0\xb8\xc6\x5e\xb1\x5f\x30\x77\xc1\x71\x04\xd6\xab\x7e\x4e\x34\xab\x76\x23\xfe\x70\x02\xd5\xe5\xd0\xef\xad\xdf\x35\xfb\x51\x0b\xd6\xb5\xa6\x23\xc2\x1e\x38\x37\x70\x17\xad\x76\x8e\x86\x47\x33\x20\x97\xc8\x3f\x76\x16\xdc\x4f\x79\x73\x75\x8c\x6c\x6b\xbf\x5c\x90\xfa\xd9\x2b\xe5\x52\x83\x05\x6f\x25\xde\x16\x9d\x12\x11\xa4\x95\xd8\xda\xb5\x79\x0b\x51\xd7\x2e\xb9\x8f\x85\xad\xe8\x46\x9d\x0b\x75\xc6\x9a\x6e\xb5\x86\x61\x11\xf3\xc6\x3c\x8b\x64\x6b\x91\xc7\x9d\xe0\xb6\x33\x6d\x3d\x15\x57\x59\x4d\x41\x12\xe4\xd0\xaf\xb2\x5a\x93\xbb\xca\xd1\x5d\xb7\x1a\x92\xd5\x19\xcc\x81\xbb\x6c\x63\x02\x62\x61\xd0\xc3\x29\xb6\x00\xc9\x72\x41\xc8\x79\xe6\xd9\x9a\x4e\x2d\x94\x77\xe3\x01\x98\xac\xc0\x2e\x18\xa2\x09\x8e\xf6\x15\xaf\xff\xc8\xeb\x65\x1b\x3b\x2e\xee\xcc\x1e\xcd\xb6\x6b\x0b\x42\x6d\xce\x4e\x1a\x6b\x34\xb5\x3f\xbb\xae\x0f\xa2\xba\xbc\xbf\x67\xbb\x4d\x4f\x26\x50\xab\x61\x5e\x97\x8b\x59\xd6\x70\xe7\xa5\x8a\x6f\xd6\x19\xf2\x9a\x49\x1f\x1d\x0c\xb4\x31\xeb\xa3\x5a\x89\x97\xa6\x52\xc4\x4f\x2b\x76\x9a\x60\x3a\x2f\x4d\xf9\xa7\x7c\x1b\x45\x1c\xc2\xce\xbd\xae\x4b\x1b\x6e\x5b\x9b\x62\xc9\x76\x66\x98\x30\xba\x56\x32\x3d\xca\x3b\xa9\xe5\x79\x2d\xaa\x8f\xc2\x53\xa8\xd4\x21\x67\xff\xef\x88\x22\xfb\x15\x7c\x09\x54\x4e\xa4\xce\x80\x26\xa7\xeb\x0f\xea\x11\xf3\x07\xb5\xcd\x65\x33\xe4\x33\xea\x91\xe3\x33\x6a\xfd\x85\xb4\xeb\xea\xfb\xad\x73\xf5\xf5\x5c\x23\x7c\xbb\xd1\x35\xc2\xb7\xae\x6b\x84\x9b\xca\x19\xae\x84\x90\x89\x84\x8b\x0f\x02\xf8\x4d\xbf\x19\x95\xd3\xe1\x36\xe1\x5b\xcb\x6d\xc2\xda\x08\xb1\xbf\xdf\x3a\xee\xeb\x1f\xee\x15\xf6\xf5\x0f\xe1\xa8\xaf\x9e\x43\x51\x87\x34\x3d\x8f\xa3\x50\xea\x7b\x5c\x78\x6e\xc0\xda\x01\xa5\xab\x18\x73\x6f\x68\x25\xfa\xf1\x67\x59\x26\xc5\xe0\x42\x3f\x47\x5d\xf0\x76\xbe\xaa\xff\x7b\xd0\x6d\x59\xdb\x8a\x0d\xc2\xda\xda\x54\x36\x04\xa5\xda\xd5\xea\xdf\x5e\x98\x5b\x6e\x5b\x6b\xda\xea\x86\xb7\xf3\xa1\xc8\xbb\x93\xff\xfe\xf1\xf9\xbb\x93\xe3\x24\x9b\xc8\xc5\x77\x9d\x2d\x92\x6c\xa2\x96\x1a\xfd\x4f\xb2\x89\x5a\x58\xea\x35\x6a\x53\xc8\x5b\xcb\xa7\x06\x57\xbb\x59\x88\xea\x99\x7d\x3b\xab\x44\xc3\x62\x66\x4d\x26\x85\xf8\xd4\x9c\x4a\x38\x15\x7f\x49\x05\x2e\x34\x39\xf0\x48\x09\x6e\x93\x98\x1f\x1a\x09\xca\x9d\xd1\x78\x85\x40\xdf\x3e\x14\x57\x03\xce\x28\x88\x23\xca\x23\xcd\xfb\xbe\x32\x64\x83\xd7\x03\x84\x06\x7b\x07\x15\x30\x49\xa7\x5a\xf1\x74\xaf\x3d\x2f\x19\x08\x14\xc5\x4e\x21\x1d\x41\x57\xd6\x17\xec\x61\x5e\xe4\xcd\x2b\x09\xdc\x87\x22\x18\x65\x83\x5c\x02\xd7\xbb\xbb\xcc\xa1\xd5\x77\xfb\xf1\x0a\x60\x54\xe5\x30\xaf\x5a\x54\xcd\x5e\x72\x3e\x41\x05\x9f\xe0\x29\x36\x2b\xa6\xe0\xf4\x54\x16\xd1\xac\xd6\x27\x94\xff\xcb\x34\xb8\x3e\x43\xee\x10\x2b\x67\xb1\x38\x3e\x29\xce\x0e\x72\x5a\x3d\x00\xfc\x64\x0f\xce\x24\x77\x65\x4f\xce\x1d\x96\x5d\xa8\xcf\xa1\x0a\x28\x37\x98\x90\xba\x93\xa6\xdf\x97\xe5\x5c\x64\x85\xfa\x44\x89\x98\xfa\x42\x37\x47\xea\x0b\x36\x49\xf5\x71\x9c\x35\xba\x0e\x74\xa1\x0b\xe3\x7b\xfa\xe6\xf5\xd9\xf3\xd7\x3f\x9e\x80\xb0\xd1\xa2\x08\xa6\x5a\x6d\x28\x24\xb9\x46\x1c\xa9\x73\x02\x5e\x39\x64\x52\x00\x8f\xd6\x85\x08\xcb\x69\x70\x8c\xa1\x8c\x57\x20\x85\x70\xd5\x95\xd6\x85\x48\x21\xc1\xc2\x33\x9b\x01\xeb\x86\x81\x58\xe7\xe2\xcd\x62\x9a\x35\xa2\xc8\x1a\x31\x7b\xe5\x8c\x0a\xf3\x64\x02\x68\x5b\xab\x3b\x5f\x72\x9e\xd5\xe6\x31\x6a\x9a\x35\xf5\x90\xfe\x93\xc0\x72\x64\x0a\x8e\xef\xee\x24\x34\x4f\x19\x92\x7b\x79\x0b\x0c\xb8\x4a\xa8\x82\xfe\x3f\xa6\xff\xca\xe9\x99\x5f\xe2\xc8\x4b\xd2\xba\x92\x58\xd4\x0c\xf2\x32\xff\x28\xcc\xd9\x04\xab\x1d\xc3\x49\xcb\x5b\x88\x92\xd1\xab\xd1\xcd\x44\x3d\x25\x2b\x40\xd8\x8e\xf4\x51\xa3\x85\x01\x18\x1b\xc8\x72\x5c\x6b\x41\x42\x94\x64\x72\xdf\x6f\x67\x58\x5f\x77\x77\x60\x2d\x65\x80\x61\xcf\x70\x40\x76\xfa\x56\x02\xa7\x22\xf7\x2c\x8c\xdd\x18\x02\xb7\xad\x0e\xbd\xaa\xb7\x10\x1d\x47\x55\x6b\xe9\x63\x2c\x62\xc9\x56\xf4\xad\xa4\xc4\x6a\x18\x92\xf4\x25\x4d\x37\x60\xa1\x18\xd7\x23\xa2\x97\x82\x56\x29\x3b\xbc\x0e\xdc\x62\x09\x39\x6e\x83\x85\x00\x62\x11\x2c\x65\xd8\x6f\x79\x3a\xfb\x0d\x9a\x29\x1a\x99\x66\xff\x30\x5a\xde\x0c\xd8\x84\xfa\x81\x4f\x45\x3e\x80\x0a\xea\x37\x87\x66\xef\x74\xf2\x54\x79\xca\x56\x8e\x6d\x65\x61\x84\x18\x34\x6e\x1c\xb1\x5c\x08\x78\x39\x66\x03\xb1\x3b\xac\x41\x60\xef\x0d\x6d\x7f\x1a\x82\x16\x86\x1e\x83\x9b\xd1\xe7\x51\x02\x75\x48\x23\x62\x0c\x59\x43\x0e\x78\x07\xbc\xca\xb5\x51\xf0\x4a\xf2\xec\x5f\x6d\xf0\x3b\x6c\xf4\x96\x67\x7a\x50\x2e\x12\x37\xdf\x67\xb5\x48\xf1\x3e\xbb\x6a\x13\x03\x9c\x5c\x65\xb5\xe2\x19\xc8\x23\xb2\x7b\xbb\x35\x3e\xf2\x77\xe0\xe7\xa6\x9b\xad\x2a\xcb\x7a\x8c\xd7\x5a\x10\xc7\xab\x93\x4a\x43\xc4\xf1\x8a\xf7\x01\x1e\x16\xa8\xc3\x74\x37\x0e\x2d\x8f\x85\xda\x58\x31\x3a\x81\x1e\x50\xb2\x52\x56\x4d\x76\x1d\x1a\xb4\xc5\x70\x89\xba\xc1\x58\x01\x0e\x26\x40\xaf\xa9\xc5\x46\xb1\x98\x05\x12\xc6\x0a\x9d\xff\xba\xac\xae\x41\x3b\xda\xc4\xac\x93\xdd\x60\x73\x78\x8d\xd1\xd3\xeb\xa9\xde\xfd\x69\x77\x4d\xe4\x4c\xe4\x05\xf1\x19\x90\xc7\x37\x27\xb3\xdd\x5a\xc1\xe1\x14\x3b\xb9\xbb\x6b\x16\xbc\x7f\xbe\xa9\x02\xb8\xe9\xac\x28\x12\xd2\xba\x4d\x9c\x13\x1c\xed\x32\x2d\xdb\x52\x50\x7e\xcc\x77\x6f\x3b\x64\x2e\x04\x20\xc5\x71\xed\xee\x6a\xfe\x16\xb9\x22\x35\xde\x0f\x10\x34\x68\xff\xee\xee\x83\x00\xcd\x84\x69\x70\xfd\x47\x3a\xff\xda\x59\x1c\x91\x1a\xc8\xba\xdd\xc3\xc1\x3e\xad\x20\xcd\x33\x2a\x9c\x7b\x9d\x54\x19\xaa\x97\x56\x5b\xde\x32\xdd\xd0\x8a\x26\xf0\x8f\x44\xdc\x66\x02\x38\x0d\x07\x6b\x09\x20\xdf\x04\x80\xe6\x13\x40\x61\xff\x6c\x41\x15\x70\x20\x8a\x9d\x4a\xae\x6d\xc2\x53\xed\x29\x13\x7d\xe0\x74\x91\x31\x91\xbd\x70\xe9\x32\xb1\xaf\x16\x78\xb7\x81\xb0\x96\x3a\x46\x26\x49\xeb\x75\x5f\xd1\x52\xd9\x96\xe1\xeb\x30\x96\xb6\x7a\x39\x76\xd1\xd3\x2c\x47\x6e\x18\x33\x47\xf9\x18\x0e\xd9\x3a\xf5\xd8\xc5\xc4\x70\x7b\x08\x91\xa6\x8a\xf8\x6d\x83\x7c\xc8\x75\x62\x47\x03\xfb\xa5\x4e\x8b\xc1\x4d\x3e\x9f\xbf\xd2\xb8\x8b\x57\x81\x44\xaa\xa5\xb5\x59\xac\x30\xcf\xd7\x45\xd6\x01\x0e\x70\xa8\x30\xbd\xbe\x42\x6f\x1d\x84\xaa\xba\xc0\x27\x01\x15\x89\x88\xe4\x90\xf0\x33\x1c\x80\x48\x23\x09\x1e\x1d\xe0\x01\x17\x04\xcc\x1b\x36\x35\xe4\x19\x25\x01\x6e\xb3\xb3\xe9\x19\xf0\x6e\x6a\x2a\xca\x86\xbc\xab\x01\xc6\x75\xd8\x0d\x84\x57\x9f\xe6\xba\xc7\x2f\x5d\x72\x42\x1d\x6a\x1f\x6c\xa2\x79\x7d\x33\x18\x4c\x28\x20\x69\xbc\xd2\xf7\x6e\xda\x04\xac\xec\xc4\x50\x3c\x68\x19\x49\xda\x7d\x7e\x3a\xf9\xfe\xf9\xeb\xe3\xe7\xaf\x7f\x48\x1f\xfe\x63\xb0\x47\x02\x92\xff\x7c\x68\x96\xc9\x4c\x34\x62\xda\x50\x86\x73\x9e\x5f\xc3\xac\x98\x3a\xd0\x74\x0f\xe7\x03\xce\x78\x2c\x55\xa7\xd7\x03\xf5\x13\xcf\x75\xfa\x88\x57\x01\x88\x0d\x57\x62\x05\x06\x88\x0e\x94\xd6\x8c\xad\x49\x8b\x5b\xf5\x2b\xbc\xd3\x4c\xcb\xa2\x30\x63\x44\xa6\xe5\xba\x73\x04\x30\x7e\xfa\x48\x9a\x12\xd6\x9d\x1e\x0f\x23\x5b\x6f\x90\xa9\xd5\x0b\x56\x2e\x5e\x35\x65\xfa\x41\xdc\xd2\xa3\xf4\x7e\xf2\xe0\x0f\x31\xcb\xe6\xa7\xe8\xf7\xaa\x84\x53\x27\xa9\x98\x0c\xd5\x67\x53\xf6\x9b\x92\x98\x06\x05\x2a\xaf\xe4\x6a\x1e\x9b\x52\xdb\x05\xb6\xa6\x0a\x40\x03\xc6\x05\x56\x7c\x98\x6a\xa0\x6d\xed\x19\xb2\x4c\xc5\xf2\xfa\xea\x6d\x56\x35\x79\x36\x57\xb8\x0b\xa2\x14\xef\x37\x4a\x99\x40\xdf\x1d\xca\xf3\xf7\xac\xb6\x72\x3e\x2f\x6f\x20\x12\x12\x14\x92\xc4\xef\xac\x01\x72\xce\x33\x6f\x5e\x08\xbc\x59\x0d\x90\x37\x37\x11\xac\xcd\xfd\x01\xa1\xc6\x77\x77\xb4\x79\xd3\xb7\x3a\xc1\xec\xd4\xa1\x2c\x93\x5a\x05\xcd\x6a\x1d\x58\xe9\xf2\xa8\xa8\xa7\xa9\x93\x8a\xe7\x99\xcb\x4a\x00\xa4\x73\xe6\x81\x9e\x91\x6a\x03\xf1\x00\x70\x47\x30\x5e\x00\x39\x72\xc9\x14\x9f\x53\x94\xb0\xaf\x7e\xe2\xfa\xb2\x92\x74\xa9\x1e\x17\xde\x54\x2a\x0f\x4c\xd0\xea\x17\xe2\x96\x9e\x7a\x5e\x31\xdf\x75\x68\xb6\xe6\x97\x19\xa9\x32\xda\x00\xad\x76\x1d\x28\x85\x8d\xd7\x78\x13\xc8\xd2\x92\x21\x1b\xc6\x1e\x87\xe7\x41\x2b\xd2\x2b\xb8\x07\xbf\xef\x90\x54\x74\x57\xf1\x31\x0d\x5f\xee\xcc\xed\x48\x02\xa9\x6e\xad\x6f\x46\x42\x26\x91\x72\xc1\x41\x8d\xd6\x28\x60\x9d\x4c\xa2\x24\x24\x70\x8d\x87\x9f\x5f\xb3\xa9\xf3\x4b\x6a\xd3\xae\x42\x54\x65\x1a\x47\x6d\xa7\x47\x40\x1f\x9d\x9f\x49\x59\x6b\xb0\xe5\x89\xb6\xb7\x1b\xdc\x36\x8d\x50\xf5\x5f\xaf\x62\x86\x43\x26\x1f\xf7\xef\xb6\xc0\x39\xc1\x46\x86\x27\xf3\x02\xb7\xbc\x98\xde\xba\xeb\xa9\xdc\x18\x13\xad\xaa\x93\x58\x12\xe1\x98\x1d\x9b\xb0\xc6\x41\x7b\x62\x34\x96\x1b\x6d\xf0\x96\x36\x0c\xf1\xbf\xb6\xdc\xd9\xe6\x0c\x68\xa8\x75\xec\xd8\x3d\xa2\x6e\x89\xb3\x50\xe5\x95\x44\x66\x90\x8d\xa9\xb9\xc1\xd4\x4d\xb5\x9c\x36\x65\x15\xdd\xdd\xed\x84\x35\x44\x1c\x76\x8b\xed\x99\x1f\xcc\x16\xc8\x18\x7b\xb5\x19\xb3\xcb\x1e\x2b\x8e\x01\x16\x64\x3e\xde\x00\xf9\x61\x07\xa7\x00\xb9\xd9\x81\x63\x41\xcc\xd2\x6d\xce\x07\xdc\xc7\x55\x11\xd8\xa2\xa9\x5b\x3a\x0d\xf7\x56\xd3\x33\xbd\x3d\xef\xee\x86\xc2\x96\xab\xde\x6e\xb5\x61\x51\x2c\xbd\xf5\x8c\xd3\xd0\x7e\xec\xd2\xf9\x66\xff\x4f\xae\xd1\x6a\x5e\x93\x59\xe8\xa0\x6d\x43\x67\xe8\xb5\xa2\xd4\x8d\xe1\xbb\x93\x83\x78\xe8\x10\x37\xca\xfc\xb3\x79\x2d\xac\x03\x9a\x2b\x33\xb0\x3b\x4d\x97\xba\x01\x8a\xfe\x8d\xde\x0d\x54\x6f\xcc\x03\xf5\xeb\x84\x13\x10\xa0\x7d\xa5\x44\xd5\x4a\x59\xcd\x48\xad\xc1\x46\x80\x96\x00\xfe\x2e\x6f\x0a\x51\x3d\x35\x34\x0b\xa9\xed\x10\xeb\x98\xe0\x33\xa7\x19\x1d\xa5\x43\x02\x21\x31\xf5\x75\x1e\x37\x20\x4b\xf9\xeb\x0e\xe0\x0c\x9e\x7c\x54\xeb\xd6\x5c\xa5\xd6\x17\x85\xc6\xca\x8a\xdb\x1f\x8b\x45\x55\x4e\x45\x5d\xd3\x25\xa9\x26\x61\x15\x56\xe1\xeb\xf5\xad\x29\x08\x12\x26\x78\x48\x86\x57\xb1\xa1\x87\x68\x78\x8f\xb1\x2c\x20\x00\x9a\xee\x66\x84\x6d\x07\xfb\x43\x3b\x7b\x50\x89\x72\x21\x0a\xd7\x54\x0c\xaf\xdd\xcd\xf5\x02\x02\xa3\xa1\x46\xa4\x09\x1d\x8b\xb4\xc2\x47\xd4\x8f\xfd\x27\x21\xa7\x98\xba\x71\xbb\xc9\xf0\x4d\xcf\x54\x23\xf8\x6f\x18\xb4\x1d\x96\x49\x0f\x80\x0a\x72\xdc\x2a\x0f\x33\xae\x0b\x1b\x22\xa7\x94\x81\x27\xf9\x0c\x2d\xc7\x4d\x34\x09\x70\x40\x83\xf1\x23\x70\x38\xc6\x83\x4d\x3e\xfb\x34\x5e\xf7\xa2\x43\x52\x01\xb8\x8e\xe2\x15\x9f\x9c\xd7\x5d\x2f\x5c\xa4\x34\xd7\x0b\x8e\x92\x6b\xf3\x78\xa6\xbc\x33\x5f\x2f\x98\x9f\x03\x88\xa2\xe6\x4c\x10\x92\xbc\x4d\xd4\x61\x8a\x1d\xc9\xf2\x63\x5a\xe7\xe1\x7a\xc2\x6b\x64\x6d\x75\xb4\x04\x8c\xfb\x64\xdc\x03\xfb\xd3\x65\xf5\x0a\xa9\x04\x1c\xb0\xe1\xef\x5a\x88\x22\xa0\x07\xa8\x60\xe1\x06\x24\x61\x9c\x37\x2f\x54\x80\x34\x19\x48\xfa\xf9\x85\x2e\x28\x59\x1d\xd3\x8c\x1d\x02\x50\xd3\x6b\x9d\x2a\x70\x35\xed\xf3\x72\x4a\x62\x9a\xc7\x96\x28\xe7\x68\x9f\x82\x00\x3d\x78\x30\x2f\xa7\x18\x2e\xe6\xa2\xaf\x46\x46\x82\x9d\x79\x39\x1d\xfb\x83\x5b\x17\x67\xda\xc1\x38\x56\xe7\xe0\x5a\x52\x35\x47\x3a\x96\x44\x5b\x86\xee\x57\x58\xd5\x35\x78\x86\x96\xdb\xeb\xaa\x8d\x71\xe0\x8e\xe3\x3e\x42\xc4\xf5\xee\x2e\x7f\xa3\x56\x2b\x48\x79\x19\xa4\x11\xaa\xe9\x01\x05\xc9\xb1\x3d\x16\x97\x7c\x48\xde\xe0\x6e\x14\x15\x69\x55\x9b\x9d\x1f\xf6\x53\x2d\x9f\xe8\xd8\x76\xf5\xa6\x5b\x89\x86\xd3\x96\x64\x5f\xfa\x95\x68\x70\x1c\x44\x4e\x9c\x66\xcc\x23\xaa\xa6\x9e\x36\x94\xa9\x29\xc8\xdd\x96\xd4\x3d\x43\x4b\xec\xf8\x5e\x14\x08\x97\x6d\x22\x65\x77\x30\x4d\x95\x68\xf0\x52\x8d\x04\xd1\x21\x0a\x0a\x0a\x71\x88\x4a\xf9\x63\xbc\xc1\xc0\x27\x1c\x7d\x1b\xb7\x2e\x5d\x01\x97\xe9\xcc\x03\xa4\xad\x5a\x28\x23\xff\x93\x7b\x47\xac\x0e\x54\x79\x81\x6c\xa0\x4a\x77\x98\x28\x6d\x45\x8e\xb1\x7b\x90\x46\xfc\x66\x39\x80\x1d\xf2\x05\x17\x38\x7b\x37\x13\x28\x73\x59\xbb\x63\x13\xaa\xe5\x3a\x92\x3a\xab\x20\x8c\x56\x02\x11\xb3\x7e\x60\xf2\x67\x5c\xf7\x9e\x76\x6b\xab\xff\x8a\x7f\x05\x32\x66\xba\x4d\x2a\x7d\x5d\xac\xdd\xfe\x3b\xf1\xcf\x65\x5e\x89\x59\x4f\x3f\xcf\x46\x2d\x97\x46\x63\xae\x61\x92\x54\xa5\x8e\x07\x10\x04\x4b\xd5\x0f\x53\x03\xf2\xc4\x46\x14\xa2\x0e\x41\x9d\x90\x9a\x9f\x2d\x00\x33\x3e\xcb\x19\x90\xb9\xf9\x48\xb8\x57\xca\x42\xd1\x54\xcd\xd4\x93\xbd\x76\x6d\xcf\xfe\xa6\x82\x94\xfd\x66\x9e\x34\x89\x97\xde\xda\x9f\xe6\x50\x4b\x2e\x94\xbe\xd3\x4f\xe8\x3e\x58\x3f\xaa\x6b\xe4\x83\x23\x9c\x15\x8a\x2a\x98\x67\x1c\x28\x37\x41\xe1\xc7\x5a\xaf\x9c\xc6\x0a\x55\x56\xb9\x63\x5b\x9f\x62\x4f\x35\x27\xb0\x3f\x1e\xae\xaf\xf2\x20\x6e\x31\xdf\x76\x04\x34\xcc\xff\x3c\xb1\x84\x29\x7b\x7b\x39\xc4\x0f\xb6\xbd\x46\x4e\xb4\x24\xc5\x1f\x30\xdc\x13\xba\x3b\xea\x58\x86\x0e\xc8\x34\x14\x3f\x14\xfa\xc1\x9f\x94\x98\xf5\x68\x2f\xee\x65\x3d\x53\x03\xdc\x2c\x06\xfe\x3d\x1c\x85\x40\xdd\xde\x49\x95\xf2\x9a\xfa\xc1\x9c\x49\x5c\x5f\x8b\x59\xce\x6e\xed\x9e\x83\x6e\x97\x53\x73\x3c\x73\x57\x97\x9c\x09\x33\xca\xc5\x54\x5d\x38\xdc\x98\xed\xef\xc9\xed\x42\xea\xa5\x98\xfe\x9e\x5b\xb2\x8c\xff\x47\xaa\xbf\x09\xa9\xda\x93\x70\x7f\x82\x55\xd2\xa9\x0d\x64\x6b\x37\x93\xda\x9f\x96\x52\x3f\x7b\x3c\x31\x3f\x6d\xb5\x7f\x73\xfb\xe9\x50\x77\x37\xda\xe0\xb6\xc6\x3b\xb8\x44\xf7\x95\xc7\x43\x1a\xee\x5f\x57\x73\x7c\x9d\xde\x36\x74\xca\x33\x00\x86\x54\x8c\x7a\x5b\x84\x21\x28\x3d\xa8\xb1\x7d\xc8\x34\xb6\x2d\xc7\xcb\xae\x4a\xb6\xe5\x88\x79\x9d\xa6\xeb\xa3\xfb\x29\xba\x3e\x0a\xeb\xb9\x7a\x0e\xf8\xdd\x32\x9e\x43\xfe\x40\xa9\x4d\x85\xa0\xcc\x93\x67\x67\x27\xef\x26\x6f\xbe\x3f\x3d\x79\xf7\xd7\x93\x77\xa7\x69\x74\x34\xbd\xca\x8a\x4b\x81\x38\xff\xfe\xe4\xd9\x9b\x77\x27\x56\x36\x92\x64\xc4\x6c\xa1\x01\x1e\x7d\xd9\xeb\xb7\x6c\xa2\x6f\xfa\xde\x73\x5a\x69\x9d\xbd\x6d\x7d\x61\xb7\x13\x96\xce\x88\xde\x16\xe5\x8d\x03\x16\xbf\x1b\x91\xc7\x8d\xae\xc4\xfb\x0b\x05\x62\x37\xce\x04\xd0\x8b\xa9\xd0\xd8\xc3\xc9\x6b\xaf\x13\x39\x48\x2f\x55\xae\xb5\xed\xf1\x17\xda\xb9\x39\xee\xb4\xae\x7f\x50\x95\xcb\xbb\x06\x90\x71\xf0\x4c\x03\x0a\xe5\x1f\xae\x5e\xc1\x66\xa4\xd0\xa2\xb0\x07\xe9\x79\xd8\xdf\x8c\xaa\x2e\xcc\x38\x3a\xeb\x8e\x8a\x3a\x9f\x40\x5b\x52\xbf\xfd\x34\x72\xca\xf9\xf2\x69\x74\x34\xde\x7d\xe5\x78\x73\xf5\xa3\x55\x14\xe8\xb7\xdf\x6d\xe6\x67\x5b\x3b\x1b\xf4\x03\xfc\xf0\xa1\x04\x46\x62\x2a\xb1\x7a\x1d\xee\x48\x1a\x4e\xf6\xfb\xff\x55\x7a\xee\x11\xec\xbd\x7a\xee\xf5\x79\x5b\x6c\xd7\xe6\x79\xaf\xb3\xd7\x1f\x55\x18\x91\x3a\xd5\x2a\xe5\x58\x82\xa1\xdb\xd8\x46\x77\xc6\xe7\xe9\x6c\x61\x8b\xc9\xa8\x3b\x66\xa3\xee\x9e\x8e\x2f\x1b\x1a\x9b\x8f\xaf\x3e\x34\x7f\x50\x81\xe1\xd8\x0c\xcb\x96\xdb\x9e\x47\xff\xf1\x1a\x9e\x08\x36\x3f\x3f\xc9\xdd\x02\xb7\xdd\x56\xb6\xdb\x08\x37\x6f\x36\xeb\x37\x42\x67\x8d\x86\x12\x37\xb0\x68\xe8\xb3\x65\xb4\xd9\x8c\xf0\x8b\xf8\xb1\xb5\x8e\xe1\x03\x76\x66\x07\x8e\x9d\x99\x89\x52\xe2\x72\x59\x26\x6a\x49\xc7\xa3\x8d\xc2\xc3\xa9\x60\x8e\x6f\x59\xa2\xe7\x31\xc4\x64\x31\x3b\xdc\x6c\x36\x33\xd7\x1a\xd9\xa6\xa8\x12\xe2\x23\xdc\xc0\x22\xa5\xa9\x00\x45\xf0\x2c\x41\x3f\xd9\xd6\x76\x56\x9d\x60\x9d\x3f\x70\xa1\x31\x26\xc1\x1b\xeb\x29\x84\x9a\xd1\xd5\x8c\x0c\xf4\x18\x5d\xe2\x81\xe0\x07\x01\xe3\x55\x07\x64\x4a\x15\xad\xda\x16\x7d\x71\xe0\xb7\x51\x09\x64\xa1\xf1\xd9\x3b\x21\x26\xe9\x9e\x92\x7f\x39\xac\xf7\xc8\x46\xc5\x91\x87\x92\x23\x13\x4c\x47\x2f\xcf\xa3\xd1\xb8\x8d\x1f\x1c\x0c\xff\xc3\x69\x1f\x0d\xad\xdc\x5b\x6f\x3d\x82\x64\x16\xe2\xa9\x1d\x86\xe7\xe8\x62\xbe\xac\xaf\x5c\xb9\x60\x27\xc2\xf3\x64\x2e\x0a\x3d\x1f\x84\xff\x21\x27\x05\x13\xa5\x4c\x14\x6c\xfc\x96\x0b\x7f\xb8\x2c\x7a\x32\x01\x78\x81\xc6\x1a\x75\xda\x80\x5a\x00\x61\xae\xfc\x35\xc8\xeb\x63\x51\x37\x55\x79\x9b\x17\x97\x77\x77\x6e\xa2\xf5\x44\x6b\xa2\x3a\x11\xc2\x75\xad\x06\xbf\x23\x37\x4b\xe1\xd5\xa4\xb0\xb8\xc3\x5d\x48\x84\xb1\xa7\xae\x9b\x1b\x4e\xd3\xca\xcd\x8d\xc1\xec\x68\xdc\x65\xf7\x6c\xec\x94\x7f\x23\x4f\x9f\x20\xab\xa0\x4e\xa8\xf8\x00\xf4\x06\x49\xce\x86\xc8\xe2\x35\xbf\xe8\xe3\x2f\x10\x04\xd3\xfb\xd5\x2a\x3b\x3a\x68\x93\x55\x76\x84\x9a\x55\x47\x87\x6d\x1b\x0f\xb2\x9d\x34\x3d\x8c\x57\x54\x0b\x7a\xd8\x95\xab\x0f\x13\x94\xbb\xad\x93\xd7\x7f\x1d\x9c\x9e\xfd\xf8\xfd\xe4\xcd\xf7\xff\xeb\xe4\xe9\xd9\xe4\xe9\xbb\x93\x27\x67\x27\x48\x93\x2f\x38\x7e\xdb\xa1\xe7\x62\x81\xb4\xe6\xeb\x78\xf5\x82\x49\x33\xcb\xf3\xf7\xc3\xf2\xfc\x3d\x48\x35\x5f\x0c\x8d\xd6\xac\x0b\xe3\x5a\x05\xf8\x60\x4c\xd3\x9e\xec\xd8\x49\x75\x40\x57\xdf\xf2\x4a\x95\x99\xa1\x7a\x35\xa7\x0e\x0f\xf2\xfa\x34\xbf\x06\x37\xf7\xb3\x54\x3f\x44\x39\xd6\xb0\x84\xe4\x80\x11\xec\x34\x2b\xde\x09\x2b\x3d\x17\x75\x32\xcd\x8a\x63\x0b\xf6\x4d\x71\xfc\xe6\x15\x6a\x5b\xf0\x64\x74\x0f\xe7\xa8\x1b\xac\xda\x24\xca\xa2\x64\x65\xb9\x80\x89\x57\x6d\xab\xbd\xc2\xc5\x4e\x11\x33\x7d\x6e\xf5\xc1\xee\xf9\x9b\xcb\x7b\x49\x54\x01\xad\x07\xe8\xc7\xb4\x2c\x2e\xf2\xcb\x25\xb8\x29\x3d\x92\x18\x4a\x8c\x87\x55\xfc\x76\x7b\x6a\x7b\x9b\x81\xae\x7f\x41\xed\x37\x55\xde\x98\x2f\x24\x61\x98\x28\xae\x04\x31\xc8\xd2\x14\xa7\xaf\x1f\x0f\xc3\xe8\xb7\xb6\x03\x1f\xed\xb3\x72\x0a\x22\x36\x5a\x4a\x27\x73\x01\x81\x1b\xa2\x59\xfe\x31\x8a\x93\x68\xe6\x57\x18\x25\xab\xd6\xf6\x06\xa3\xe7\xc7\x7e\x84\xeb\x83\x0c\x70\x27\x38\x19\xe1\xb9\xd4\x2f\xe7\xe1\xa1\x78\x85\xac\x55\xa7\x8e\xaf\x99\xa8\xa7\xe4\x73\xbd\x7e\x5d\xce\x04\x13\x44\xca\x4f\xe6\xf4\x31\x5e\x21\x44\xea\xbc\x5e\xca\x34\xb2\xb9\xc0\xfc\x0e\x37\xd0\x2c\x90\x5f\x51\xce\xc4\x99\x5c\x6f\x69\x1a\x15\x60\xc0\xe9\xe7\xbf\x46\x67\xb2\xca\xe5\x77\x0b\x66\x0c\xb2\x7e\xee\xbe\xd8\x1c\xa8\xa0\x47\x8a\x4b\x9b\x1b\x3c\x05\x17\xa5\x8f\x80\xb6\x6d\x5b\xb5\x77\x3a\xc0\xa9\xb3\xa0\x35\xd8\x55\x56\xab\xc4\x27\xd3\xa9\xa8\xeb\xb2\xaa\xf5\x53\xe4\x4e\x47\x6d\xf1\x6a\x7d\x79\x54\x20\xe9\xea\xca\x9a\x19\x94\x6d\x02\x0e\x2e\x91\x2d\x0a\xa3\xa6\xed\xaa\xda\xdf\xe1\xb4\xfb\x51\xb9\xbd\xbf\x7a\xf2\xfa\xf8\xc9\xd9\x9b\x77\x7f\x9f\x9c\x9e\x9c\x9d\x9d\xbc\xdb\xdd\xdd\x59\x3b\x0e\xa5\xeb\x12\x2a\x8b\x63\xb4\x38\x7c\xcb\x92\xdc\x12\xc0\xea\x03\x4d\xfd\xe8\x3a\x7d\x3b\x03\x40\xad\x8b\x01\xb4\xd9\xcd\x88\xf6\xf7\x68\x2e\x05\xdb\x39\x8b\x77\x1d\x45\xfe\x16\x4e\x41\xbe\x98\x9d\x08\x7a\xb5\x38\x74\xbd\x5a\x78\x9e\x31\x0e\xb9\x67\x0c\x3d\x83\xae\x28\x55\x65\x00\x54\xf9\x51\x54\x55\x3e\x13\x4f\xaf\xb2\xbc\xa8\x3d\x5f\x1d\x76\x76\xd0\xfb\xfd\xb7\xcc\xfb\xbd\xeb\xe6\xf2\xf7\xcc\xcd\x25\xf7\x53\x40\x31\x2f\xec\xcd\x33\xed\x58\x22\x88\x11\x97\x98\xbb\xe9\xdc\x5c\xc1\xcc\xc3\xac\x3c\xe7\x38\x79\x33\xd7\x1b\x8e\xab\x0d\xb7\xb6\xc9\xb3\x1f\x5f\x3f\x3d\x7b\xfe\xe6\x35\xb5\xd8\x9d\xaf\x09\x8c\x6c\x24\x91\x13\x3c\x3e\x79\xf6\xe4\xc7\x97\x67\x93\x1f\x82\xb5\x75\xe5\x9a\x21\x84\x01\xfa\x96\xaf\x6f\x57\xb1\x4c\xd2\x85\xe4\x9f\x59\xcc\x55\x63\x9f\xab\x62\x4d\x92\xa6\x29\xb8\x11\xe6\xae\xbe\x36\x6c\xd9\xc9\x2c\x6b\x32\x30\xf9\x61\xfa\xbb\x89\xf8\x94\xd7\x4d\x5e\x5c\x4a\x64\x26\xea\x09\xc6\xd8\x14\xec\x00\xbc\x65\x7b\x05\xc6\x12\xa8\xfc\x6b\x8c\xb7\x87\xbc\x9e\xd4\x36\xea\xc6\xfb\xa3\xaa\x1b\x33\xd5\x97\xce\xff\x0e\x02\xf9\xf3\x5a\xba\x4c\x29\x39\xcc\xa0\x11\x59\x35\x2b\x6f\xac\xfd\x3d\x56\x5a\xae\x5d\x35\xa0\xbe\x2b\x28\xc9\xda\x9d\xc4\xb4\xfc\xa2\xef\xef\xde\xaa\xc3\x70\x52\x78\x2b\xc0\x42\xf6\x67\x32\x5f\xc6\x86\x82\x34\xe6\xac\x23\xc9\xe4\x1a\x13\x8b\x3a\x90\x6d\x74\x8f\x25\xc7\xa3\xc7\x9a\x35\xd9\xa6\x71\x71\xda\x32\x08\x91\x05\xbf\xc6\x88\x25\xef\xda\xb9\x02\x81\xd5\xed\x5a\x30\x7a\x56\x43\x68\x91\xfd\x6b\x95\xff\x35\x3d\xab\x1b\x3b\x4c\x2c\x4c\x7e\xd1\x67\xf3\x6a\xed\x98\x16\x38\x2c\x02\x52\x43\x1b\xcc\xf2\xd9\xb1\xc3\xa1\x04\x93\xad\x1a\xc8\x78\xbc\x4b\x60\xb7\x9e\x81\x62\x2b\x9c\xc2\x46\xf0\x36\xc4\xb4\x49\x4c\x3c\x89\x17\xe2\x36\x29\xc4\xcd\x0b\x71\x8b\x8f\xe0\x76\x39\xb9\x9b\xca\xcb\xe1\x7a\x4e\xc4\xdf\x48\xfc\x36\xd6\x4f\x39\x30\x2c\xf6\x7d\x85\xf6\x56\xd6\x15\xf0\x0a\x49\x95\x63\x97\x15\x9a\xdc\xab\x0f\x2f\xa4\x7c\xae\xba\x65\x63\x79\x93\x73\x90\xea\x60\x2b\xf5\x52\xd6\xf3\x46\x86\x87\xb9\x8f\x08\xb4\x53\x8e\xfa\xcb\xbf\x56\x07\xb9\x8f\x03\x97\xfb\xd8\x46\xa6\x6a\xc2\xb6\x7b\x60\x26\x6b\x6b\xe9\xab\xf5\xd2\xfd\x63\x91\x97\x85\x07\x6c\x67\xdb\x25\x8e\xf3\x0b\x3f\xfe\xa7\x95\x0b\xf0\x4c\x66\xb5\x2e\x8c\xcf\x47\x1d\xf0\x8e\x17\x00\xe7\xb7\x4c\x1a\xec\x0a\x6b\x43\xf9\x33\x71\x21\xaa\x4a\xcc\xd2\x7d\xb3\x44\x15\xe9\xfc\x94\xcf\xe7\x4f\xe1\x61\xc4\x3a\x9a\x82\x5a\x7f\xe6\x68\xdc\xdd\xbd\x0e\x1d\x8d\x60\x50\xaf\xae\x77\xca\x83\x2a\xc8\x60\xb0\x08\xfc\x4c\xd0\x3e\x4f\x7e\x3b\x47\xaf\x3c\xc7\xcd\x3e\x47\x7a\xa1\x28\x23\x6a\xca\x34\x4d\x99\xc6\xad\x3a\x3a\xd1\x34\x05\x8c\xa8\x71\x14\x68\xfe\xc7\x12\xec\x13\x57\x61\xbb\x79\x21\x6e\xeb\xf0\xd8\x93\xeb\x78\x38\x85\xbd\xb5\x3b\xbf\x28\x9b\xfc\xe2\x36\xf4\xee\xa6\x5b\xf2\x30\x7d\x9c\xcf\xfe\x8d\x10\xbd\x19\xa7\x33\xd5\x5f\x42\xe9\x2c\xd8\xff\x96\x4f\xda\xee\x2e\x25\xef\x98\x6e\xe9\xda\x2d\xd4\x07\x91\x61\x30\xdf\x91\xad\xac\x5f\x10\xfd\x1d\x88\x97\x08\xfd\xe9\xf9\xcb\x97\x93\xd3\x93\x93\xd7\xc9\xf1\xf3\x63\xf8\x61\x1d\x4e\x9d\x24\x30\x13\x8b\x17\xe8\x09\x27\xd3\xae\xe9\xb9\x84\x5b\x0f\x06\x77\x14\x51\xa4\xa6\xa5\xa6\x5c\xa4\x3b\x32\x0d\x04\x2d\xe5\x22\x5e\xd9\x00\xf0\x64\xd1\x88\xea\x58\x2c\xea\xbe\xbf\xfc\x12\xd6\xbe\x2c\x88\x9d\xd0\x75\x99\x6a\x50\xda\x17\x1e\x8e\x8d\xb7\xfb\x8f\x46\x61\xab\x6b\x30\x2a\x3f\x38\x16\xdd\xf8\x86\xa1\xe8\x4a\x9c\x91\xe8\x0a\xe9\xc5\x35\x58\x4b\xd8\xfd\x39\xba\x63\x32\x26\x09\xcc\x08\x61\xd5\xda\xe6\x0a\x23\xac\x72\x1c\xe3\xd8\x87\x7e\x8e\x31\xd9\x99\x89\x85\xbe\x3c\x2c\xea\x21\x7c\xca\x3f\x72\x85\x2c\x6a\x05\x8f\xac\xec\x82\x19\xe2\x92\x96\x33\x26\xaa\x3b\x4c\x1a\x70\x21\xc5\x96\x9b\x7a\x37\x16\x33\x5a\x95\xea\xdd\x44\x85\x21\x21\x22\xb7\xcc\x74\x37\xec\x53\x20\x3b\xea\xfb\x96\xfa\x50\x0c\xf5\xff\xaa\x3a\x8a\xe5\x0e\x61\x25\xe9\x9d\x22\xb6\x48\xa4\x28\x67\xa2\x4e\xbb\x60\x55\x34\xfd\xd1\x18\xc3\xb1\xea\xd8\xa4\x50\xcc\x53\x16\x85\xd4\x51\x3e\xe6\x5b\x35\xd6\x10\xb7\xa6\x2c\xa6\xd8\x85\xd3\xc3\x78\x15\x38\xbe\x10\x74\x94\xab\x8e\x8c\xf2\xbd\x83\x71\xec\x21\xab\x6b\x6b\xa9\x97\x8b\x45\x25\xea\xfa\x04\xfb\x40\xa8\x93\xa8\xf9\x55\xb1\x67\x77\xe3\xb1\x5c\x22\x47\xf7\xc5\xa8\xd9\xa9\x15\x42\x21\x8a\xa6\x3d\x3e\xea\xd9\xf6\xa8\x3e\x76\x6a\x5d\x83\xe9\x75\x57\x94\x78\xb5\x7e\x1e\xd0\x52\x89\xe9\x4c\x5c\x6a\x1f\x25\xb7\x58\xa0\x06\x4e\x1b\x59\x9a\xbd\x3d\x03\x2a\xb4\xae\x6b\x00\xf0\xc1\x03\x7a\x7f\x81\xaf\x3f\xa7\xfb\xf1\xca\x63\xae\xf4\x9b\x29\x63\xa8\xf0\x41\xb6\xef\xd0\x51\x71\x29\xb8\xf3\xbd\x73\x13\xca\x39\xdc\xdf\xa1\x61\x46\x25\xb4\xdf\xd3\xc4\x0f\x13\xbc\x99\xc7\xd8\xb8\xa7\xeb\x77\xd5\x54\xa9\x0b\x6a\x15\x45\xf3\x92\x9d\xcc\x24\x63\xca\x90\xc3\x63\x40\xfb\x38\xca\x66\x33\x6b\xc6\x8c\xe2\xc0\x50\x56\x94\x5a\xfc\xae\x51\xa7\xb1\x5f\xcf\xe3\xa1\x79\x0c\xb6\x41\x46\xac\xee\x31\x74\x8d\xae\xd3\x5b\x15\xe0\xd3\xb4\x8e\x49\xf8\x2c\xcc\x91\xee\xa7\x19\x45\x17\xd2\xca\xed\xd0\x65\x5f\x25\x3a\x51\x75\xbf\xe1\x5b\x22\x76\x6f\x93\x4c\xfd\xa4\x61\xa8\x84\x5e\x9c\xa9\x97\x62\xc1\x3b\xc2\x5d\x47\x98\x6b\xeb\x29\xf9\xeb\x22\x0d\x25\xda\x51\x38\xbd\x85\x92\xfa\x49\x56\x09\x77\x71\xa6\x6e\xc2\xa6\xab\xf4\xa5\xaf\x4a\xb4\xe5\x43\xc3\x17\xc5\xac\xfb\xea\x31\x64\xb7\x93\xf0\x77\x44\xba\x0b\x5c\x45\x95\x04\xfe\x3e\x72\x72\xf2\x63\xf4\xc3\xcb\x37\xdf\x3f\x79\x39\x79\xfb\xe4\xec\x2f\xe9\xc3\x7f\xf4\x47\x4f\x1e\xfc\xef\xff\x1c\xdf\xf5\x47\xfb\x0f\xfe\x34\xc6\x8f\x38\x1e\xfc\xd7\xe8\xe7\xc1\xf8\x21\x14\xf9\xcb\x93\xd3\xc9\xd9\x5f\x9e\x9f\xa6\x11\xe8\x68\xe0\xa0\x9f\x3d\x7f\x77\x7a\x06\x03\x92\x55\xfc\xe3\xe7\xc1\x78\x2f\x7e\xa8\xdf\x0b\x8c\x73\x4b\x0a\x49\xcb\x57\x3a\xbb\x2b\x45\xfc\x8d\xb1\x25\x7d\x23\x99\xb9\xbb\xab\xde\x23\x2d\xff\xb5\xe0\x8f\x01\x0a\x6b\xcd\x05\xc9\xb4\xe2\xf6\x91\x2a\xe1\xa5\xb2\xef\xbc\x14\xcd\xdb\xac\xb9\xf2\xef\x23\x20\x98\xb6\xef\x78\x9a\x25\x24\x69\xb9\x7d\x45\x53\xf1\xfe\x7d\x27\x08\x04\xa1\x7c\xa5\x43\x30\xf3\x9d\x34\x7d\x70\xb0\xa1\x1b\x54\x99\x86\x52\x4f\x8a\x36\x94\xf2\xb0\xe7\x0b\x60\x59\x57\x03\x17\x52\x72\x83\x1c\x10\xcd\xea\x47\xdb\x94\x0b\x44\x65\x77\x64\x9a\x35\x34\xf5\xa2\xec\x78\x10\xde\x51\x13\xa8\x82\x86\xed\xee\x76\x78\x1b\x1e\x2c\x8b\x0f\x45\x69\x78\x35\x3e\xd9\x6e\x9e\x91\xd7\x32\x3b\xc2\xd6\xc4\x66\x44\xb9\xa1\xde\xe1\xbc\x07\x50\x49\x75\x72\x4d\xac\x87\xee\xc7\x43\x09\xa8\x8b\xf0\xe3\x89\x5c\x9f\x9d\x2d\x17\x73\xd1\x27\x8d\x49\xd4\x05\xfd\x88\x71\x3f\xce\xae\x72\x08\x5d\x7f\xa5\x27\x5b\xad\x0c\x08\xb4\x9c\xe4\xf5\x0f\xf3\xf2\x3c\x9b\xa7\x3b\x04\xbc\xbb\x6b\xaf\x36\xf4\xfa\x85\x2a\x99\x1f\x04\xb8\xc5\xdd\xc1\x86\xee\xee\x54\xe1\x18\x13\xa8\x8b\xf3\xb2\xfc\xb0\x5c\x50\x74\x11\x59\x65\xac\xa3\xde\x93\x0f\xac\x6f\xf1\x22\x87\x85\x52\xab\x18\x3a\x2f\x01\x58\x8c\xe0\xad\xd7\x2c\x98\x5c\x51\x19\x49\x73\x34\x5a\x70\x03\xe7\x36\xf0\x41\xdc\x12\x13\xba\x77\xa0\xfc\x6c\x34\x57\x77\x77\x00\x62\x42\x63\xc5\xe1\xb0\x8a\x92\xf0\x7b\xd3\xac\x28\xca\xa6\x77\x2e\x30\x0e\x75\xa4\xa4\xb1\x23\x86\xe5\xb1\x99\x0a\xbd\x60\xaa\xb2\x0c\x4c\x01\xb8\x93\xa9\x93\x46\xce\x53\x92\xcf\x3e\x25\x73\xbc\x16\x4b\x68\xda\x02\x76\x77\xad\x69\x92\x6b\x32\xb5\xd6\xa4\x1c\x34\x47\x15\xb6\xd2\x6e\x9e\x64\x74\x4e\x5e\x96\xcd\xdd\x9d\x9a\x91\x15\xf4\x24\x75\x08\xc8\xf4\x7d\x08\x1d\x03\x20\x89\x76\xc0\x2f\x7e\x1d\x8c\x87\xf0\x43\xa1\x71\xbf\x85\xa1\x11\xf6\x17\xf3\xbc\x81\xae\x0f\xe7\xa2\x48\x21\x47\xdd\x06\x8c\xd7\x05\x59\xf7\x0e\x8d\xd9\xf1\xc0\x00\xcd\xca\x81\x52\x57\x2a\xf2\xc2\x80\x2c\xbd\xc2\xd8\xee\xae\xfc\x6b\xab\x08\x12\x92\xd8\xdb\x91\x5a\x93\x65\xc9\x96\xcc\xa5\x68\x78\x7c\x18\x68\xc6\x0b\x4e\x63\xa2\x2d\x99\xbe\x58\x01\xa2\x6c\xc5\xd0\x50\x28\x1b\xcb\xa3\x2d\x67\x2e\xec\x0e\xa4\xf6\x67\x97\xee\xee\xa5\x13\x84\x46\x6d\x1c\x76\x94\x6c\x3e\x97\xce\xd4\x5a\x90\x8a\x56\x53\xf5\x63\x13\x3f\x13\x50\x8d\xbe\x5f\x70\xfc\xa0\x4e\xc5\x36\xca\x13\x7e\x34\x96\xaf\xca\x21\xfd\xea\x3a\x13\x1a\xf3\x0e\x43\xa5\x66\xa2\x9b\xed\x7a\xe4\xb2\x5d\x01\xce\xdc\x55\x8c\x08\x70\xea\xbc\xa4\xe1\xd0\xbb\x0a\x1a\x8e\x3d\xa0\xd2\xe8\xea\x57\x04\x14\x22\x3a\x58\xc3\x40\x98\x91\xcf\x66\x09\x3b\xb9\xc1\x87\x5a\xd9\x43\x2f\xfe\xda\x66\x55\xc8\x13\x53\x53\xce\x45\x95\x15\x0d\x8f\x4b\x4c\xea\x69\xc4\xce\xa9\xa7\x65\x2a\x37\xec\xe2\xe7\x2c\x7f\x1e\xb5\xcf\x41\xb9\x0d\x7e\x26\x5f\x97\xd7\x3f\x22\x1f\x92\x4c\x97\x55\x25\x0a\xdc\x72\x3e\x97\xd5\xdb\xa6\x9f\x54\xf5\x8e\xb5\xed\x01\xf7\x17\x44\xa9\xe1\x01\x3b\xb4\xfd\x30\xec\x02\x9e\x00\x50\x62\xc7\xea\xb4\xf5\xec\x9d\xa6\x1f\x03\x4e\xc2\x35\x0e\xd2\x6d\x39\x3e\xf4\xe5\x4d\xa5\xba\xd9\xbf\x5a\x34\x3f\xba\x1c\x60\x38\xbd\x1f\x18\x33\x7a\x6d\x5e\xcf\xe5\x06\x58\xe3\x78\xc5\x67\x72\x0d\x0f\x6c\x81\xb9\xcc\xb0\xc2\x24\x07\x0a\x8a\x39\x39\xbb\x1e\x52\x95\x40\xd5\x6f\xde\x94\x35\x3d\x1e\x6a\xef\xee\x24\xe5\xeb\x5d\xe3\x79\x7d\xa2\x9f\xc7\x35\x8b\x1c\x7a\x6a\xd7\x54\x03\x0e\xbf\x38\xe9\x04\x15\x34\x48\x4b\xd1\xd7\x8c\xc0\x8c\xf5\x8f\x64\xdd\xe5\xec\xb3\x7a\x7b\xee\x5d\x6e\x2d\xf5\x36\xdc\x7b\xad\x59\xe3\x9a\x73\xef\xb5\xcb\x31\x7a\xfb\x11\xbd\x03\x58\x7b\x0e\xe3\x72\x91\x9b\xcd\xea\xe6\x39\x5b\xdc\x7b\x07\x8c\x1d\x4e\x53\xb5\x67\x3d\x56\x96\x29\xac\xfc\x7e\xc2\xf8\xe1\x07\x6a\xa6\x0c\xe3\x1c\x2b\xff\xa0\x3b\x29\x5e\xa3\x23\xc3\xa0\x39\xbc\x2e\xbf\x06\xeb\x87\x45\xce\x69\x77\x44\x30\xd7\x81\x2e\x6a\xd1\xe8\x20\xe6\x7f\x2f\x97\xbd\x45\x56\xd7\x62\xd6\xcb\x0a\x64\xbf\xc1\xcf\x42\x84\xcd\xc8\x56\x71\xaf\xd6\x88\x22\xa9\x1b\x3a\xdf\x0a\x35\xf4\x4d\xb0\x21\xdc\x39\xc0\x36\x40\xb2\xfc\xd1\x37\x7b\xf2\xff\xde\x37\x51\x6f\x5a\x2e\xe7\xb3\x1e\x5d\x00\x2e\xca\x65\x31\xeb\x95\x55\xef\x26\xab\xe5\x9d\x17\x59\xce\xc1\x37\xc6\x7f\x4c\xcd\xb8\x44\xbe\x25\xe8\xb9\x6e\xaa\xdb\x53\xc3\xd5\xaa\xa9\xe6\x7b\xb0\x4f\x06\x20\xc4\xe6\x7c\x1b\x56\x92\xe2\x3f\x8b\xa3\x23\x52\xec\xe0\xe3\xaa\x65\x31\x99\x97\xa5\x17\xae\x7c\x4b\x99\x54\x30\xee\x9e\xcf\xbc\xfd\xda\xd1\xca\xb7\xe2\xb7\xfc\x68\x68\x87\x56\x34\xb4\x6d\xa2\xc8\x05\xc5\x8e\x2e\xc7\x14\x14\x43\x82\x14\xd8\x17\x3f\xba\x65\x03\xe2\x48\xf3\x0c\x52\x7c\x2f\x6b\x56\xbb\x71\xbc\xaa\x96\xc5\x80\x3e\xde\x2d\x8b\x97\x65\xb9\x50\xfb\x3d\x7b\x3b\x29\x4e\x8a\x99\x2a\x92\x14\xe2\x53\xb8\x9c\xcc\x00\x16\xe4\xfb\x6c\xfa\xe1\x7c\x59\x15\x60\x39\x09\x9e\x87\x5e\x95\xb3\xe5\x5c\xf4\xa3\x73\x9d\x13\xc5\x03\x03\x86\x78\x31\xa5\xc0\xf9\xb4\xfe\xec\x8f\xa2\xfa\xb6\x98\x46\x49\x94\x41\x7f\x24\x79\xd0\xb2\x89\xc6\xc9\x4a\xe6\x1d\xd1\xcb\xc9\x51\x08\x6f\x49\x76\xd1\x88\xea\xc8\x47\x4b\xab\xae\x69\xff\xbd\x14\x4b\x71\x64\xaa\x27\x2c\x1d\xd1\xff\x04\x10\x70\x04\x7f\xe5\x6f\xb9\x05\x9c\xc1\xb5\xfd\x08\xa8\x46\xa5\xa1\xb7\xa2\xa3\xa8\x2c\xf0\x56\xd1\xc6\xc8\x33\x5a\xb1\xcc\xd0\x48\x07\x7c\xc5\xcb\x34\xfc\xd5\x75\x51\xab\x96\xcc\x2f\x66\xb5\x64\x5e\x31\xd1\x67\x8d\xc1\x59\x62\x7e\x0e\xaa\x65\xc1\x1d\xd9\xc8\xa9\x7a\x5f\xe6\xcc\x17\xa3\x63\x53\x0b\xbb\xa0\x37\x9f\x4e\x53\x38\x52\xa7\x6a\xed\x04\x33\xec\x8b\x0d\x22\x87\x2d\x8b\xfa\x2a\xbf\x68\xfa\x1a\xbd\xe4\x45\xb4\x2f\xeb\x92\xcd\xd6\xd3\x2b\x21\xc9\x03\xe3\x8e\xb5\x43\x99\x76\x9e\x17\xb3\xce\xfe\x6e\x68\xd5\x57\x10\xb6\x06\xa2\x9a\x95\x28\x81\x26\x55\x0c\x9b\x60\x6d\x71\xdc\x52\x8f\x0c\x79\x9a\x9f\xc3\xd0\x32\x00\xb3\xae\x65\x31\xf8\xa7\xa4\xaa\x9a\x41\x63\x8a\xdc\xd0\x6b\xac\x52\x12\x17\x37\x02\x62\xa0\x90\xd7\x27\x6c\x08\x8e\x0c\x0b\x4c\x14\x33\x05\xa4\xd0\x68\x20\xa1\x39\xd7\x80\x7a\x7a\x25\xa6\x1f\x9e\x2c\x9b\xf2\x9d\x24\xa7\xe1\x3a\x3a\xe2\x13\xa3\x3d\x81\xca\xa6\xae\xb2\xfa\x94\xf2\x66\x67\xf9\xb5\xa8\xea\x40\x2c\x5d\x56\xd1\x55\x56\x23\x98\xea\xeb\x34\x2b\xa6\x62\xee\x17\x65\x65\x38\x88\x1e\xe2\x6d\x31\xe5\xe0\x10\xc5\xc2\x94\xc0\x79\x78\x4e\x9a\xcb\x76\x6d\x76\x1e\xcd\x0d\x54\x68\x9e\x53\xa1\x8d\x79\xd6\x88\xaa\x93\xf4\xb6\x58\x7d\x50\x81\x87\xb2\xb2\x98\x8a\xce\x5a\x9d\x39\xf9\xcc\x55\xb5\x45\xdf\xd4\x8c\xbe\x29\xa6\xd6\x72\xe3\xe9\xf7\xa3\x9f\xcf\x68\xd4\xc2\x8b\x3c\x34\x5c\xf3\xbf\x4d\x63\x07\x4b\xe9\x83\xad\xda\xd6\x93\x51\x5b\x94\xc7\x66\x42\x12\x58\x88\x66\x11\x90\xf2\xb1\xec\x4c\x9c\x97\x4b\x0b\x43\x5b\x11\x84\x2a\xe6\x8d\x5d\xb2\x96\x4d\x33\xbf\x6f\x7d\xaa\x98\x55\x1f\x53\x05\xe0\xf3\xd3\xb9\xb7\xb7\x70\x2c\x4c\xb2\xd9\x0c\x0e\x3f\xd3\x85\x42\xf2\x9b\x70\x62\x42\x61\x2b\x4e\x90\xd9\xd5\x12\xb0\xc5\x50\x02\x65\x9d\x0c\x12\xdb\xa9\xe8\x2c\x85\xf5\xee\x1d\x24\xfb\x58\x41\xdb\x65\xe0\x5c\x8b\x66\xd2\x6d\x66\xb5\xa5\xa1\xd4\x17\xa8\x0e\xaf\xe3\x14\xbd\xf7\x5c\x57\xcd\xd7\x05\x08\x9a\x09\x1d\x92\x99\xd0\xa6\x10\xdc\xf2\x5a\x67\xf4\x3a\x20\xca\xfd\x55\x56\x5f\x81\xce\x8a\xad\xf3\xc1\xa8\xc8\xb5\x55\xc6\x12\xf8\x84\x72\xd5\x11\xbe\x4c\x5e\x1a\xa0\x7a\x88\x2c\x26\x01\xd1\x86\x19\x27\x49\xdf\x2c\xe6\x17\x5d\x73\x46\xcc\xfe\x66\xc1\x6e\xd8\xfa\x4d\xdf\x0b\xfe\x2d\xde\xaa\x83\x96\x64\x87\xae\x25\x59\x20\xda\xf3\xa1\x1d\xed\x79\x9b\x98\xd1\x3f\xfc\xf8\xfc\x78\xf2\xf6\xdd\xc9\xb3\xe7\x7f\x4b\x11\x25\xd8\xd1\x72\x32\xdb\xde\x58\xcc\x09\x91\x0b\x69\x68\xee\xfa\x34\x9b\x5e\x49\xfe\x13\xc9\x10\x44\x90\x98\x44\xd6\x5a\xcb\x65\x3e\x4b\xf7\x3f\x4b\x6c\x0a\x3d\x7f\x71\xf2\xf7\x54\xc5\x47\x88\xf6\x7a\x7b\xe0\x1e\x54\x75\x01\x20\x8e\x4f\x4e\x9f\xa6\x2b\x6d\xb9\x83\x26\x0e\x96\x15\x04\x26\x79\x66\x10\x68\xde\x83\x9e\xda\xd9\x9b\x4b\x21\xaa\xac\x11\x3f\x2c\x73\x8a\x1b\x52\x89\x8b\xfc\x93\x0a\xfa\x04\xbf\xf1\x5f\xca\x30\x4b\x9e\xdd\x9a\x14\xb3\xf6\xe4\xa8\xf7\xf6\x86\xf8\x6c\xae\xb4\x6f\x46\x6a\x40\x63\xfd\x90\x6e\xa7\x56\xa2\x41\xb1\x80\x1e\x17\x8a\x95\x64\xc6\xd0\x9d\x2f\xe8\x9c\x2a\x9b\xe8\x12\xb6\x9f\x58\xfb\x1d\xc6\x8c\x2c\xe5\x1f\x6c\xf0\x4c\xc5\x74\xa5\xdf\xfc\x8d\x18\x55\x39\x90\x35\x29\xd1\xd0\x56\x0d\x50\x10\xf0\x11\x29\xb4\xa0\xe9\xc2\xed\x82\x5b\x54\x0f\xeb\x9b\xbc\x99\x5e\x81\xd4\x35\x5e\x4d\xb3\x5a\x28\x03\xea\x23\x70\xcf\x6c\xa8\x6b\x54\x9e\xbf\x1f\xeb\xa0\xc5\xa1\xcc\x34\x2a\x96\xd1\x9e\xac\xd4\x8c\x7d\x08\x55\x92\x50\x1c\xaa\x64\xd4\xe9\x57\xe9\x66\xa6\x51\xdd\x44\x6a\x1e\xdd\x5a\xcf\x31\x8e\x2f\x54\x4b\xcf\xed\x8f\xa3\x3e\x08\x41\xa2\xa3\xa8\x8f\x5a\xdb\xd1\x90\x16\xfd\x91\x3b\xfd\x31\x33\xfb\xd6\x89\x06\x91\x68\xe9\xad\x51\x49\x9f\x0c\xd3\x10\xf7\x52\xe7\xe3\x57\x04\x31\xa5\x69\x81\xdb\xf4\xf7\x2b\xd1\x1d\x57\x2b\xb0\xe8\x8e\xcc\x5a\xb8\x19\x0b\x3c\x1f\x38\x0b\x17\x6c\x95\xee\xbb\x6e\xad\x27\x28\x1d\x47\x45\xee\xf9\x93\x09\x92\x5f\x5e\xdb\xe6\x5f\xc6\x38\x7c\x0b\x03\x72\x16\x37\x42\x87\xd8\x06\x1d\x1d\x15\x64\x05\xbd\xaa\x68\xfb\x05\x95\x30\x55\x5b\xa0\xf9\x92\x15\xe8\x94\xba\x5c\x56\x53\x10\x8a\xb7\x32\x9d\x87\x99\x80\x9a\x31\xaa\xc4\x4c\x2c\xe8\x97\x6a\x00\xbf\x8c\x53\x1e\xf8\x84\xea\xd9\x4f\x59\x23\x7e\x62\x33\x7e\xb8\x0a\x15\x3e\x8b\x0a\x81\xf6\x1a\xfb\xad\x94\x75\x8f\x8c\xa8\x9b\x7e\x43\x3f\x09\xf5\xf0\x44\xd1\x81\xdb\x78\x65\x0f\x6b\x30\x99\x2c\x2a\xe0\xa7\xde\xce\xb3\xbc\x40\x92\x9e\x4c\x50\xf3\xdc\x01\x6d\xca\xff\x75\xca\x8d\x7f\x25\x3b\x09\x27\xeb\xab\xb7\x67\x7f\x9f\xc8\xc9\x46\xdf\xed\x72\x42\x80\x9a\xc3\xaf\x02\x06\x7c\xa0\x03\xe1\xf0\x90\x8e\x38\x9d\xda\xe2\xd3\x38\x86\xb7\x9e\xb7\x64\xdd\x0a\x24\xa5\x68\xde\xb1\xa1\xf4\xbb\x3b\xd3\x8c\x09\xab\x2e\x7f\x74\xa3\x26\xb8\xa0\x54\x83\x89\x5e\x19\xc0\x15\x99\x91\xaa\x57\x21\x7f\xa0\x95\x68\xd8\x08\xad\xde\xc3\x02\x96\xf9\x40\x54\x03\x16\x54\xc7\xf6\xbb\x21\x41\x90\x56\x76\xc8\x42\xe6\x2b\x0e\xc1\x0a\x11\x6f\x7a\x63\xa5\x63\x12\xe6\xea\xc5\x64\x01\x68\x3b\x29\x80\xd1\xeb\x4b\x7f\xa8\xe5\x65\x86\x02\x2f\x9e\x9b\x30\x66\xb5\xa1\x82\x8d\x7a\x38\x0c\x06\xb6\xbf\x14\x8d\x9a\x19\x1d\xa8\x1b\xa9\x68\xa2\xed\xb2\x21\xd3\x0e\x61\x03\x99\x23\x55\x60\xec\xea\x5b\xc0\x38\xe8\xff\x90\xf3\xe9\x5e\x5b\x4a\x2c\x1f\x68\x11\x15\x50\x9c\x96\x28\xd2\x6c\xa7\xb2\x07\xb5\x91\xd6\x6e\xe3\xb2\x1a\xfd\xea\x0a\x42\x7f\x7b\xd1\x38\x8d\xeb\x4c\xfb\x81\x61\xe8\x47\x6d\x0b\xc5\x82\xd2\xef\x46\xa3\x5c\x45\x70\xc2\x71\x58\x56\x73\x2c\x68\xb2\xe9\x8b\xa7\x55\x13\x2a\x9e\xae\xd4\x21\x81\x54\x32\x99\x1c\xc9\x5d\x58\x2f\x05\x0c\xee\xeb\xc2\xf0\x65\x71\xdf\x06\x35\x89\x51\x34\xa6\x70\x0b\x70\x16\x20\x26\x3f\xae\x57\xca\x51\xd3\x91\xaa\x1f\x66\xa6\x20\x3c\xf8\x85\x0e\x90\xfe\x0c\x42\x14\x1b\x22\x92\x69\x3f\x55\xd9\x62\xa1\x1d\x87\x57\xa2\x91\xa0\xe8\x66\x6d\x32\x29\xc4\xa7\x06\x02\xe8\x0e\xdd\x04\x13\x11\x0c\xd6\x34\x73\x6a\x0e\xcd\x31\x21\x4a\xa8\x24\x8f\x9b\xc1\x7b\x31\xb8\x81\xff\x33\x13\x22\x5b\x36\xb0\x0e\x42\xe3\x2d\xab\xf2\xe6\x76\x32\x81\x12\x8a\x8e\xac\x82\x01\x27\xf1\x1d\xce\xe3\xd7\x97\xd3\xbe\xba\xd7\x7a\xf2\x0e\xd7\xa1\xe3\xb9\xd9\x85\x75\xb2\xf1\xca\x69\x0a\x5b\x73\x2d\x47\x0f\xf1\xef\xcd\xdd\x12\xd8\x3d\xe6\xbf\xbe\xc6\x28\xe8\x26\x74\x05\xbc\x86\xbc\x05\xef\x96\xb7\x0b\xee\x05\xc9\x14\x4f\xd3\x34\xd2\x54\x1b\xc5\x2b\x53\x86\x38\xc8\x07\xd5\xb2\x68\xf2\x6b\xf1\x10\xb9\x06\xba\x3e\x9b\xe7\xe6\xc9\x64\x5e\x66\x33\x51\x0d\x2a\x71\x99\xd7\x4d\x75\x3b\x32\x55\x8c\xe9\xcd\x19\x5b\xf2\xe0\xe1\xc9\xa6\x6f\xc0\x63\x76\x39\x6e\x95\x62\x0a\x44\x5f\x97\x3b\xd2\xf3\xa2\x11\xd5\xc7\x6c\xee\x47\x9e\x81\xea\x07\x34\xfc\xdd\x5d\xeb\x13\xb0\x61\xc7\xbc\x51\x5d\x27\x70\xf3\x7b\x60\x82\xd4\x38\x45\xf4\x85\xe5\xcd\x85\x3e\x7e\x23\xc4\x04\xa9\x61\x78\x4d\xc8\x5e\x23\x31\xee\xac\xd3\xf4\xb5\xcb\x59\x23\x33\xbb\xae\x0e\x70\x6f\xdf\xc6\xe4\xc1\x0d\xe8\x09\xe9\xf5\x8d\x74\xfc\x01\x8e\x89\xc7\xe5\xf9\xfb\x23\xb8\xd5\xd8\x1b\x89\x6a\x21\xd5\xbf\x98\xa4\x2f\x2b\x9e\x17\x1f\xcb\x0f\xa8\x98\xe0\x07\xdc\xd8\xd9\xe9\x83\xea\x8a\xb9\xd0\x8d\x0c\x90\xbc\x68\x44\x8e\x13\x7c\xf5\xb4\x1c\xac\x15\x85\xa8\xa0\xc9\xd1\xd5\xae\x91\x5e\x56\x97\xf5\x63\xd8\x80\x4e\x9b\x2a\x58\xcf\x51\x47\xae\x63\x2e\xa2\x3b\x93\xea\x5f\x28\xd8\x10\x62\x56\x93\xf5\xd2\xb3\xfc\x93\x2b\x40\x9e\x96\xcb\xa2\x49\xf7\x87\x4d\x75\x0b\x8e\xd5\xda\x0b\x04\x5d\x41\xc6\xde\xde\x90\x3d\xea\xa3\xe2\x80\x53\xe1\x99\xa8\x9b\x28\x6e\x7d\xf7\x69\x50\xc1\x4e\x9a\x1e\xb4\x24\xa7\x67\x26\xfd\xf9\x45\xdf\xa9\x06\xdc\xba\x29\x67\x00\x46\xe4\x5c\xdd\xca\xc3\x29\x81\x4e\xe5\xff\x12\x95\x31\xd5\xc2\x0d\xbf\x5e\xce\x1b\xcc\x7d\xc7\x7e\x43\x4f\x87\x4e\x28\xdf\xbb\x3b\x88\xe0\x26\x07\x89\xe5\x52\xaa\x1d\x45\xaf\xc6\x84\x8b\x10\x20\x01\x59\xcd\xa9\xee\x83\x03\xaf\x07\x6e\x9a\x4e\x05\xac\x7d\x93\xa0\x94\x30\x4c\x8a\x5e\x27\xac\x05\xb6\x04\x1e\x63\x17\x8f\x58\x36\xa9\xd1\x7c\x15\x34\x7d\x29\x6e\xb6\xc1\xcb\x67\x0c\x90\xa8\xe4\xa9\xc4\xe8\x06\x52\xe1\x30\x3e\x22\x60\x4e\x7e\x75\xca\x21\x4a\xc0\x09\x27\x48\xdd\x13\x0b\x36\x41\xa0\xff\x01\xb4\xf6\xd5\xf1\xfc\xeb\x23\xf7\x17\x24\xd6\xb3\xbf\xbf\x3d\x99\xbc\x7a\xf2\x56\xc9\x87\x9b\x34\xfa\x1e\xa5\x69\xbd\xd7\x20\xd5\xeb\x61\xdc\xaa\xde\x33\x1d\x4d\x4a\x1e\x4c\x20\xf3\xed\xbd\x13\x97\x27\x9f\x16\xe4\x0a\x31\x52\x1a\xfc\xbd\x08\xbc\xfe\x9a\x38\x65\x4d\x62\x3d\x38\xc5\x2b\xd5\xe8\x28\x1a\x91\x1a\x55\xb4\x57\x80\x91\xe3\x38\x1a\xa7\xf2\xd7\xa0\x29\x5f\x96\x37\xa2\x7a\x9a\xd5\xa2\x1f\x93\x6e\x85\x8e\xa1\x45\xbe\x17\xb9\x8c\x02\x73\x0c\x5b\x86\x20\xe6\xfc\x24\xbe\x21\x6f\xc4\xb5\x61\xb5\x0d\xd7\xe3\xb2\x65\x58\x7c\x7b\xbe\xac\xbe\xad\x1b\x71\xfd\x90\xd8\x8a\xfb\x31\x66\xd4\xd6\x3d\x39\x33\xc9\xf6\xcb\xd1\x68\x16\x84\x3e\xcc\x94\x23\x4a\x70\xc8\x47\x1a\xe5\x0a\x55\x38\x35\x90\x39\xbe\xbb\x8b\x58\xcf\xd1\x2e\x8a\x07\xdf\x51\xc3\xc1\x9e\x12\xb7\xa6\x1d\x60\x02\xbb\x06\x15\x81\xe4\x36\x9a\xce\xb3\xba\x8e\xb8\x30\xc3\xf6\xf5\x89\xb3\xc0\x9d\x8e\xe1\xaa\x47\x81\x29\x28\xd3\x0c\x55\x61\xab\x59\xaf\x98\xc9\xc4\xc2\x2a\xcf\x94\x77\x8b\x48\xb2\x45\xd8\x59\xd6\x88\x28\x28\x48\xc8\x8b\x7a\xa1\x38\xd0\x95\x25\x29\x67\x8c\x67\x43\x4e\x46\x91\xff\xd4\xb1\xdc\x46\x20\xf6\x96\x74\xac\xc2\x19\xed\xf0\xb1\x1b\x41\xf3\x5e\x14\xc1\xfa\xfb\xa8\x02\xd7\x39\xbe\x1b\x18\x93\x19\x0e\xa6\x67\x47\x38\xff\x28\xfb\xa2\xa6\x36\x62\x4e\xaf\xa9\x17\x6f\x2e\xfa\x1f\x63\x67\x56\x3f\x9a\xaf\x7e\xdc\x5b\xf5\x06\x83\x41\xaf\x05\x94\xe8\x28\x7d\x7b\xd1\x51\x2f\xda\xfb\xa8\x1f\x31\xa2\x55\xb4\x27\xf3\xdf\x97\x79\xd1\x8f\x92\x5e\x14\xef\x45\x6d\x64\x47\xcf\x42\xec\xa5\xf4\x9f\x85\x13\xc1\x3b\x6a\x72\x9d\x90\x17\x8d\x79\x9a\xed\xee\x66\x5a\xe8\x70\xd1\xdf\xc9\xee\xee\x76\xcc\xd5\xe2\x9a\x76\x8f\xb8\xa5\xa7\x89\x39\xbe\x4b\xf4\x0e\x8e\x1c\x88\x24\x1b\xed\x8f\x63\x78\x0b\xe8\x1d\x06\x33\x93\x6c\x74\xa0\x20\x1e\x75\x43\x24\xd9\xe8\x50\x81\xfd\x6e\x03\x58\x92\x8d\x1e\x29\xd8\x6f\xb7\x81\x4d\xb2\xd1\xef\xc6\xb1\x7e\x85\xd0\x25\x14\x62\x32\x87\x1f\x66\x61\x8a\x1d\x2c\x4a\x56\xfa\x1e\x88\x6c\x46\xd7\xe3\x7e\x37\x16\x21\x3b\x84\x41\x9d\x11\xc4\x9e\x9d\x1b\xc4\x5c\x00\x24\x88\xb5\x2e\xb8\x30\xc6\x24\xf4\x7a\xa4\x9d\x36\x55\xaa\x7e\x58\xba\xae\xfa\x09\x53\xfd\xf0\x73\xe9\x69\x96\x3f\x26\x5a\x71\xbb\xf4\x4b\x89\xfe\x65\xe5\x33\xa9\x38\x13\x45\x7b\x35\xc8\x3e\x68\x8b\x1c\x57\x9a\x04\x92\x24\x2b\x15\x97\x30\xed\x41\x43\xe7\xd2\x64\x31\x38\x2e\xf3\x69\x2d\x4d\xbc\x83\xa6\xf4\xdf\xb6\x5b\x57\xf7\xbc\x54\xff\x72\xdb\x61\x4d\xd0\xcf\x0e\xdd\x00\x90\x0d\x4f\x3e\x88\xdb\xaf\xe0\x31\xf7\xdf\x42\x3f\x60\xbd\x1f\x5a\x9a\x1c\x37\x9f\x26\x6b\x7b\x4f\xb5\xdc\x7f\xec\x67\x3d\xd0\x6f\xad\x42\x60\x04\x94\x72\xa6\x5e\x88\x5b\xdf\x8b\xa3\x63\xb7\x4e\xce\xb4\x50\xbe\x40\xc7\xa0\x7f\xfc\x51\x30\x61\x59\xc1\xdd\x1d\xf7\x83\xca\x3c\x8a\xe9\x97\x03\xcb\xdd\x9a\xf1\x59\xb3\xf2\x92\xd2\x03\x90\xf4\x74\xd8\xdc\xdc\xe4\xf3\x39\x3c\x90\xd9\x26\x37\x5e\x72\x9f\x5b\xa2\xfb\xe6\xe5\x8e\x55\xca\xea\xda\xb3\x20\xe1\xd6\x1f\xe1\x57\xd8\xed\xdc\x7c\x6e\xb4\x76\x01\x7f\x90\x1b\x7c\xf1\x26\x5a\x1f\xb9\xcb\xc3\x2e\xf7\x07\x8a\x77\x21\x1f\xb1\x7d\x2f\xe9\xee\x6e\x3f\xde\x3b\xb0\xb7\x54\x45\x24\xa9\xfa\x61\xe8\x87\x02\xf4\x84\x29\xe8\xbe\xc4\xe0\xf7\x2f\x4d\x0f\x42\xf4\xb0\xbf\x8e\x1e\x66\xf9\xec\x47\xec\x95\xe7\x77\xd4\x49\xbf\x27\x45\xfc\xe2\x53\xce\x5d\x80\xde\xbf\x39\xfb\xdd\xde\x75\x2b\x8b\x6f\xf4\x1f\xb3\x39\x6c\xd9\x10\x42\xdf\xa3\xf0\xf6\x33\x88\xaa\x17\x9a\xb7\xef\x42\xb3\xf6\xe0\x81\x4d\x55\x86\x74\x52\xf3\x73\xed\x81\x02\x66\x3c\x5b\xb8\x18\xc5\xf7\xf3\x5f\x42\x19\xd0\x3b\x07\x0e\x36\x9c\x03\x07\xf6\x39\x00\x7e\x69\x20\x92\x81\x7b\x58\xe8\x1c\xff\x24\x70\xfc\x87\xa9\xb8\x5c\x1b\xd6\x18\xb8\xc3\x40\x5f\x5f\xb5\x79\x09\xe7\xa9\xf0\x96\xad\xdb\x85\xa7\x7b\xb4\xa5\x93\xe5\xad\xa7\x68\xa0\x93\x7e\xbc\x63\xbc\x35\x9a\x4a\xe0\xc1\xb7\x5c\xa0\x60\x3b\x78\x9d\xc2\x35\xc7\xac\x44\xe1\x2d\x84\x1f\x32\x6f\xd1\xda\xec\x57\x39\x64\xe8\xe2\xed\x25\xa5\x07\x43\x07\xbf\x31\xf8\x4e\xa2\xfc\xd8\xdf\x42\xb1\x58\xdf\x4b\xea\xdc\x42\x61\x98\xfa\x97\xb7\x89\x76\xa0\xe8\x4b\x76\x51\xec\xa2\xb7\x8b\x62\xf2\xbe\x3f\x60\x0c\x7d\x66\x8f\xd9\x5d\xe1\x50\xd8\x5d\xe1\x90\xd8\xb1\xc2\x61\xd8\xec\xf7\xba\x35\x0e\x61\x6d\xef\xb3\xc2\xc3\x5c\x67\xe7\xe6\xf1\xeb\x5b\x9a\xad\xdf\x32\xb6\x73\x44\xac\x6f\x2d\x2e\x94\xbe\xc5\x6c\xb7\xfd\x58\x1a\x87\x9e\x57\x63\xae\x81\xf8\x51\x07\xc6\x7d\xca\x14\x90\xbc\x5d\xcb\x07\x41\x35\xd8\xf9\xb2\xbe\x7a\x2b\x40\x30\x19\x08\xbb\x20\x4b\xfa\x20\x26\x8c\xb0\x3c\x12\x5c\x46\x59\xb3\x1e\x1f\x4d\x30\xe1\x10\x9c\xc9\x32\xf5\x79\x4e\x13\x7e\xc7\x57\x24\xaf\x31\x08\xc9\xf2\xd6\x6c\xce\x79\xfd\x02\x0f\xba\xbe\x15\x4e\x31\xec\x96\xc5\xd9\x1c\x31\xbe\xa1\x5e\xf6\xb0\x2d\x4e\xee\xbf\x2f\x82\x02\x98\xea\x85\x2a\x1f\xd3\x42\x55\x2c\x1a\x6b\x86\x6d\x69\x7a\xef\xe1\xd9\xfe\x0e\x86\xbb\x17\x1f\xf4\x4f\xb4\x6a\xb5\x77\xd0\x55\xd8\x2d\x01\xbd\xac\x77\xd9\xb7\x8f\xe3\xef\xf6\x6d\x29\x92\xae\x39\x35\x3f\x31\x36\x82\x45\x3b\x69\x80\x90\xdc\x8d\xf5\x17\x46\xaf\xc3\x03\x7b\x08\x76\xb7\xf7\x4e\x14\xab\x18\xd9\x2a\x26\x36\x0b\x9a\xa9\xc7\x11\xf6\xd7\x4c\x67\xf1\xb5\x76\x05\x0a\x47\xbe\xda\x1d\x88\x83\xdd\xdd\xdd\x09\x08\x13\x15\x50\x1c\xaf\x5c\x55\x6b\xe0\x8b\xb1\xba\xdd\x5d\xfc\xef\xb2\x02\x9a\x0d\xa0\x6c\xc3\x09\x38\x71\x36\x71\x64\xf4\x1f\x96\xd1\xeb\x37\xc7\x27\x93\xd3\xb3\x27\x4f\x5f\x80\xf4\xd3\xb8\x13\x06\x5b\x4f\x36\x56\xdf\xc5\x45\x51\xce\x04\xfc\xa9\xc1\xfd\x8e\xfc\x45\xe2\x7e\xf2\xa0\x80\x0a\xb5\x46\x65\x0c\xac\xf4\x24\x18\x7a\x47\x30\x28\x2a\x20\xea\x93\xe9\x0a\x0a\x3e\x21\x75\x78\x73\x95\xcf\x45\x9f\xe5\x21\x9d\x7c\xb7\x8f\x9e\x4e\x53\x5e\xaa\x5c\xf4\xe3\x21\x3a\x58\x95\x7f\x07\x13\xbb\x09\x72\xcd\x4b\xa2\x5d\x4a\x51\x79\x61\xf1\x6e\xa8\x4f\xe8\xb7\x37\x6e\xe1\xb9\x0c\xdb\x31\xee\xca\x0d\x16\xa8\x0b\xa5\x46\x89\xc9\x92\xc4\xec\x6e\xd9\x2c\x3b\xc1\x92\x0a\xa9\x10\xbc\xca\x8d\x15\x00\xd3\x93\xd2\x7f\xef\x2c\xaf\xca\x65\x63\x1d\xe2\x57\x59\x31\x9b\x8b\xf3\xac\xf2\xce\x70\x2e\x0b\xa2\x62\x0f\xc5\xa7\x86\x59\x9c\x07\x32\xa7\x65\xd1\x54\xe5\x7c\x2e\xaa\x60\xf6\xc7\x5c\xdc\x78\x19\x57\x62\xbe\x10\x55\xfd\xb0\xbe\xca\x2a\x31\xeb\xcc\x9e\xe7\xc5\x87\x49\x53\x7a\xf9\xf3\x72\x9a\x49\xd2\x7c\x98\x2d\xf2\xee\xcc\xa2\x2c\xc4\x44\x7d\x75\x83\x5d\x65\xf5\xd5\x36\x60\x79\xdd\x94\xd5\xed\x16\x90\xd9\xb2\x29\xbb\xc1\xe8\x59\xca\x60\x6d\x72\x51\xfa\x98\x23\xa8\x59\x3d\xef\xca\x92\x9f\x01\x94\xf3\xdc\x4e\xbc\x96\xcb\x66\xce\x9c\x3a\xb9\xd9\x15\x04\xdc\xec\xcc\x46\x8b\xc7\xdf\xca\x67\x93\xf9\xfe\x83\xf3\xfd\x47\xe7\xfb\x4f\xce\xf7\xc1\xbe\x9b\xe0\xf6\xf0\xc0\xed\xe2\x81\xdb\xc7\x03\xb7\x93\x07\x6e\x2f\x0f\xdc\x6e\x1e\xb8\xfd\x3c\x70\x3b\x7a\xf0\xa7\xed\x64\xa2\x7f\xd1\x0b\x77\x93\x74\xd4\x17\xa1\x1e\xfa\x40\x95\xa8\xcb\xf9\x47\x78\xc7\xac\xbd\x08\x5a\x3c\xd3\x86\xae\xb2\xeb\x35\xe0\x32\x57\x39\x4a\xa7\x98\x2b\x2f\xf3\xe2\xc3\x59\xf9\x17\xa0\x9e\xd4\x99\xc0\x41\x18\x8c\x82\x68\xac\x29\x37\x77\xa1\x65\xf1\xbf\xe6\xe2\xc6\x83\x54\x19\x06\x31\x2f\x69\x6d\xa6\x0e\xf5\xb8\x08\x7a\x5d\x16\x22\x08\xfb\x27\x1f\xf6\x2f\x59\x7d\x15\x84\x95\x54\xe7\x01\xe3\x5e\x12\x86\x0f\x4c\xe7\x93\x65\x53\x86\x81\x03\xd3\x6a\x76\x16\x2f\x52\x8a\x64\xc7\xad\x6c\xeb\x0e\xf2\xd4\xe4\x64\x53\xd9\x3f\xbf\x70\x27\x68\x47\x45\xdb\xd4\x00\x45\xdf\xc1\x6e\x76\x7c\xfa\x32\x75\x57\x9b\x3b\x3c\x84\x4c\xdd\x35\x18\x04\x4b\xdd\x85\xe9\x42\xe1\x46\x18\x20\x31\xb9\x68\x07\x3c\x17\xc3\xb4\x40\x82\x47\x65\x00\x6c\xf2\x68\xb9\xc8\x3d\x34\x54\x73\x80\xd0\x9e\xc0\xe6\x19\x02\xfe\xd3\x64\x32\xe0\xb9\x68\x9b\xbe\x16\x9c\xe7\x92\x33\x23\x4d\x3b\x16\xf9\x53\xa6\x45\x5c\xfc\x83\xf2\x2d\xca\xe6\x1f\x2a\xdf\x21\x66\xe7\x9b\xa0\xac\xb5\xc4\x3f\x8c\xbf\x25\x46\xb5\x36\x91\x2a\x57\xa9\x5d\x64\xda\x4d\x95\x5d\x25\x03\x45\x08\xd6\x10\xa2\xfe\x65\xe5\x50\x32\x4f\xc3\x24\x85\x6a\xb5\x0d\xe9\x6d\x07\x0b\xd8\x3b\x64\x6a\xef\x97\x2e\x88\xdc\x90\xad\x0d\xd8\xd9\xfe\x2d\x92\x48\x9f\x78\x13\xce\x20\x19\xc9\x32\x0a\x75\xa1\x50\x15\x46\xd1\x6b\x3f\x52\x1c\x00\xa7\xe2\x78\x63\x29\xc5\x18\x70\x0a\x8c\x87\xff\xb1\xa9\x98\xe2\x46\xf8\x72\xdb\xdc\x98\x3c\x00\x1e\x48\xde\x90\x9f\x04\xdb\x15\x3b\x2b\xa3\x24\x7c\xee\xc4\x5d\xe6\xe0\x50\x6d\x17\x6b\xed\xb1\xc1\x5f\xe2\x5b\xd3\xb5\x9e\x67\x59\xe6\x05\x61\x62\x8b\xe0\x94\xca\x93\xe9\x43\xed\xb0\xe5\xbf\x06\xa7\xf6\x35\xbc\x69\x7a\x52\xa9\xae\x28\x9f\x8f\x58\x94\x4f\xf3\x7a\xf3\xa3\x44\x8b\x2b\x2e\xf2\x9e\x8e\xb3\x45\xea\x14\x19\x5c\x93\xfd\x80\xd9\x0f\x5e\xe5\x9f\xf2\xc2\x73\x8a\xe9\xe4\x0f\x9d\xef\x41\x25\xca\x85\x28\xfa\xab\xa6\xca\x8a\x3a\x97\x88\x3e\x2b\x61\x75\x1f\x39\x2a\xd2\xdc\xf3\xf1\x55\x5e\x27\x11\x26\x44\x31\x29\x63\xa7\xf8\x3d\xf0\x2a\xba\xbb\x0b\xe4\xb0\x50\x9b\x57\xe5\x4c\x69\x62\xa0\xe3\x10\xe6\xa5\x22\xe1\x65\x8e\x7c\xaf\x17\x60\x98\xe2\xb5\x38\x60\xa6\x2c\xbc\xb2\x4a\x2c\xe6\xd9\x54\x7c\xd1\xf0\x78\x1d\x7a\x64\x94\xf8\x53\xde\x5c\x6d\x3b\x30\x56\xa4\x6b\x5c\xbc\xa9\x8e\x21\xb5\xb1\x51\x13\x7c\x76\xf2\xe4\xec\xc7\x77\x27\xa7\x83\xbc\x3e\x29\x24\xa1\xcc\xfa\xd1\x3f\x97\xa2\xba\x7d\xb0\x80\x4d\xfb\x41\x21\x6e\xa2\x38\x5e\x75\x51\x00\x3a\x35\x12\x85\xdc\x62\x8c\x93\x88\xa3\x11\x56\x82\x1b\x7f\x34\x4e\xd8\x17\xda\x8f\x4e\x48\x9b\x34\x2f\x2e\xff\x9b\xe5\xa1\x5d\xef\xc4\x80\x93\x0f\xad\xe3\x65\x95\x17\x97\xa7\x10\x28\xa8\xce\xcb\x02\x2d\x4f\x2d\x47\x73\x7c\x1f\x73\x7a\xbb\x76\x47\xeb\xf2\x33\xa7\xd3\xbb\x77\x93\xc0\x0e\x50\x2d\x8b\x4d\xeb\x9f\x1c\x36\x19\x7f\x25\x43\xcb\x47\x4a\x3f\xc2\x3b\xef\x99\x26\xd0\x9a\xf9\x24\x8b\xd7\x8e\x05\xa5\x10\x1d\x5e\x4c\xee\xb5\x09\x7b\xb2\x10\x59\x75\xfd\xd0\xfc\xfd\x2d\x9e\x34\xdc\x9d\xf3\x60\xcd\xce\x79\xc8\x76\x4e\x77\x52\x02\x41\x1e\x60\x35\x78\x2c\xef\xef\x26\x93\x81\xe1\x24\xe4\x2f\x4d\xf8\x79\x91\x5b\x11\x30\x6b\xbd\x07\x4c\xf0\x84\xaf\x31\x4c\x3e\x5a\xc1\x81\x5d\x57\x3f\x6e\x93\x69\x59\x14\x62\xda\x20\x93\x62\xca\x63\x11\xb4\x91\xcc\xc5\x0d\x3a\x8a\x84\x92\x0b\x94\x30\x1f\xe7\x35\x15\x95\x64\x10\xaf\xe8\x29\x7d\x0d\xcc\xc8\xd4\x09\x7e\x56\x11\xf4\x2a\xab\x4f\xfe\xb9\xcc\x3f\x66\x73\x51\x00\x93\xe4\x35\x1d\xaf\xe4\x3f\x25\x6f\xd3\xbe\x97\x5a\x73\x91\xa8\xd9\x86\xa7\x07\x1b\xcb\xa1\x35\x59\x5e\x00\xdb\xa9\xb2\x75\x5a\x14\x27\x48\xd6\xa9\x4e\xda\xdd\xd5\x3f\xc9\x37\xbc\x22\xfd\xa3\xeb\x2c\x2f\x64\x09\xe0\xcb\x04\x98\xec\x40\xa5\xb2\x67\x49\xc4\x93\x23\x0a\x52\x8a\xbd\x48\xdc\xc1\xa0\xef\x75\x59\xe7\xee\x2e\x2f\x16\xaf\x30\x75\x30\x21\x8c\x49\xee\xf2\xa3\x00\x84\x70\x38\xac\xa5\x6d\x13\x1f\x71\x6b\x26\x0f\x3c\x28\x52\x10\x64\xa0\x29\x1f\x5f\x83\x68\xcf\x14\xd3\x26\xc1\xbc\xd0\xee\x2e\xff\xb2\x4c\xb6\xd3\xf4\xa3\x93\xe4\x00\xcb\xf6\xa2\x46\x5c\x2f\xe6\x59\x23\xe0\xe9\xe7\x63\x20\x39\x54\x48\x4e\x89\xf8\xd4\x38\x65\x74\x6a\x9b\xcc\x34\x91\x75\xd3\x30\x9a\xc7\xae\xa5\xdf\x35\x99\xe9\xaa\x6d\xb7\xa4\x6b\x74\x1b\xa0\x1c\x9f\x29\x14\x5f\xe4\x45\x5e\x5f\xd9\xa5\x64\xd7\x83\x19\x47\xb6\xa3\x37\x68\x98\xbb\xe8\xa7\x60\x79\x9b\xa8\x1f\xb5\xed\x82\xc3\x59\x33\x96\xe1\x3a\x34\xc0\xdb\x81\x52\xce\x36\x83\x06\xc7\xaf\x61\xa4\x76\xac\x04\xf0\x8d\x00\xee\x95\xd6\xb1\xfd\x92\x06\x3a\x0f\x17\x57\x28\xfa\x25\xac\x7f\xc8\x33\x6b\xc7\x71\x43\x62\x5e\xe7\x1a\xb0\x56\x42\x1c\x10\xfb\x9b\x24\x79\x48\x86\x92\xd5\xf0\xb6\x94\xe2\xff\x8f\x14\x08\xff\xa2\xf7\x96\x6d\xfc\x4f\xb9\xa7\x70\xe0\xce\x02\x0e\x57\x16\x73\xf1\x74\x9e\x4f\x3f\x78\xb7\x12\x2b\xd7\xf4\x3b\x20\x2a\x0b\xc8\xc0\xd6\x89\x96\xff\xe0\x83\x1b\xe2\xf8\xc1\x19\xf6\x1f\x27\x93\x81\x95\x0b\xf0\x92\x72\x02\xa2\xaa\x3f\x4d\x26\x03\x93\xb5\x41\xc2\x2c\x27\x2a\x20\x62\x66\x22\x92\x35\xe0\xa4\x23\x70\x9a\x5d\x08\xb2\x55\x72\x65\x04\x26\x0b\xc5\x6b\x13\xf4\x18\x8b\xb6\xcf\xc6\xa2\x09\xdd\xc7\x1a\xb5\xff\xea\xb2\xee\x97\x0b\xd8\x61\x48\xe4\xf1\x5a\x87\xef\x25\x0b\x92\xfc\xa2\xcf\x73\xb4\x1d\x07\x4b\x6c\x95\xa2\x48\x9d\x52\x65\x03\xf5\x1f\x52\xc9\xb9\xf7\x41\x9c\xcc\xb2\x26\xf3\x60\x20\xca\xbd\xd1\xf1\x52\xbe\x54\x2d\x64\xa9\x5e\x0e\xe8\xb4\x4a\xd4\x37\xde\x64\x92\x15\x34\x74\x04\x7f\xa1\x95\x23\x88\x4d\x1f\x63\xdf\x2c\x59\xd3\x4a\xc9\x53\xc4\xec\x09\x1d\x13\xab\xb6\xb5\xd4\xd2\xbb\x65\x53\x64\x4b\x53\xa7\xa3\x28\x9b\xcb\xed\x06\x5c\x68\x46\x49\x24\xb7\xba\x28\x89\xa6\x4d\x35\x27\x2a\x7b\xfb\xe6\xf9\xeb\xb3\x93\x77\x93\x93\xbf\x9e\xbc\x3e\x9b\x80\xa5\xd4\xbb\x93\x1f\x4e\xfe\x96\x3e\xfc\xc7\x54\x12\xf9\xdd\x75\xb9\xac\xc5\x5d\x53\x2e\xa7\x57\x0f\x69\x85\x3c\x99\xcf\xcb\x1b\x41\x11\xbd\xf5\x06\x04\x2e\x75\x92\x0c\xf3\x5e\x88\xdb\x9a\xc7\x85\x60\xc9\xae\x61\x59\x7e\xd1\xef\xea\x04\xc6\x50\x82\x8a\x61\x8e\x8c\xe1\xb5\xb5\x10\x11\x82\x54\x0e\x78\x4b\x51\x04\xcf\xc5\x2c\xc9\xe8\xa3\x64\xc5\x6d\x14\x7f\x97\xee\xdb\xf6\xef\x40\x96\x08\x8e\x27\xbb\x65\xcc\x27\x71\x6a\x76\x5c\x50\xf9\xc8\x2f\xb0\xf5\x11\x58\x0c\xbd\x10\xb7\xd1\x78\x77\x37\xd4\xa0\x84\x26\x37\x92\xaa\x01\xb4\xb2\x37\x3e\x07\x29\xbd\x1d\xf2\xc9\xd4\x82\xb5\x27\xc6\x2d\x05\x34\x6f\x48\xfb\x4d\x05\x3a\x15\x7a\x89\xf0\x29\x30\x62\xec\xe7\xb3\x74\x6f\x0f\xaf\xdc\xcb\x65\x3e\x0b\x37\xa2\xa9\x6d\xa4\x0a\x8d\xd3\x95\x8e\x78\x78\xa4\xe8\xd9\xc4\x40\xc4\x7d\xa8\xd2\x3c\x0c\x6d\x5b\xef\x9c\xfa\x68\x8a\xc8\x97\x0f\x27\xa0\x00\xdd\xf8\xae\x0c\xd4\x32\x42\xbf\x4d\x14\xf4\x67\x47\xf9\x40\xc2\x0e\x3a\xb9\xfd\x98\x97\x3c\x5f\x9e\x9f\xcf\x45\x9d\x3a\x45\xea\xa6\x5c\xbc\xad\xca\x45\x76\x99\x21\x03\xd6\x32\x99\x8a\xde\x1d\x54\xe0\xaa\x2a\xbb\x16\x0d\x04\x99\xe4\xcb\x1a\x92\xd8\xbe\x64\x42\x74\x51\xc9\x78\x45\x15\x5a\x7b\xb6\x82\x01\xf7\xf5\x16\xbc\xfa\xa2\x56\x88\xae\xa9\x0e\x56\xca\x1a\x5f\xb9\x34\x5e\xbf\xe3\x95\xe9\x8d\x2d\x00\xef\x9b\x1e\xeb\x3d\x6a\xe4\x12\xd2\x58\xed\x53\xa3\xe8\xf9\x71\x34\xc6\x8d\x8a\x15\xe4\x3b\x62\x0b\xd1\xc5\xd8\x3a\x37\x0d\x5b\xcb\xfc\xee\x2e\x08\xc0\x2c\xf2\x58\x86\xdb\x21\x74\xc5\xc1\xf7\xf7\x75\xc0\xd5\xb2\xe8\x73\x57\xe2\x1e\x29\xe2\xbe\x84\x78\xac\x45\x31\x53\xf3\x03\x1f\x9e\xe4\x8b\xe3\x8c\x9f\x3e\xd6\xb4\x30\x1c\x8e\xd7\xd6\x10\xc7\x6d\x1b\xb7\xed\x50\xe1\x10\x2e\x38\x65\xd1\x8f\x20\x12\xf3\x5c\x64\xd5\x3b\x7a\x11\x60\x97\x02\xba\x69\x6f\xbb\x60\xd9\x86\x42\x49\xcc\xa7\x24\x7f\x32\xe8\xbb\x87\x29\xf5\x2a\xd5\x92\xba\x91\xfe\xa5\xa2\x5d\x1c\x8c\x13\x22\x9c\x3a\xa5\xf3\xdb\xf1\x5d\x9c\x1c\x24\x0f\x0e\x62\x62\x61\xea\x2b\xbd\x58\xe4\x47\x62\x84\xe5\x29\x27\xa3\xc1\x07\x71\x7b\x53\x56\xb3\x9a\x3d\x4f\xb1\x17\x38\xbe\x05\x81\x63\xd7\xb2\xb8\xbb\x8b\xe0\x7c\x8a\xd8\xba\x3c\x5a\x51\xd7\x8e\xe0\x6e\x44\x0d\xa8\x4d\x0b\x01\xeb\x23\xd5\xfd\x16\xae\xca\x47\x56\x37\xe0\x76\x4f\x7b\x05\xb6\x44\x1f\x89\xbd\xb9\x60\x9e\x9d\x46\xcb\xf6\x68\xe5\xb4\xdb\x26\xd6\xe2\x3c\xb2\x98\x8e\xd1\x3e\xf8\x27\x79\x7e\x1c\xb5\x43\xe5\xb5\x56\xed\x1a\x38\xf6\x01\x5b\xf1\x70\x91\x1b\xda\xe9\x7a\x6f\xd1\x25\xb5\xea\xb2\xc1\x65\xb0\x32\x93\xdd\x5a\xa7\xc4\x9a\xd3\x87\x51\x0c\xad\x05\xf0\x9f\x3b\xe0\xbb\xb7\x22\xbe\x42\xdc\x30\x5e\xb0\xff\x8d\x44\xf0\x03\xbc\xd7\xd0\xac\x46\xdf\xec\xa9\x46\xf7\xbe\x89\xbe\xb1\x83\x76\x58\x6f\xaf\xfc\x63\xe3\x0d\x51\x2b\x33\xfd\x42\xaf\x43\xd7\xa2\xba\x74\x6b\xf2\x6e\x8f\xaa\xcd\xeb\xc5\xb2\xe1\x8a\x57\xb6\xcd\xfc\x3c\xfb\xd7\x2d\x18\xbd\x77\x01\x90\xcf\xd0\x8e\x5c\xb2\xad\xfe\xff\xd8\xfb\xf7\xed\xb6\x91\x63\x51\x1c\xfe\x7f\x3f\x05\x85\x9c\x8f\x43\x6c\x41\xb4\x64\x4f\x92\x89\x38\xf0\x6c\x8f\x2f\x89\xbf\xf1\xed\xd8\x4e\x72\xf6\x61\x74\x14\x88\x00\x25\x8c\x49\x82\x06\x40\x4b\x0a\x85\x77\xff\xad\xae\xaa\xee\xae\xbe\x00\x24\x25\x39\x33\xd9\x2b\xcb\x6b\x59\x44\x77\x75\x77\xf5\xad\xba\xba\xba\x2e\x76\xae\x60\x53\xb6\xb9\xc6\x72\x81\xaa\xc0\xb4\x58\x64\x0b\xdf\xe5\x74\xe7\xfb\x6a\xb7\xe6\xd4\xff\x90\xdb\xec\x3f\x47\xbd\xe9\x17\x7b\xeb\x83\x55\xbe\xe9\xb6\x6c\x5f\xa8\x3d\xfa\x21\x72\x0b\x38\x9a\x4c\x32\x03\x05\x5b\x8b\x57\x45\x92\x3a\x2a\x45\x98\x8c\xf7\xfb\xb9\x7b\x09\x9e\xce\x6b\xdb\xeb\xc5\x26\xf5\x21\xb8\x16\x6d\x52\x1b\x6a\x17\x02\x88\xa9\x6e\x93\x02\x3c\x95\x5b\x68\xa3\xe6\x50\xa7\x92\x99\xe7\x69\xa0\xe5\x6a\x2f\x16\x91\x7d\xb7\x6f\x93\x47\xf8\x54\x77\x3a\xe4\x00\x7e\x55\xb3\x56\x45\xb6\x23\xaf\x26\x9b\x15\x0f\xc6\x0a\x91\xe3\x50\x99\x90\xb9\xf2\x7e\x3b\x7d\x4a\xc7\xf4\x93\xc9\x24\x5b\xd6\x59\xfa\xe3\x35\x0e\x18\x0b\x59\x41\x77\x0f\x79\x07\x79\xb9\x98\x16\x95\x94\x0a\x7c\x8e\x0f\x2d\x2f\x8f\x1c\xca\xf1\xf6\x28\x0a\x94\xd9\xe7\x7d\x0e\x34\xce\x4f\x86\x8b\x64\x9e\x55\xcc\xbb\x80\x9d\x4f\xdf\x71\x2c\xab\x0f\xcf\xca\x2c\xf9\xd4\xec\xfc\xba\x29\x11\x38\xd2\x76\x64\x9f\xd1\x2b\x0d\x7b\x9c\x8c\xb9\xf3\x91\xec\xaa\xce\x16\xe9\x60\xcd\x7c\xe2\x36\x21\xb3\x98\xc3\xed\xc5\x4a\x0f\x66\xa4\x29\x13\x09\x22\xb2\x7c\xc6\xc2\xae\xd2\xb0\x21\x65\x7e\xa7\x2f\x3a\xb2\x04\xbf\xe9\xb0\x87\x54\xda\x72\xe7\x59\xad\xeb\x0e\x9c\xfc\x20\x8c\xaa\xd5\x72\x39\xcb\xb3\x94\xba\xb1\x06\x66\xc7\x01\x0c\xd7\x40\x74\x06\x26\xb4\xdb\xa0\x72\x8e\xca\xd6\xa4\xac\xda\xc4\xc5\xcc\xd4\x2f\x40\x16\x14\x9e\x53\x94\xcb\x6f\x4d\x54\x70\x7c\x78\x42\xdc\xe3\x8b\x02\x37\x57\x2c\x1f\x6f\x18\x72\x2f\x8a\x72\xa0\x6a\x08\xa3\xcf\xcb\x2a\x36\x0b\x0d\x3f\x2f\x2b\x56\x4f\x36\x29\xce\x17\xf9\x3f\xb2\x52\x8c\x87\xb1\x56\xb3\x45\xfc\x79\xc9\x17\x69\xb6\x18\xed\xef\xe7\x38\x49\x9f\x97\x22\x13\x5d\x92\x42\xe0\x83\x2f\x79\x9a\xa5\x1f\xaf\x97\x59\xac\x7d\x24\xc3\xf8\x2e\x87\x32\x2c\x82\x39\xa2\x32\x2c\xa7\x99\x3a\x26\xf8\x93\x91\x51\xa7\x3b\xfa\xc8\xb8\x2a\x68\xba\x9d\xb4\x54\xa6\x98\xd1\xcf\xcb\xe1\xaa\x9c\xfd\x84\x66\x00\xdb\xe2\x83\x25\xb6\xc7\x48\xc2\xb7\xe2\x44\x00\x62\x7f\xf2\x3a\xe1\x4a\x68\x34\x82\x4c\x39\x8e\xb8\x0a\x09\x9c\x82\x04\xd4\x96\x6a\xaa\x6c\x30\x73\xb1\xf7\x90\xba\x67\x63\x74\x3a\x27\x9b\xdf\x3f\xc8\x21\xab\xd3\x82\x58\xae\x26\x12\x28\x36\xb0\xd2\xc0\x1f\x6e\x5b\x03\x21\x79\x84\xfd\xbc\x1c\xc2\x22\x1d\x56\x59\x99\x43\x61\x4d\x22\xd0\x2d\x6c\xa4\xc6\x49\xfc\x02\xb9\x1b\xde\x75\x55\x05\x15\xc5\x12\x9d\x0e\x5c\x4a\x42\x81\x49\xe3\x18\x00\xd3\x6c\xca\x1c\xf2\x78\xd6\x3e\x9b\x14\xd3\xd9\xac\x07\x56\x9b\x8e\x41\x0f\x9e\x94\xe7\xd5\x5f\xf3\xfa\xa2\x58\xc9\x2b\x98\x8f\xd8\xd1\x81\x20\x0b\x68\x92\x06\xcf\x8a\x2a\x3d\x08\x29\xda\x37\x7d\x8f\xd5\x2f\x7d\xf3\x1d\xb2\x95\xa7\x64\x54\x0a\xae\xd1\x6d\xe8\xb2\x28\x53\x0e\x47\x9d\xf5\xc6\x6b\xae\x9c\xd2\x45\xb8\x31\xb6\xe1\xc8\x69\x9a\x3b\x82\x7e\xaf\x48\x57\x7d\xa1\x24\xd2\xda\x99\x53\x8b\xf4\x7b\x1b\xa1\xb7\x3e\xde\x6f\x2b\xe8\x6e\x0c\x05\x72\x4b\x91\xd3\x64\xa2\xd4\xf9\x56\x27\xe7\x70\xf1\x0f\x92\x40\xc6\xed\xfd\xeb\x45\x86\xfa\x37\x51\x9d\xd7\x33\x72\x2a\x5f\x66\x33\xfc\x91\xc0\x43\xfa\xd3\x59\x52\x55\x18\xea\xee\x4b\x16\x44\xe2\x92\x95\x2f\xce\x29\x95\xbe\x82\x28\xcd\x2b\x38\x94\x29\x5d\x7e\x06\xd1\x69\x5e\x3d\xa3\x0f\x52\x09\x22\xb5\x26\xfa\x4a\xea\xba\xcc\xcf\x56\x75\xf6\xa3\xf4\x5f\x3f\x0e\x2e\xca\x6c\x1a\x44\x01\xe0\x14\x88\xc3\x67\x16\x9c\x44\xe0\x11\x4c\x74\x80\x01\x4a\xa4\x34\x1e\xba\xe5\x93\x48\xcb\x3a\xa4\x88\xc3\xd6\xf4\x60\x1a\x1d\x7e\x05\x2b\x38\x1a\x54\x3d\xec\xb9\x58\xa5\x05\xa4\x17\x22\x45\xb3\x70\xa5\x07\x18\xac\x3c\x07\x37\x38\x61\x13\x9d\xe2\x94\xa2\x16\x54\xea\x60\xb1\x28\xea\x7c\x7a\x6d\xc6\x1b\x1c\x38\xe7\x6e\x13\x89\x7b\xf4\x6a\x29\x16\xcf\x5b\x74\x57\x5c\x56\xb6\x2a\x9b\xc3\x7d\x40\x03\x8c\xf3\x00\x95\xd2\xec\x0a\x23\x81\xb7\x12\x52\x0e\x05\x2e\xc2\x81\x29\x30\x77\x85\x5d\x38\x8c\x28\xe4\x2a\xc0\xd3\xce\x44\xff\xe2\xb9\x45\x65\x05\x99\xe0\x4d\x84\xeb\xfb\x39\x1e\x0c\xb4\x37\x9c\x12\xa4\x66\x87\x92\x19\x39\x9e\x5b\x9f\x10\x7a\x96\xcb\x0c\x35\x4d\xc2\x46\xb0\x1f\x79\x7c\x88\xbc\x06\x30\x1d\x82\x2b\x56\xf1\x70\x81\xdd\xc8\xa7\xe0\x28\x21\x8e\x63\x34\xf3\x55\x64\xfd\x7e\x06\xa0\xf3\xf4\xba\xe7\x8e\x9b\x8b\x1a\xc9\x92\xcb\xd7\x02\xa8\x93\xdc\xc2\xba\xc2\x3d\x0d\x1d\xf9\xb7\x31\xac\xda\xcf\x9d\xe0\x81\x88\x89\x5d\x2b\x1f\xf2\xae\x35\x64\x68\x3a\xb3\x6b\x63\x7c\x3e\x9d\x28\x76\xe5\x1e\x59\x15\x51\xef\x2f\x35\x1f\x4d\xd3\x60\x08\x35\x94\x86\xef\x46\xfb\x08\xc2\xa1\x37\x03\xd4\x1d\x42\x9a\x2e\xa5\x0f\x03\xfb\xc2\x24\x8f\x23\x49\xfd\x07\x9f\x32\x15\xde\x80\xc5\x0a\x67\xee\xae\x31\x8a\x8a\xe0\x26\xd8\xa1\x11\xc8\x50\xc6\xdc\x77\xfe\x0f\x9a\x10\x1b\x07\x4f\x10\xe2\xa9\xd2\x84\x74\x78\x6d\x46\x0f\xb5\xc5\xf0\x2d\x43\xd7\x2a\xcf\x93\xd0\xf2\x51\xae\x58\x20\xae\x19\x67\x5e\x7b\x80\x71\xb1\x32\x91\x31\xd2\x02\x7f\x9b\xaf\x39\x0a\x23\xcf\xf5\x8b\x2a\xb0\xaf\x5e\xec\xec\xc6\x9d\xc5\x12\x6e\x6e\x34\x83\x74\x78\x12\xcd\x93\xab\x7c\xbe\x9a\x4b\x11\x40\xbc\x51\x26\x30\x60\x75\xd1\x1d\x6f\x28\xff\x28\xf6\x51\x5e\xd6\xe1\xa2\xc6\x0a\x60\xbc\x6e\xd9\x49\x69\xea\x6c\xe1\x10\x72\xf4\x39\xb2\xf2\x4d\x1c\xe6\x43\x5e\x0b\xe5\x37\xad\x50\x4c\x8d\xc6\xac\x0e\x19\x10\x57\xb5\x1b\x52\xa0\x7d\x2c\xa8\xe6\x4f\x0f\x28\x63\x6b\x82\xb0\x69\x42\xe5\x55\xc9\x39\x6e\xcd\xd9\xa3\x35\xb1\x79\x49\xbd\x42\x40\x8a\xa5\xe8\x5d\x0a\x1e\xb4\x38\x63\xe5\xe0\xc5\xd0\x20\xbd\x4a\x07\x8b\x81\xa7\x4e\x66\x52\x11\x0e\x37\xa8\x68\x36\x61\x44\xcc\xca\xb1\xa9\x8a\x20\x1f\x9b\x5d\x45\x01\xe7\x7d\x19\x19\x8d\x96\xc7\xe5\x4e\x51\x8e\x21\xd9\x3e\x10\x67\x78\x5d\x1c\xe0\x23\xcb\x81\x62\x11\xc5\xb8\xe9\x77\xe5\x27\x32\xd9\xa3\xb4\x0f\x77\x10\x0b\x4c\x6a\xeb\xeb\x72\x71\x1c\x9c\x56\xd9\x6c\x1a\xb4\xbe\x7c\xe3\x7d\xad\x2d\x53\xf6\x78\xeb\x47\x71\x83\xc6\x70\x22\x67\xd3\x99\x36\x62\x24\xad\xe3\xce\xcf\xb3\x72\x78\x99\x94\x8b\x41\xf0\xf1\x22\xaf\x7a\x64\x5b\xd4\xcb\x2b\x71\x22\x26\x8b\x5e\xbe\xc0\x65\xde\xa3\xc2\xbd\xaa\x4e\xea\xac\x77\x96\x4d\x92\x55\x95\xf5\x92\xba\x37\xcb\x92\xaa\xee\x15\x8b\xac\x57\x4c\x7b\x79\x5d\xf5\x34\x83\xd8\x5b\x96\x59\x95\x2d\xea\xd9\x75\xef\x22\xa9\x7a\x49\x4f\xb0\x2b\x0f\x14\xa5\x46\x1a\x1c\xf5\x8a\xb2\x57\x5f\x64\x4a\x72\x82\x84\xb1\xb7\x00\xc5\x46\x81\xc7\x97\x64\x96\xa7\x43\x1d\x67\xf6\x1e\x48\x28\x79\xd0\x97\xea\xf4\x23\x63\x9c\xe8\x62\x21\xc6\x49\x83\xc4\x8a\x7c\x29\x7b\x0b\x93\x98\xa8\xda\xe5\x43\xb4\x53\x94\xdb\x97\xb4\x96\x05\x0f\x30\xe5\x2c\x36\x89\xa6\xb4\xda\x33\x8a\x0d\xed\xd2\xed\x97\x6f\xd1\xb1\x30\x74\x22\xee\x7a\x0d\x0b\x18\x17\x90\x25\xe7\x59\xf9\xe7\x65\x9a\xd4\xd9\x9f\xcb\x19\x33\xa2\x89\x56\xe5\x4c\x5c\x22\x4c\x80\x63\xe6\xd1\x5c\x41\x8a\x4b\x18\x69\xff\xaa\x44\x45\x8f\x6f\x6e\x78\xea\xaa\x9c\xbd\x36\xc2\x1d\x8b\xf5\x2b\xca\x6b\x2d\xa1\xdf\x80\x1a\xf2\x61\xb8\x16\xc9\x31\xe4\xc9\xa3\x8f\xad\x88\x9f\x9d\x69\x97\x83\x85\x5b\xda\xd7\x26\xe8\x47\x40\x4f\x02\xa9\x0a\xfe\x73\x35\xc4\x94\x3f\xbf\x7f\x05\x78\x68\x2f\x54\x6d\x35\xa8\xb5\xa3\xab\xa0\x24\x5d\x07\x2b\x8b\xd6\x3d\x18\xaa\xac\xb1\xce\x6e\x2f\x69\x06\x11\x63\xfb\x8d\x4c\x2a\x0c\xb8\xda\x21\x91\x29\x6b\xf0\xc8\x18\x40\xb6\x90\x4f\xb9\x4a\x0a\x72\x81\x74\x02\xe3\xb8\xc3\xcb\xf4\x72\xc9\x2c\x4a\x91\x77\x70\x0e\x05\x7d\x66\x40\xc8\x8d\x9c\xbc\x42\xc8\x5d\x3c\x16\x13\x64\x54\x14\x05\x32\x54\xb0\x94\xd9\x06\x21\x8a\x2b\xd7\xb6\xc4\xa3\x4d\x75\xc6\x41\xbd\x5d\xf0\xe1\x9e\x8b\xa5\x98\x49\x4e\x3a\x36\x9f\xd0\xef\x25\xa8\x0a\x99\xb4\x25\xf3\x45\x8b\xf6\xd0\x10\x80\x5b\x24\x4c\x10\xc0\x94\x84\xdb\xb6\xf4\x1b\xce\x25\x0d\x60\xb8\xa3\x93\x5c\x55\xbc\x15\xdf\xc5\x2a\x19\x79\x64\xab\x12\x74\x2c\x7f\x30\xe9\x1b\x25\xc1\x3d\x54\xd5\xb2\x17\xc7\x66\x15\x4c\xf3\x9f\xf3\x78\x8c\x4b\x67\xc9\x01\xeb\x75\xd8\xb0\x11\xd8\x06\x0f\x67\x94\x62\x5d\x41\xa3\xe5\xf9\x47\x20\xcf\x37\x81\x5b\x44\xfb\xb0\x88\xec\xd1\xc7\x9b\x37\x66\x49\x7f\xf7\xa4\x4c\x25\x13\x0d\x7d\x4a\x9a\x9a\xdb\x3c\x41\x19\x28\x82\xfe\xac\x21\x99\xd4\x8b\x86\x9b\xd6\x85\x0d\xf3\x7d\xc8\x6b\xe8\x66\x51\x8d\x2a\xdc\x37\x1e\x14\xe5\x79\xe4\xa2\xed\xbb\x83\x1f\x40\x8a\x2f\xf1\x48\x53\x31\x54\x18\x70\x3c\x1d\x28\x0e\xc7\x27\x41\x08\xa7\xc9\xe6\x96\xff\x54\x66\x53\xfb\x2a\x46\x62\xcb\x20\xdc\x8b\xe3\x20\x31\x3d\x38\xde\x9e\x8f\x30\x64\xd4\xed\xdc\xb8\x40\x28\x08\x6f\xb1\x04\x5c\x11\xf6\x86\x43\xbe\xe1\xb2\xe8\x16\xc6\x81\xf3\x1b\x6d\xd7\x03\x86\xf8\x71\xf0\x9b\xa0\x09\x47\x72\x70\x55\x80\x0b\x37\x7a\x7c\x20\x61\x50\x7b\xea\x1e\xd8\x74\xd5\xa8\x34\xb2\xf3\xc9\x79\x89\x5b\x3f\x91\x1a\x5f\x64\x09\xaa\x56\x07\x37\x94\xa7\xa8\x1f\x5c\xbb\xce\xab\x34\x77\x70\x14\xea\x57\x46\x3f\xc8\xa1\x00\x8a\x1c\x9d\x3a\x45\x1d\xaa\xb1\x71\x7e\x1e\x1c\x9d\xb0\xe0\x0f\xff\x9b\x3f\x5d\x80\xce\x96\x2b\xef\xa2\xe2\xe0\xd1\xab\x01\x18\x29\xa5\xa0\xce\xc7\x46\xa2\x20\xa0\xb0\x20\x25\x36\xd3\x05\xf9\xe4\x17\xfd\xcf\xeb\x59\x26\x6b\x04\xf5\x73\x8a\x23\x05\x99\xd7\xcb\x2c\xb6\x94\xef\x19\x08\x1d\xaf\xa8\xed\x26\xc5\xad\xfc\x51\xce\x27\xea\x8d\x55\xab\x23\x8d\x8f\xbb\x64\x6c\xdd\x8b\xe1\x79\x56\x3f\xaf\x26\xc9\x32\x4b\x07\x86\x28\x56\xd4\x14\xa9\xb7\x33\xe4\x0b\x3a\x2b\x56\xa5\x9a\x06\x07\x8f\xf1\x4d\x5b\x29\x26\xe2\x1f\xad\x1b\x8a\xb2\x37\x10\xe0\xbb\x49\x37\x37\xca\x31\x83\x0a\xa3\xa9\x34\x41\x28\x10\x83\x68\x4b\x2e\x68\xdd\x95\x9d\x89\xc2\x26\x4f\x0f\xbc\x8c\xd6\x5b\xe5\xf2\x54\x82\x54\x6f\x51\x84\x30\x5b\x93\x14\x49\x5e\x69\x33\x18\x4a\xa3\xc8\x53\xf1\x24\xb1\x1a\xaa\x26\xe4\x9b\xce\xef\x67\xc2\x9a\x1e\x4a\x6d\xb1\x4a\xe7\xea\x87\xae\x7b\x11\xd3\x15\x9c\xd7\xe7\x52\x8b\x8f\x25\x5e\xd2\xf0\xb5\xc4\x3f\x36\xaa\x35\x4a\xef\x1d\xf7\xae\xd5\xb8\x51\x27\xd1\xd4\x13\x24\xc6\xfb\xd4\xd0\xfc\x63\x9a\x81\x08\x27\xda\x9b\x17\xe5\xf2\xa2\x15\xce\xd6\x20\xfc\x35\x28\x01\xfe\x62\xda\x76\x1e\xfd\xb7\x6f\x4d\xfd\xb7\xa7\x72\xe0\x1d\x13\x71\x8f\x66\xd7\xe9\x6b\x39\xfc\x8e\xda\x9d\xce\xea\x52\x2d\xfb\xbd\xab\x59\xc6\x1c\xdc\x18\xb8\xc8\x87\x5a\x5d\xb1\x61\xe5\xd9\xe2\x18\x47\xed\x5b\xee\x8c\x66\xa0\xe2\x09\x1b\xcf\xd6\x08\xf2\x01\xa2\xd3\xaa\x03\x02\xda\x57\x5d\x00\xc3\x0b\xf9\x01\xb2\x48\xf5\xf5\x62\x35\x9b\x49\xbb\x0c\x59\x7f\xbf\x2f\x7f\xc1\x35\xd4\xfa\x1c\xe6\x15\xbe\x3b\x3c\x4b\xc0\x9f\xa6\xbc\xe4\xca\x10\x12\xf2\x47\x1c\x80\x08\xb2\xd1\x66\xe7\x8e\x32\xb9\xbe\xa8\x8e\x78\x2f\x5c\x40\x72\xb9\xb9\xc7\xa1\x4c\x6b\xe9\x61\x5e\x7d\x2c\x96\x82\x20\x9b\x35\x39\x05\x4e\x97\x49\x49\x16\xe2\x41\xd8\xc8\xd1\x31\x78\x06\x6c\x32\x9f\x0e\x64\x2e\x9a\xdc\xcb\xa1\x8a\x03\x50\x8d\x0f\xf6\x65\x76\xa3\x86\x35\x96\x49\x3f\xd8\x57\x70\x72\x05\x35\xe0\x15\x85\xc7\x4e\xab\x50\xcb\xcd\x0d\x5b\x0a\xee\xa0\xc1\x35\x8d\x77\x4c\xfa\x2c\xc2\xaf\x70\x64\xd4\x4a\xf7\x39\x51\x97\xe4\x53\x82\x53\x34\xac\xe0\x63\xc3\xec\xde\xd5\x4c\x6e\x7b\xd4\x12\xed\xed\x3c\x69\x55\xe7\xf4\x51\xcb\xb7\x81\xe1\x01\x8d\x7f\x6c\x24\xfc\xd2\x47\xd4\x46\xc2\x8f\xf1\xc3\xee\xf5\x30\xb0\xf5\xcf\xb7\xf2\xad\xb9\xbb\xb5\xf3\xaf\x81\xf6\xdb\x0a\xe0\x77\x3e\x0b\x00\x08\xa3\x3c\x6e\x70\x10\x69\x9f\x1a\x8f\x3a\x4e\x8d\x6f\xd9\xa9\x31\x49\xe6\xd9\x2c\xff\x47\xe6\xd8\x29\xcb\x8c\x1d\xdc\x0e\xfe\xee\xae\x5e\x07\xfd\x15\x6c\x30\x65\xfe\xfd\x2e\xa6\xcc\xdf\x99\x87\x52\x8b\x2b\x01\xe6\x3a\x5a\xfb\x54\x83\x6b\x98\x7c\xc8\xc4\xeb\xa4\x79\xc6\x90\xcc\xd1\xb6\x77\xe2\xf7\x91\x77\xf4\x60\x10\x2b\xf9\xe4\x23\xed\x71\x84\x04\x6b\xcc\xc0\x09\x08\x42\xa4\xee\x14\x40\x23\xdf\x62\x93\x23\x7d\x62\x48\xa6\xf8\xe6\xc6\x40\x2e\x6c\x35\x8b\x62\x27\x8a\xed\xce\xc4\xff\x40\x06\x37\x28\x89\xf1\x43\x7d\x9c\x19\xed\x8d\x8c\x2f\xfd\xba\xad\x04\xd0\xba\xcf\xa1\xbc\xcc\x58\xf6\x8c\x96\x4a\x58\x35\xd6\xa6\x62\xd6\x80\xd3\x83\x85\x0e\x4d\xac\x36\xca\x20\xf8\xef\x62\xd5\x9b\xaf\xaa\xba\xb7\x4c\xaa\xaa\x97\xf4\xe4\xe9\x07\x7e\x27\xea\x82\x26\x35\x40\x61\x1d\x86\xcb\x24\x81\xf7\xe0\xc1\xdf\x1e\x3c\x38\x8f\x82\x61\x10\x8e\xc4\xd0\x7b\xc6\x85\x4e\x35\xb8\x92\xe3\x80\x7b\xf2\xe5\x4a\x0a\x2d\x27\x9f\xee\x21\xaa\xf3\x6e\x6e\x16\x92\x01\x61\x1e\x15\xd5\x69\xca\x64\xd3\xc1\xbe\x59\xe3\x88\x19\x71\x5a\x95\x86\xeb\x86\x84\x82\xd9\xa2\x7e\xba\x83\xe1\x9c\x9a\xae\xc7\x0f\x71\x71\x4f\x69\xbf\xb7\x1d\xd9\x2e\xce\xe1\xcd\x4d\x2b\x31\x18\xe8\x45\x6f\xf6\x45\x4e\x77\x38\x62\x66\x7e\xd4\xb6\xba\xe0\xcd\x8b\x34\x9b\x1d\x33\x09\xba\xd1\xb9\x63\x3b\x41\xca\x58\xec\xf4\x06\x27\x79\x58\x88\x73\xf3\x32\x9f\xcd\xc8\x5f\xca\xf3\x59\x36\x07\x2b\x26\x76\x41\x67\x9b\x47\xf9\x14\x6a\x68\x15\x32\x4c\x9d\xf5\xb0\xe5\xb0\xb4\x8e\x07\x1f\x07\x41\xb3\xb5\x77\xb2\xc1\xba\xa5\x5b\x9b\x07\xa4\x91\x0f\x4f\x85\xb6\x50\x66\x5b\x0e\xdd\x0d\x15\x35\xf9\x50\x72\x74\x73\x40\x19\xc7\xdc\x96\xfe\x91\x02\x1e\x0c\x26\x2b\x88\xcc\x8d\xee\xa9\x42\xee\x6c\x31\xac\x0e\xc7\x07\x7b\x40\x9e\x48\x28\x0f\xc3\xf7\x50\xb6\xb5\x63\xc5\xe6\xd2\xfe\x34\x59\x3c\x99\xe9\xce\x11\xaf\xc4\xe6\x0b\xcd\xa9\xd5\x9b\x43\xba\x63\xda\x93\xeb\xb5\xc3\x15\xd3\x42\xbb\x60\xda\x92\x59\xfc\x06\x49\x54\x2f\xf8\x06\xe3\xfa\x7e\x13\x7c\x33\x6a\x65\x18\x99\x84\x69\x13\x1b\x28\xcd\xe5\xb6\xf6\xad\x66\x7a\xb9\xd9\xda\xf2\xb0\xdd\xb7\xe5\x4e\xbe\x6f\x24\xeb\xf7\x4b\xb0\x76\xb7\xf5\xe0\x36\x4f\x96\x6e\xa8\x43\x72\x58\xe9\xb9\xa1\x3f\x72\x6f\xe8\x6d\x2e\x2d\xbf\xf5\xb8\xb4\xec\x32\xd7\xf2\xdc\xe9\xf5\xd0\x92\x2e\xeb\x16\xbe\xc1\xdb\x19\xaf\xdf\x39\x8c\x17\xe3\x9b\xf8\xb3\xa7\xf1\xd6\xa9\xef\x36\x2a\x50\x6d\xb2\xc4\x25\x6d\xa8\x87\xb7\x14\xd2\x6b\x00\x55\x6b\x31\x10\x04\xd7\x29\x35\x94\xff\xc7\xb9\xf9\x1e\x6b\x92\x21\x43\x6f\x94\x6d\x23\x2b\xfa\x46\xbb\x33\x60\x2f\x9c\xe3\x11\xd8\x1d\x96\x8e\x0e\x1a\xaf\xb2\xb1\x33\x63\xad\xe3\xe2\x79\x2c\x1f\xb5\x0c\x70\xaa\x07\x11\xcd\x7f\x69\x18\x51\x15\x34\xd7\xaa\xa0\x54\x7e\xb5\xb8\x2c\x93\xa5\x84\x55\x03\x1b\x1a\x23\x0b\x2f\x18\xdc\x7a\xcc\x2e\x45\xef\xaa\x4b\x0a\x1b\xc3\x15\xb4\x78\xb8\x9f\x26\x9f\x0e\x6c\x3f\x9d\x14\x24\x1b\xab\x0a\x6d\xbc\xce\x33\x99\x15\xd1\x69\x13\x42\x73\x3f\x88\xff\xf6\x83\x21\xa6\x1d\xcb\x3c\x03\x6b\x68\xb1\x69\xa7\x9c\x66\xf4\x8a\xfb\x94\x9b\xfe\x2a\x22\xb3\xde\x46\xd6\xd8\x72\x67\x5a\x23\x77\xc6\x3c\xe9\xf1\x05\x0d\x0a\x74\x82\xab\x42\xa7\xe2\x94\xd7\xef\xcb\xf5\x6a\xe6\x8f\xdc\x22\x28\x39\x42\xc7\x76\x46\x46\x35\x36\xbf\x65\xac\x24\x5f\x79\xe2\x20\x49\x76\xef\x01\xb0\xfc\xd4\x22\xe3\xf3\xd2\x80\x3b\x36\x82\xf1\x47\x66\x25\xa4\x23\x60\x63\xb8\x00\x37\x7f\x66\x6a\x63\x15\xad\x8e\xd7\x4d\xa4\x42\x91\x1c\x5f\xe6\x8b\xb4\xb8\x1c\xca\xef\x48\xac\xa8\x3f\x25\xd5\x85\x63\xf1\x50\x66\xd3\x98\xdc\x62\x4a\xe0\x9b\x1b\xf8\x96\x9f\xe1\x50\x00\xc1\xab\xdf\xcb\x45\x9a\x5d\xc5\x8e\x7e\x92\xf4\x1b\x81\xd9\xe8\x61\x88\x9e\x47\x03\x93\x7c\x82\xf6\xd2\xea\xac\xaa\x4b\x5d\x20\xdc\x6e\x03\x99\x91\x56\xee\xff\x09\x62\xa7\x78\x33\xdb\x47\x88\xd9\x32\xe4\x8c\x13\xc0\xe6\xd7\x20\x8f\xfa\xe5\xbc\x7c\xcf\xdb\x42\x77\x78\x3c\x00\x74\x45\xd8\xf0\x30\x31\xad\xd1\x3b\x3c\xfe\xf2\x5a\xa3\x82\x58\xce\xf2\x5a\x69\x5a\xb2\x98\x64\x33\x64\xae\x3e\x64\xf5\x6a\x29\x0d\xb9\x8a\xa2\xfe\xf3\xfb\x57\xc7\xc1\x83\x20\x3a\xc5\xad\x4a\x3b\xb6\x6b\x0b\xd3\xa2\x93\x19\xf4\x19\x9d\x5a\x03\x70\x6c\x7d\x47\xa7\xbc\xcb\xc7\xfc\x23\x3a\xe5\x3d\x3c\xe6\x1f\x40\x31\xde\x96\xf9\x79\xbe\xb0\x69\x86\xc4\x28\x36\xc9\x46\x54\x00\x74\x2c\xbf\x87\xf8\x8d\xef\xf3\xf0\x33\x5c\xdb\x20\xe0\x71\x6f\x52\xcc\xf6\x83\x07\x0f\x82\x7d\x95\x7c\x51\x54\xf5\x82\x44\x13\x1a\xb6\x28\x6b\x59\xc3\x7e\x1c\x1c\x33\x78\x91\xd5\x48\x3d\x10\x84\x68\xa0\x03\x1f\x56\x4b\x98\x17\x1a\x12\xbb\x27\xab\x2a\x2b\x9f\x9c\x67\x0b\x32\xb4\xa1\xa9\x18\x2e\x92\x2f\xf9\x79\x52\x17\xe5\x50\x01\x08\x4c\xd4\x87\x26\x7e\x4f\x16\x69\x59\xe4\x69\xef\x21\x28\xd9\x1c\x1c\xf5\xfb\x1e\xa0\xd7\xc5\x59\x3e\xcb\x7a\x1f\x92\x69\x52\xe6\x5d\x80\x4f\x2f\xca\x62\x9e\x05\xa1\x41\x42\x49\xf9\x17\x3f\xf6\xf6\xa4\x0b\x63\xec\x50\xbf\x1f\x2c\x57\xd5\xc5\x87\x3a\xa9\xb3\x20\x27\xef\xe7\x32\x33\xb4\xc6\x20\xa9\x2e\xd0\xbc\xc5\x1e\x06\xea\xb7\x31\x08\x51\x5a\x4c\xe0\x28\x7b\x0d\x01\x73\x69\x64\x64\xe2\x90\xe7\xd2\x89\x19\x14\x0b\x41\xec\x26\xd0\x84\x40\x86\x0a\xf5\xfb\x03\xa3\x2e\x66\xb9\x72\x73\xc3\x73\x1e\xff\x5e\x60\x4c\xb2\x34\xc1\xe4\x1e\x1b\xcc\xba\x34\xbc\x51\xb3\x2e\xa5\x6e\x98\xac\x96\xeb\x20\xdc\x07\x70\xec\xfd\x7b\xda\x6a\x6d\x9e\xe2\x31\x1b\x61\xcd\x36\xa5\x42\x5c\x7d\x01\x82\x3e\xab\x71\x99\x3e\x22\x9e\x14\xe4\x80\x93\x8b\xa4\x7c\x52\x0f\x0e\x41\xe3\xea\x41\x80\xe6\x6b\x50\x3a\x78\x10\xec\xcb\x8f\x86\x31\x8f\xf0\xad\x4f\x67\x83\xf0\x0d\x65\x32\xe4\x83\xaa\x42\x5b\x37\x34\x5e\x55\x96\x94\x93\x0b\xac\xf2\xc5\x6a\x36\xb3\xfb\x64\x94\xa2\x3e\x0f\xc2\x7d\xf5\x0d\xcd\xf0\x04\x81\xc0\x80\x06\x93\xb6\x91\x6f\x9c\x68\x20\x63\x55\x8e\x06\x7e\x80\xcc\x74\x6c\x35\x88\x4a\x44\x56\x23\xa8\x6c\x17\xdb\xb8\x48\x72\x89\xec\x85\x11\xd3\x93\x72\x48\x6b\x0d\xc6\x4a\x54\xfc\x2e\x29\xeb\x4a\x79\xb3\x22\x86\xe3\x30\x7a\x08\x81\x25\x7f\x23\x26\x46\x41\xc5\x1c\xe4\x28\x1c\x56\xcb\x59\x5e\x23\x57\xa3\xea\x8c\x15\xb4\x52\x12\xa2\x59\x27\xad\xd6\x83\x23\xa8\xf9\x81\x54\x82\x86\x42\xea\x97\xae\xbd\x81\x2b\x85\xce\x19\xe1\x37\x74\x5b\xa2\x8b\xed\xa0\xf4\x14\x17\xd0\x7e\x1c\xfc\x26\xd8\xd7\x79\x3f\x17\xf9\x02\x30\x24\x9d\x20\x5e\x09\xfe\x16\xb0\x7c\x95\xe9\x15\x76\x9b\xa9\xa3\xfc\xe8\x42\xcf\x3e\x9b\x39\x9d\x38\xa0\x69\x40\x35\x5a\x9d\x2e\xfb\x4f\xf5\xc8\xbe\x29\x39\x98\x80\x11\x1b\x06\x3d\x71\xaa\x24\x77\x37\xe9\xda\xc5\x76\x52\x5f\x8d\x1e\x24\x9d\x66\xf4\xbe\xf5\x6e\xa1\x45\xdf\xfa\x2e\x21\xd7\xd4\x9a\x13\x88\xd8\xca\x45\xbd\x63\xdd\x47\x5a\x76\xf5\x45\xe4\x9c\xf9\x68\xda\x12\xb5\xde\x47\x8c\x33\x58\xda\xa8\x99\x83\x2c\x37\x32\x2e\x3c\x95\x6c\x9d\x6e\x83\x30\x5c\x6f\x9e\x23\xb0\x34\x63\x8d\xc4\x7c\xaa\xc2\x75\x3b\x9a\x16\x5b\x41\xc2\x6b\xa7\xb7\xe0\xb3\x14\x4b\x30\x52\x3e\xe0\x8d\xe8\xe0\xf5\x6e\x57\xd4\x21\x05\xbd\xa1\x41\x35\x09\x45\x6b\x3f\x28\xef\xe6\xc6\x4c\x0f\x1e\x04\xfd\xbe\xaa\x4a\x7c\x03\x09\xe8\xe8\x29\x63\x91\x76\xed\x26\x35\x13\x36\x8d\xe7\xde\x7a\xc7\x3b\x25\x74\xd9\xc6\x04\x3d\x9e\x9b\x05\xa3\xc0\x01\x0b\xc8\x73\x83\xf7\x76\xbb\xcd\x05\xcc\xba\xc8\x7c\x95\xf8\x1a\xbe\x98\xe3\x1b\x1c\xce\x75\x5d\xdb\x0c\xc7\x73\x3f\x03\x81\xfc\x57\xb8\x5a\x7d\xc5\x08\x1f\xe7\xab\x3c\xb5\x43\x05\x7e\x2b\xaa\xc7\xf4\x4e\x57\x66\x9e\xbb\x54\xfb\x3d\xcd\x73\x99\xfa\x19\x8e\xf3\x5b\x5c\xa3\x7c\x2e\xa7\xcc\xf5\x7b\x1c\x88\xd5\xe9\x7a\xa9\xa8\x98\x56\xba\x5c\xb8\xcc\x8c\x50\x25\x86\x37\x37\xd6\x6d\x2b\x6c\xa2\x0d\x3c\xd9\x79\xd6\xc5\x57\x2a\x9e\x86\x1d\xfe\x51\x65\x15\x41\xae\xf6\xdc\x45\x32\x84\xe7\x23\x60\x75\x46\xac\x0f\x49\x55\x7f\x80\x2a\x82\x88\x38\x5c\x6d\x69\xb5\x55\xad\x92\x63\x16\x47\x25\x80\x75\xd7\x5e\x2c\xfe\x2c\x8d\xc1\x74\xf5\x93\x64\x36\x3b\x4b\x26\x9f\x90\x77\xa8\xb2\xd9\x14\xb5\xa4\xe5\xf2\x8a\x69\x2d\xa1\x72\xfe\x08\x67\x7d\x80\xc3\x1b\x82\xa3\x59\x7d\x4b\x18\xe2\x3e\x95\x18\x1e\x04\xfb\xa2\x30\x7f\x0e\xe4\xae\x74\x19\x47\x1e\x8b\x76\x87\x38\x05\x78\x14\x88\xfe\x8a\x44\xa3\x23\xa1\x25\xd5\x6f\x2a\x1f\x14\xc6\x86\x18\xc9\x8e\xe1\x00\x82\x6a\x6f\x34\x2d\xca\x79\x62\x4e\xda\xaa\x9c\x29\xe9\xd6\x6f\x82\xfd\x55\x39\x6b\x22\xf6\xfa\x6b\x33\x57\x5b\x0c\xc9\x74\xba\x79\x4c\xe0\x59\x61\x33\x8d\x76\xc4\x52\x5f\xc9\x01\xe9\x2e\x24\xfa\x57\x44\x85\x7f\x31\x81\xd6\x3d\xd3\x5d\x0f\x29\xf5\x10\xdc\x65\xb1\x04\xdb\xe5\x17\x79\x29\x5d\xbd\x23\xa2\x26\xdb\x08\xc2\x83\xd8\x14\x2a\xf5\xfb\x41\x25\x65\x0a\x66\xce\x9d\x88\x34\x56\xb1\x2b\x9d\xee\x22\xd3\x8c\x80\x9d\x25\x55\x06\xdb\x99\xf6\x17\x24\x04\xe1\x30\xa9\xeb\x72\x80\x9e\x91\xc2\x9b\x9b\x20\x08\x1b\x68\x1f\xba\xed\x47\x42\xe1\x79\xee\x24\x69\x14\xa4\x90\x45\x7a\x20\x01\xca\x0a\x95\x22\x57\xab\x48\xc7\x40\x1e\x08\x40\xab\x42\x41\xb5\x99\xf8\xcf\x3d\x46\xf8\x95\x8c\x9b\x60\x15\x48\xd2\x22\x25\x7e\xf3\x8d\x10\xde\xd8\x1c\x29\x45\x44\x83\xc3\xca\xc8\xe1\x12\xf7\x5c\x6c\x4c\xde\xcf\x98\x36\xd3\xff\x7a\x10\x05\x41\x38\x92\xa5\xe9\xaf\x07\x42\x1a\x71\xc3\xa5\x58\x66\x13\xb8\x00\x50\x69\xf2\x32\x19\x04\xb7\x08\xc0\x87\xdb\x2c\x29\x27\xac\x8b\xf8\x2d\x26\x76\xb4\x2a\x67\xfb\x31\x09\x40\xe4\x1b\x9f\x20\xcf\xfe\x73\x17\x2a\x83\xb5\x2f\x27\x08\x67\x2f\x1c\x69\x81\x85\x9e\x44\x3c\x2e\xf3\xe9\x60\x0f\xca\xdc\xdc\xc0\x1f\x18\xe0\x3d\x79\xc8\xa0\x6d\xb2\x94\xc7\xd1\x39\xd2\x75\x48\x7f\x25\x14\x8c\xc5\x28\xb1\x90\x95\x7b\x38\x16\x1f\x41\xf8\xc1\xb3\xf6\x87\xd0\xe0\xb1\x21\x64\x04\xe0\x26\x52\xbd\x6e\xef\x22\xc8\x29\x8e\xe1\x42\x3e\xf2\x55\xae\x07\x0e\xe0\xe1\x54\x8e\x58\x9f\x3d\x48\x4a\x91\x20\xc7\x25\x86\xd2\x32\x78\x56\x99\x7d\xc9\x8b\x55\xa5\xc4\x1b\x72\x1b\xaa\x59\xb9\x23\xd2\xc6\x50\xff\x53\xf0\xde\x82\x29\x73\x79\x8e\x48\xf3\x69\x1e\x86\x4c\x1e\x14\x9b\xd8\x31\x8a\x69\x66\x9c\x2b\xe1\xda\x3c\x66\xe0\x5e\x9c\x4f\x07\x06\x83\x16\xc7\xc8\xb0\xf1\x7e\x69\x33\x61\xc5\x78\x19\x65\x3a\xf9\xaf\x4d\x34\xb2\x8b\xdc\xe5\x53\x51\x07\x09\x9c\xee\x81\xf6\x29\x61\x86\x84\x98\x27\xf5\xe4\x62\xf0\xe0\xff\xfd\xed\xc1\x83\xb0\xdf\x97\x35\xf3\xd4\x70\xbd\xb9\x56\xda\x9b\x04\xb0\x4f\xd5\xdc\x17\xbf\xd9\x3d\xe5\xdb\x71\x9b\xd6\x9b\xe5\xdd\x24\x02\xad\x3c\xe4\xd7\x56\x74\xb8\xed\x6d\xbb\x8d\x5d\x7b\x74\x6f\x77\x5a\x31\xbe\x78\x17\x3b\x0e\x7c\x8c\x82\x63\x7a\x2d\x40\x83\xd6\x7b\x66\x65\xc2\x6d\x79\xc9\x03\xea\x83\x3e\x41\x9e\x52\x62\x2c\x73\x1b\x52\xcb\x74\xf7\xa7\xdd\x96\x48\x1c\x79\xaa\x1a\xa0\x57\x95\xee\x6b\x16\x1c\xe2\x1d\x0b\xb2\xc5\x14\xe4\x2e\x57\x1f\x75\xbf\xf9\x9a\xab\xef\x3f\xee\xe5\xda\x91\x57\x10\xbc\xcc\xb9\x7a\x50\x3a\x77\xc7\xcd\x02\xed\xb7\x6b\x50\x1b\x66\x02\xcc\x89\x41\x87\xb7\x13\x5b\xa3\xdc\xaa\xc3\x50\x87\xeb\x0a\xfe\xcf\xe1\xda\x4d\x46\xda\x4d\x44\x98\x0f\xda\x5b\x2b\x8e\x03\x11\x25\xe8\x68\x4a\x4a\xd7\x91\x34\x63\x07\x67\x1d\x11\x29\x94\xab\x72\x58\xcd\xc7\xeb\x65\xc6\xdc\xb8\xf5\xfb\x34\x03\x32\x21\xe4\xca\xcd\x60\x4c\x1e\xa0\x7e\xac\x11\x2d\x05\x70\xb0\xe1\x88\x1a\xda\xfa\xe2\x98\x79\x96\x54\xf9\x24\x68\x18\x52\xad\xea\xfe\x80\xe2\x8b\x0d\xaa\xf8\xac\xa2\x50\xd3\xa6\xea\x8f\x34\xa6\xe9\xb1\x38\xe2\x23\xe9\x12\xc1\x25\x48\xc1\x40\x0e\x7f\xda\xb3\x57\xc6\x7e\xc0\x96\x61\x18\xa0\xc2\xdf\x36\x36\x0a\x1a\x59\xa9\x56\x35\x50\x93\x43\x88\x2b\x6f\x59\xf4\xdd\x74\x2c\x87\x2d\xd6\xc1\x5d\x8c\x0f\xc0\xe2\x61\xab\x7e\xc1\x0e\xa6\xc5\xe5\xaa\x96\xcb\x3a\x94\x84\x4b\xad\xc3\x00\xc2\x02\x2c\x93\x49\x36\x7c\xf5\xf6\x8f\xa7\x4f\x9e\x7e\x7c\xf9\x97\xe7\xa7\x7f\x7c\xfe\xe6\xf9\xfb\x27\x1f\x5f\xbe\x7d\x23\x6e\x4b\x4a\xd6\x4f\x85\x9a\xee\xfd\xe5\xd9\x58\x9b\x48\x6e\x5a\xcd\xda\xe8\xec\x36\x84\xf3\x4e\xe2\x18\x35\xbb\xcf\x3e\xbc\x22\x17\x17\xd2\x37\x54\xb6\xa8\xc1\x2e\x07\x4f\x1c\x60\xbc\xb2\x2a\x1e\x9f\xb4\x45\x4a\x7f\xf6\xe1\xd5\xe8\xd9\x87\x57\x3a\xfe\x63\x0c\x9e\x68\x56\xe5\x24\xb3\xd4\xf5\xa4\xbf\x04\x7d\x3e\xe6\xd3\x81\x6d\xb1\x15\xc7\xf1\xc3\x7e\x9f\x1c\xe4\x48\x5b\x27\x33\xd4\x98\x2c\x2f\x9f\x15\xa5\xd9\x40\xbc\xc6\x70\x81\x6e\x8d\x47\xda\x6c\x0a\x61\xcc\xfa\xe5\x2d\x30\x20\x73\x49\xed\xa1\x62\x29\xdf\x4b\x41\xd5\x00\xec\x83\xe0\xc5\xe9\xc3\xea\x0c\x9e\x87\x2a\x92\x0c\xed\xe0\xbd\x64\x52\x2c\x2a\xb1\x07\x17\xf5\x81\x1c\x27\xf0\xcc\x68\x57\x0c\xce\x0d\x81\x66\xc1\xc3\x95\x1c\x32\x2f\x98\xe8\x92\x95\x81\xb4\x38\xad\x66\xf1\x22\xbb\xd4\xd3\x8c\xef\xf2\x83\xb4\x9a\x31\x07\x7f\x3c\x91\x8c\x50\xf1\xea\x16\x3c\x38\x5d\x2d\x56\x55\x96\x9e\xa6\xab\xf9\xfc\xfa\x14\x32\x4f\x45\xd6\x29\x14\x39\xc5\x81\xd9\x0f\x1e\x1c\x63\xb9\x86\x9e\xd9\x14\xb6\xf4\x0b\x55\xa0\xd3\x6a\x16\x36\xea\x9e\x3f\xe0\x83\x8c\x67\x43\x5a\xcd\xd4\xde\x1a\xa8\x10\x6d\x1d\x05\xd0\x13\xda\x0e\xa3\x0f\x2e\x9e\x0e\xe0\x59\x21\xa9\x71\xe0\xb5\x25\x1a\xa9\x2f\x0c\xc5\x7d\xba\x58\x4a\xb7\xef\xc8\x8b\x61\x3f\x4f\xed\x31\xe3\x79\x77\x1d\xba\x06\x25\x01\x06\x1b\x87\xdd\x34\x6f\xa8\x4b\x50\xbd\xb0\x30\xa6\x9b\x99\xd8\x2a\xc1\xcd\x0d\xfd\x7a\x10\xdc\xdc\x00\xf4\x78\xc9\x14\x23\x0e\x8e\x40\xcb\x1c\xd4\x40\x02\xda\xf8\xd9\xd5\x72\x96\x4f\xf2\x1a\xd5\x44\x60\x51\xf1\xfd\x8f\xe3\x3f\x76\x10\x3a\x01\x81\xdc\xaa\x6e\xd9\xea\xa4\x75\xa0\x47\x49\x65\xec\xb2\x63\x3c\x73\xf6\x4f\x9f\x18\xb9\x2a\xed\x1b\x63\x5a\xcd\x5e\x13\x89\xe4\xe3\x35\x52\x4e\xcc\x8c\x81\x55\x6a\x11\x02\x43\x9a\x00\x85\x56\xa0\x1d\x71\xa9\x46\xa0\xba\x70\x6d\x46\xc2\xd1\x6d\x3a\x71\x70\x38\x4a\x0c\x4e\x46\x1b\x81\xea\xde\x9e\xfd\x1c\xe3\x7d\x5a\x02\x8c\x0f\x4f\xc2\x61\x5d\xe8\xef\xa3\x93\x48\xfd\x7e\x78\x02\x3a\xc6\x23\x33\x78\x03\x10\x0b\x73\xaa\x25\x85\x55\x16\xb1\x18\x26\xe6\x76\xa4\x36\x9f\x8a\x16\xe8\x3c\xea\xf7\xf5\x6f\x70\xc7\xc5\x1d\x04\xe2\xfe\xd5\x00\xfb\xc1\x90\xea\x80\xb4\x2e\xba\x21\x8e\xad\x79\xb2\x8c\x5b\x24\x41\x8c\x78\x8e\x5c\x42\x26\x19\xa6\xb4\x9a\xb5\x2b\x00\x70\x2b\xab\x7f\x92\x07\x00\xcc\x3a\xcf\xea\xd3\xa5\xb2\x57\xb4\x9b\x59\xac\xe6\x59\x29\xf6\xda\xa9\xf9\x16\x85\xd9\x79\x75\x8a\xb7\xe7\xee\x58\x78\xbe\xc7\xac\x16\xd5\x04\x6f\x64\x3b\x6d\xb0\xb6\x6c\x35\x73\xbb\x55\xfc\xbc\x79\x7e\x95\x2f\x64\xa4\xf9\x53\x72\xf7\xb7\xbd\x0f\x84\x5f\x83\x86\x83\xed\xcc\xc0\x88\x89\xf6\x2f\x1c\xcd\xee\xeb\xfb\x54\x38\xe7\x76\xba\x1b\x55\x30\xd4\x46\xf8\xb3\x58\xc6\x9b\xde\x04\xf3\xea\x4d\xb1\xc8\x1c\x07\x08\x98\xdc\x1e\x2d\xef\x3b\x3b\x5a\x9e\x20\x89\x6f\xa7\x4e\x98\x77\x4c\xf6\x6a\xa3\xf8\xa2\xdc\xb9\xa1\xf0\x3c\x03\x2e\x36\xd7\xc6\x78\x76\x10\xe3\x24\x9f\x5e\x3b\x81\xec\x86\x32\xc7\x1b\xc2\x0f\x20\x36\xc5\xf0\x3b\xf2\x18\x1d\x50\x84\x52\x8a\xbd\x66\x2f\x3c\x77\x25\x74\xfa\xad\x38\xea\x70\x5c\x91\x9c\x52\xfc\xef\xd8\x9a\xe9\x21\xa5\x13\x14\x09\x90\x1d\x28\x4a\x07\x28\x74\x2c\xea\x11\x3d\x1a\xbd\x89\xd6\xd9\x95\xf9\x3c\xbb\xf3\x3b\x5d\x5d\x9c\x9f\xcf\x98\xc7\x4b\x1d\x00\x41\xbb\x5a\x66\x6e\x2a\xc8\x13\x26\x24\xa7\x19\xb8\xdf\xc6\x57\x30\x48\xa9\xb3\xa4\x4c\x8b\xcb\xc5\x5f\xf2\xec\x12\x22\x28\x64\x8b\xda\x13\x90\x41\x17\xc3\xb0\xba\x10\xbe\x06\x23\xf4\x30\x03\x6d\x4c\x31\x2f\xe1\x98\x76\x8a\xc4\xb6\x3a\xe6\x0e\x47\x9f\xe5\xa9\xad\x32\x8f\x5a\x1a\x69\x54\x17\x75\x32\x7b\x87\xee\xbe\xa3\x32\x9b\x17\x5f\xb2\xf4\x16\x43\x05\x9b\x49\x54\x45\x91\x27\x62\xb1\x27\x64\x23\xa1\x74\xd1\x0f\x89\xb2\x91\xd0\x09\xd5\xc6\x2b\x68\x71\xec\x8a\x11\xae\x0c\xc8\x71\x7e\xa2\xdc\x27\x4b\x21\x32\xf7\xc9\x18\x61\x99\x50\xb2\x41\xe7\xda\xc5\x46\x14\x94\xd9\xb4\xcc\xaa\x8b\xd7\x68\x14\xa9\x1e\x1e\x21\x71\x10\x2a\x63\x0c\xbc\xdb\x45\xd3\x7c\x61\x05\xfa\xb2\x87\x95\xec\x51\x01\x90\x9a\xd7\x5e\xa3\x6f\x39\xae\x13\x8f\xcb\x66\x5a\x72\x38\xc0\x15\x13\x40\xf2\x40\x7a\x88\x5c\xf5\x6c\x25\x8e\xee\x0f\xab\x6a\x99\x2d\xaa\xbc\x58\x44\x9f\x97\xaf\xb3\x3a\x61\xaf\x4a\xa7\x9f\x97\x78\x6f\xc1\x1c\x8b\xcd\x85\x20\x7a\x22\x7d\xb8\x21\x96\x9e\x84\x11\x33\xf2\x79\xa9\xbc\xbc\x18\x01\xeb\x96\xda\xa6\x1a\xbd\xc8\x57\x2a\xcc\x1e\x75\xa6\xdf\x37\x0a\x50\xaa\x0c\x6d\x77\x4e\x06\xcb\x34\x00\x14\x1d\x2f\x1c\x61\x35\x31\x39\x27\xde\x35\x20\x1b\x74\x5d\x22\x1c\xae\xa9\xb2\xa5\x13\x3e\x8f\x35\x92\x66\xbe\x66\xaa\xee\x76\x2a\x1d\xf9\x2d\xcd\xa6\x23\xf5\x95\x66\xd3\xa6\xa1\x58\x7b\x6e\xab\xf9\x94\xea\xdd\x8b\x75\xd0\x38\xd3\x15\xaa\x77\xe1\xab\x2a\xd4\xda\xe7\x4e\xdb\xd1\x71\x86\xa0\x1c\xfd\xbe\xb5\x27\x3c\x6e\xf4\xa5\xc7\x73\x9d\xdb\x28\x54\x62\x9a\xc3\xcf\x4b\x8c\xcf\x83\xf1\xe7\xb8\xcf\x8e\x53\xda\x39\xf9\xe2\x9c\x47\xe1\x84\x57\xd6\xca\x3b\xa3\x91\xac\x2c\xdc\xa2\x1e\xb4\x2d\x62\x9b\x8e\x7c\x2e\x43\x05\xc7\x0a\xcf\xe8\x4b\x5e\xe5\x67\x33\x96\xb2\xa7\x82\xeb\x45\x9f\xb2\xeb\x63\x35\x60\x4d\xd8\xec\xb4\xa5\xc0\x9b\xb4\x49\x2c\x1a\x0c\x3f\x86\xf1\x44\x23\x88\xc7\x99\x6a\x7e\xe8\x78\x8c\x11\xc4\x04\x77\xab\xcf\x0a\x54\xd2\x1c\xfe\x14\x39\x09\x3c\x04\x81\x75\xc3\x37\x44\xfe\xe4\xc9\x48\x5f\x6e\xcb\x91\xe9\x57\xb8\x3d\x96\x01\x37\xfa\xcd\xc5\xd9\x34\xcf\xd2\x3c\xa9\xb3\x8f\xde\xa6\xdb\x9b\xa3\xc0\x2d\x2d\x35\xb4\xb7\x49\x54\xb7\xdd\xc4\xc9\x74\x8a\x8e\x24\x1a\x5d\x27\x47\x2c\xb8\xc3\x36\x28\x1a\x23\xd2\x1a\x18\x82\x23\x57\x65\x8b\x74\x03\x66\x02\x84\xf9\x43\x1d\x7a\x6b\x01\xe3\x49\x75\x06\x93\x13\x03\x7e\x42\x78\x5c\x25\x59\x44\x1f\x9d\xa3\xe8\x26\xac\xf7\x1b\x1b\x5c\xbe\x92\x31\x01\x3f\xa8\xd0\x03\x39\xe0\x3e\x92\xec\x2a\x5a\x9e\x1b\x3c\x0f\x05\x8d\xd5\xa4\xe5\x25\xe6\x5e\x99\x2e\x46\x29\xd0\x12\x40\x9a\x5f\xc0\xd8\x6a\x5c\x2b\xed\xa8\xde\x48\xe6\xa4\x46\xe1\x2f\xcf\x80\xdd\x30\xdd\x92\xbe\xed\x46\x48\xd6\xcd\xc8\x87\xb7\x07\x6d\xbe\x6c\xb6\xa6\x91\x5a\x8e\xbb\xb9\x01\x16\xe0\x06\x3d\xf1\x7c\x24\x0e\xb4\x52\x7c\x92\x91\x3a\x30\xc7\xd3\x03\xe2\x6f\x24\x3a\xcb\xa6\x05\x84\xb3\xce\x66\x9a\x02\x4e\xeb\xac\x34\x93\xca\x2c\xcd\xcb\x6c\x52\xab\x04\xaa\xc2\xc3\xdd\x12\x82\x64\x40\x03\xd5\xe8\x7d\x91\x5d\xd5\x4d\x84\xde\xb3\x6c\xbe\xcd\xde\x89\x20\x9d\x43\x41\x55\x95\x5c\xd2\xb1\x8a\xa7\xdb\x17\x33\xd2\xdd\xee\x0b\x9d\x15\x36\x59\xb1\xe1\x3c\x59\x06\xa1\x0a\x7c\x20\x43\x0f\x2f\xc9\xe7\x38\x79\x5f\x8d\xe3\xd8\x70\xfd\x7f\x73\xc3\xbe\xd0\x0f\xab\x28\x65\x44\x5a\x9d\xb0\x18\x78\xd0\x35\x70\xc5\xaa\x74\x7a\x06\xc3\xff\x0c\x4f\xf3\xf4\x7f\x3d\x90\xb2\xf8\x39\xc9\x20\x47\x06\x3f\x84\xe1\x88\xd5\x78\xc4\x32\xf8\x13\xc4\xb5\xe8\xf7\x55\x06\x7b\x75\x5f\x5e\xd3\x08\x6b\x35\xa3\x3d\x7c\xec\x32\x43\xb2\x90\x6b\x16\x10\xd1\xee\xc5\x31\xcb\x41\x35\x1f\x4f\xe8\x71\x6d\x62\xcc\x9c\xbc\xd1\x8c\x77\x15\x1f\xb7\x34\x7b\x70\x74\x22\x57\xc9\x48\x3b\xd1\x91\x75\x36\x9c\xf0\x4f\xf3\x45\x0a\xa9\xe4\xdc\x0a\xe3\xd4\x45\x8c\x33\xec\x5c\x60\xb7\x88\x2b\xa1\xdb\x86\xf5\x3b\xa8\x55\x18\x99\x4a\x2a\x4a\xe9\x43\x21\xe4\xad\x19\x0e\x2c\x58\x0d\x2e\x5e\x78\xcf\xc1\x8e\xd9\x87\x69\x55\x17\x25\x0f\xb7\x05\xdf\x3a\xc0\x13\x7c\xc2\xb0\xd0\x41\x08\x09\xe6\x11\x28\x52\x5a\x23\xe4\x68\x77\x8e\xb5\x11\x9c\x66\xa4\x4e\x72\x7d\x22\xaa\x4f\x0c\x7f\x22\x1f\x92\xdd\x00\x42\x2a\x4b\x21\xba\x16\x28\x5a\x6c\x14\x63\xaa\x61\x64\xd0\x92\xae\x4d\xbb\x00\xdd\xe8\x48\x17\x88\x70\x96\xea\x52\x6a\x41\x4a\xcf\x43\x2a\x07\xc6\x66\x40\x0b\xa5\x69\xc2\xc8\xb3\x52\x00\x3a\xe2\xbb\x9d\x07\x23\xf8\xfe\x88\xc7\x58\xc2\x46\x8d\x0d\x00\x1b\x77\x29\x23\xa9\x44\x28\x99\xa5\x40\xf1\x0f\x60\x77\x0f\xeb\xac\xaa\xf1\x11\xb2\xdf\xb7\x23\x05\x1d\x85\x6b\x2c\x42\xee\x5a\xc4\x68\x22\x46\x41\x9e\x4a\xb7\x41\x85\x0a\x57\xcf\x3c\xf1\x19\x78\x2b\x2f\x06\x00\x49\x9c\x0f\x73\xc6\x67\xf0\x40\xed\xe7\xda\x9a\xd4\x49\x10\xa2\xdf\x27\x10\x33\x6c\xa4\x75\x81\x90\xbe\xf6\xd8\x01\x63\x70\x43\xd6\xbc\x9f\x56\x9f\xf2\xe5\x93\xaa\xca\xca\xba\x7b\x0d\xe2\xf3\x5a\x9b\x93\x50\xb9\x14\x22\x8f\x87\xbc\x7e\x1f\xfe\x58\x3c\x1c\xd1\x58\x5f\x56\xd3\xe5\x4c\xd1\x54\xc4\xa0\xb7\x64\xad\xde\x44\x2a\x0f\x91\xcb\xbe\x59\x1d\xa7\xa5\xd3\xb9\xed\x00\x26\x86\xff\x89\xe5\x84\xdf\x32\xfe\x90\x6a\xb8\x53\x35\x85\xb5\x46\xe7\xae\x33\x0b\x8c\x55\x6f\x0b\x4b\x65\x8e\x32\x0b\xd2\xc6\x98\xed\x1f\x3c\x37\x05\x0c\x83\xa7\xaf\x20\x70\x1f\x33\x63\x89\xb1\x5d\xff\x0a\x5a\x7b\xa3\x26\x46\x4e\x9d\x22\x36\xe4\xa0\xd4\x7b\x6c\x21\xcd\x74\xa2\xcf\x5a\x15\xf3\xa8\x89\x2d\x35\x8c\xad\x22\x27\x8d\x11\x1d\x46\xad\x27\xc6\xde\x88\x3b\x10\x67\xb5\xbc\x3b\x8c\xa6\x9c\x71\x66\xa8\x42\x6e\x86\x86\x35\x1f\x13\x25\x4d\x79\x97\x54\x55\x96\xc6\xf4\x88\x08\x4b\x57\x3f\x1e\xf6\xfb\x7b\x7b\x6a\x5c\x4c\x08\x7a\x1a\xea\xf7\xf7\x9c\xf7\x49\x28\xb1\x70\x09\x7a\xe3\x7b\xc0\xb4\x1d\x5d\xca\xe8\x55\x5c\x6d\xc0\xe3\xc0\xd6\xf0\x8d\x09\x8f\x91\x40\xc1\x3c\xad\x9a\xa0\x24\xb3\xd5\x29\x38\xf1\x40\x62\x1d\x4f\xf0\x22\x01\xf3\x71\x94\xfa\xfd\x85\xbe\xa4\x49\x68\xcb\xb5\xad\x97\xc4\x74\xbb\xdb\x55\x3e\xe6\x95\x2c\x18\x9c\xc8\xff\xf0\x45\x45\xe1\x97\xe9\x41\xa8\x96\xf9\x9e\x4c\x0b\xd7\xed\xce\x3f\xb9\xd3\x50\xc3\x11\x28\x1c\x32\xa2\xfe\x7e\x9f\x55\xc4\xe2\x33\xc9\x6b\xae\xa5\xc9\xf5\x97\x97\xcf\xff\x7a\xfa\xea\xed\xdb\x9f\xfe\xfc\xee\x03\x53\xe2\x52\x33\xab\x42\x8d\x91\x76\x25\x53\x4c\x90\xcd\x68\x0d\x05\x18\x15\x38\x41\xc0\x93\xa8\x72\x07\x8d\x63\xc6\x15\x19\x54\xd8\x7d\x70\x0b\x2f\x96\x1f\xba\x6e\xc6\x25\x3f\x4b\xaa\x1a\xe3\x11\x64\xa9\xdc\x27\xb8\x26\x92\xe5\x32\x5b\xa4\x50\x7b\xed\x7a\x14\x8d\xd2\xbc\x22\x87\xa6\xe8\x6d\xdf\xef\x82\x61\x4f\x2d\x57\x57\x69\x4a\x3d\xb2\x7f\x51\x61\x18\xf8\x0a\x62\x8a\x53\x23\xab\x0f\x1a\xb8\xd1\xaf\xe7\xd2\x4d\x7f\xec\x26\xfd\xe0\x26\x79\xf6\x05\x79\xc3\x55\x17\x33\x54\xb1\xb7\x9b\x36\x3e\x6f\x6e\x70\x30\x47\x9a\xcd\x06\x14\x38\xcd\x3d\xc5\xf5\xc4\xdc\xbe\xba\xd8\x90\xd7\x11\xf5\xb9\x66\x88\xda\x03\x6d\x4d\xa8\x38\xcb\x5b\x8c\x06\xfc\x6f\x2c\x46\x82\xf5\x16\x64\x94\xf8\x58\x2c\x5f\x65\x5f\xb2\x19\x62\xd4\x9a\x35\x40\x9f\xc1\x32\x4b\xc7\x5e\xa8\x62\xa3\x0c\xcb\xb8\xb9\x19\x9f\x8c\xd4\xf3\xd7\xc0\x03\xa1\x9f\xb7\xdd\x4c\xb1\x69\xed\xb4\x01\xea\x90\x83\xb0\xb8\x15\x53\x2f\x00\x6b\xd4\xc8\xf7\x6d\x8c\xa6\xb9\x85\x65\xdb\x7b\x3c\x2c\x29\xe4\x17\x0f\x3a\xb7\x6e\xa2\xd3\xcf\xcb\x4e\xc6\x7f\x47\x91\x97\xd2\x4c\xb5\x18\x06\x45\x5a\x3a\x95\xbb\x39\xa3\xc6\x9c\x66\xb4\x6a\x13\x73\x15\xd6\x3d\xab\xa8\xc1\x7f\xeb\xbc\x77\x65\x51\x17\xb1\x05\x8b\xda\x99\x03\x23\x50\x9f\xf5\xa8\x01\xe5\xac\xb8\x7e\xd0\x2c\x4b\x31\x6e\xfb\x46\x9c\x4f\x86\xca\xe7\x65\x15\x8f\x4f\xa2\x79\xb2\x14\x74\xc5\x79\xd3\x71\x2a\x70\x1e\x75\x14\xc4\xeb\x64\xb9\xcc\x17\xe7\xbc\xcc\x38\x87\x20\x6b\x35\x8f\xd2\x4f\x60\x52\x19\xee\x38\x08\xa3\x65\x59\x20\x3b\x85\xda\x6f\x87\x27\xf4\x1c\x47\xdf\x47\x27\x37\x37\x12\x24\xa2\xd7\xe6\xbf\x78\x1e\x7a\x70\x4c\x24\x24\xfa\x79\x8d\xf1\x99\x7e\xc0\x8b\x85\x46\x25\x1f\xe4\xed\x2a\x6d\x7f\x18\xe2\xf0\x84\x1b\xd4\x1e\x46\x9f\x97\xf1\x3a\xcd\xa6\xc7\x06\x44\x65\xa7\xe8\x36\xa0\x18\x44\x2c\xa5\x7a\x8e\xa9\x3a\x81\xf6\xb1\xea\xe5\xa4\x2e\xd1\x6d\x3b\x93\xa4\xe2\x43\x85\xd9\x90\x9b\xc6\x9a\x42\x6e\x58\x74\xaa\x19\xcd\x93\xe5\x58\xd6\x7e\x12\x8b\x2f\x7a\x38\x82\xdf\xb6\xe6\xfa\x31\x46\x6d\x41\xe0\xcf\xcb\xd1\xe7\x25\xbd\x96\x7c\x5e\xca\x5b\xdb\xfa\xf3\xb2\x3a\xfe\xbc\xac\xc4\xca\x39\x9e\x27\x4b\x71\x51\xf5\x3c\x60\xf0\x05\x2a\x03\xee\xdd\x99\xb3\xd7\x81\x19\xe5\x52\x5e\xa3\x0f\x1a\x3f\xc7\xdf\xc6\xe5\x4b\xc7\xc0\x96\x84\x8e\xf3\xfc\x4b\x29\xbd\x52\x4c\x38\xdd\x9a\xe1\xe2\x0b\x3c\xe7\x67\x43\x96\xab\xe0\x58\x32\x72\x93\x96\x01\xac\x89\x1a\x64\x8c\x64\x3c\x42\xb2\x75\xed\x68\x08\x41\x78\x1b\xb8\x97\xd5\x9b\x2d\xd4\xcb\x1e\x6d\xf7\xe4\xab\xad\xe1\xf3\x59\x51\x00\xfd\x2e\x0b\x94\x80\x3e\xe7\xc9\x32\xfa\xbc\x74\x89\x82\xf7\x85\x17\x5e\x77\x41\x77\xd1\x79\x9c\x8c\xe5\x3b\x9d\x92\x57\xea\xa7\x5b\x43\xf6\x28\x10\x1d\xe8\xbc\x79\xb2\x0c\x99\x40\x12\x46\x90\x9e\x43\x19\x8d\x91\x2f\xa0\x9f\x97\x7c\x5d\xeb\x07\x51\x8a\xe3\x1a\x5a\x0f\xab\xcd\xd2\x28\x4e\x77\xec\xce\x17\x5b\xfb\xb9\xd6\x1c\xcb\xc8\x53\x52\xaf\x73\xa3\x06\xbe\x61\x3f\x8a\xaa\x44\xcf\xed\x44\xc1\x12\xa2\xd5\x8c\x9a\xb5\xff\xff\x87\xb7\x6f\x86\xc8\x26\xe6\xd3\x6b\x29\x23\x92\xfe\x67\xf7\x71\x8c\x23\x6f\x1f\xee\x8a\xc9\x59\x51\xcc\xb2\x64\xa1\x71\x91\x63\x1b\xd4\xe5\x2a\x0b\x7e\x10\xff\x1f\xeb\xf7\x83\x5e\x4b\x35\x8b\x95\xe0\x15\x74\x2d\x6f\xe0\x9b\x7a\x82\x8b\xe4\xed\x74\x10\x76\xd6\x61\x0d\x0a\x72\x1f\x4f\x06\x30\x38\xcb\xa4\xac\x32\xaa\x4e\x4d\x10\x8d\xcb\xe9\xe7\x25\xa9\x83\x78\x2f\xbe\xea\xe0\x90\xd2\xf3\x37\xa0\xb3\x0d\x5e\xef\xd4\x27\xc9\x93\x1f\x81\x13\x3c\x88\x5a\xbb\xd6\xa7\x97\x2a\x23\xbd\xf0\xb9\xc5\xec\x7d\xca\x74\x2b\xa2\xcf\x7c\xe3\x69\x6a\x3d\x32\xe4\x5b\x2d\x4f\x37\xc4\x21\xdd\x46\xd5\x83\xa9\x55\x84\x6b\xfa\xc1\x37\x2f\x88\xee\x19\xc7\x80\x13\x0f\xf2\x7a\x4b\xd1\x42\x8d\xa0\xf4\x14\x41\x0c\xff\xe7\x55\xb6\xca\xd2\xff\xfd\xee\xa9\xae\x1c\xde\x07\x48\x07\xa0\x5c\x2d\x86\xc5\x82\xbc\x5b\x52\x70\xfa\x69\x5e\xb2\xc5\xfb\x91\x49\x9e\xa3\xd6\x3c\x97\xd5\x67\x6f\xca\x26\xa7\xd9\x85\x5e\xd3\x8d\x7d\xbc\x6e\x1a\x1e\x0a\x13\x6f\x26\xc0\xd4\x0e\xe8\x4c\xfa\xa2\x03\x75\xc3\x33\x42\xcc\xe4\x43\x26\xc9\x37\x5e\x1b\x80\x4e\xf3\x04\xcf\xa3\x85\x74\x9a\x67\x12\xe5\xd8\xf3\xe6\xa1\xd5\xcc\xa9\x88\x01\x34\xce\x8d\x10\xdf\x12\x24\x8e\x8d\x63\x95\x1a\x6d\xc8\xd0\x88\xa0\x1a\xbb\xf3\xea\x86\xc8\xfa\x4f\x45\xdc\xd1\x51\x77\x77\xe8\x2e\xe6\x73\x71\xb5\x12\x40\x60\x96\xf7\xde\xa1\xa5\x63\xf2\x22\x62\x7a\xaa\x37\x90\xa2\x26\x18\xd6\x8e\x60\x01\x4f\x4b\xbf\x64\xc1\xab\x29\xaf\x9c\xb1\x2f\xea\x22\xe6\x1f\x3f\xf0\x8f\x2d\xee\xd4\x38\x26\x5b\x5e\xaa\x65\xb2\x12\x66\xa9\x14\x35\x68\x6a\x70\x65\x8e\x2d\x68\xd1\xdc\xc1\x56\x52\x19\x2b\xca\x92\x11\x04\x87\x0b\x0c\x55\x06\x4a\xf8\xc1\x08\xe4\xa9\x21\xe5\x76\x4b\x1a\xea\x04\x6e\xb6\x3a\x03\xac\xca\x98\x34\x7c\x93\xcc\xdb\x68\xc1\xaa\xc6\x89\x48\xe4\x13\xb2\xdf\xdc\x58\xa2\x5d\x66\x8e\xc6\x8a\xda\xc2\x1b\xeb\xa6\xca\xc4\xfd\xde\xf6\xb6\xb6\x36\x76\x15\x32\xda\xe3\x7a\x2d\x41\xca\xd8\xfb\x3b\xab\xae\xf7\x8d\x6b\xa4\xfa\xcd\xdf\x7b\x62\xa9\xf6\xea\x8b\xac\xf7\x77\x94\xf2\xfe\xbd\x87\x7a\x5c\x51\xef\x6c\x55\xf7\x16\x45\xaf\x5a\x4d\x2e\x58\x9f\x7a\x93\x62\x35\x4b\x7b\x67\x59\x6f\x5a\xac\x16\xe9\x30\x40\x25\x00\x12\x1c\x4f\xfc\x51\x8d\x48\xb6\xef\x4e\x33\x1f\x1d\xf9\x20\x84\x40\x7a\xc3\x6e\x94\xeb\xad\x29\xba\x26\x77\x73\xea\xac\xe6\x70\xdd\x68\x56\x5c\x32\x16\x5c\x40\x06\x1b\xd8\x8c\x4b\x76\x8c\x9f\x75\xb1\x9c\x65\x5f\xb2\x59\xd0\x12\xec\x8c\xd5\x66\xc8\x18\x7d\x28\x88\x29\x14\x9b\x10\xba\x12\x70\x49\x6a\x10\xe2\x43\x95\x99\x13\x44\xf6\x2e\x47\x57\x50\x08\x75\x9a\x66\x67\xab\xf3\x8f\xbc\x96\x88\xd3\x89\xb0\xd1\xb0\x25\x91\x51\x0f\x14\xab\x71\xc2\xc2\x10\x79\x36\x2d\x0f\xcb\xa9\x67\x88\x09\x47\x91\x98\x1a\xd2\x51\x3e\x2b\x62\x90\xf9\x11\x01\x33\x60\x1c\x90\xed\x02\x42\x28\x3b\xf2\x4b\xd7\x94\x4d\x2f\x26\x7d\x24\x00\x26\x45\x8c\x2c\x41\xa1\xbe\x46\xfa\x84\x5f\x64\xb6\xe6\xcb\x8a\xc7\x27\x8d\x52\x43\x1f\xb4\x82\x45\x87\xd1\x61\x34\x76\x33\x4e\xc2\x11\x13\x67\x76\xc9\x32\x29\x16\x96\x5a\xb4\x65\x51\xd4\x14\x73\x8d\xdf\xf2\xec\x37\xec\x21\x83\x0b\xb4\xf3\xe1\x16\x41\x66\x7b\xde\x20\x6c\xcc\x89\x71\x23\x76\xf1\x45\x84\xd8\x8e\xda\xeb\x53\x53\x24\x13\xd5\x24\x61\x49\x78\xa3\xc0\x95\xf4\xb1\x18\xb0\x4e\xf0\xc3\xbb\xbb\x8e\xb5\x6d\x93\x47\xa1\xd9\x74\x28\x3a\xb7\xa6\x8e\x05\x83\x0b\xc5\x53\x69\xa7\x3c\x5a\xca\xa1\x55\x4b\xed\xfa\x6a\x38\x83\xec\x34\xcd\x40\x74\x6a\xcb\xd6\x6c\xf1\x9f\x25\xf9\x8b\x72\x71\x31\x8f\x90\x6c\xc7\x58\xc5\x0f\x41\x92\xa6\xb2\xa1\xe0\x38\x40\x95\x7a\x95\x00\x0c\xe4\xf6\x62\x3e\xd0\x26\x32\x25\x7b\x4c\x82\x37\x3e\x3c\x61\x27\xdb\x18\xf1\x38\x81\x5b\x13\x4a\xa1\xf0\xff\xa1\xbe\x81\x85\x6d\xf0\xfb\x70\xab\x6a\x2b\xd5\xb4\xd9\xb5\x03\x87\xb9\x95\x61\xdf\x3f\x2b\xb6\xaf\x2f\x2c\x9c\x01\xee\x5a\xfa\xb5\x18\xed\x81\x58\x6d\x3b\x7f\xc2\xad\xb6\x82\xf7\x68\xa9\x07\x3a\xc9\x0c\x49\x9f\xa3\x04\x4f\x2c\x7b\x23\x32\x7d\xa7\x2f\xe3\x2d\xc2\xdb\xff\xdb\xea\xaf\xd5\xea\x8f\x25\xdc\x53\x68\x9b\xaf\x6f\x06\x28\xed\xbe\xac\x49\x30\xec\xbe\x70\x67\x4b\x85\x09\x27\xbc\x9e\x99\xdd\x6e\xde\xf7\x7b\xdb\xbc\x0f\x76\x97\x6d\x01\x68\x77\xcc\xb6\xf0\xfb\xc3\x6e\xd6\x89\x3e\x83\x40\xc7\x3e\xef\x68\x1b\xfb\x3c\xcf\xa0\x3f\xc7\xfd\xe8\x18\xfb\x79\xa7\x11\xdd\xa4\x3f\xfb\xf0\x6a\xa3\xd9\x1f\x80\xc3\xa9\x6d\xaf\xba\x21\xbc\x1d\x7e\xe9\x74\x8a\x7d\xe4\x31\xc8\x3c\x7d\x2d\xf7\xb1\x5b\xad\x98\x16\x33\x5f\x9b\xf1\x95\x71\x99\x7d\x5e\xe5\xa0\xfd\xbb\x9a\x65\x32\xe2\x72\x10\xda\x0d\x68\x51\x90\xbf\xc4\x03\x2d\x10\x0a\xc2\xa1\x86\xc6\xf5\x39\xcb\x27\x59\x3c\x3e\x41\x89\x9f\xb1\x2c\xbb\xcc\x11\x9f\xb1\x7b\x84\xa7\x03\x3c\xe4\xa4\xc7\x1a\x91\xe6\x2e\x5a\xab\x50\x48\xe4\xde\x9b\xfb\x4d\xb5\x5d\xc8\x32\xe9\x94\x7a\x2e\xa9\xea\x72\x35\xa9\x0b\x29\x5d\xa2\x87\x50\x9e\x31\x4f\x96\xf4\x50\xfb\x13\x09\xb8\x4e\x13\xc5\xc7\x55\x4a\xa7\xfc\x14\xee\x5a\x72\x4e\xa5\x61\xa2\x38\x82\x93\xc9\x45\xa6\xc1\x5c\xa9\xd8\x88\x69\x7c\xd8\x42\x85\x8f\xef\x9f\xbc\xf9\xf0\xf2\xe3\xcb\xb7\x6f\x3e\x9c\xbe\x7c\xf3\xf1\xf9\xfb\x37\x4f\x5e\x69\x53\x3a\xe4\x2e\x67\xc5\x39\x0e\xd1\xf0\x55\x71\x7e\x0e\xe1\x83\xcf\x56\xe7\x4d\x13\xad\xe0\x2d\xcc\x7d\x13\x76\x9c\xc2\x31\xf7\xdf\xca\x89\x64\x18\x55\x75\x52\x82\x04\xca\x72\xe1\xe4\x0c\xe3\x76\x43\xe7\xb7\x17\xd9\xe0\xaa\xb6\x55\x99\x47\x39\xab\x84\x59\xce\x93\x99\xe9\xca\x51\x27\x06\xca\x31\x92\x0a\x42\xe5\x89\x7c\xa0\xf4\xc6\x1a\x36\x99\x08\x30\xb0\x10\x0d\x7d\x8e\xa6\xcc\xcb\x6f\xf4\x8c\x5f\x6b\x5b\xc1\xd5\xe5\x38\x52\x34\x43\xae\xef\x30\x1c\xe9\x18\x59\xda\xfb\xde\xc0\x76\xa1\x37\x9b\x0e\x95\x7f\x3d\x74\x94\x17\x32\x35\x31\x36\x34\x71\x1c\x28\xad\xce\x20\x5c\xb3\x1c\xd5\x8e\x9a\x7a\x18\x02\x5d\xad\x86\x05\x6d\x9d\xd4\x27\x38\xce\x51\xec\x8a\x9e\xfb\x30\xf8\x28\x6a\xbd\xe0\x70\xe2\x80\xbf\x42\xe7\x25\xb0\x77\xe5\x06\x59\x14\x75\x3e\xbd\x96\xc7\x0f\x85\xf5\x08\x56\xe5\x2c\x08\x7d\xf2\xed\xba\xcc\xc5\x12\x8f\x02\x03\x0f\x3d\xc7\xd6\x1e\x0a\x42\x7b\x17\x85\x6b\x63\xab\xcc\x8a\xf3\x41\xa0\x2b\xca\x52\x14\xea\x7c\x13\xec\x33\x02\x34\x3c\x55\x31\x63\xa8\xa3\xfb\xc1\x37\x41\xd8\xb4\xfb\x36\x34\x22\x28\xa5\x85\x6e\x60\x10\xa8\x22\x41\x34\x5e\x95\xb3\x93\xb0\x69\xb1\x3f\xeb\xac\x85\x17\x09\x76\xb6\x2e\xe3\xd4\x63\x83\x2d\x99\xdf\xda\x6a\xe4\x4e\x34\x7a\x29\x9b\x16\x95\xf1\x4c\x4b\x92\xef\x3f\x59\xd2\xfa\x5b\x4f\xd5\x4b\x86\xed\x41\x7d\xeb\x79\x6b\x31\x69\xeb\x18\x70\x56\xc2\x1c\xef\x36\x97\x39\xab\x72\x66\x8c\x84\x84\xeb\x1e\x57\x8e\x81\xda\x98\xda\xbd\x33\xba\xc2\xcc\x2b\x14\x24\xe8\x26\xb5\x59\xc2\x76\x66\x79\xb2\x86\x6d\x6d\xf2\x4c\x5b\x48\xde\x2d\xda\x90\x1b\x6c\xf3\x2e\x92\x0a\xa6\xc4\xc2\xd8\x6b\xea\x27\x61\x09\x44\x4c\x56\x95\xb5\x9d\xe3\x43\xc8\x84\xd8\x63\xb6\xf0\xeb\x98\x69\x7e\x31\xa5\x4b\x18\x20\x3c\xc0\x63\xe7\x34\x1f\x73\x50\x15\xe6\x15\x01\xfa\x7d\xfc\x3b\x3e\x3c\x69\x22\x57\xa2\xe3\x6f\x0e\x45\x3b\xd0\x66\x76\x95\x57\xe2\x28\xdd\xd8\x6a\x3e\x1d\x48\xd8\x70\x2d\x7f\x8d\x0f\x4f\xd0\x2b\x2f\x53\xd1\x93\x92\x2a\x20\x8d\x91\x82\x3c\x3a\x61\xaf\x6c\x5a\xc8\xc2\x84\x4f\xe1\x9a\x2b\xa8\xb5\xa3\xd2\x6c\xc8\x8f\xc7\x20\xad\xf4\xb5\x71\x82\x42\xa9\x62\x91\x75\xa0\xec\x2b\x28\xa6\xd2\x60\xa5\x5a\x43\x4b\x7a\x19\x86\x0e\x8f\xcf\x28\xcf\x83\x8f\x7e\x7f\xcf\xd2\x97\xb9\x48\xaa\x41\xa0\x7d\x1c\x57\x59\x0d\x6c\x8f\x80\x3f\x80\xd3\x48\x5a\xbd\x79\x0e\xf3\x8e\x62\x12\x9f\x68\x8d\x1e\x16\xeb\x1c\x48\x05\x3c\xf7\x83\xfe\xaf\x7c\xff\x88\x63\xa9\xfd\x2d\x2b\xeb\xf7\xcd\x06\xcd\xb0\xdd\xaf\x8c\x00\x9b\xee\x63\x88\xe6\x8b\xf7\x35\xe3\x22\xda\xd3\x5c\xc0\x9e\x6a\xd2\xae\x34\x54\x6c\x75\xec\x0b\xbb\xe0\x80\x6b\x41\xab\x52\xb5\xb5\x1c\x15\xcb\xc2\xcd\xa8\xb3\x66\x33\x8e\x0e\xfa\xfa\x53\x6a\xc0\xf8\x5a\xa2\x66\x50\xe2\x4e\x13\xce\x9f\x92\x74\xf8\x47\xd3\x75\x37\x7b\x84\x52\x20\x2a\xce\x83\xe5\x7e\xd1\x05\x18\x88\x93\x03\x63\xfb\xc0\x69\xf6\x82\x80\x1d\x3b\xae\x2c\x5b\xc4\xeb\xa6\x9d\x77\x25\xee\xf0\xbd\xd7\xe4\x45\x19\x41\xa1\xe6\x16\x7a\x6e\xe5\xce\xd9\x6d\x99\xaa\xa5\x08\x86\xfe\x44\xb9\xda\x17\x71\x29\x1e\x6b\x17\x7d\x6c\xa0\x3b\xf6\x6c\x81\x6a\x53\xa1\x19\xcb\xbe\x6c\x74\x96\x72\xde\x2e\x1f\xdc\xf1\xe1\xca\xda\x12\x5a\x91\x94\xf7\x95\x31\xb7\x5b\xa2\xa4\x23\xf6\x6c\xe3\xcb\xb4\xa1\x5a\xf5\xab\x23\x3e\xf6\x5a\x9d\x91\x04\x06\x99\x04\xeb\x48\x62\x7c\x3e\x52\x9b\xa4\x82\xfd\x9b\xb1\xfb\x28\x4e\x83\x3c\xd6\xe5\x72\xe0\x01\xe8\x8c\xf5\x31\x40\xe6\x28\x2d\x14\x1b\x1f\xb3\x15\xc3\x82\x54\xc0\x11\x4f\x0d\x86\x8d\x6c\x61\xe5\x96\x42\x67\xdd\x04\x89\x21\xa0\x14\xaf\xcc\x9a\x09\x1b\x23\x38\xae\x8e\x31\x41\x8e\xdf\x8a\xf7\x2a\xc5\x8b\x91\x2e\xe0\x62\x55\x7a\x8a\x76\xa3\xa5\x1b\x0b\x9b\x86\x6a\x31\xb8\xf8\xd8\xbe\x4d\xb0\x31\x37\x21\x09\x40\xcc\x24\xe7\xd2\x98\x99\x1f\xbe\xc3\x26\xe5\x79\x15\xae\xc5\xff\x31\x08\x27\xd0\xad\x1d\xa4\x8e\xc4\xff\xe3\xc3\x93\x98\xfe\xde\xdc\x04\x0f\x02\x65\xec\x28\x53\xf9\x35\xb3\x62\x5a\x43\x6f\x17\xb3\x6b\x8a\xd9\x78\x27\x33\x65\x78\x21\x28\x2a\x70\x9c\xa1\xab\x7f\x52\x9e\x23\x02\xe2\x3f\xed\xcd\x12\x54\xfb\x7d\xc0\xfd\xbe\x37\xd9\x36\x95\x32\x9f\x3e\xa4\x5b\x5a\xd3\x3c\xd1\xed\x25\xec\x77\x54\x9c\x58\xcd\x66\x0d\x7f\x5a\xf1\xe0\x68\xa8\x56\xc2\x8b\xad\x53\x23\xda\xef\xb8\x91\x3b\x05\xb4\xa3\xd4\xa8\x89\x9b\xa1\x17\xc4\x39\x40\x5b\x3b\xf5\x87\xae\x4c\x8f\xf6\x90\xa1\xd3\xe4\x51\x2e\x82\xbe\x1b\x2a\x40\x5e\x43\xe9\x13\x78\xca\x83\x65\x35\x5c\x2d\x30\x06\x2c\xbe\x23\xa3\xe6\x1a\x8a\x81\x94\x0c\x48\x76\x53\x59\xfb\x45\xa8\x4e\x0a\x60\xc3\xcf\x4b\xf4\xe2\xc3\xbc\xae\x70\x2d\xf3\x4f\x2d\x2a\xa0\xfc\x39\xca\x9a\xfc\x4f\xd9\xb5\xad\x12\x9a\x2f\x96\x2b\xd2\x07\xe7\x0f\x54\x9f\xb2\xeb\x13\x54\xa9\x43\x5c\xe6\xc9\x12\xd2\x48\x1b\xb6\x4d\x75\xe2\xcf\x8b\x32\x9b\x14\xe7\x8b\xfc\x1f\x59\x8a\x98\xa1\x7e\x67\x2f\xd8\xff\x94\x5d\xef\x07\xbd\x25\x79\x00\xea\x25\x15\xd3\x37\xee\xc9\x6b\x42\x10\x72\x1f\x33\x96\x12\x2c\xbe\x67\xf9\x34\x4c\x75\x27\x7c\x7e\x81\x36\xac\xd0\x98\xb5\x68\xe9\x41\xbf\x2b\x8b\x79\x5e\x19\x3a\xc7\xf2\xb9\xcd\x7f\xd7\xa9\xc2\x91\x53\x7a\x58\x5f\x64\x8b\x01\xf8\xa8\xd1\x01\x52\xc4\x70\xe1\x74\xc1\xcf\x9b\x1b\xfc\x8b\xea\x04\x4c\x9f\x4b\xa7\x0a\xce\x84\x0f\xef\x9f\xdf\xbf\x82\x41\x17\x9b\x46\xea\xfa\x98\xd0\x7a\xc1\x3f\x39\x2b\xca\x1a\x44\x3e\xd2\x71\x84\x98\x3c\x80\x96\x5a\x9e\xf8\x11\x05\x30\x9b\xc7\xbd\x77\x65\x31\xc9\xaa\x0a\x93\xab\xde\xb4\x2c\xe6\x24\x4e\xd6\xb6\xe8\x4e\x4f\x9b\xc8\x5a\xd4\x9a\x16\xcf\xb2\x64\xfa\x5e\xdf\x4f\x55\x44\x57\x5a\x5f\x63\x23\xff\xc4\xba\x84\xfb\x81\x1a\x74\x1f\xb1\x14\x5c\x16\xd9\x61\x58\x1b\xcc\x5b\x2c\x5e\x93\xce\x7d\x44\x3a\xf8\x0d\x13\x4a\xfe\x6c\x50\x95\x08\x46\xfb\x4f\x8e\x2e\x62\xf9\x73\x35\x54\x13\x51\x4a\x42\x01\xbb\xd8\xec\xa7\xa3\xfc\xed\x54\xd8\xf2\x60\xcc\xe1\xdc\x42\xe3\xfc\x84\x4c\xa5\x15\x3a\x9a\xe1\x18\x70\x70\x89\x5b\x18\x6d\xa3\xdd\xae\x08\x03\xbc\xea\x0c\x70\x8c\xa4\x4a\x6d\xa8\xec\x18\x68\xe9\x7f\x5e\x56\x91\xd6\x7c\x6f\xb7\x6c\x88\x4e\xab\xc9\x45\x96\xae\x66\x19\x17\xfd\xb1\x9b\xb2\x36\x29\xc0\x88\xfc\xef\x51\x2a\xb0\x49\x68\x28\xdd\x20\x03\x5b\xfe\x31\x9f\x8b\x91\x5a\x2d\x86\xb2\xb1\xb7\x82\xe1\xa0\xa7\x0b\xbd\x13\x2a\xba\x74\x06\xa0\x07\xcb\xab\x0d\xa2\x16\x44\x48\x67\x76\x37\xe4\x95\x4f\xe4\x96\x23\x48\x4b\x9a\x99\xbb\x30\x94\xa2\x0c\x20\x6c\x82\xf2\x58\xde\x81\x96\x3b\x36\x3e\x03\x3c\x77\x9c\x20\x5a\xe6\x10\x4b\xb7\xc2\x34\x6d\x83\x0c\x1c\x00\xc4\x63\x70\xe2\x85\xbc\x45\x2b\x22\x8f\x43\x24\x7d\xef\x41\x97\x06\x52\x8b\x49\x99\x98\xed\x6c\x5d\x36\x22\x4d\x30\xa8\x0c\xfd\x16\x60\xf9\x09\x1c\x58\xe2\x2a\xaf\x4c\xca\xda\xa3\x93\x28\x10\x7d\x7b\xb5\xad\xd6\xb6\x32\x58\xb3\x0a\xa9\x8b\xa9\xd7\x36\xcd\xba\x64\x3a\xae\x05\x0c\x33\x36\xae\x9c\xbb\x6e\x1a\xa6\x17\x43\x0f\x69\xb0\x1c\x9e\x9c\x15\x5f\xb2\x01\x5b\x1f\x7c\xd9\x98\xae\x9e\x4d\x1e\xaa\x8b\x29\xe2\xeb\xed\x45\xb1\x5a\xc8\xd8\x90\x9a\xaa\x79\x99\xa0\x51\xfe\x38\x3e\x1c\x1d\x1c\xe4\x4e\x7b\xb6\x12\x35\x51\x31\x96\xca\xd5\xaa\xf7\xec\xe6\x51\x13\x4e\x27\x6a\x85\x6b\x07\x51\x50\xbb\xe7\xce\x78\x54\xec\x30\xa4\x7e\x26\x22\xfb\x47\x4a\x9f\x3b\x04\xa7\x38\x2b\x2d\x95\x44\x31\x8d\xe1\x79\x8e\x69\x40\x1a\x0e\x51\xab\x78\x7d\x99\xcf\x66\xef\x51\x32\x62\xb9\x77\x69\xa3\x14\xec\x43\x69\x8a\xf9\x08\x66\x5b\x05\x4d\x04\x67\xf4\xb1\xc9\x5b\xb4\x51\x0d\x2e\x19\x76\x5b\x46\xe5\xc0\xf2\x5a\x6a\x87\xc5\x5b\x2f\x31\xf3\xfe\x1c\x4d\x2e\xf2\x59\xca\x5a\x84\x6f\x60\x57\xd4\xe1\x28\xd8\xae\xf4\xa9\x82\x13\x49\x4e\x61\x19\xa2\x01\xb7\x98\x5b\x07\xa9\xdf\xb5\xbf\x5f\xf8\x0a\xe1\x78\x49\x2e\xc6\x98\x58\x7c\x36\xd3\xfd\x87\x05\x07\x4d\xfc\x29\xa9\x7e\xcc\xb2\xc5\x33\x94\x9a\x0d\xdc\xa1\x8b\xb8\xa7\x76\xf2\xc2\x1f\x6e\xc6\xcf\x53\xca\xc2\x8f\xef\x7f\x58\x79\x90\xfd\x44\x5c\x67\xc7\x01\xf4\xac\x77\x79\x91\xcf\x32\xc1\x5a\x0b\x96\x2d\x5f\x9c\xe3\x04\x1f\xf7\x82\x7d\xaf\x33\x4a\x14\x2e\x2b\x0e\x14\x99\xc6\x79\x56\x55\xc9\x79\x16\xae\x55\xf5\x68\xb3\x68\xe6\x6a\x96\xb4\xaa\x81\xa0\x78\xa1\x31\x8f\xc9\xd9\x20\xd9\x10\xce\xf9\xca\x85\x4d\x63\xbc\xf5\x60\x65\x9a\xcf\x8e\x54\xa1\xb0\x89\xe8\x5c\xda\xbc\xbf\x7e\xc1\x05\x4f\xdb\x77\xc7\x25\xaf\xa3\x3b\xc8\x45\x6f\xd7\xb3\xe5\xb2\x77\x8a\x8d\x98\x9d\x08\xb3\xc9\xcc\xbf\x14\x92\x79\xdc\xb3\x4d\x58\xd0\xd3\xe6\xbd\xed\x0b\xd5\xb7\x1d\x77\x06\x8b\x78\x41\xbb\x82\x47\x69\xf0\x0c\x2b\xb3\x9c\xa1\xe5\x90\xd4\xf9\xe2\x5c\x43\x45\x0b\xfb\xa1\x8c\x15\x91\xb8\xc3\x30\xa2\x43\x47\xd8\x3d\x66\x23\xb1\xb7\x62\x2d\x77\x74\x62\xac\x44\xda\x85\x96\xd3\xd8\x1b\xba\xb4\xf1\x78\x0f\x3f\x04\xc1\xb1\x17\x70\x3f\x18\x06\x77\x8c\x2a\xa2\xba\x16\x2b\xa4\xf6\x7d\x9d\xdc\x0f\x28\x48\xc8\xa8\x65\xca\xed\xa1\x62\xcc\x96\x4c\x6a\x1a\x5f\x6b\x77\xae\xd4\x8c\xd2\xe1\xaf\x41\xcf\xb2\x16\xc4\xcb\x57\x69\xe5\x83\xc9\x7c\x16\x55\x4f\x8f\xe4\xbf\x6b\x60\xbd\x0f\x31\x47\x2e\x00\x71\x73\x63\x01\x70\xb1\x7b\xc8\x5e\xe1\x88\xbf\xc7\xd3\xdc\xe0\xb3\xf2\xf3\x45\x51\x66\x2f\x92\x7c\xb6\x42\x67\x6e\xcc\x2b\x10\x08\xd8\x86\x28\x4a\x0a\x3d\x46\x6e\xf9\x74\x60\x14\x67\x3a\x2c\x3e\x09\xcd\xd3\x64\xf1\x4d\x2d\x51\xe9\xa1\x2b\xf3\xde\x37\x32\x0e\xcc\x37\xbd\xb3\x6c\x92\xac\xaa\xac\x77\x5d\xac\xca\x5e\xb2\x5c\xf6\x2e\x92\x4a\x94\x98\xe6\x8b\xbc\xba\xc8\x52\x76\xeb\x17\x27\x0d\x3c\xb8\xe7\x75\xd5\x9b\xe6\x65\x55\xe3\x10\x0e\x7b\x1f\x0b\xdd\xc2\x42\x36\x52\x2c\x7a\x69\x56\xd5\xb0\x61\xe4\xa4\x55\xbd\x14\xec\x29\x7b\x09\xab\x37\x12\x8d\xf7\x26\xc9\xa2\x27\x98\xb6\xde\xdf\xc1\xef\xeb\x20\xfc\xbb\xa8\x01\x0c\x6d\x34\x9d\xf8\x3b\xb9\x3f\x93\xf6\x3a\xd2\x14\x07\xec\x65\x1e\x30\xaf\x97\x0f\xb4\xb7\xcb\xbf\xf7\x2e\x8a\xe2\x53\x35\x0c\x50\x28\x07\x0a\xb9\x7f\x4d\x2a\xa4\x80\x3b\xb1\xb8\xf9\xc1\xc1\x66\x16\x57\x3e\x72\xb4\x30\xb9\xf2\xb5\x42\x7a\x95\xef\xf7\xed\x14\xf9\x1a\xe3\x01\xc6\x2c\x3a\x22\x29\x13\x97\x4f\x2c\xb9\x58\xbb\x7b\x3a\xd4\x96\xa2\xa4\xda\x50\xd8\xe4\x66\x65\xc3\x1d\x99\xd4\x34\x08\xb7\x50\xfc\xc5\x3c\xe7\x59\x4d\xf7\xfb\x7b\xd6\x42\xf5\xaf\xd0\x37\x45\x7d\x21\x96\x04\xf6\x27\x85\x09\x75\xd6\xe9\xb0\xf7\x72\x0a\xcb\x24\xcd\x53\x82\x64\x80\x11\x08\x8e\x90\xed\x80\x85\x74\x96\xf5\x60\x59\xa7\xbd\xb3\xeb\x1e\xa2\x28\x9a\x10\x83\x81\xb2\x2d\xbd\x4c\x69\x18\x7b\xf9\xa2\x97\xb0\x3b\x59\x04\x15\x40\x21\x8d\x4f\x5d\xf4\xce\x56\x67\x67\xb3\x0c\xac\xb8\xd4\x46\xe7\x7a\x31\x48\x54\x48\xe1\x60\xb9\xb4\x0d\xf1\xca\x6e\x13\x36\x23\xfa\x0f\x6c\x7e\xa3\x0e\xc3\xc4\x35\x67\x02\xaa\x0e\xcd\x1b\x0c\xfc\xde\xa9\x20\x03\x0d\x0d\x02\x2a\x2c\x32\x82\x7c\x61\x62\x1f\xc2\xb2\x60\x3a\xc3\x03\x23\x3b\x32\x0a\xa3\x15\x55\x07\x00\x8b\x82\xad\x9a\x55\x27\xd0\xad\xdb\xd6\x35\x74\x21\xa0\xa1\xa2\x1c\xf7\xac\x47\xa2\x1f\x36\x7c\xc0\xd0\xfb\x0e\xdc\xd2\x07\xc4\xc7\x90\x0f\xf2\x64\xd9\x16\x6a\xdb\xa3\x8d\xa3\x0c\xa8\x4a\xc9\x0d\x41\x08\xa6\xf7\x2a\x77\xdb\xe3\x5d\x5c\x3a\x0f\xd0\xf6\xfc\x00\x68\x1b\xe3\xaf\x4e\x45\x26\x6a\xd4\x3d\x45\xd5\x1d\x38\x7f\xe2\x40\xa7\x63\x68\x06\x22\x0a\x54\x8a\xc8\xf7\x5f\xed\xc2\xa4\x63\xfa\xd3\xc8\x03\xf8\x2a\x4b\xbe\x64\x12\x40\x3e\xee\xc9\x51\xa8\xe2\xf1\xc9\xc8\x54\x17\x42\x44\xf8\x07\x99\x8e\x7b\x86\x17\xff\x34\x48\xb2\xd3\x6a\x16\x9b\xfa\xd8\xa0\x64\xea\x28\x07\x51\xc8\x41\x83\x95\xe4\x31\xc8\x22\x56\x82\x49\x6a\x47\xf9\xf7\x36\xf2\x4a\x4c\xbb\xbf\xaf\x46\x56\x65\x8e\xf3\x13\x7c\x53\x04\x1d\xb8\xc6\x0c\x9f\x85\x69\x61\x13\x8e\x9c\x3a\xe1\xe6\xa3\x56\x89\xcc\x17\x3d\xb1\x62\x03\x9a\x0c\x4a\x13\xe9\x0d\xab\x57\x9b\xc9\x14\xa0\x81\x60\x7d\x21\x06\x5d\x91\x25\x60\xb5\xab\x0c\x3e\x28\x58\xda\x20\x39\x8a\x92\x87\x6e\x34\x8a\xe4\xc8\x23\x98\xce\xa7\x83\xe4\x68\x9c\x9f\xec\xc5\x71\xf2\x70\x9c\x9f\x74\x89\x48\x74\x85\x47\x9b\x0c\xec\x15\xa3\x63\x5b\xd8\x63\xf4\x32\x70\xf9\xe7\x09\x02\x18\x15\xc8\x07\x62\x26\x7b\xd9\x45\x5a\x02\x77\xe2\x01\x87\xa1\x86\x91\x63\xf2\x0c\x05\x87\xd5\xcd\x86\xe1\xfa\xac\xcc\x92\x4f\x8d\x51\x15\xb1\x63\x8d\x68\x8b\xcb\xc4\x55\xd4\x35\x02\x03\xf7\x17\x3e\x24\x98\xfb\x93\xfa\x62\xf8\x73\x91\x2f\xa0\x53\xe2\xaa\xd5\x15\x08\xfc\x3d\x6d\x03\xdb\x52\x0b\x6d\x8c\x2c\xdb\x2c\x4f\xf4\x31\x66\xab\xb5\x21\x4e\xd9\x5c\x5c\x3c\x76\x8a\x5f\xa6\x95\x38\x77\x33\x8c\xa2\xdc\xba\x4c\x26\x9f\xb2\xf4\xd4\xb4\xf9\xb2\x2d\xaf\x56\x67\x9d\xf9\xea\x30\x6d\x03\x30\x28\x41\x0b\x88\x68\xe0\x74\x59\x16\x57\xad\xcd\x60\x4f\xba\x61\xc4\x60\x9f\x76\x77\x39\x4b\x26\x17\xdd\x95\x08\x5e\xf9\x4b\xb6\x61\x4c\xda\x83\xe3\x77\x1b\xaa\xa5\xd9\x34\x2b\x4b\x6e\x8b\x66\xe6\xcf\x92\x7f\x5c\xc3\xcd\xbb\x35\xea\x9c\x17\x2d\xca\xc4\x25\x24\xce\xab\x76\x88\xe5\x75\x57\xbe\x36\xc7\x6b\x83\x98\x96\x59\xf6\x8f\x2e\x80\x02\x0c\x36\xbb\x20\xda\x22\xe7\x99\x50\xad\x43\x45\xf9\xf3\x55\x0d\x66\x83\x9b\x51\x96\x90\x9d\x63\x87\x17\x71\xe2\xf2\x4f\xab\xd5\x52\xd0\x83\xad\x2d\x0a\xcd\xec\x25\xbe\xcd\xb6\xac\x33\x02\xaa\x8a\xb2\xf6\x62\x2d\x2d\x47\x68\x57\x38\x36\x96\x0e\x5c\x99\xa5\xab\x49\xb6\x3b\xe0\xe9\x3c\x99\x94\x85\x8f\x12\xa9\xc0\x12\x0a\x07\x6d\x61\xdf\x01\x4c\x7b\x74\x4b\xe8\x0e\xb0\xec\xaa\x7e\x50\x56\x5f\xdc\x08\x8f\x22\xa3\x65\x87\x89\x2c\xf5\xc2\xf3\x6f\x8b\xcb\x9d\x2c\x2e\x59\x82\x8d\xe8\x91\x8d\xe9\x43\x1b\xd3\x87\xce\x58\xda\x98\x3e\xb4\x31\x7d\x68\x63\xfa\xd0\xc6\xf4\xa1\x8d\xe9\x43\x1b\xd3\x87\x36\xa6\x0f\x6d\x4c\x1f\xd9\x98\x3e\xb2\x31\x7d\xe4\x4c\xbb\x8d\xe9\x23\x1b\xd3\x47\x36\xa6\x8f\x6c\x4c\x1f\xd9\x98\x3e\xb2\x31\x7d\x64\x63\xfa\xad\x8d\xe9\xb7\x36\xa6\xdf\xda\x98\x7e\xfb\xa8\xd3\x56\xf6\x3f\xb6\x36\x96\xcd\xab\xe7\x9f\x57\xc9\xcc\xb6\x94\x1d\x52\xba\x3f\x16\xa4\xc7\x5a\x93\xf8\x17\xdb\x64\x76\x63\xc4\x48\x4f\x48\xc6\x37\x4a\x66\xbb\x21\x62\x66\x9b\xd5\xe9\xef\x5d\xd0\x8f\xc8\xeb\x3c\x11\xf4\x6c\x93\xf1\xec\x87\xd5\x99\x0b\xe7\xb1\xa0\x7d\xaa\xe4\x9b\x9b\x6c\x67\x9f\x68\x1e\x68\x63\x4c\x4d\x68\xfa\x9d\x38\x3a\x36\x5a\xd2\x62\xd7\x3d\xb0\x9e\xf9\x79\x5a\x94\xd9\x96\x01\x34\x9f\x27\x93\x0b\x77\x00\xc0\x92\x56\x65\x29\x40\x4f\xeb\x12\x10\xb2\x68\x46\x05\x53\xe5\xa9\xd3\x33\xa9\x1f\x2c\xbb\xeb\x23\xcf\x6c\xc2\xc4\x7f\x80\x83\xc0\x63\xbc\xec\x99\xd2\x67\xc4\x4d\xc4\x36\x6d\xb3\x01\x8b\xc5\xab\x22\x31\xc1\x04\xc5\x1b\x62\xba\xb4\xad\x16\xbf\xff\x24\xae\xfd\x2e\x20\xcf\xd5\xb8\xba\x5d\x7f\xe8\x99\xfa\xa7\x8a\x81\x8b\x6d\x82\xea\x82\x22\x27\x17\xdb\x84\xb6\xdd\xcc\x3b\xb6\x49\xb0\x0d\xfa\x42\xf2\x76\xb1\x4d\x9b\x87\x2a\x0b\x01\xdf\xbf\xfd\xbf\xcf\xdf\x9c\x3e\x7f\xff\xfe\xed\x7b\x0f\x2c\xcb\xa5\x65\x2a\x59\xc2\xd8\xa6\xf1\xdb\xc7\x6e\x7d\xe8\x59\x06\x72\x56\x5f\x0b\x96\x2a\xb6\x4f\x07\x1b\xfa\x35\xf2\x81\x6d\x03\xe2\x59\x0c\x54\xc2\x9d\xbc\x47\x9e\x3d\xfe\x11\x38\x48\xec\xc0\x07\xe4\x1f\x63\xfb\xf4\xd9\xc6\x14\xfe\x91\x67\xb6\x49\xdb\x0f\x36\x94\xdb\xd9\x47\x9e\x69\xff\x40\xec\xa5\x07\xda\x33\xf3\xc0\xe6\x3d\xf5\xb9\x1f\x10\xe7\xdd\xd0\xc8\xd6\x44\x4a\xa6\x78\x7d\x1c\x40\x41\x2f\x18\x6e\x22\xe0\x45\xfd\x4d\xfe\x4e\x6c\x23\x23\x1f\x6d\xeb\x8d\x24\x7f\xa3\xa2\xa8\x1f\x0e\x6d\xe6\x57\xf3\xd8\x3e\xab\x87\xd5\x6a\x8e\x8e\x15\xec\x81\x12\x99\xf3\x7c\x41\xb1\xed\xaf\x3c\x99\xc9\xd5\x48\xaa\x44\x7a\x32\x97\xd8\xa6\xb3\x10\xa0\xd1\xa2\x54\x6e\x26\x9e\xe5\xd3\xa9\x07\x02\x33\x64\x03\x3f\x5e\x7b\x9b\xf8\xf1\x5a\x02\xf8\x07\x84\xc0\x8c\x51\x98\xe6\xb3\xda\xda\x5d\x00\x87\xe9\x0c\xc4\xd7\xa6\xcc\x61\x60\xed\x2d\x9b\xf9\x50\x64\xb5\xc8\x3f\xbb\x80\x22\x55\x66\x17\x9e\x69\x80\x64\xb2\x75\x25\x39\x92\x0b\xa4\xb2\xf8\x12\xf5\x46\x75\x7e\xe4\x21\x0f\x78\x38\xb6\x15\x68\x39\xfe\x3d\xa0\x82\x99\x1b\x5a\x91\xa2\xf5\xa7\xbb\x1f\x2d\x78\x00\xc0\xf5\xfe\xe1\x2f\xef\x62\x9b\x2b\xe4\x48\xa0\xdc\x57\x32\x5e\xf4\x57\xa5\x2e\xaf\xc1\xe7\x29\x7d\x4b\x36\x4f\xb2\x75\x98\x0a\x8c\x9d\xf8\x8f\xbe\x91\xd2\xe9\x13\x8b\x92\xd9\xb9\xa4\x7f\xaa\x3c\x3a\x88\xe4\x0f\x4a\x37\x09\x90\xf1\x45\x10\xfa\xb8\xd1\xa7\x0b\xe5\xf0\xf3\xc5\x38\x4e\x30\xdf\xa4\xfb\xc6\x17\x41\xb8\xb4\xde\x49\x31\x21\xb1\xe7\xfc\x83\xf2\x7d\x64\xdd\x93\x46\xd0\x92\xa0\xd3\x5f\x4a\x75\xc9\xb7\x93\x42\x90\xec\xa8\xd4\x3f\x29\xcf\x24\xd2\x26\x4d\x66\xd3\xe7\x10\x48\x3f\x11\xc6\x12\x16\x19\xb6\xa8\x2e\xc2\xb4\xd0\xdd\x0e\x32\xfb\x7c\xae\x6a\xd4\x6b\x94\x6a\x94\x39\x82\xec\xc6\x82\xf4\xb2\x24\x41\x81\xe7\x30\x16\x3a\x29\xb9\x8a\x05\x99\x35\x92\xc0\x71\xb6\x51\x97\x98\x95\x0a\xa7\x41\x27\x12\x65\x95\x84\xd4\xac\xe2\xc7\xeb\x18\xc9\xa7\x99\xac\xba\xc7\x89\x26\x03\x21\xda\x49\xa4\xd2\xc9\xf8\xf1\x3a\x56\x04\xd2\xc9\x54\x75\x5b\x64\x91\x01\x02\x75\x04\x62\x68\x26\x16\x8b\x18\x49\x20\x4b\xd6\x94\x50\x13\x3e\xda\x7b\xc0\x19\xc7\x36\x97\xac\xd6\x18\xdc\x02\xd8\xe5\x49\x2e\x75\x7e\x47\xe2\x1f\xb2\x5a\x79\x2f\x92\x3f\x14\x09\x90\xf7\x20\xf5\x8b\x72\xf4\x4d\x4e\xfd\x92\x1b\x45\xef\x4c\x67\x4b\xb2\x1b\x90\xfe\x69\x20\x8f\x99\xec\xb7\x2c\x69\xb0\x8f\xc6\x97\xc2\x55\x5d\x83\xf4\x4f\x89\x93\xba\xf7\xe8\x6b\x8e\xce\xc1\x36\xf5\xbd\x46\xf6\x50\xdf\x6c\xd8\x6f\x39\x62\x59\x1d\x7f\xc8\x6a\x8b\x6c\x29\x8a\x45\xe9\x74\xe7\xa0\x2b\x06\x6d\x4c\x7e\xc9\x30\xee\x14\xc6\x56\x57\x27\x90\xf5\x6d\x8c\x16\x03\xb3\x13\xd8\x0c\x12\x44\x47\x1e\x92\x2e\xfb\xa8\x22\x22\x21\x0e\x2b\xf1\x5f\xe7\x63\x4a\xdb\x33\x8a\x7e\xfd\xd8\xe8\xea\xce\xef\x26\xce\x2b\x01\xbf\x0f\x11\xe0\x9d\x9d\x91\x61\x3c\x0f\x47\xbc\x82\xc9\x5d\xb7\xbe\x47\xbe\xc3\xfe\xed\xfb\x67\xcf\xdf\x9f\x3e\x7b\xfe\xe2\xe5\x1b\x70\xd6\x41\xf4\xf5\xf9\x9b\xbf\x38\x59\x37\x37\x63\x66\x74\x1e\x05\x8b\xd5\x6c\x16\x44\xca\x2f\x7e\x24\x5d\xdb\x47\x81\x92\xa8\x4a\x09\xb9\x7a\x43\x41\xe3\x79\x78\x5f\x62\xb2\xd5\xc9\x2c\xa9\xc4\x14\xa4\x49\x9d\x05\x27\x6d\x13\xce\x8c\x15\x60\x6e\x07\x5f\x22\x74\x77\xfb\x25\x8e\x63\xed\xf8\xf2\xb0\x91\xa3\x74\x24\x63\x9f\x7c\x09\xd5\xc8\x3d\x94\x69\xe8\xa6\x56\x0f\x15\x1a\x5b\x40\xa9\x38\xd6\x78\xf6\xfb\x1a\x64\x98\x66\x75\x36\xa9\x07\x5f\xb8\x6f\x24\xad\xd6\x66\x24\x0f\x39\x92\x52\x8d\xf6\xe1\xc6\xaa\x2f\xfd\x55\x1f\x1d\x5c\x7a\x2b\xbf\x8c\xbe\x84\x8d\x34\xa2\x5a\x2a\x12\xed\x4c\xdd\xe9\xeb\x27\xef\xde\xbd\x7c\xf3\x47\x0c\xc1\x89\xa0\x14\x65\xab\x4c\xa5\x63\x2e\xa7\xd4\x68\xbb\x4a\x63\x8a\x3b\x97\xa7\x57\xd1\x2c\x5b\xa0\x5f\xcd\xf4\x8a\x9e\xa1\xa1\x01\xf5\x60\x9c\x5e\xc9\xb7\xe8\xf4\x2a\x5c\x53\xfd\x63\x80\x19\xe7\xe9\xd5\xc9\x49\x9c\xa7\x57\x32\xc6\xbf\xbf\x59\x3d\xbd\x10\x89\x36\x96\x95\x40\x92\xde\x22\x0f\xdd\xdc\x87\x27\xd2\xa5\x12\x16\xfd\x5e\xc3\xc9\x91\x3e\x38\x6a\x0c\x90\xc7\x2e\x48\xef\xa8\xa9\x2e\xf3\x7a\x72\x81\x60\xe1\x7a\x92\x54\x99\xda\x05\xc7\xf0\x45\x3b\xe1\x58\x2c\xce\xef\x2f\xcd\xca\xbf\x3c\xbe\x64\x55\xc9\x45\x3b\x82\x72\xb4\x71\x8e\xa5\xfc\x33\xfe\x02\xce\x63\x66\xd9\x53\x39\xe1\x64\xa9\x32\x5f\x7e\x7f\x68\x56\x2b\xd2\x1e\x1f\xb6\xd6\x8c\x3b\x11\x2a\xfe\xf2\x2a\x5b\x88\x8a\x71\x4a\x44\xca\xa5\x48\xb9\xe4\x29\xb3\xf8\x75\x52\x5f\x08\xfe\x69\x20\xc0\x23\x01\x41\x9e\xbf\xe2\xc3\x91\x54\xb2\xc0\x07\xfa\x32\x8e\xe3\xc3\x7e\x3f\xff\x7e\x16\xae\xcb\x58\xad\xfb\x71\x7e\x12\x5d\x8e\xf3\x93\x70\x94\xef\xef\x83\xc3\x87\x3d\x16\x7a\xa9\x57\xc2\x58\xbc\xca\x16\xdf\x43\xdd\xe6\x10\xbd\xca\x16\x8f\x79\xb2\xd3\x1d\xb5\x89\x8e\x8d\x4d\xec\xdd\xad\xe6\x0e\x65\xbb\xd2\xac\x12\x88\x0f\x0e\xd0\x9b\xd5\x3c\xfe\x32\x3c\xcf\xea\x8f\xf9\x3c\x23\xab\xff\x4b\x91\x78\xc9\x12\x05\x9e\x6f\x56\xf3\xef\x45\x86\x85\xfe\x9b\xd5\xfc\x31\x4f\xe6\xe8\x13\x3d\x3b\x56\xd4\xaa\xe9\x3c\xc3\xbc\x0f\x77\x1d\x67\xda\xd6\x8f\x79\x1b\xdc\xa5\x92\xa3\xd6\x59\x52\x4f\x8b\x72\x6e\x25\x17\xd2\x87\x6e\x8b\xd3\xd8\x5f\xe2\xa9\xec\xce\xe7\x6a\x87\x00\xe9\xe1\xad\xe5\x47\x0f\xbb\xc5\x47\x5d\x2e\x33\x7d\x4f\x22\xe0\x47\xc5\x71\x22\x8a\xc9\x28\x77\xd3\x1e\x8f\x1d\x5f\xa2\x2c\xaf\xcb\xab\xa9\x47\x88\x9a\x9c\x7a\x7c\x43\x16\xa7\x84\x0e\x6b\x7e\x93\xbf\x48\x75\x84\x7b\xaf\x90\x32\xca\xdd\x12\x1d\x73\xf8\xc7\x8d\x1b\x93\x30\x7f\x5b\xa0\x2d\x26\xaa\xd7\xce\x27\x70\xc6\x5e\xac\x16\x13\xd7\x7f\xb5\x74\x58\xac\x4c\x99\xf7\x26\xcb\xe1\xe9\x45\x52\xbd\x24\xc2\xf2\x3a\xab\x13\x6c\xc4\x00\x05\x35\x2b\x08\x51\x28\xe0\xe5\xa0\xd5\x3f\x65\xd7\x2c\x40\x21\x4f\x0e\xd7\x6c\xd8\xb1\x42\x9e\xcd\xd5\xd7\x26\x4b\xb0\x48\x86\xee\xbe\x5d\x48\x55\x28\x17\x87\x26\x6c\x22\x54\x49\x93\xa4\x54\x75\xd4\x3f\x38\x4d\x33\x50\xc3\x63\x78\x26\x6b\xbc\xd3\x80\x56\x8b\x10\x3b\x4e\xce\xf1\xa0\x65\x2e\x14\x64\x38\xda\x50\xd5\x90\x9c\x0f\xa2\x9b\x02\xd7\x55\x9b\x8c\x61\x14\x36\x1b\x6b\x02\x4f\x61\x56\x3d\x40\x21\xc3\x35\xfc\x19\x4e\x66\x59\x52\x0e\x54\x4f\x21\x71\x73\xb5\x69\x9e\xa2\x9a\xa4\xae\xb5\x38\xfb\x39\xfa\x94\xd1\x22\x21\x35\x5d\xbd\x86\x0d\x81\xc9\xc0\x08\x05\x9c\x94\xe7\xe0\x44\x44\xcd\x01\x9d\xad\x8f\x8f\xc8\x8b\x09\xed\x28\xe5\xc7\x04\xa1\xa2\xc3\xe8\xe0\x48\xc5\x42\x69\x03\x3a\x38\x0a\xc7\x87\x27\xcc\x34\x8b\xe0\xf7\x74\x1c\xe1\x36\xbd\x6c\x18\x83\x9e\xc4\xb9\x27\x47\xa1\x97\x66\x93\x59\x52\x66\x69\xef\x32\xaf\x2f\x8a\x55\xdd\x4b\x54\x0c\x8a\x1e\xb8\x63\x45\xa5\xcd\xc9\x12\xb4\x5b\xfd\x9b\x97\x47\x98\x45\xf3\x87\x09\x46\x39\x62\xbb\x76\xb2\x44\x15\x73\xb9\x72\x27\x4b\xee\xce\xbc\x53\x20\xc5\xe1\x76\x10\x4b\x6d\x3e\x5c\x9d\x03\x72\xe3\x8d\xf1\x76\x8e\xd0\x7d\xe7\x6b\xa7\x9b\x75\x50\x0a\x72\x4a\x5c\x2d\x93\x45\x7a\xda\xea\x41\xbd\xe5\x68\x6e\x39\xfe\x5b\xce\xf7\x6d\x9d\xa8\x77\xeb\xfb\x79\x35\xcc\x5a\x9c\xb7\xfb\xf5\xe1\xfe\xad\x72\x23\x55\x6e\xee\xcc\xdd\x64\xa7\xb6\x6b\xf2\x87\x1d\xae\xc9\x1f\x31\xd7\xe4\xe7\xab\x3c\x7d\x61\xf1\x08\x82\xeb\xa0\x74\x72\x21\x5e\x27\x3e\x18\x91\xde\xc5\x6b\x78\x74\x35\xe4\xf2\xd7\x6a\xeb\x8e\xa7\x73\x17\xc4\x28\xf9\x4c\x11\xf2\xb6\x82\x0a\x02\x87\x06\xb6\x94\x0e\xda\xb9\x49\xf3\xa3\x8d\xc7\xfa\xce\xc3\x63\xc9\xed\x58\xd9\xa3\x23\x80\x79\x26\xb1\xa0\x3c\x42\x85\x03\x6f\x66\x4b\x5c\x7e\x04\x0b\xa9\x2e\x8c\x4c\x08\xd6\xd2\x86\xa2\x3e\x20\x25\x60\x6a\x65\x79\xff\x00\xaf\x4f\x1e\x66\x17\x9c\x3a\xd8\xe3\x20\xa0\x65\x46\x1b\x8f\x2b\x36\x16\x67\x72\x3b\x1d\xcd\x7b\xd6\x7e\xab\xaa\x8e\xd7\x99\xbc\x5f\xbb\xc2\xa7\x01\x63\xfb\xc4\xf7\xa9\xbe\x38\xca\x27\x9e\x25\x9f\x57\x6e\x7b\xdf\x82\xc6\x94\xd6\x8c\x81\x31\x12\x95\xc9\xc1\x52\xfb\x13\x12\xfe\xc8\x73\xce\x79\xce\x7b\x98\x44\x9d\x89\x93\x7a\xbf\x6c\x3d\xec\x22\x94\x63\xc3\x74\xbf\x4b\xea\x3a\x2b\x17\xf1\x83\xff\x37\x18\xfe\x67\xf8\xb7\xe1\x7f\x89\xcc\xbf\x0d\xc5\xc7\x03\x72\xa1\xb7\x3a\x9b\x65\xcf\x7d\x45\x06\xc3\xff\xa4\x02\xe1\xfa\x61\xd4\x3c\xd0\xea\x04\x3f\xc2\x34\xd6\x0a\xf2\x6f\xc3\xbf\x8d\xff\x76\xf2\xbf\x1e\x8c\x58\x3c\x9b\x5a\xf2\x6c\xc0\xd4\x7f\xca\xae\xe3\x38\x0e\xfe\x4b\xf0\xba\xda\x49\x47\x71\xf6\xb3\xf2\x98\x74\xca\x8b\x68\xeb\xaf\x67\x92\x45\x87\x09\xa8\x14\xff\xae\x0c\x3f\xa2\xc9\x32\xca\xd9\x55\x41\xfa\xd4\x35\x38\xf5\xa8\x5a\x9d\x27\x25\xfa\xe5\x41\xcf\x91\xca\x90\x46\xfd\xc2\x8b\xcb\x64\x19\x4f\x96\xf8\x93\xd7\x1a\xf3\x0f\xcc\x36\xae\x1c\x3f\x5e\xff\x71\x95\xa7\xca\x25\x7d\xcd\xd6\xb9\x9d\x57\x41\xb4\xcb\x54\x19\x47\x62\xb3\x18\x54\xe6\x65\x9d\xcd\xb5\xff\x7b\x96\xf8\xb4\x58\x2d\xea\xf8\x50\x8f\x8b\x48\x94\x33\x26\x07\x85\xac\x8a\xf4\xad\x07\xda\x8f\xf2\x45\x9a\x5d\x45\x1c\x25\x1a\x04\x13\x2e\x36\x3f\xe5\x18\xa4\xd9\x55\x0c\xff\x53\x42\x9d\xcd\x2d\xc8\x21\xb2\xba\x4f\xea\x01\xc0\x85\xee\x10\xc4\xfc\x03\xb3\xcf\x4c\x82\xb7\x58\xcd\x66\x98\x51\xb8\x49\x14\x30\x49\x8e\x58\xd3\xb2\x26\xd8\x6d\x69\x2d\xef\x25\xcc\xdf\x72\x76\x89\x11\xb7\xd7\xce\xe4\x0e\x25\xb4\x02\x8a\xc0\xdc\xb3\x89\xce\x9d\x6a\x4c\x67\x5a\x46\x2d\x12\x78\x00\xbe\x9e\xeb\xd5\x52\x85\x56\x3a\x76\x2f\xa4\x38\x35\xe6\xfd\xb4\x6d\x59\x8d\xe9\x80\xb7\x4a\x87\x27\x31\x07\x1e\x59\xb3\x92\xa4\x38\xde\xe6\x95\x77\xad\x2d\xd5\x8e\x03\xb3\x84\x3e\xc4\x83\x48\x5d\xc1\x6c\x20\x75\x60\x07\xe4\xc7\x00\x37\xcd\xf0\x34\x67\x0b\x52\xa0\x3e\xe6\xb8\x9d\x50\xe7\x60\x58\xec\x65\x5b\x19\xd7\xf4\x68\xdb\x1a\x9b\x26\x52\xf1\xcc\x76\x1c\x68\x20\xf5\x56\xed\xf1\x96\xed\xde\xdc\x8c\x4f\x46\xdc\xd7\xf3\x2e\x13\x46\x5b\x83\xd0\xde\x30\x10\x36\x1e\xa1\x3d\xc3\x78\x80\x7c\xe5\x49\x6e\x22\x22\x58\x46\x3b\x95\x6b\x99\x19\x9d\xe5\x8b\x54\xbf\x66\xcc\xd2\x0f\x8a\xd0\x99\x74\xcf\x26\x83\xe0\x0e\xd3\xb4\xf3\x93\x55\xd9\xa0\xbc\x56\xda\x64\xce\x20\x7a\xd6\x80\x77\x34\x29\xf4\xa2\x41\x02\xa5\x8b\x6b\x73\x63\xcb\x13\xc5\x58\x44\x11\xf9\xf8\x14\x45\xac\xc5\x16\x60\x56\x10\x46\x85\x49\x99\x2b\x7d\x69\x1f\x90\xe9\x9a\x34\xd2\xac\xb2\x1a\x0c\xf1\xd1\x31\x3d\x44\x82\x35\xd0\xb7\x6b\x02\x6f\x78\x20\xfe\xb2\x1a\xd7\x1e\x5f\xeb\x6c\x8e\xb4\x9f\x66\xc4\xac\x81\xd6\x3b\xb0\x16\xbb\x1d\x24\x2d\x07\x9c\xb5\x3d\x47\x36\xc6\x63\x28\x7e\x12\x5b\xe9\xaa\x1f\xf6\x04\x45\x8e\x88\x50\x0a\xf1\x4c\x3e\x18\x3b\xca\x60\xd0\x27\x9d\xd5\x8c\x75\xe0\x84\x23\x2e\x0c\xdc\xae\x06\xf9\xad\x84\x7e\xea\x4f\xdb\x7e\xbe\xc3\x52\x54\x27\x23\x06\xea\x30\x0e\xd3\xad\x26\x20\x32\x3b\xac\x7a\x03\xad\xc3\xeb\xa3\xc9\x11\x68\x0f\x7a\x2a\x91\x44\x45\x4c\x08\x67\xce\x68\x54\x4c\xa7\x55\x56\x47\xa2\x27\xe4\xdf\x19\x82\x6b\xd2\x57\x1c\x1b\x9a\x26\xc3\x67\xcf\x5f\x3d\xff\xf8\x5c\xb5\x24\xe7\xdd\xa9\xb5\xad\xbd\x70\x6d\xcf\x88\x66\x0c\x80\x86\x58\x3c\x45\xf7\x0a\x50\xeb\xd3\x81\x93\xdf\x23\xe0\x75\xec\x5c\x18\xbe\x1d\xd7\xac\xef\xfa\xe6\x2e\x3a\xff\x02\x88\xec\x85\x6b\xde\x3d\xb7\xae\x46\xaf\x5e\xfc\x17\x75\x6e\xfd\xd6\x83\xd4\xc7\x4c\xfa\xa8\x8b\x20\x74\x77\xe3\x51\x47\x1d\x04\xca\x59\x1a\x2a\x5c\xaf\x99\xde\xd6\xcb\xe3\xf6\x35\xb6\x61\x2b\xda\x64\xcd\x66\x64\xbb\x24\xd6\x2d\xf5\x0e\xf9\x2a\xd2\xe7\x33\xaf\xc1\xa1\x45\xd6\xf0\xd9\xbd\x68\x1c\x34\x8b\xfb\x42\x50\xf1\x06\x77\xc2\x8f\x42\x90\x58\x47\x5e\x0b\xbd\x74\xce\xbe\xf5\x76\x24\x10\x16\x21\x27\x41\x0e\xad\xc1\x48\x41\x93\x4f\x4f\xd2\xb4\x8d\x56\xc3\xc2\x5c\x64\x97\x70\x35\xc3\xe5\x71\x0b\x6a\x8c\x2e\xbf\x8c\x1b\x98\x41\x68\x53\xbc\xfa\x0d\xac\xe6\x1a\xc2\x0f\x45\x07\x9d\x28\x22\x59\x48\xe1\xa2\x78\x8f\x68\x6a\xef\xc4\x1a\x5b\x6c\x8a\x23\x6c\x34\x4e\x57\xfa\xf1\x49\x13\xa1\xef\x16\x50\xda\xc8\x2a\xc3\xbb\x9c\xaa\x2d\x4a\x34\x11\x61\x2c\x55\x62\x72\x52\xa3\x3b\x9d\x4b\xfa\x17\xe9\x8f\xec\x70\x4c\x71\x50\x54\x64\x01\x1d\x8b\xd6\xe2\xef\x9f\x7f\x7c\xf2\xf2\x4d\xbf\x6f\x23\xa5\x7d\xc2\xe3\x8f\x7e\x1f\xb1\x8c\x99\x2a\xc6\x16\x67\xa2\xe4\x45\x89\xb1\x9b\xc8\x53\x49\xdf\xd3\xf7\xb1\x5e\x24\xf2\x6d\xcc\xff\x06\xfa\xce\xe7\x33\x4a\xd2\x54\xad\x2b\x79\xe3\x53\x2c\xb9\xe1\x34\x87\x8a\x89\x95\x11\x9b\x62\x96\x21\xcb\x42\x89\x18\x3a\x4b\x91\x52\x69\x71\x61\x8a\x5b\x6e\x4d\x23\x83\x24\xff\x94\xd1\x62\x6e\xbb\x77\x91\x24\xef\x2e\xd7\x3b\x6b\x2d\xb6\xb1\xf7\x18\xdb\x40\x3a\xd8\x4d\x71\x75\xa8\x6f\xf8\xa4\xfd\x81\x25\xa2\x43\xbb\x08\xee\x6b\x14\xee\xa8\x54\x96\x38\xb0\x6a\x97\x15\x19\xfb\x4d\xf5\x17\x58\x3b\x84\x03\x29\x22\xfe\xb4\xd7\x92\xc3\x98\x33\xda\x80\x4d\x9b\xe4\xc5\x46\xc1\x8b\x3d\x73\x60\x6c\xf2\x27\x95\xc9\x09\x39\x97\x02\x8d\xe8\x89\xcd\xce\x6d\xc7\x35\xf9\x58\x75\xb3\xda\x5d\x19\xa8\xcd\x35\x6a\x5e\x6a\x5a\x94\x03\x9d\x13\x7b\xc7\xe6\xe0\x68\xa4\x41\xd0\x99\xaf\xfe\x0e\xd7\x6a\xd2\x62\x6b\xa4\xf7\x35\x94\xa0\xcb\x0a\xee\x71\x2c\x7d\xaf\xa0\x2f\x95\x6e\x91\x9c\x2c\x15\xb6\x33\xad\xd6\x8c\xe1\xb5\x66\xa4\x77\x28\x9c\xa3\x4f\xd5\xa7\x43\x32\xcc\xa5\xe7\xde\x9f\x0d\x49\x2c\xed\xc3\xb6\x65\x24\xc5\x44\x28\x49\x63\x54\x43\xeb\x60\xf8\x2f\xe7\x90\xa3\x45\x70\x88\x95\xee\x83\x07\x2d\x2d\x13\x16\xe7\x6c\x8b\x04\xe4\xeb\x10\x4a\x80\xf4\x91\x49\x95\xf1\x75\xa8\x62\x87\x3c\x82\x21\x7f\x27\x02\xfa\xd5\x88\xa7\x8d\x20\x9b\xdb\x36\x91\x82\xb5\x29\xd0\x81\x50\x3b\x3d\xc3\x5d\xc7\xda\xb1\x84\x29\xc6\xae\x9d\x3a\xfb\xc8\xa1\x6e\xf6\xdd\xd1\x20\x22\xb7\x90\xbf\xb4\xd3\x87\xad\x85\x32\xff\xba\xc2\x96\xdd\xc8\xd1\xa6\xa1\xda\x4c\x9f\xf8\x72\x33\x89\x92\xda\xa3\x5f\x97\x24\x11\x19\xd6\x33\xfb\x24\x4d\xbb\x4f\x66\xcf\xed\xc6\x7f\xb5\x3c\xf6\x5d\x02\x91\x11\x77\xae\x6a\x6b\x87\x10\x15\x67\x3f\xa3\x77\x41\xe7\xe5\x0a\x29\x8d\x7c\x62\x73\x32\x62\xd4\x0a\x3b\xf6\x36\x74\x6c\x7d\x47\xc5\xd9\xcf\xc7\x02\xbd\x65\x99\x7d\xc9\x8b\x55\x05\xa3\x58\x1d\xaf\x9b\xa6\xd9\xdf\xf7\xbe\x8f\xb9\x4f\x69\xd8\xee\xd0\xac\x62\x4c\x1d\x3e\x89\xd9\x93\x23\xea\xf3\x45\xde\x9b\xee\x4e\xc3\x95\x4f\x07\x07\x07\xfe\xe7\x3b\xe0\xf4\x51\xff\x6f\xb6\xaa\x2e\x28\x5c\x35\xc4\xc0\xe3\x09\x76\xf0\x3b\xe3\x6d\xd0\xe9\xa2\xc0\x27\x9a\xb0\x65\x05\x5a\xff\x14\xce\x88\x03\x86\xeb\x49\x6c\x8c\x8d\x8c\x40\x34\x19\xb6\xca\xd5\x58\x14\x13\x68\xd8\xb8\xcf\x79\x0a\x1a\x17\x3b\x5f\xbd\xe6\x11\xd6\xbe\xa7\x27\xa8\x81\x06\x75\xfc\xec\xa9\x29\xdf\x65\x2b\xf3\x5e\xd3\x35\x2c\x9a\x58\x8b\xc2\xde\xe4\xed\xd7\x97\x5d\x77\x3d\x75\x61\xcb\x6d\xdf\x8d\xc6\xad\x49\xcf\x6e\x48\x34\xbe\x37\x69\xee\x23\xbc\xeb\x9c\x96\xc2\x8b\xb7\x70\x0d\x25\x07\x81\x69\x76\xa5\xcd\x24\x7a\x68\xd1\x90\x5c\x0d\x0e\xa9\xd0\x3e\x5e\x67\x55\xe8\x25\x2c\x20\xd9\x5c\x2a\x05\x89\xdc\xdb\x6e\x4f\x59\x46\x90\x7f\x51\xb3\x69\xba\x23\x33\x57\xb2\xde\x2b\x56\xde\x7a\xb1\x72\x9a\x31\xb8\x3d\x6a\x93\x1a\x51\x6d\x6c\xe2\x93\xa1\x35\x63\x99\xca\x0f\xb9\x4e\xb1\x7a\x6b\x79\x22\xdd\x40\x45\x4c\x04\xdb\xe1\xbd\x1e\x64\xd6\xf0\xc9\x1b\x8e\xf9\x87\x99\xad\xb2\x0c\x92\x8a\x54\x8c\x7f\x40\xfc\x3c\x1f\xa2\x66\x62\x6c\x7e\xb2\x19\x51\x82\x2f\x6b\xac\x0c\xf5\x0e\x63\xb4\xe6\xa0\xc4\xb1\xcb\xe3\xd7\xdc\x78\xe2\xef\xdc\x4c\x50\xbb\x73\x64\x6f\x73\xfd\x71\xa7\x75\xb2\xb4\xee\x14\xd2\x5b\x25\x36\xe2\x1e\xf5\xcc\x05\x3b\x44\x60\xb6\x7a\x4e\x87\x81\x56\x5c\x59\x0e\x4f\xd5\xd7\x00\x6b\x05\x72\xbe\xa5\xfa\xbc\x80\x87\x4a\xf2\x6e\xc8\x91\x35\x7e\x4b\xa6\xf6\x3d\xb0\xc6\x2b\xa4\x00\x3b\xdb\xd6\xdd\x20\xbe\xa4\xb0\x2c\x35\xd3\xf3\x7f\x64\xa0\xb2\xec\x26\x77\xcc\xd4\x5a\x56\x7c\x6c\x8d\xdb\x31\xff\x68\xec\xc1\x67\x6b\x71\x99\x94\xa2\x99\xd9\xf5\x7b\xa9\xfb\x4f\xdc\x8e\xa5\x3d\x00\x5a\xd5\x8e\x16\xd4\xb0\xce\xaa\xda\x34\x38\xb0\x5c\xba\x82\x41\x13\x28\xcb\x4b\xbe\xc3\x80\x1e\x71\xfd\x7b\x5c\x30\xd2\x6e\x0a\xf4\x56\x34\xa2\x7e\x13\x00\x63\xc2\xbd\x4a\x50\x5c\xf1\x9f\xc5\x5e\x16\x37\x15\xfa\xbb\x15\x91\x00\x05\xb6\x98\x14\x4d\x65\x4b\x21\x26\x8f\x3c\x8a\x45\x15\x53\x7d\xa2\x61\x57\x29\x86\x2d\x02\xff\x68\x36\x77\x92\xeb\xfb\xf8\x14\x75\xf4\x78\x4b\xc5\xbc\x81\xc6\x3f\x72\x7a\x8a\x76\x64\x02\x7e\x2f\x8e\x95\x75\xad\xb6\x58\x03\xac\xf8\xe9\xe3\x74\xa0\x01\x95\x84\x16\xbd\xa3\x88\x5c\x33\x2b\x31\x0b\x2c\x24\x99\x1b\xc7\x5b\x22\xc9\xe5\xd2\x6e\x8d\xae\x3e\xee\x80\x4f\xb3\xa7\xbe\xc6\x44\x82\xf5\x9b\xe9\x2c\x76\xa3\x84\x83\x22\xd5\x22\x3b\x61\x23\xa5\x85\xd5\x8d\xbf\x7e\x64\xda\x84\x7e\xd3\x18\xf6\x08\xbb\x39\xb4\xd8\xb0\xa3\x4c\x4b\x12\x69\x0c\x85\x5a\x6a\x64\x18\x42\x7f\x29\x86\x9e\x21\x7c\x61\x0a\x6c\x8e\xc8\x44\xad\xff\x53\x79\x32\xbe\x6c\x83\x28\xb3\x24\x7d\xbb\x98\x5d\xcb\x40\x7d\x30\xb2\xc9\xd9\x2c\x1b\x28\xdd\x11\x66\xa9\x14\xb7\xd8\x55\xa9\xa0\xc1\x40\x3b\x55\x11\x8b\x1a\x93\x42\x32\x65\xb6\xd5\x65\x0b\x9e\xf0\x28\x32\x2d\xb0\xb6\x3d\x00\xa2\xd6\xf3\x6c\x04\xa7\x0c\x23\xf8\xf6\x71\x88\xe7\x52\xda\xa2\x0b\xe8\x55\x5a\x1a\x98\x2e\xca\x77\xb3\x1e\x13\x37\x5e\xff\x11\x51\xdb\xb6\x64\xa1\x21\xec\x6b\xd1\x31\xb2\xd4\x89\xe4\x42\x30\x95\x1b\x63\x5f\x27\xdd\x37\x3b\xab\x89\x38\xf6\xd7\x06\x9d\x10\x1d\x6e\x5b\x75\xb6\xd2\x1e\xe9\xb9\x6d\x5f\x64\xc3\xa4\x6c\xa1\xfe\xb7\x95\xe6\x9f\x62\x32\xba\x87\xc6\x66\x91\x19\xb7\x6a\x0f\x4c\x27\xde\x8e\x9e\x61\x4b\x35\xe6\x94\x36\xce\xc4\x6c\x68\xc6\x54\x1a\xed\x54\x61\x6c\x1a\x53\x09\x69\xf4\x2b\x5b\xce\xee\xa2\x04\x61\x22\x5e\xc1\xf5\x9e\xde\x8d\xeb\x57\x7d\xf6\xd9\x98\x5a\xf4\x4e\x76\xa8\xcd\x74\x73\xa4\xec\xde\x36\xd2\x28\xae\xd8\xdb\xc2\x96\xf8\x0c\x35\xbb\x4c\x34\xd5\xc1\x43\xe6\x07\x4f\x65\x3c\x45\x69\x1d\x46\x3c\x9a\x0a\x66\xc9\x52\x37\xa2\xc0\xc8\x68\x6c\x46\x30\xdd\x33\xc5\x09\xa4\xb9\x43\x47\x19\x3f\xd7\x46\x26\x60\xbc\x66\xf2\x8f\x63\xc9\x96\xb3\xb4\x9b\x1b\xab\x23\x91\xba\x5c\x29\x70\x95\xe2\x00\xeb\x60\x07\x46\xab\x4d\x9b\xdd\x31\xeb\xa9\x75\xd1\x89\x9d\x77\x72\x7b\x59\x88\x76\xf6\xf6\xfc\xcc\xab\xa8\x61\xcc\x0b\x9c\x6c\x83\x42\xbe\x43\xfb\xca\x16\x04\x80\xdb\xb1\xa0\xf3\xd3\x8f\x14\xba\x0e\x81\x6b\x70\x17\x18\x86\x3f\xb9\xe5\x55\xc1\xe1\x6d\x07\x61\xf7\x81\x0b\xad\xb5\x19\x6b\x20\xab\xc3\x2f\xab\xea\x0a\xe7\x37\xd7\xb0\x2f\x69\xb4\x3e\x44\xf2\x16\x53\xd2\x66\xe0\xac\xed\x74\xf9\x5a\x37\xc1\xbd\xc1\x64\x5b\xc1\xcd\x80\xb2\xed\x70\xcd\x16\x58\xfb\x8c\xa9\xbf\x18\x64\xc0\x33\x29\xdb\x8c\x86\x79\x98\xc6\x2d\x0f\x9a\x1e\xc5\x54\x19\x35\xba\xfd\x38\x96\x25\xe9\x35\x6b\x1b\x48\x50\xb0\xd8\x1a\x1a\xc3\xba\xd8\x78\x6d\xd1\x6b\xb0\x3c\x77\x98\xea\xf6\xbe\xb3\x08\xcf\x5b\xa0\x25\x47\x66\x33\x53\x74\x8b\x11\xda\x7e\x74\xe2\xf1\xc9\x36\x2b\x4b\x49\xf5\xec\x87\x05\xbc\xd1\x44\x1d\x76\xf0\xa1\xda\x97\x10\x23\x55\x6c\xf2\x0f\x59\x1d\xcd\x93\x7a\x72\x11\x6d\x5c\x40\x8a\x2b\x11\x2d\x74\x30\x22\xad\x46\x68\x5e\xa1\x4a\x4b\xa0\xb3\xac\xaa\xb3\xb4\x07\xf6\x6a\x3d\x6d\x94\xdd\x5b\x14\x75\x8f\x62\x3e\x64\xe9\x71\x2f\xd8\x37\xf9\x28\x29\x71\x86\x1e\xc5\x1e\xd3\xb9\x61\x76\x95\x4d\x6c\x14\x9c\x9e\xc7\x50\x7e\x7c\xe4\x55\x3e\x92\x76\x72\x08\xf3\xf0\x24\x22\x4e\xc8\xbb\x2b\x9d\x3d\x38\x59\xda\x5b\x78\x8b\x9d\xdb\x8c\x6c\x5b\x5a\xbb\x62\x42\xca\x83\x4b\x38\xe2\x73\x2e\xce\x6d\xcf\x76\x41\xba\xd7\x0e\x88\x4c\xaa\x62\xb3\xb6\x58\x9d\xdc\x63\x86\x51\x6f\x5d\xa0\x86\x42\x18\x36\x5c\xcb\x88\x2f\xfa\x7f\x0d\x9f\x0f\xb8\x51\x6f\xe7\xf4\x01\xa3\xb9\x71\xe2\x1f\xe4\x0a\xa8\x75\x53\xec\xd4\x22\x55\x8e\x92\x2e\xd3\xcf\xc4\x06\xf9\xc8\x1d\x1c\x4d\x74\x7a\x29\xdd\xd9\x65\x84\x8a\x7b\xb2\xd1\x73\xc4\x3c\x2b\xcf\xff\xb9\xde\x24\x36\x38\x78\x72\x1c\x31\xb4\x78\x91\xf8\x6a\xb1\x64\x76\x88\xc6\xd4\x1a\x38\x6a\x53\xf8\xab\x7f\xbb\x91\xb8\x37\x37\x12\xb0\x80\x6d\x37\x12\x36\x90\xed\x69\xe2\x51\x87\xa7\x89\x6f\x99\xa7\x09\x9f\x1d\xfc\x6f\x2d\x3b\x78\x9f\x37\x8a\xdf\x5a\xde\x28\xb6\x77\x6c\xd5\xe5\x49\xc0\xe3\xf9\xc1\x36\xf8\xf7\x38\xfd\x6e\x73\x0e\xf1\x07\x8f\x73\x88\x76\x27\xf9\xe0\xf1\xc0\x75\x92\xdf\xe1\xa2\x4c\x2c\x12\x9f\x8f\xb2\xd6\x88\x1e\x9e\x79\xf3\x86\x29\xf1\x39\x3e\x70\xc2\xb7\xf8\x3c\x1f\xf8\xe2\xb7\xf8\xbc\x1f\x78\xbd\x10\x6c\xe3\x71\xe0\x43\x96\x94\xd2\x77\xae\x3a\xa1\xab\xd5\xdc\xe2\xf4\x0c\x27\x59\xea\xe8\x36\xa4\x7f\x6b\x7e\xc2\x1d\x1f\x32\x31\x82\x76\x30\x35\x99\xac\xe6\xab\x59\x22\xe5\x21\x8e\x5a\x15\xbf\x90\xab\x46\xed\x52\xfb\xa2\x54\x13\x71\xb9\xc6\x3d\xb7\x70\x00\x2d\x34\xa1\x71\xdc\x49\xcf\xd8\x6a\x94\xe6\xc9\xd5\x5d\x47\xe9\xe0\xe5\x62\x2a\x12\xae\xef\x6f\xb4\x94\x82\x86\xb7\x78\x78\x3f\xe3\x46\x2a\x94\xdf\xdb\xc5\x5a\x47\xb4\xb1\x47\x53\x7a\x10\xd7\xa3\x99\xdb\xb7\x8b\x9d\x47\xf3\x6b\x0d\x66\xde\x52\xfc\x7e\x07\xf3\xf1\x1d\x06\x93\x3c\xb4\xb3\xa5\xb9\xb4\x44\xf3\x46\x0c\x5e\xc9\x27\xaf\x7d\x03\xa5\x35\x23\x5a\x31\x96\xbe\x72\xb3\x34\x76\x83\xbc\xe2\xd0\x8c\xd0\x8b\x5c\xbe\xa8\xb2\xb2\x7e\x52\x0f\x74\x5d\xa4\x00\x86\xe5\x2d\xff\x72\x2d\xe3\xb9\x05\x4a\x09\x37\xab\xf7\x34\x77\x64\xb5\xd4\x18\x9f\xfe\xd5\x25\x79\x64\x6b\xe1\xa2\x9f\x7b\x3e\xd6\x3f\x5e\x9b\x05\x0d\x45\x5c\xae\xfa\x61\xde\x15\xd5\x04\x9f\x67\xb5\xa3\x5b\x1b\x2a\x0c\xed\xc9\xdc\x0f\xd0\xb5\xcb\x30\xd8\xe7\xba\xb8\x6a\x8a\x6d\x74\x95\x4f\xfd\x2f\x56\x48\x12\x4c\xb5\xa0\xbd\xae\xf6\x55\x67\xd1\x47\xfe\x56\x6b\x4b\xab\x7e\xd8\x33\xd9\xbe\x13\xb8\x8a\x00\x36\x45\x1a\x89\xa4\xb7\x88\x52\x0c\x3a\x61\x1b\xef\x3e\xdf\x7a\xf9\xd6\x93\x8b\x78\x6f\xaf\x6d\xfd\x46\xd8\xfc\x4b\x52\xca\xda\x80\x97\xb4\x02\xf4\x2d\xf3\x7a\x82\x11\xbd\xf1\xd7\xda\xda\x17\xac\x19\xa2\x29\xf7\xb4\x21\xbe\xa8\x40\x30\xdb\xf6\x41\xdb\x06\x3a\xdd\x80\x0e\xb0\xda\x1e\x1f\x1c\x39\x5b\x8e\x65\x5b\x9d\xb8\xf5\x5e\x33\xc3\x3a\x58\x8b\xb0\x63\xd3\x45\x24\x7c\xe5\x5b\xcf\x27\x55\x88\xe3\xf8\x61\xb8\xbe\xd5\xe6\x94\x9a\x13\xbb\x17\x8d\xe3\x18\x15\x52\xe4\x20\x79\xf6\xd4\x4e\x5b\xdc\x8d\x71\xf1\xc5\x0d\x02\xa4\xf2\xdc\x92\x6d\x01\x30\x74\x18\xff\x45\xfe\x79\xa0\xe5\x33\x6d\xf2\xc6\x91\xc8\x44\xa9\xef\x9d\x37\x7f\x2e\x35\xaf\x41\x7d\xf5\x2e\x1b\xdd\xd0\x7f\xc7\xa3\x29\x9f\x0e\xf6\x5a\x5a\x93\x6a\xf0\x9d\xd9\xf1\x11\xce\xfe\xfe\x7e\x27\x58\x93\x48\x03\x61\xbc\x3f\x50\xeb\xbb\xed\xef\xd3\xad\xba\x14\xb1\xf1\x6a\xc1\x69\x04\xda\xed\x4e\x57\x40\xb1\x9d\xef\x64\x8e\xab\xb5\x8d\x43\xef\x3e\x26\x61\x11\xc4\xfd\x47\x71\x11\x5f\x62\x3a\x74\xca\x17\x15\x47\x0a\x3e\x2d\x20\x15\x4a\xc5\x8d\xd2\x4e\x4b\xef\x3c\xab\x9f\xb1\x2d\xf2\xc7\x55\x9e\xb2\x57\x01\xbd\x06\xb4\x37\x5c\xeb\xda\x23\xce\x51\x46\xd8\x94\xb0\x6b\xbb\x47\x77\xb9\xa5\x6d\x93\x2e\xa0\x06\xa4\x7f\xf3\xaf\xb7\x3b\x04\xc4\x1f\xdd\xe5\xa4\x7a\x87\xa3\xec\x1b\x7a\x3e\xe2\x26\xbc\xaa\x8b\x0d\x36\xd7\x7e\x0e\x23\xf4\xec\xff\x76\x6a\x3d\x3a\xc6\x9b\x67\x47\xda\x00\x6c\xb7\xde\xf7\xd8\x72\x97\x3d\x3d\x41\xb3\x4d\x3b\x55\x0c\x24\x31\xe2\x76\xd6\xd8\xe8\xdd\x89\xa9\x6a\xb7\x4d\x81\x43\x51\xf3\xfe\xfe\x76\x75\x1f\xf5\xfb\x6d\xc3\x13\x43\x50\x30\x2f\x8e\xa1\x0a\xea\xef\x25\x3a\xf7\xc9\x54\xfc\xab\x2e\x19\x59\x03\x16\x14\x7d\x7f\xb2\x5c\x66\x49\x59\xbd\x5c\x6c\xb9\x9c\xbe\xde\xe2\x30\x08\x73\x47\xdd\x87\x4a\xaf\x6b\x0b\xf8\x51\x47\x8f\x37\xaf\x24\xd1\xe1\xae\x0a\x36\x21\xd3\x7c\xc5\x43\xc5\x17\x63\x4b\x0b\xaf\x30\xb0\xd8\xa0\xca\xea\x27\x92\x97\x89\xaa\xac\xfe\x51\x7e\x90\x1a\xb8\xc9\x0a\xee\x01\x2b\xe8\x7f\x8a\xa1\x1a\x7b\x65\xf6\x79\x95\x97\x59\xd5\xcb\xae\x92\x49\x3d\xbb\xee\xd5\x97\x85\xd6\xa9\xc2\x0e\x54\xc3\xc0\xec\xa1\x62\x77\x5b\xf1\x89\xee\x72\x0d\x17\xb5\x6a\x45\x2e\xde\x46\x08\x8d\x18\x79\x7a\x08\xc0\xda\xc0\xbf\xd7\xe2\x38\x16\xd5\xa0\xd6\x91\x28\x04\x3a\xbc\x49\xbe\xc0\xf5\x12\xb6\x91\x18\xe4\x89\xb6\x9b\xf5\xbb\x51\xa0\xaf\xd5\xe7\x1f\xa1\xcf\xa2\xbe\xaf\xd0\x65\x5b\x9a\x68\x85\xc1\x53\xcb\xf7\x2c\x5f\x24\xe5\x35\x8a\x65\xf9\x88\xcc\x8a\xcb\xe8\x22\x3f\xbf\xa0\xeb\x6b\x9e\x46\xf3\x1c\xc6\x2f\x2a\xb3\x2a\x12\xf4\xf3\x75\x9e\xc2\xdf\x97\xe4\x25\xcc\x5e\xe2\xdf\x7f\x1b\xae\x45\x0d\x3e\x27\x2d\x8d\x0f\xfe\x51\xb8\x9e\x15\x97\x48\xa1\xc4\x8f\x38\x46\x04\xa8\x5f\xb3\xe2\xb2\x99\xe7\x69\x3c\x2b\x2e\xf7\x41\x50\x36\x9d\x15\x45\x39\x18\x08\xa0\x83\x59\x71\x19\x3e\x78\x18\x8e\x08\x49\xf4\x43\xaf\x7d\x1b\xcc\xf3\x34\x1c\xfd\x07\x61\x1d\x9f\x4a\xf2\x4f\xd0\xe1\x48\xf6\x43\x67\x29\xd6\x5d\x16\x8a\x63\x09\xa4\x30\x9a\xe7\x69\x53\x66\x52\x1f\xae\x4c\x33\x55\x63\xa4\x8a\x8b\x7c\xf2\xdb\x52\xc5\x54\xd7\xf7\xb2\xa6\x1f\x0e\x8e\x8e\x21\xfa\x4c\x99\x55\xcc\xe8\x0d\xea\x6b\x9b\x98\x79\x9e\xee\x1f\xe1\xd4\x28\x95\x84\x32\xab\x1e\x6f\x59\x5c\xcc\xab\x18\x8d\x46\xf7\x41\x2f\x06\xb3\xf7\x62\x75\x32\x79\x3d\xd9\x98\x48\x8d\x30\xb9\x54\x2d\x46\x55\xdd\x41\x03\x50\xd7\x5a\xd4\x41\xa8\xda\x32\x6a\xc7\x10\x58\xac\x7e\x1e\xc9\x6f\x98\x5d\xd5\xd9\x22\x1d\x30\xfd\xc7\xaa\x28\xb1\xe6\x4a\x5c\x4d\xc5\xd7\xb3\x0c\xe4\xaf\xe0\x4d\x0e\x38\x85\x45\x5e\xbf\x58\x40\x96\x56\x66\xf8\x29\xbb\x1e\xe9\x17\x78\xb3\x98\xa5\xc2\x85\xe5\xe3\x5b\xb1\xc8\x18\x92\xcb\xac\x7e\x64\x40\xf0\x09\x89\xf9\x07\x6d\x6b\x07\x6d\xb7\xb6\x9d\xd0\xe3\x07\xd4\x6a\xf9\xc1\xa8\x9d\xae\x38\xac\xc9\x6b\xdd\x50\xc5\xe8\x99\x8d\x53\xc8\x93\xae\xad\x7c\x93\x97\xb1\xf2\xc6\x27\x46\xd1\x27\xd5\x24\x03\xc7\x9d\xad\x85\x18\xc8\xba\x89\xf2\xf4\x2a\x4a\xaa\xc9\xc8\xc7\x7f\x79\x15\xb8\xd4\x52\xd1\x0a\xcf\x2d\xdd\xd5\x37\x30\x3f\x00\xec\x03\x08\x8e\xe6\xcf\x47\x91\xd5\xdb\xe9\x20\x38\x0e\xc2\x70\x2f\x8e\x0f\x8e\x42\x3e\x9b\xd7\x6d\xe5\xaa\xd5\x19\xc6\x0e\x1b\x1c\x8a\xfe\x85\xa3\xa4\x9a\x6c\x86\xcd\xd3\xab\xfd\xa3\x70\x58\x17\xaf\x8a\xcb\xac\x7c\x9a\x54\xd9\x40\x34\x1a\xa4\x59\x35\x09\x9c\xa5\xd4\xd6\x38\xb4\x55\x97\xab\xac\x31\xe7\x09\x6f\x8c\xbc\x4c\x38\xf2\x4e\xca\x98\xa7\x9e\xc4\x6d\x73\x63\xeb\x23\x19\x1b\x58\x35\xd1\x98\x8d\xb0\xc9\xe1\xef\xaf\x83\x00\x84\x54\x01\xaa\x84\xa2\x81\xb9\xb9\xae\xdf\x2e\x26\xdc\xfa\xad\x0d\x64\x60\x5b\xb9\xf8\x00\x23\x4f\x77\xd0\xf6\xa5\xb3\x7e\x4b\xbb\xdc\xb3\xf9\xb4\xe8\x37\xf4\x0e\xd9\x76\xf1\x84\x9c\x08\x45\xce\x5e\x6d\x1f\xa1\xd1\x06\xac\x3c\x94\xcd\x10\x38\x3e\x81\xa3\xe4\x47\xa2\xba\x15\x52\x6f\x48\xea\xc9\xa2\xc5\x94\x93\x76\x93\x6a\x94\x59\xb5\x9a\xd5\xb0\x9d\xa7\x45\x39\xf8\x42\x81\xe9\xf2\xef\xd1\xf2\xcf\x44\x8b\x6e\x07\xfb\xfb\xb9\xb5\xa9\x3c\xc0\xe3\xfc\x64\x84\x95\xab\x88\x76\xf2\x38\x7a\x62\x2e\xb8\x88\xb0\xfe\x01\xb0\x36\xd7\xf2\xb1\x2c\xf3\xa3\x59\x46\x1e\xe7\xab\x59\x8d\x41\xf1\x60\x0b\x59\x58\xb4\x6d\x10\x75\xeb\xa8\x26\x3f\x60\x1d\xc7\x07\x47\xff\x89\xbf\x94\x64\xf6\xb0\xd9\xfa\xc8\xf0\xb2\xfc\x6a\x73\x71\x89\x0f\x9d\x8a\x77\x11\xda\xb8\x02\xfd\x16\xee\xc2\x79\x86\xcb\xf5\x43\xc3\x7d\xbd\xbc\x51\xd4\x90\xab\x6b\xb6\x55\xb1\x99\x0a\xd0\x91\xec\xa8\xb1\xb5\x4c\xbb\x73\xab\x78\x0c\x0a\x32\x83\x35\x31\x2c\xc7\xf8\xde\xdf\x5e\x7e\xa4\x1b\x8a\x39\x7f\x44\xd6\x1c\x56\xed\xa4\xff\xc8\xca\x40\xfd\xdb\x0d\xaa\x2e\x25\x87\x56\xbd\x7f\xd0\x43\x49\x27\xd3\x2f\x03\x62\x77\x68\xc7\xc9\x30\xbe\x95\xd2\x0e\x93\x29\x5f\x2d\xa8\xd2\xb6\x91\x8a\x10\x21\xbf\x7a\x19\xc5\x29\xaa\x28\xa2\xbc\x47\x93\x4c\x77\x8c\x77\x69\x9b\x00\x4b\xbf\x68\x48\xc4\x5d\x75\xd0\xee\xac\x1d\x76\xdb\x10\x43\x5d\x6a\x58\x1e\xcd\x22\x90\xe9\xb8\x2a\x4d\x1e\xdd\xa2\x0f\x34\xa7\x18\x68\x7a\x83\x32\x98\x1d\x97\xda\x1a\x40\x3b\x6e\xb5\x52\x72\x72\x74\xb1\xbe\x3b\x3d\xd5\x01\xea\x3b\x14\xd2\xfe\xe0\xe2\xb0\x8d\xde\x53\x99\x2d\x67\xc9\x24\x73\x60\x28\xbd\x2d\x7c\xb2\x1e\x35\x79\x23\xb2\x3a\x14\x19\xa3\x15\x91\x08\x50\x82\x1c\x83\x40\x6b\x56\x14\x9f\x56\xcb\x97\x66\x0e\x77\x54\x94\x4d\x6a\xe3\x0d\x11\xf8\x89\xc0\xac\x2a\x08\x9b\x48\x5e\xa7\x9f\x12\xa1\xd4\x4c\x41\x7a\xe5\xb8\x65\xc5\x4a\x0c\x1f\x6e\x62\x43\xa3\x43\x10\x28\xcf\xc0\xac\x1c\x82\xc7\xf6\x62\x2b\xb3\xdf\xb7\x12\x98\x0b\x43\xc1\x45\xe3\x14\x4b\xbc\x9f\xce\x92\x0a\xa5\xa9\xe9\xd5\x63\x08\x79\x9b\x6a\x77\x31\x16\x18\x9e\xe6\xbe\xe1\x92\xa3\x84\x81\x7c\x8d\x42\xe6\xb5\x5b\x67\x22\x3a\x34\x66\x91\x5d\x48\x9d\xe0\x98\xdf\x44\x56\x9f\x3c\x1e\xa5\xa4\x25\x49\xb5\x5a\x66\xa5\x34\xe9\x3e\x05\x5b\xa0\x0f\xab\x33\x8d\x6b\x35\x08\xb1\xba\xeb\xf6\xba\x04\x66\xd2\x45\x8d\x72\x47\x28\xbd\x01\x57\x46\x6d\xb1\x6c\x95\x27\x8a\x71\x30\x53\xd4\x83\x80\x5b\xc3\xc7\x82\xe2\x19\x59\x25\xd0\xc9\x9e\x40\x45\xdc\x69\x34\x3a\xec\xc6\xe6\xad\x87\x5d\xd8\x78\x3e\x4a\xd3\xcc\x14\xe3\x53\x3a\xab\x1a\x90\xb9\x01\xec\x3c\xab\x8d\xc8\x1a\x19\xdb\xeb\xe1\xa2\x96\x3e\x8f\x68\x1e\xda\x46\xb2\x01\x1f\x1a\x9b\x66\xcf\x1a\xea\xf1\x49\x13\xcd\x8b\x34\x9b\x1d\x4b\x52\x34\xe8\x8a\xba\x19\x46\xa7\x79\xf5\x97\xbc\xac\x57\xc9\xec\x18\x3c\x87\x44\x7c\xfd\x99\xd3\xdd\xb2\x10\x51\x71\x63\x35\x9b\x51\xf0\x23\x86\x4f\x24\x38\xe8\x45\xad\x13\xd4\xd6\x4a\xf2\x45\x56\xb2\xed\xab\xd2\x68\xe3\xde\x65\x05\x3d\x06\x62\x62\x64\x59\x0b\x07\x82\x8e\x3b\xe5\xd5\xf8\x18\xa9\x4d\x23\xfb\x16\x07\xba\xeb\xc7\xc1\xbe\x87\x42\xec\xa9\x6e\x0c\x2f\x92\x6a\x20\x0b\xb6\x99\x4c\x7c\xf3\xb4\x58\xcd\x52\xb0\x1a\x2a\xb3\xaa\x98\x7d\x91\x0f\x13\xaa\x95\x5e\xf0\x8d\xdd\xce\xfe\x37\xc1\x37\xe8\xd1\x02\x2d\xb7\xe4\xf4\x85\x6b\x7b\xb0\xd9\xf0\xda\x59\x81\xb4\xa9\xb1\x8b\x08\xf0\xc6\x1c\x3a\xdd\x27\xa4\x6b\x2f\x92\x49\x5d\x94\xd7\xba\x77\x92\x6d\x5d\xd7\x49\x79\x9e\xd5\xc7\x76\xa5\xce\x2a\x70\x21\x70\xc9\x12\x25\x0b\x47\x9e\xd9\x32\x67\x70\xe4\x9d\xa9\xc8\x5a\x21\x78\x78\xf9\x08\x9c\xe3\xf6\xce\x5c\xa1\x77\xa3\x5f\xec\x4a\x2a\x03\xb7\x78\x21\x47\x72\xb9\x8e\xf2\xfd\x7d\x7e\x94\x38\xab\xf5\xc4\x3c\x35\x38\x2c\x27\x49\xde\x56\xe2\xc3\xa6\x89\x2e\xf3\xd9\xec\x19\x02\xba\x04\xc5\x7b\x00\x8c\x0c\x62\x23\xee\x05\xdb\xdc\x00\xee\xce\xfb\x7b\x2d\x44\x6c\x7b\x1a\xc1\xa9\x6c\xe2\xc4\xed\x78\xa4\xd0\xe7\xd3\x8b\x64\x91\xce\x3c\x16\x2e\x04\xa5\xf1\x3f\xa5\xbb\xdc\x29\x2c\xcd\xd3\x64\x96\x27\x95\x60\xe2\xca\x6c\x02\xae\xd8\x7f\x2d\xdc\xfd\x57\xe5\xde\xa1\x02\x14\xaa\x6f\x0a\x52\xee\x32\xcf\xdf\x9e\x9e\x0e\x37\xb0\xcc\xbf\xb5\x59\xe6\x27\x30\x8c\x7f\xc2\x49\xda\x9e\x73\x27\x36\xe5\xb5\x98\xaa\x27\x62\xa6\x9e\xe9\x89\xda\x64\xdd\x61\xf3\xff\xf0\xbf\x24\x69\x06\x3e\xd1\x76\x0d\x46\xeb\xbc\x62\xb4\xae\x2e\x57\x59\x44\x94\x11\xe8\x91\xa2\xa7\xf8\xe9\x10\x47\x48\xad\xea\xa2\xcc\xf0\x27\xd2\x46\x55\x54\xb0\xcd\x13\xf5\xe8\x2c\xda\x1e\x04\x00\x12\x80\x8a\x02\x60\x91\xa5\x1f\xb2\x45\x8a\x68\x57\x5c\xcd\x5b\xfc\x31\xbd\x13\x88\x6d\x3e\xd6\x19\x27\x8d\x55\x89\xbf\xb4\xd2\x1d\x92\xe6\x1b\xb6\xe5\xe2\x11\x12\x10\x5e\xb3\x15\xa5\xbc\x92\x92\x07\xc1\x4a\x99\x13\x11\xb3\x75\xd7\x72\x6b\x09\x0d\x75\x2c\x56\x94\x9d\x11\x7e\x08\x9c\x65\xeb\x7b\x2b\xe2\x46\xd6\x6a\x3e\x1a\xb7\xa5\xd0\x60\x83\xf9\xdb\x6d\xe8\x49\xd7\xfe\xef\xba\xda\x1e\xb5\x5c\x6d\xdb\x2c\x87\x2c\xc3\xa1\x96\xdb\xa6\xe7\x01\xce\x9e\xb8\x8e\xa1\x5e\x5e\xdb\xa7\xc6\x06\x3b\xc6\x4e\xe1\x8f\x75\x74\x38\x94\x7e\x79\x6d\xc8\x7d\xdc\xd0\xd8\xff\x0c\xf2\xde\x49\xbe\xbb\x02\xde\xba\x84\xac\xbe\x5e\x66\x6f\xa7\x0e\x2d\xc7\xe4\x5d\xc9\xf9\x53\x1a\x9e\x4d\x42\x19\x4f\xdc\xde\xdf\x9a\x61\x7b\xe9\x6d\xcb\x91\x5b\x50\x3a\x7b\x3a\x16\x53\x42\xae\x0a\xb3\x65\x54\x65\xd9\x22\x9a\x14\xcb\x3c\xa3\x2b\x46\x99\xd5\xd1\xac\x98\x44\x9f\xf0\x3d\x56\x1a\x40\xef\xc5\xb1\x34\x8e\x3e\xfb\xf9\xe6\xa6\x38\xfb\x39\x8e\xc1\x1d\x5a\xa8\xef\xc7\xe8\x21\x28\x5b\xf6\xfb\x83\x59\x31\x89\xe5\x73\x1b\x34\x51\x9c\xfd\x1c\x86\x8f\xe3\xc3\x50\xf9\xbf\x11\x4d\x8e\x67\xc5\xe4\x44\x3e\xfb\xbe\x9d\x82\x1f\xea\x38\x8e\x03\x34\x45\x05\xf2\x19\x17\x67\x3f\xd3\x0d\x34\x94\x0d\x84\x6b\x51\x7f\x99\xd5\x92\xc5\xbb\xbc\xc8\x67\xd9\xe0\xe0\x60\x56\x4c\xa8\x0d\xa8\x39\xc6\xce\xca\x4f\xb7\xc7\x8d\x7a\x99\x97\x33\xd1\xef\xcb\x5f\xd2\x55\x23\x60\xae\x30\x81\x0a\xdd\x7a\x64\x35\xc5\xd9\xcf\xfc\x69\xe5\x59\x52\xe3\x21\x80\xbe\x54\xc4\x59\x27\x2a\x39\xcf\xea\x8f\xf9\x3c\x1b\x84\xda\xd7\x48\xbc\x6e\xb8\x97\x67\xd1\x28\x28\xda\x08\xf0\x8b\xa4\x7a\xab\x43\xd1\x09\x90\x30\x94\x4e\x9c\x47\x18\x89\xd7\x78\xa3\x7c\x08\x63\x78\x7a\x1a\x68\x28\x31\x04\x9f\xd0\x7d\x56\xb6\xfc\x41\xad\x01\x48\x73\x87\xe5\x58\x66\x35\x8d\x1a\x71\x91\x8f\x8f\x8e\xe0\x2c\x1c\x21\x31\xa1\xcc\x54\x84\x20\xb1\x7c\x9a\x16\xaa\xa5\x96\xa0\xb1\x02\xa1\x9b\xbb\xae\xb2\x0d\xb3\xa5\x81\xf5\x7c\x29\x09\xbc\xb5\x01\x60\x40\xc6\x27\x78\xf2\xf3\x0f\x10\x3e\xb4\xd1\x50\xc1\x65\x8f\xfd\xb4\xab\x8b\xd6\xe4\xd5\xf3\xcf\xab\x64\xa6\x87\x82\x12\x06\x49\x74\x86\xea\x67\xfd\xbe\xd6\x74\x88\xd5\x68\x24\x43\x02\x94\x5d\x53\x09\x83\x33\x34\xd5\xb7\x57\x5d\xbf\x7f\xe6\x5d\x88\x58\x58\x2d\xc0\x38\x8e\xcf\xf4\x97\x7a\xad\x12\xc9\xa6\x17\x46\x89\x39\xfd\x6d\x1d\x9a\xec\xaa\x7e\xa0\x3a\xb0\xf9\x72\x82\x2e\x2d\x4e\xb5\x73\x8f\xb6\xfb\xc6\xed\x8f\x87\x5b\x07\xf5\xef\x8a\x5c\xef\x31\xf0\xf5\xb2\xde\x8f\x6c\xd6\x5b\x1a\xe4\xa2\x37\x58\xed\x32\x43\x5b\xe7\xbe\xa0\x7e\xbe\x53\xfe\xc7\x64\x8a\x06\x17\x53\x8e\xe2\xa5\xe7\xff\xe7\xe3\xf3\x37\xcf\x4e\xdf\xbd\x7f\xfb\xf1\xed\xc7\xff\x7e\xf7\xfc\x83\x58\x34\xe5\x2a\xbb\xb9\x69\xc9\x1f\xca\xda\xc2\xb5\xd3\x52\xab\x5b\x19\x41\xa0\x94\xa4\x0b\xdf\x9e\xf5\x7e\xb7\xdd\x43\x88\x13\x44\xeb\xb7\x37\x23\xb7\x19\xf2\x80\x50\xd9\xcd\x24\x69\xfa\xd7\xa4\x9e\x5c\x30\x37\x9f\x3c\x22\x58\xb8\xbe\xc4\x5c\x49\x87\x2a\xd2\xaf\xa7\xe4\x78\x7c\x62\x3d\x54\xdb\xaa\x6b\xf8\x3c\xed\xf8\x51\x51\x60\xe3\x1c\x3c\xb9\x58\x48\x48\x41\xe2\x29\xac\xcc\x53\x89\xfd\xe9\x69\x4c\x0d\x8f\x98\x64\xb9\xab\xbf\x2f\xe7\xf3\x2c\xcd\x93\x3a\x9b\x19\x23\x6c\x48\x32\x62\x07\xe7\xfc\xfb\x19\x8a\x2e\xe8\x3a\x10\x73\x74\x0d\x3f\x6b\xb2\x1d\xeb\x0e\xb0\xc5\x4c\x60\x48\x90\x7f\xed\xf9\xc0\x3e\xec\x30\x2b\x0b\xbb\xbf\xd9\x17\xd1\x68\xab\xa5\x86\xd1\xea\x2c\xaf\xea\x6c\x21\x16\x01\x96\x32\x5a\x6b\x3f\x3a\x04\x7d\x2c\xab\x2f\xcb\x2d\x68\xe3\xac\x38\x3f\xcf\x6e\xfd\xbe\x79\x67\x89\xc5\x2b\x68\x7e\x13\xd5\x7b\xff\xe1\x2f\xef\x62\x52\x80\x7e\x5d\xa4\xab\x59\x36\x08\xa0\x7f\x78\xdb\xfc\x98\x55\x75\x54\x67\x55\x8d\x79\x28\xdf\xc5\x4e\x8a\xd4\x7c\x71\xfe\x40\xfc\x0d\x46\xa2\x9e\x61\xb1\x80\x27\xdd\x67\xd8\x82\x9e\x1d\x48\x85\xf3\x11\x7e\xf1\x83\xed\xb9\xca\x42\x7a\x47\xb5\x22\xf3\x24\x5a\xef\xf7\x31\xe3\xf4\x74\x56\x24\x69\x56\x0e\xcb\xec\x3c\xaf\xea\xf2\x7a\x6c\xa2\x75\x12\xae\x05\xb8\xd5\x17\x13\x26\x64\xbd\x17\x9c\x11\xd6\x2f\xfe\x1f\x26\x69\xb2\xac\xb3\x12\x2b\x91\x5f\xc3\xec\x6a\x92\x2d\x59\x17\x90\xdd\x43\x29\x35\xa4\x68\x06\x14\xb1\xa4\x11\x08\xd7\xc6\xa7\x51\x1a\xe7\x65\xc8\x32\x86\x55\x0d\xc6\x7f\x4d\x23\x87\x71\x10\xd0\xdb\xb8\x67\x58\xc3\xb6\x5b\xa5\x80\xed\x5c\xb7\xc8\x60\x76\xae\x5c\xdb\xab\x0c\x96\xd8\x7e\xe1\xde\x76\xb1\x4e\xe7\xae\x78\x6d\x3a\x47\xf1\xda\xa5\x93\x73\x89\x11\xad\x8a\x89\x93\x33\x2b\x26\x78\x98\x27\xf3\x6c\x96\xff\xc3\xf1\xc6\x32\x94\x19\x14\xab\xab\x15\x4e\x67\x21\x64\x52\x5d\x64\xa5\x17\x50\xe6\x90\x21\x5c\x9a\x95\x95\x18\x52\x07\x50\x67\x11\x86\xcb\xbc\x4e\x5a\x70\x94\x59\x08\x39\x4b\xaa\x2a\x9f\x3a\x82\x86\xa1\xcc\xc0\xd7\x7c\x98\x2a\xcd\x74\xe0\xf7\xfd\xb0\x1c\x58\x57\xb8\xb6\xda\x10\x33\x14\xbb\xef\x66\xd3\x79\xed\x1e\x5d\x76\xd1\x4b\x4f\xc1\xcb\x01\xf9\x92\xb5\x81\xc5\x4c\xbb\xe0\xb3\x62\xb2\xb9\x1d\x35\xc1\x6e\x79\x99\xd5\xd6\x2a\x5b\x1d\x6e\x61\x9d\xd9\x5a\x5c\x2d\x19\x4f\x69\x99\xd7\x56\x98\xad\x23\xb7\xb4\xce\x6c\x2b\xae\x96\x8c\xa7\xd7\x94\xd5\x5a\x54\xaf\x4b\xdf\x90\xc9\x4c\x2a\xde\x7e\x50\xa2\xdf\xa9\x9d\xe4\x54\x77\x95\x2a\xdd\xa3\x94\xc8\x23\xb0\x79\x68\x0a\x6c\xc0\xcd\x0f\x09\x5f\xc5\x6f\x78\xd8\x14\x3f\x6e\x6e\x10\x6a\x98\x57\x1f\x72\x72\xef\xa1\xb4\xe9\x70\x90\xb9\xba\x76\x30\x29\x16\x55\x5d\xae\x26\x35\xe8\x42\x99\xb2\x82\x20\x0a\x40\x81\x12\x8b\xbd\x9d\x06\x51\x20\x99\xf5\x97\x95\xee\x52\x10\x05\x60\x7a\x0e\x00\x75\xf1\xaa\x98\x24\xb3\xec\x03\x51\xfb\xa0\x2e\x3e\x48\x32\x2e\xf8\xbc\x77\x4c\xbd\xd5\x0c\x3d\x8d\xaa\x70\x9f\xc8\x03\x64\xbb\x54\x02\x17\x03\x49\x2e\x20\x11\xde\xbf\x78\x46\x8b\x18\x6b\xa0\x9b\xd0\xb2\x24\x66\x36\xe0\x4a\x4b\x0c\xd3\x81\x7e\xbf\x55\x9e\x42\x55\xa1\xee\x1e\xb0\xb3\x9f\xc0\xd7\xc6\x27\xee\x63\x14\x26\x0d\x44\x0c\xea\x56\x34\x3e\x01\x49\x99\x2d\xba\xb1\x07\x0a\xc6\x47\x5c\x8c\xa0\x56\x93\xe1\xf7\x4c\xab\xc3\xfa\x8b\x81\xf2\xc0\x8d\xf3\x93\x51\x77\x53\x4c\x2c\xd3\x26\x97\x11\x9d\x6a\xdd\x86\x2d\xef\x7a\xe3\x8d\x9e\xf7\x7c\xaf\x87\x1d\x6a\x88\x6a\x3f\x7f\x0d\x71\x70\xd7\xc6\x76\x9d\xae\x79\xb6\xb3\x2b\xd8\x7f\x68\x3c\xbb\x75\x39\x65\xf3\x08\x8c\xbf\x35\x05\xc6\xe6\x73\x9c\xf1\x32\xb6\x06\xf4\xd8\xdd\xe8\x78\x1c\x9c\xe2\x64\x88\x31\xba\xcc\x67\xb3\xd7\x02\x02\x0a\x1d\x1b\x9e\xd3\x49\x9e\x7b\x91\x54\x17\x10\xe8\x05\xbc\xc3\x8b\xf4\xa1\xac\x40\xb9\x4f\x7e\x3b\xc5\x12\x43\x99\x11\x73\xcf\x97\xb2\x86\x38\x90\x0d\x2b\xa6\xd5\x28\x8c\xf7\xa0\xb6\xb2\x98\x1b\x08\xb6\x59\x26\x62\x70\x10\x8d\x0f\xe9\xf7\x9a\x89\x37\x37\xeb\x06\x54\xea\xab\xb1\x2c\x77\x12\x36\x64\x60\x6a\xa5\x43\xb4\x96\x3b\x3c\xa6\xd1\x03\xe2\x48\xa9\x7d\x10\x0e\xfd\xbe\xf1\xc9\x9f\xdb\x98\x93\x61\x4f\xae\xf3\x18\x47\xac\x52\xb8\xe6\x4e\xa6\xf5\x25\x60\x0f\x39\xa8\x17\xcf\x9f\x7c\xfc\xf3\xfb\xe7\x1f\x86\x79\xf5\x7c\x21\x88\x60\xaa\xb6\x65\xb1\x12\xd7\x9b\x83\xb4\x2c\x96\x07\xfa\x09\xf1\x00\xdb\x3c\xa8\xea\xeb\x59\x16\x84\x84\xaf\xf9\xc4\xe8\x4d\xa4\xc7\xcb\xae\x3c\x3e\x88\xba\xb7\x26\x28\xef\x67\xcb\xf0\x86\x6d\x7d\x17\x35\xc2\xb0\x33\x45\x1a\x4c\x08\xc2\x90\x94\x5d\x86\x15\x6b\x04\x52\x38\xd3\x26\x98\x88\x36\xbd\x4c\xbe\xb5\x36\x12\x39\x74\x80\xf9\x95\xb4\xa9\x5b\x94\x98\xf3\xea\x74\x51\x2c\xdc\x1b\x14\xe1\x94\xf1\x43\x7a\x07\x5e\xa8\x93\xfc\xd2\x5e\xb4\x2a\xf4\x25\x82\x28\x05\xd9\x80\x5f\x85\x1e\xc6\x26\x2d\x6b\xd3\xcb\xa3\xcf\xd3\xe7\x2f\xa6\x87\xed\x95\x0f\x7f\x6b\xcb\x87\xc1\xf3\xbf\xed\x83\x13\xa0\x28\x83\xde\x11\xde\x14\x0b\xf7\x3d\x10\x93\x29\x0c\xb3\x27\x7f\x21\x73\x35\x7b\x75\xcf\x4e\x3c\xdd\x83\xf2\x3b\xe3\xa0\x24\xe9\x8a\xab\xd2\x2d\x33\x46\xc4\xe8\xc2\x42\xd5\x31\xaf\x1c\x77\x9f\x2e\x88\x51\x52\xa9\xd2\xb6\x16\x54\x10\xd2\xb3\xe8\x2b\x10\xe8\xd9\xf3\x7f\x88\xae\x45\x65\x26\x75\x62\x5e\x7c\xc9\xda\xe1\xcd\x7c\x5a\x18\x8b\xf4\xb9\xd8\x60\x2e\xb4\xca\x1a\xd1\x71\x2d\x0b\x56\x2e\x2c\xcf\xa5\x85\xf0\x57\xda\xa1\xae\xc3\x52\x9d\x27\x3d\xbc\x39\xaf\xc3\xf3\x64\xd9\x46\x39\x0d\x36\x44\x97\x8b\xd6\xc8\x9a\x1e\xcb\x09\x1b\x84\x4a\xdd\xdc\xd2\x33\x47\x5d\xee\xef\x0f\x6f\x6e\x40\xa5\xdb\xd5\x35\x0f\xd9\x7d\x14\x3c\x63\x8c\x6c\xdd\x76\x51\x8f\x54\x67\xaf\x8c\x06\xd0\x37\x99\xb4\xfb\x9f\x4d\x31\x90\x17\xf3\x8c\x47\x10\x91\x89\x93\x54\x68\xcc\x66\x53\x53\x1b\xbd\x09\x9b\x68\x91\x5d\xd5\x78\x23\x3b\xf6\x96\x22\x19\x3b\x2f\x15\x05\xe3\x93\xc0\xa3\x04\xfc\x49\x3b\x1b\xf3\x86\xa0\xa3\x30\x5f\xa8\xd9\x7c\x18\xb9\x63\x43\xa5\x0d\xa9\x72\x18\x4d\xf3\xb2\x92\x28\x76\x68\x1e\x9b\x88\x1e\x86\x4d\x18\xcd\x92\xdd\x0b\xba\x58\x1d\x1c\x89\xba\xa4\x13\x04\xc3\x36\xc1\x0e\x69\x81\xf7\x35\x91\xf1\x38\x3e\x6c\x30\xd0\xba\x2e\x70\x96\x9d\xe7\x0b\xf4\x6e\x97\x2d\x52\x0a\xc0\x2e\xef\x54\x4a\x71\xda\x0e\x3c\x6f\x99\x2a\x88\x05\x06\x14\x8f\x55\x17\x86\xfa\x77\x7c\xc8\x40\x54\x33\x37\x37\xf2\xe7\x63\x52\x25\x95\xdf\xb1\xf6\x70\xa2\x2b\xf9\xfe\x90\xd7\x48\xb1\x6d\x75\x8a\x00\x96\xe5\xbf\x3f\xb4\xab\xda\x97\xdf\xa4\xa1\xc0\xaa\xd5\xdd\x2e\xb3\x7a\xac\x75\x19\x28\xaa\x84\x9a\x04\x5d\x64\x7f\xdf\xb8\xce\x45\x34\xc6\xb6\x85\x48\x54\xd5\x49\x59\x3f\x21\x1b\x81\x3c\x85\x40\xb8\x2d\xc3\x47\xa0\x86\x77\x1a\x99\x76\xc8\x00\xbe\x3f\x94\xc9\xfb\xa2\x67\x70\xdd\x05\x43\x6b\x4c\x1c\x91\xad\x86\xf8\x2b\x6e\xab\x92\x49\x34\xf6\x4a\x1c\xc7\x64\x9c\x21\x83\xff\xa6\x57\xd4\x9f\x83\xa3\x06\x16\xe8\xcb\xaf\xd2\xa3\x9b\x1b\x4a\x7c\x2c\x70\x57\xfd\x9b\x65\x8b\x83\xa3\xdd\xfa\xf8\x58\x0c\x4a\x7a\x75\x70\x70\xbb\x2e\x26\xa9\x19\xbc\x4e\xf7\x93\x78\xda\x62\x59\x13\x49\xbb\xd4\x27\x9f\x48\xec\xf7\xc5\xff\x43\x9d\x7a\x73\x83\x3a\x32\xfa\xf8\x0b\xa2\x54\x9d\x79\xac\x88\x4a\x94\x25\xd4\xb9\x17\xc8\xf3\x46\x85\x27\x63\x43\x7a\x91\x54\x66\x9c\x3d\x1c\xdd\x3d\x0e\x1e\xb6\x84\xa6\xf4\x97\x66\x87\x28\x41\xfd\x17\x86\x8e\x3f\x83\x67\xbb\x80\xee\x5e\x91\xee\x63\x47\x99\x09\x75\x99\xca\xa8\x4e\x76\x20\x69\xc6\x9f\xf4\xe3\xc8\x89\x2d\x19\x8b\xfc\x8b\x4f\xd8\xed\xe7\xcb\x64\x62\xb6\x9e\xb2\xae\x62\x9d\xb3\x76\x3f\x93\xe6\x00\x74\x9d\x76\x9c\x9b\xf2\x62\x1a\xde\xdc\xb4\xc3\xd0\x20\x88\x03\x91\x1b\x71\xe9\xc1\xd5\xab\x05\x48\xc8\x4b\x65\x80\xf4\x64\x0e\xf6\x47\x4f\xe6\x18\x4a\x5d\xe6\x9a\x3e\xc2\x54\xea\xe1\x48\x95\x8a\xb1\x54\x7c\x40\x8e\x26\xc1\xce\x5d\xe6\xf1\xd2\x3a\x15\x49\x1c\x95\xe3\x20\xba\x2a\x38\x23\x25\xab\x28\xfb\x08\x0e\x1c\xc2\x70\xad\x57\x18\x25\x35\x8a\x5f\xf5\xaf\x89\x31\x3a\x39\x68\xeb\xf1\x49\xa8\x59\xe8\x7c\x71\x1e\xcd\xf2\xf9\x88\x8d\x01\x58\xfe\xa9\x32\xf0\x65\xac\x71\xcd\x88\xb2\x25\x10\xae\x65\x75\xf1\xf8\x64\x34\xcb\xe7\xb1\xac\x6e\x5f\x55\xa5\x15\x11\x24\x49\x7f\x99\x5e\xe1\xb9\x25\x30\x80\x73\x4b\xd6\x82\xf2\x5f\x97\xbc\x2b\x6d\x3d\x6a\x4c\x55\x8e\xfa\x08\xfa\x46\xee\x2c\x85\x81\xea\x2f\xcd\xbb\xb9\x6a\x37\x18\x01\xfe\xba\x97\x0f\x5d\x9f\xda\x26\x13\x01\xb7\x9e\x49\xac\xc9\x99\x47\xac\x65\x9b\x49\xc4\x0a\x36\x4c\x21\xb5\x82\xb5\xb6\xcc\x9e\xa6\x3d\xc6\xb0\xe7\x8b\xf3\x70\xd4\xb2\x07\x24\x81\xdb\x6e\x0f\xb4\x32\xb6\x11\xdc\xf5\xd3\x17\x82\xd9\x8f\xe5\xbd\x9f\x60\xd8\x0d\x40\x01\xbe\x4a\x5c\x38\xcd\xef\xe3\x41\x60\x5f\x09\xf6\x28\x3a\x35\xb6\xd2\x1a\x66\xda\x6a\x70\xd4\x46\x98\x0d\xa8\xc6\x69\x0f\x7b\x76\x70\xa4\x9b\x15\x38\x77\xb4\x6a\xa0\xdf\xd6\x28\x07\x6a\x8c\x0d\x45\xc4\xca\x4b\xfc\x55\xd0\xcc\xd3\x53\x01\x84\xc7\x37\x05\x2a\xbb\xba\xb6\x75\x59\xbc\x6a\x0d\xa2\x1c\xd9\x13\x84\xe3\x40\x95\x0d\x4e\x46\xac\x62\x50\xf9\x55\x79\xf4\xde\xc9\xef\x48\x08\xd6\x84\x1d\x46\x5f\x4a\x8b\x7e\xbe\x4c\x48\x08\x38\xf6\x8b\xf9\xb6\x11\xce\x75\x89\xbe\xfc\xa6\x0b\x1b\x04\x37\x47\x5c\x70\xb3\x8d\x1c\x61\x4d\xee\x5e\xb4\xf4\x40\x69\x23\x6e\x33\x0a\xdb\x5b\x8d\xdd\x45\x86\xbb\xd3\x98\x6e\x12\x78\x7e\x55\x71\xa3\x3b\x69\x8f\xd4\xa4\x6d\x35\x1d\x1b\xde\x8f\x98\x71\xa2\x5f\xa5\x10\x05\x4b\x62\x12\x3e\x2c\xb3\x49\x3e\xcd\xb3\x34\xde\xa3\x57\x26\x48\xc6\xf8\xcc\xe2\x73\x22\x9d\x02\xec\x99\xf0\xf2\x11\x08\x52\x63\x03\x76\x64\xbc\xf2\x28\x3f\x75\x27\x4d\x97\x9d\xa4\x63\x78\x32\xbe\x07\xd9\xbd\x29\x4d\xb7\x9a\x9a\x96\x59\xf6\x0f\xaf\x73\x13\x53\x0b\xea\x57\xe4\xbc\xa4\x6b\x55\xda\x0b\xee\xa8\x43\xbe\xfd\x90\xc9\xb7\xbd\x14\xe2\x91\x2d\xda\x7d\x21\x07\xcb\x11\x70\xab\x9c\x8d\x4b\xdb\xa7\xf0\xf5\x5b\xa6\xf0\xb5\x5d\x88\xaa\x2d\xe9\xd5\xf2\xda\x43\xac\xa2\x69\x59\xfc\x23\x5b\x3c\x15\xb9\xe6\xd1\xa2\x7a\xd1\xef\xab\x9f\xd2\x36\x01\x8e\x00\x9f\x03\x8f\xea\x05\x54\x17\x84\x3f\x88\x84\x63\x72\x50\xb1\xbc\x1e\x84\x43\x58\x5c\x2a\x28\xad\xd7\xbe\x7d\x3a\xaf\x07\xc1\xff\xef\xbf\x7a\x69\x61\xc6\xc6\xec\x41\x59\xd4\xd8\x13\x55\x9e\x84\xe1\x36\x3b\x27\xcd\xa6\x59\x59\x66\xe9\x3d\x11\xd1\xcd\x2f\x60\x4e\x98\x3c\x57\x57\xf6\xd7\xb7\x4b\xbe\x2a\xed\xde\xfe\xb9\xc8\x0e\x9a\xe6\x71\xd3\x03\x1a\xba\x1b\x5e\x79\x92\xea\x7a\x31\xf9\x20\xf8\x55\x2b\xb8\x32\x8a\x62\xb9\x1e\xad\xa9\xed\xea\xa6\x0d\x75\x5d\x83\xb0\x69\x74\xf5\xcf\x17\xe9\x3d\x55\xfe\x7c\x91\x42\xd5\xa0\xdc\x3a\x29\x16\xd3\xfc\x7c\x55\x66\x83\x00\x32\x03\xbd\x42\x64\x58\x8c\x68\x59\x16\xf3\xbc\x92\x3a\x00\x02\x2a\xde\x2b\x57\x8b\xe1\x64\x55\x96\xd9\xa2\x7e\xbf\x5a\xbc\x2a\x8a\xe5\xc8\x56\x22\xee\xf7\x01\x36\x5c\x1b\x5d\x12\x05\x45\xad\x67\xab\x72\x91\x95\xc3\x4a\x70\xb3\xc0\x2a\x4a\xed\x88\xc8\xd7\x4b\x6f\x95\xd8\x11\x89\xe6\x40\xa2\x09\x7b\x14\x3a\xf7\x0e\x53\x98\x9d\xc8\x34\xc9\x67\xb1\xdb\xc3\x59\x72\x96\xcd\x0c\x11\xfc\x38\x98\x88\x2b\x7d\x70\x62\x03\x35\xdb\x51\xbe\xfa\x22\x63\x0c\x01\x39\xce\x88\xca\x0c\x04\xb2\xd4\x1c\xea\xc0\x22\xb9\x90\x83\x1c\x65\x8b\x3a\xaf\xaf\x47\xf8\x07\x9f\x65\x24\x0c\xbb\xeb\x9c\x2a\x32\x03\xfc\xbd\x28\x19\xcb\xa4\x21\x25\xb0\xc8\x2e\xab\xd9\x34\x9f\xcd\x04\xd3\x41\x6f\xf9\x03\x96\x04\xc3\xcc\xbe\xe3\x38\x56\x33\xae\x04\xe6\x80\xff\x00\xb1\x32\x43\x7c\xcb\x3c\x5e\xa3\x72\xfb\x43\x15\x0d\xc5\x70\xc8\x51\xe8\xf7\x5d\x7c\xcc\x91\x69\x22\x02\xd5\x23\xc8\x42\xcf\xd8\x43\x76\xeb\xf1\x91\x4f\x4b\x71\x0c\xe3\x1c\xae\x15\x84\xec\x93\x5a\x52\xd0\x61\x27\x1b\x91\x6a\x1a\xc2\xde\xc1\xd6\x8b\xcf\x10\x81\x65\xe1\x48\x65\x75\xc9\xda\x60\x39\x03\xe0\x20\x80\x1d\x71\xdc\x7b\x46\xc5\x60\xdd\xf5\x0e\x7a\xc1\x3e\xde\x91\xb6\xb8\x0a\x70\xad\x88\xaf\xa4\xae\xb1\xad\x52\xc5\x06\x3d\x8c\x96\x33\x6f\x27\x55\x8c\xff\x29\x51\x57\x7f\x31\xd5\x0b\xb8\xbb\x38\x07\x29\xa4\xb6\x9c\xc5\xbf\xdd\x7c\xf9\xfd\xad\xcd\xda\xc2\x35\xf4\x75\x56\x5f\x14\x2e\x20\xcb\xdb\xa8\x56\xe1\x39\x9f\xbd\xcc\xc0\xef\x6d\x66\x60\x83\xda\xc4\x77\xb7\x55\x9b\xf8\x6e\x67\xb5\x89\x3f\xec\xa6\x35\xf1\x87\x5d\x94\x26\xfe\xb0\xbd\xce\xc4\x1f\x7c\x2a\x13\xde\xd0\xa9\x87\xed\xa1\x53\xdb\x2d\x35\x93\xd3\x4d\x56\xf7\x5f\xc8\xe9\x51\x76\x55\x57\x60\x0d\x27\x0f\xb4\x65\xb1\x7c\x5a\x5f\x31\xc5\x78\x02\xd2\x01\xc8\x0e\x7f\x58\x37\xc7\x2a\x79\x59\x2c\x07\xcc\xa1\xf1\x72\x55\x5d\x88\xf2\x93\xfa\x0a\xbd\x14\x21\xd0\xaa\xba\x80\x24\x29\x5d\x5e\xac\x66\x33\x5d\x28\xaf\xb3\x92\x2b\x26\x08\xe4\xe0\xe7\xbb\xb2\xf8\x92\xa7\x59\xea\x98\x1e\xc6\x71\xfc\x90\x05\x5e\x22\x6f\xf3\xd0\xa9\x15\xfa\xbd\x02\x17\xb0\x9f\xb2\x6b\xd5\xa4\x51\xe1\x0f\xf2\x74\x9a\xac\xca\xe3\xbd\xbd\xc9\xaa\x94\xc7\x6a\xde\xa6\x8c\x6c\x32\x21\x4c\x23\xc3\x77\x09\xdb\xa0\x0d\x91\x4f\x3d\x2a\x0c\xe0\xe4\xdf\x51\x3c\x61\x13\x15\xcb\xb9\x89\xca\xac\x16\xdd\xc2\x07\x79\x8d\xca\xe0\x30\xd2\x6e\x62\xae\xea\x70\xa4\x66\x43\x26\xb0\x57\xfa\x50\xed\x9c\x41\x30\x3e\x09\x36\x2a\x62\x90\x60\xb8\xe5\x75\x5b\xe4\x6c\x8f\x7f\x9e\x5e\xc5\x87\xd1\x64\x55\x42\xa3\x60\x47\x3f\x4a\x8b\x35\x7c\x4c\x56\xe5\x48\x4c\xa2\xdd\x37\x10\xa2\x03\xbc\xea\x5f\x83\xba\x0b\x93\x55\x69\xa8\xb0\xb4\x76\x5b\x14\x76\xfb\xbd\x85\xd2\xc8\x34\x5f\xb0\xb1\x30\x22\xe6\x89\x0f\x7c\x5d\x6f\x42\x8e\x45\x13\x91\x0b\xc2\x63\x97\x27\xc6\x67\x46\xa5\xe4\x5c\x4c\x55\xcc\xbf\x3d\x23\x9e\x80\xbe\x54\x7f\xbc\x5e\x66\x70\xa7\x1e\xb5\x4f\x83\x1e\xcb\xc8\x1e\xf0\x91\x56\x65\x35\x74\x7d\x30\x09\x86\x9f\x3f\x60\x1c\xda\x6a\x13\xa0\xb7\x27\x2a\xf4\x4c\x8a\x39\x25\x23\x2b\x3c\x25\x3e\xa8\x8a\x12\xe0\x17\x11\x2d\xb4\x11\xd1\xec\xaa\x6e\xf4\xf4\x2b\x94\x5b\xe6\x0e\xc5\xe7\xe7\x59\x6d\x8e\xe9\x27\x16\xe9\x0c\x90\xc3\xe0\xa6\x60\x61\x10\x55\x1e\x68\x49\x63\x8c\xe9\x25\x67\x91\xd6\x0c\x57\x8c\x8c\x50\xb1\x26\x6c\xa2\x79\xb2\xec\x98\x53\x57\x55\xc8\xdf\x04\xb8\xac\x8c\x72\x54\xb2\x01\x07\x77\xde\x91\x93\x60\x8d\xb1\x77\x23\xe8\x65\xf7\x28\xe8\xa6\xc4\x48\x1b\xc2\x1d\x98\x8e\x4f\x18\x06\x2e\x62\x51\x53\x8f\x19\x33\x30\x08\xa0\x8d\x40\xc6\x15\xbd\xcf\x2e\xe7\xd3\x41\x67\x67\x43\xb0\xdd\x17\x67\xc6\x95\xdd\x71\xfb\x3a\xe0\x20\x63\x6e\x5b\x88\x53\xe9\xf0\xfc\x7b\x86\xbe\xb6\xaa\x82\x29\x6e\x87\x4d\x24\xe3\x4f\x6e\x5e\x3d\xd8\x0a\x13\x43\x8b\xf3\x8c\xd5\xa6\x2a\xf3\x8f\xb3\x6c\x28\x08\xa9\x77\x2d\x6d\x82\x1d\xf8\x55\x32\xa9\xc1\x89\xf8\xa6\x00\x9e\x9f\x78\xe0\xce\xe8\x22\xa9\x3a\x4a\xed\xed\x19\xc5\x9a\x68\x55\x65\xde\x23\xf7\x07\xdd\xfe\xb1\xac\x92\x6f\x50\x79\x01\x5b\x89\x8b\x1d\xf5\xc6\xdf\x69\xd9\x53\x58\x5f\xdc\x30\xc2\xbb\xba\xda\xcf\x9d\x0d\x54\x0d\x0a\x2b\xb2\x08\xeb\x7e\x5a\xac\x16\x69\x8c\xbe\x4e\x4b\xa5\x01\x6d\xd1\x4b\x2f\x35\xec\xf7\xf7\xa0\xb0\xa4\x8a\x5b\x52\xc4\x7c\x3a\xc0\x36\xb7\x20\x8d\x21\x7a\xe4\xb9\xaa\x19\x8d\x84\x66\xb6\x27\x94\xb0\x4d\xc4\x98\x6e\xb5\x74\x17\xe9\xa6\x85\xab\xfc\x1f\x38\xcb\x56\x34\x11\x84\x51\xf6\x25\x2b\xaf\x37\xee\xc8\x3d\xcf\x41\xca\x69\xa0\x00\xd9\x40\x01\x1b\x6c\xea\x47\x0b\x91\xbc\x7a\x2e\x92\x25\x26\x7e\x6c\x35\x10\xfd\xda\x38\x36\x50\x59\xf7\xe0\x24\x8b\xae\x7e\x77\x9c\xd4\x0e\x43\xc4\x17\xa5\xb5\x5e\xf3\xf4\xaa\x65\xa1\xaf\xd9\x4a\x6f\xa4\x52\xe0\x5d\x57\xeb\xd6\x4b\xf5\xf6\x2b\x14\x9a\x68\xa2\xaa\x98\x67\xe6\x24\x25\x0b\x9c\xa0\x27\x8b\xcd\xd3\x93\x2c\x36\x4f\x8e\xbb\x52\x9e\x40\x0b\xa2\xe5\xb6\x65\x82\x10\x18\xc2\xdf\x33\xb9\x3c\x7c\x3f\x41\x95\x46\x98\xbe\x4e\x86\x6e\xed\xe1\xe8\x1a\x79\x7c\xf2\xaa\x5b\x4e\x50\x20\xd1\xb8\x5f\xd4\x14\x81\x57\x1b\xcc\xc0\xb0\x36\x36\x56\x0d\xcd\x97\xa9\xa1\xfb\xa5\xf8\xc4\xfa\x37\x87\xfe\x9b\xe6\x68\x91\x79\xa6\x7b\xe2\xad\x3d\x3e\x0a\x3b\x02\xc8\x4a\x1f\x90\x2d\x8c\x00\x85\x85\x43\xa9\xc4\x55\xbf\x7f\x35\xd6\x48\x80\xe7\x35\x9f\xbb\x29\x04\x61\x4c\x93\x68\xff\x07\x5c\x07\x57\x11\xe6\xa2\x3d\xdb\xb1\x51\xdf\x20\x6c\x7c\xc3\x50\x17\x70\x87\xb6\xbd\x01\x6f\xc3\xcc\x14\x91\x54\xc0\x47\x44\x0a\x8b\x51\x81\xcb\xfc\xc4\x70\xdf\xdd\xc5\x9a\x98\x2b\x9c\xd4\xf2\x61\x63\x87\x4d\x74\x99\xd7\x17\xc5\xca\x15\x82\x2a\x85\x11\x15\xfc\x0f\x33\x42\xd6\xd2\x68\xdb\x0e\x7d\x42\xdb\xe8\x3d\xe2\x19\x42\x5b\xf9\xfb\x93\xd5\xc1\xd5\x22\xff\x7c\x9b\x81\xc3\x76\x94\x84\x02\x96\xef\xa7\xf0\xfb\x43\xcd\xf4\x7d\xb2\x99\xbe\xcd\xa6\x0c\xa6\x31\x42\x92\xa6\xae\x12\xd7\xdd\x54\x64\xb5\x30\x75\x27\x3d\x59\x5d\x6c\x6b\x65\x59\xaf\xfa\xd9\x6e\x2a\xce\xfe\x2a\x3c\x3a\xcb\x1a\xbd\x1d\x95\x9d\x59\xc1\xfb\xd1\x78\xf6\xa3\xec\x51\x7b\xfe\x1f\x38\xb1\x77\x9c\x57\xbf\x62\xf3\x76\x53\xbb\xb1\xec\xbd\x68\x46\x6f\x31\xb9\x7e\xa8\x5d\x75\xa4\x5d\xc4\x5b\x14\xa5\xdd\xd1\x09\x9b\x30\xea\xd0\x93\xe5\x0f\x8e\x5a\x61\x16\x7c\xc7\x68\x11\x32\x85\x6f\x10\x7f\x2e\x92\xea\x59\x36\xab\x13\x38\xc8\x30\x2a\x31\x3b\xc6\x64\x1d\xa1\x2a\x17\xcb\xa4\x91\x8e\xc8\xe9\xc0\x88\xe5\xa4\x9a\xd7\xd7\x20\x28\xe1\xd6\x44\x2a\xb2\x6e\xeb\x84\x38\x62\x1a\xe3\x97\x6a\xd6\xcc\x84\xc0\xab\xa8\x42\x6b\xb5\x67\x94\x16\x4d\xc9\x1e\xc7\x98\xf3\xfd\xe1\xcd\x8d\xc2\x49\x7c\x60\xf2\x81\x4a\xdb\x8b\xd1\x90\x47\xa1\x0b\x61\x0f\xd5\x17\x70\x92\x0a\x1f\xcc\xa4\xdf\x90\xd5\xba\x4f\xc6\x27\x6a\x57\x01\x3e\xed\x3b\x4a\x75\xc8\x51\x9a\xf5\x6c\x9e\x31\xf1\x56\xc6\xe4\x9f\x58\xab\xb8\x5d\x55\xf7\xdf\xeb\xe7\x57\xb6\x7e\xba\xe6\xdc\xd4\x96\x76\xe7\xdc\xb7\xba\x1c\x15\x60\xd9\xdb\x36\x00\x58\xa7\xc6\xea\xa9\x8a\xd2\x90\xfd\xe8\x10\xab\x3f\x65\xd7\x95\x16\xc8\x18\x12\x17\x62\x61\x07\x21\xc4\x6a\xd3\x74\x12\xfc\xb6\x9a\x3e\x0e\x65\x4d\xca\x87\x8b\x14\xed\x7e\xa2\x50\xb1\x22\x73\x9c\x9f\x80\x53\x0b\x8c\x57\x9d\x80\x40\x08\x12\x30\x48\xf5\x19\xbe\xa9\xb0\xe7\x2a\x94\x2b\xc9\x68\x89\x50\x14\xe1\x29\xd4\x91\x06\x62\x6f\x4a\x3a\x91\x85\x2e\xec\x8c\x32\x21\xdf\xd7\xc5\x94\xb9\x2a\x60\xde\xf7\x6f\xf5\x56\x7d\xdf\x2e\x97\x36\xa9\x24\xb7\x3d\x3e\x3e\xdc\xed\xf1\xf1\xa1\xff\xf1\xb1\xf5\x51\xf1\xa1\xef\x51\xd1\xff\x54\xf9\xd0\x78\xaa\xdc\xea\xc5\xab\x60\x4a\x37\x8b\x64\x2e\x63\x1a\x44\xf2\x4a\xe6\x70\x89\x1e\x20\x73\xbd\x17\x8b\xac\xbb\x4a\xc1\x40\xca\xdf\x74\x51\x24\x3f\x28\x5c\xf2\xb1\x45\xc3\x11\xb8\xf7\x30\x5b\xaf\xcb\xfc\xfc\x9c\x73\x8f\x0b\x75\xfb\x25\x81\xa7\xe3\x13\x54\x39\x6a\xd1\x31\x9d\x94\xfd\x00\xf3\x27\x7a\x34\xca\xbf\xe7\x5b\x4c\x14\x19\xe7\x07\x47\x27\xa6\x7f\x54\x8b\x02\x01\xd6\x70\x75\x6d\xa2\x62\x3a\xed\x1e\x19\x1f\xdf\xb6\x71\xbc\x2f\x92\xca\xee\x6d\x2b\x2f\x05\xd9\x5b\xec\x47\xa6\x62\xbc\x79\x47\xee\xa0\xef\xf2\x35\x35\xdc\xff\x63\x9b\x3d\x7c\x5b\x8d\x0e\xad\x46\x6c\x6e\x1f\xa9\x4a\x4b\x51\xb6\x50\x7b\xf6\xb8\xed\x4d\x58\x2b\xde\x1a\x77\xf9\xca\x05\xf0\x2c\x6d\xd3\xe9\x8c\x56\x5f\x8e\x4d\x45\xe6\x17\xef\xdf\xfe\xdf\xe7\x6f\x4e\x9f\xbf\x7f\xff\xf6\x7d\x1c\x60\x75\x14\x4c\xae\x37\x49\x16\x8b\xa2\xee\x9d\x65\xbd\x79\x91\x82\x36\xfc\x30\x30\x2b\xe5\x85\xf9\xc7\xa6\x05\x33\x5f\x41\xb0\xc1\x53\xaf\x4b\x9b\xfb\x53\x88\x52\x4a\xec\xdb\xea\xca\x13\x3e\xdd\x48\x7b\x7c\xde\x74\x7a\xc5\xf9\x35\x2a\x43\x75\x1d\x6c\x6f\xff\xfc\xf1\xf4\xed\x8b\xd3\xf7\x4f\xde\xfc\xf1\xf9\xe9\xf3\xff\xf3\xf4\xf9\xbb\x8f\x2f\xdf\xbe\x89\x03\x30\x7f\xef\x15\xab\xba\x27\x98\x4f\x7d\xd9\x7d\xfe\xfa\xdd\xc7\xff\x8e\xc7\x7e\x1d\xa8\x6d\xd5\xf3\x73\x34\x8c\x75\x76\x14\xa5\x77\x29\xce\x7b\x02\x52\xdc\x8f\xc6\x14\xb4\xe7\xa2\xe5\x51\x80\x7a\x8d\x4b\xa3\xc5\x6f\x8d\xc7\x11\x4d\x0b\xe4\x77\xbb\xdb\x00\x68\x24\x23\x07\x8b\x68\x4d\x3e\x3c\xb8\x3b\x14\x08\x73\x6f\xf3\x97\x5b\xeb\x74\x00\x05\xaa\x4d\xf7\x20\xb3\x6c\x11\xc1\x22\xb0\x8e\x1a\x19\xbe\xd9\x17\x40\x50\xfa\x5f\x79\xec\xf1\xbb\xe2\x35\x23\xf0\xaf\xca\xd0\xc4\x45\xd4\x7f\x18\x8d\xb1\x09\xfb\x5e\x26\x43\x1e\x5b\x96\xab\x02\x7d\x8c\xf2\xe0\xdc\x71\x20\x5f\x5b\xb1\x8a\x0b\x08\xfc\xf0\x7a\x8b\xf1\x5b\x3f\xb4\xa0\xdd\xa8\x91\xd5\x2f\x39\xe2\xfb\xc8\xec\x8f\x42\x90\xc6\xd7\x34\x23\x5c\xae\xaa\x0b\xdb\x21\x0c\x68\xad\xd4\xe8\xe3\x84\x82\x67\x7b\x9e\x9e\x20\x46\x86\x0e\x43\xc1\xab\xaa\x6c\xf7\x16\xe8\x87\x6f\x8f\x39\xd9\x61\xc1\x2c\x20\xff\xe6\x86\x76\xa9\x4a\x09\xbd\x8f\x1c\x83\xe0\xf5\xaa\xaa\x7b\xcb\xa4\xaa\x28\xfa\xa4\xae\xb3\x57\x17\x94\x46\xab\x18\x2a\xfc\x0d\xc3\x2b\x20\xbf\xea\x72\x6c\x3c\xdd\x3a\x94\xbe\x78\xac\x99\x5f\x16\x4b\x7b\x9c\x76\x5c\xf6\xea\x1d\x59\x29\x5c\x71\xe3\xd1\x83\x23\xb5\x0e\x29\xaa\x36\x24\x46\x47\xa6\x04\xbb\xba\xc8\xa7\x8e\x07\x9f\x2d\xf4\xc0\x3a\x1a\x3f\xb4\x1b\x3e\xb4\xe5\xf3\xde\x46\x3d\xab\xe4\xd0\x5d\x14\x46\x61\xdf\xba\xb0\xe8\x40\xdb\xf0\x97\xd9\x97\xac\xac\x32\xa7\x9e\xdb\x90\x9e\x2f\x2a\x9e\x2f\x45\x64\xd4\x57\x5f\x6a\x66\x10\xfa\xe8\x93\x1f\xb3\x2a\xeb\xe8\x1d\xc6\xcb\x11\xbf\x99\xda\x23\x47\x66\x08\xa4\x54\xfb\x01\xf2\x75\x63\x6b\x54\x70\x06\xbd\x13\xf5\x85\xbc\x81\xbb\xd5\xdf\xdc\x1c\xda\xc1\x85\xa4\xfe\x23\x45\x78\xb2\xd6\x6a\x31\xc1\x0b\xb9\xca\x07\xa5\xb5\xd0\x5a\xbc\xc5\xc4\xa2\x34\x49\x9a\x7a\x31\x73\xdf\x9e\x20\xc0\x0d\x24\xe9\xad\x3b\xe0\x2b\x8b\x98\xd3\x6d\x39\xc4\x76\x55\xfa\x8d\xe1\xdf\x37\xb9\x28\xdc\xd2\x07\xe1\x3f\xdb\xe3\xeb\x8e\xae\x9c\x5b\x38\x09\x4f\x2c\x84\x4d\x26\x5d\xdb\x59\x48\x82\xc3\x27\xf9\xac\x8c\xb2\x2c\x27\x68\xfb\xd0\x07\x04\xa5\x33\xad\x48\xd2\x56\xd6\x05\x41\x8b\xca\x0d\xd1\xd1\x77\xf5\x13\xa7\x97\xb4\x47\x75\x57\x65\xfa\xe8\x82\xaf\x73\x14\x75\x46\xbe\x73\x12\x6c\xe4\x21\xb8\xaa\x6a\x48\x93\xef\xd1\x6e\xa7\xcd\x38\x36\x1e\x1a\xe1\x41\x9b\xe7\xef\x8e\x39\x09\x2e\x4c\x9a\x77\x70\x34\xca\xc1\xaf\xd4\xc1\x81\xa2\xf7\xba\x11\x59\xf5\x38\x3f\x09\x9b\xad\xfa\xb0\x79\xe7\x63\xbc\x94\x7f\xba\xf1\xcc\x79\x56\xb7\xc7\x79\xaa\xba\x32\xbb\xc5\x8e\x5b\x5b\xd5\x50\x9c\x18\xfb\xbe\xba\xd9\x2f\xeb\xaf\xf1\x7e\xb9\xd1\xd8\xc6\x74\x06\x69\x26\xdc\x53\x84\x98\x2e\xe1\xcd\x79\x56\xff\x35\xaf\x2f\x64\x28\x17\x0f\x18\xcb\xbe\xb3\x01\xcf\x79\x56\xb7\x04\xea\xf2\x18\xc4\x56\xad\xc0\xbe\x8b\xa7\x43\xd3\x7f\x6f\xd0\xf4\x56\x31\xf1\x77\x3e\x31\xf1\x46\xda\xfe\x87\x2e\xda\xfe\xcf\x77\x8b\xba\xe1\x34\xf9\x43\xfb\x69\x02\x54\x18\xf7\x9b\xd7\xa1\xaa\xcc\x94\xc0\x18\xbc\xa9\xb3\x88\x09\xc2\xc4\xfa\xed\xa5\xcc\x7c\xe2\x6d\xe9\xd5\xdb\x76\xb2\x0b\x05\x78\x6e\xbb\x3f\x5e\x70\xaf\xba\xc9\x21\xaf\xd8\x65\xdc\x23\x6f\x97\x35\xd1\x56\x4f\x03\xe7\x59\x6d\xe8\xeb\xf1\x08\xc3\xda\x9b\x80\xcc\x00\x2d\x7e\xe6\x37\xde\x7d\xda\x47\x7d\x2e\x50\x81\x34\x40\xc9\x5b\x80\x60\x39\x27\x49\x3d\xf0\x3b\xf3\x46\xbd\x7f\x07\x1f\xa9\x29\x54\x59\xe8\xf8\xdc\x99\x46\x95\x1f\xc1\x8b\xa4\xba\x60\x9e\x5a\x19\x0c\x56\x09\xf9\x4d\xe4\xdb\x26\xbc\x97\xde\xb3\xd8\x79\x49\xb6\x17\x2f\xaf\xc1\x73\xde\xda\xf7\x5e\x67\xbb\x79\x66\xa8\xed\x65\x5c\x02\xf8\xab\xf4\xbc\x69\x3b\x35\x5a\x8f\x9d\xfe\x0a\x17\x45\x9d\x4f\xaf\xcd\x8e\x78\xea\xc4\x2b\x85\x8b\xaa\xaa\xd4\x00\xd0\x2d\xfb\x1b\x75\xb6\xab\xa9\x69\xea\x3e\x6a\x99\xd0\xaa\x3f\x16\x24\x5d\x94\xb6\xab\x72\x73\x65\x26\x79\xe8\xac\xcf\x04\x6d\xaf\x92\x29\xeb\xbc\x28\x4a\xbf\xed\x88\xfb\x0e\xf4\x29\xbb\xde\x0f\x94\x32\x0d\x6c\x5d\x76\x3c\xba\xbb\x8c\x48\x84\xf9\xde\x6b\x16\x32\xb7\x9f\x51\xa0\x89\xf2\xc5\xa4\xcc\xc4\x4e\x56\xfa\xb9\x4e\x13\x0a\x04\x05\x89\xe8\x44\x57\x27\x86\x6b\xf5\x3b\x3e\x6a\x9c\xed\x3e\x58\x26\x65\x95\xbd\x98\x15\x09\x13\x8f\xc9\xa5\x22\x6e\xd5\xe1\xbe\xae\xcb\x71\xfb\xac\x69\x58\x9a\x6d\x44\x54\x81\x70\x44\x75\x62\xb8\x56\xbf\xbd\x88\x3a\x8d\x0a\xe4\x0e\x74\xf9\x0e\xe4\xea\xe2\xfc\x7c\x96\xb5\x62\xe6\xa1\x82\x7b\xee\x58\x74\xd4\x2f\x4f\x98\x76\xaa\x6f\x3a\x7d\xd3\x25\xf9\x31\xf6\x53\xe6\x43\x4d\x89\xa1\x34\xa0\x55\xc9\xe6\x8b\x04\x39\x17\x90\x91\xd5\xef\xe3\x91\xa9\x85\x19\xf7\xde\x00\xfe\x99\x0e\x94\xbe\x86\xc3\xa4\xed\x02\xc6\xba\x0c\xe8\xb7\x06\x03\xda\xf2\x66\xe3\xe1\x7b\x17\x85\x0e\xe2\x3a\x5c\x14\x88\x44\x51\xea\xb4\xa2\xd4\xc6\xbe\x75\xb2\x1c\xc0\xbc\x6a\xe7\x29\x62\x35\x63\x52\x90\x57\x2f\xd0\x03\x86\x98\x29\x78\x6a\x0d\x47\x46\xf6\x7b\x30\x3c\x62\xb9\x3e\x77\x1a\xb6\xa2\x75\x5b\x03\xf8\xf6\xca\x72\xa5\x27\x30\x8b\xab\x20\x2b\x2c\xa6\x03\x96\x54\xc5\xc2\xaa\x57\x63\xe6\x54\x8b\xf0\x41\x44\xe5\x46\x28\x61\xc7\xaf\x26\x92\x6e\x2b\xc8\x27\x0b\x7a\xfc\x0b\xb7\xb3\x63\xc6\x3a\x30\xc6\x74\x5e\xbd\xcb\x16\x69\xbe\x38\x3f\x5e\x14\xf5\x20\xc8\xab\x0f\x59\x5d\xcf\xc8\xb1\x46\x92\xbe\x5d\xcc\xae\x07\x61\xa4\x92\x8f\x8b\x72\x60\xa0\x6d\x8c\x8d\x55\x46\x42\xd1\xf3\x37\x83\xa4\x14\x1a\xff\x16\x35\x6f\x35\xd5\x1e\x2b\x84\x38\x8e\x1f\x6a\x0d\xf0\x64\x89\xd4\xc2\xf4\x2f\xe2\x7d\xa0\x09\xf8\x80\x7d\x53\xc9\x25\xd0\x9b\xaf\x2a\x78\xfa\x16\x44\x40\x50\x9b\x08\x3c\xce\x50\xee\x93\x59\x9e\x54\x83\x40\x24\x05\x61\x44\xae\x6c\xac\x4c\x4c\x0c\xa3\x60\x9a\x2f\x92\xd9\xec\xda\xce\x97\xc9\x82\x8e\x69\xcb\x79\x0e\x62\x68\x67\x58\x52\x73\xe9\x74\x45\xcb\x84\x29\x25\xb0\x17\xf3\x78\xc1\x42\xfd\x48\x2f\x38\x56\x78\x9a\x4e\x3a\x5a\x15\x65\xfd\x55\xc5\x31\x3b\xc5\x8a\xd9\xfd\x51\x9e\xf9\x25\xd9\x4d\xdc\xf2\xaf\x20\x58\xf9\xc5\x9c\x96\x74\x89\xa9\x6f\xf1\x22\xdf\xfd\x82\xde\xe2\x73\xc4\xf6\x93\xe1\x79\x68\x6f\xbb\xe8\x7f\xe7\xb9\xe7\x77\x5c\xd7\xbf\xf3\xdf\xd6\xbd\x67\xe4\x1f\xec\x33\xf2\xac\x5d\x78\xf0\x5b\x10\xa8\x38\x82\x83\xa2\x0d\xb6\xe0\x50\xf7\x21\x12\xf7\xe8\x0c\x88\xfd\xce\x2e\xbe\x70\x2a\x88\xb4\x27\xd5\x84\x4e\x06\x71\x34\x41\x92\x14\x3d\x1f\xd3\x6c\x44\x45\x99\x9a\xe6\xd2\x79\x9d\xcd\x8f\xc0\x32\xed\xa1\x54\x72\xae\x56\xb3\x3a\x3e\x8c\xcc\x66\x18\x21\x33\x33\xc0\x52\x8f\x35\x6e\x01\xaa\x74\x82\x93\x18\x59\x60\x2f\x94\xf5\x9d\x92\xd1\x9b\xcd\x44\x86\x73\x51\x19\xac\x30\x44\x27\xd4\x80\x71\x1c\x1f\x0a\x62\x0c\xbf\x79\x95\x64\x1d\x29\x9a\x92\x06\xd4\x47\x91\x51\x89\x4a\x7f\x68\xa6\x87\x23\x55\xfb\x5e\x1c\x1f\xf6\xfb\x7b\x46\x8f\x54\x6b\x07\x47\xff\x89\xbf\x1a\xd7\x7e\x0d\x92\xa3\x34\xab\xea\xb2\x70\xb4\x86\x89\x11\x61\x63\x21\x59\x93\x70\xfb\xe1\x47\x05\x5e\xf2\x8e\x6a\x66\x82\x6e\x31\x0c\x26\x01\x44\x96\x65\xf9\xa6\xb1\x66\xe9\xd7\xce\x25\x16\xcc\x19\x39\x44\x64\xf4\xe1\x65\x9d\xcd\x3f\xb0\x5c\x6d\x82\x23\x5f\x55\xe4\x1f\xc3\xab\x31\xb8\x8b\x1d\x88\x4b\x66\x25\x4a\x33\xb7\x60\xc3\xb3\xa2\x98\x0d\xdc\xe5\x97\x94\xa0\xec\x94\x92\x36\xbf\x66\x4e\x34\xa3\x67\x15\x1a\xa2\x7f\xe7\xa8\xcd\x80\xbf\x6b\x5e\x24\x5a\x31\xd7\x03\xc4\xa4\x5d\x66\x2d\xd2\x51\x87\xf8\xfc\xc9\xaa\xc8\x2d\xcf\x42\xb0\xdc\xf0\x17\x25\x7d\x83\x70\xa4\xbe\x0d\x45\x72\x63\x1b\x1b\x51\x8a\x70\xc3\x1b\x00\x8d\xde\x64\xf7\xb2\x2e\xb8\xb0\xe4\xbe\x16\x85\xdc\x41\xd2\x50\x91\xca\xab\xc5\x42\xdf\x4d\x18\x49\x6f\xce\x4c\x88\x66\x52\x6c\xb6\x0e\xfe\xbd\xff\x7c\xfb\xcf\xdc\x78\x76\xd7\x3b\xc6\xd5\x1a\x0a\x3e\xbc\x58\xe7\x2c\xa9\xea\x0f\xc6\xe9\xa0\x5d\xef\xd8\xed\x68\x89\x65\x71\x9f\x0d\xa8\x9c\x0d\xfd\xd0\x07\xd5\x36\xad\xb4\x1e\x72\x76\xab\x6d\xbd\xf2\x37\xa7\x82\x81\x3a\x2d\x72\xaf\x45\x3c\x14\x82\xd5\xfc\x1e\xba\x72\xf4\x54\x20\x4d\xc6\x0d\x5a\xc9\xfa\x61\xe5\x04\xe1\xc8\x4a\x19\x9a\x6a\x42\x03\xb8\x74\xd1\x5a\x7b\x62\xc6\xa6\x61\x11\x54\x41\xf1\x31\x57\x51\x0c\xd2\xa7\xc5\x0a\xed\xa7\xe8\x27\x05\x65\xea\x22\xaa\x18\x85\x4b\xd2\xc5\x5d\x7b\xa1\x19\x47\xa9\x32\x10\x63\x94\x66\x24\xa8\xe0\xb6\x42\x45\xfa\x20\x9c\x46\xd2\xa4\x67\x3b\x02\x20\x77\xb1\xd9\x8c\xbd\xd7\xdd\xe1\x64\xef\xf4\x00\xb2\x91\xf5\xf9\xc5\x8e\xe3\xcd\xd3\xd8\x18\x4b\xc1\xf3\xfa\x70\x1f\x2b\x61\x37\xa2\x6c\xad\x19\xd1\x50\xd7\x0a\x60\x98\xa8\x89\xe0\x85\xec\xf9\x64\xea\x79\x72\x6c\xb3\xf4\x56\x13\xf9\x35\xce\xcf\xdb\xce\xa2\xdd\xa1\x63\xab\xd7\xb7\xd9\x7e\x2c\x52\x89\x05\xc0\x14\xf1\xa4\x23\x1f\x44\xf8\x2c\x5f\x24\xe5\xf5\x87\x2c\x29\x27\x17\x38\x26\xa0\x9b\x77\x5e\x5f\xb8\x74\x49\xa9\x48\xc2\x4c\x0a\x2c\xd5\x62\x6c\x1d\xae\x3b\x76\x2b\x2a\x66\x14\xa8\xcf\x45\x06\x1d\x26\x40\xb5\xd1\x2c\x9b\x02\x0e\x0e\x98\xd2\xf8\x93\x15\x1d\x1c\x85\x51\x99\x9f\x5f\x6c\x09\xbe\x7f\x84\x95\xbf\xc7\x1b\x88\x6c\x87\x02\x31\x73\xa6\x4f\xe1\x40\xf5\x53\x09\xd5\x96\xaf\x88\xca\x24\x35\x4f\xd9\x0e\x98\x7b\xea\x4a\x1e\x1f\x6e\x45\xd5\x3a\x36\x4a\xd3\x44\xc6\x54\x9b\xd3\x12\xcd\x8a\xcb\xe8\x22\x3f\xa7\x20\x2b\xf3\x3c\x8d\xe6\x79\xfa\x12\x30\xcc\x2a\x9b\xef\x07\x54\x8b\xcb\x38\x8e\xb1\x88\x74\x27\x58\x5c\x36\xbb\x2c\xd8\x79\x9e\xc6\xb3\xe2\x72\xff\x75\x52\x5f\x0c\xa7\xb3\xa2\x28\x07\x03\x51\xe1\xc1\xac\xb8\x0c\x1f\x3c\x04\x80\xee\x39\x9a\xe7\x60\xd3\x45\xfa\xaf\x72\x60\x25\xe6\xb9\x1c\xd6\x32\xab\xbe\x3f\x34\xfd\x8d\x78\x96\xfd\x3c\x4f\xf7\x8f\x70\x10\x1a\x6d\x34\x5c\x3d\xde\x5c\x52\x0c\x9e\x40\x45\x52\x82\x79\x9e\x6e\xf1\x28\x83\x0f\x92\x14\x8c\xfc\x94\x42\x01\xfc\xe2\x5e\x92\x7f\x69\xa9\xdf\x2f\x26\xc5\xdb\x1c\xfd\x7f\x93\xe0\xce\x2b\x02\xfb\x9d\x2d\x02\xfb\x08\xd3\x8e\xe1\xce\x3f\xe0\xa4\xdb\x0e\xdd\x01\x02\xa5\x4d\xb8\x3a\xf8\xef\xa7\xe8\x3d\x0a\x93\x10\x74\x83\x97\xd2\xd6\xa0\xed\x23\xf2\xcf\xf4\x56\xba\xd3\x0a\xe3\x38\x0e\x28\x08\x0a\x73\x3b\xab\x8b\x12\x18\xf7\x67\xce\xfc\x6f\x69\x60\xbc\x4b\xce\x8a\xe2\xd3\x6a\x29\x0b\x35\xc6\xe3\x0f\xf7\xeb\x8e\x00\x8d\xe1\x8a\x54\xe2\x68\xf6\x7a\x43\x4f\x0d\x58\x4e\x7b\x78\xba\xd1\x6f\x23\x67\x63\xf7\x4d\xe8\xdd\x46\xc1\x2c\xdb\x3e\x18\x06\x9c\x39\x26\x56\x37\xa4\xc9\x2e\xae\x25\xa6\xe4\x0a\xfe\x5e\xc4\xff\xe0\xad\xe5\xe6\x66\x4d\xc1\x1d\x50\x1c\x08\xbe\x5b\xf0\xf7\xcd\x8d\x3d\x46\xa2\x56\x5c\x2e\x00\x86\xbf\x39\x18\x5f\x71\xf6\xec\xf0\xaa\x29\x49\xbf\xe7\x24\xe5\x79\x25\x50\xcb\x8b\x85\x1c\x48\xed\x5f\xab\xcc\xea\x78\x0c\x5e\xae\x78\x8e\xf2\x80\xc4\x12\x59\x60\x5d\xa9\xf7\x44\x95\x62\x34\x33\x72\xc9\x60\xa0\x15\xc7\x81\x9a\x9f\x20\x5c\x6f\xb5\x4a\x64\x0f\x6f\x6e\x40\x4f\x46\x79\x9c\xeb\xf7\x11\x4c\xe1\xad\x9d\xd1\x81\x05\x39\x3a\x23\x63\x09\x43\xc3\xb9\x26\x8c\x82\xd1\x10\x8d\x85\x8e\x59\x28\x4b\x8f\x31\xe3\x64\x53\x05\x21\x74\xbc\xcc\xea\xbd\x18\x3d\xe6\x81\xd3\xc4\xba\xd4\xae\x28\xcb\xac\x36\x96\x18\x40\x35\x96\x5d\x2c\x97\x8b\x7b\x68\x54\xeb\x69\x46\xa1\x93\x04\x92\xb9\x1d\xd4\xcb\x82\x59\x24\xf3\xac\x5a\x26\x93\xad\x75\x75\xbb\x0e\x83\x37\xb2\xb2\xae\x03\xa1\xa5\x7f\xaa\xec\x30\xbb\xaa\x33\x88\xed\xb1\xa9\x7b\x82\xa1\xf7\xeb\x4f\x7c\xd5\x23\x7a\x07\x35\x8b\x0d\x91\x0a\x0c\x03\x60\xab\x77\xc8\x50\x6d\x7a\x58\xec\x34\x09\xee\x78\x75\x74\x82\x6b\xfd\x2b\xbc\x26\xfe\xda\xd4\xb4\xbb\x58\x17\x9f\xc5\xf0\xb7\x96\xc5\xf0\x26\xc5\x6c\x2f\xf3\xf2\xdb\x1d\xde\xef\x7e\xb7\xc3\xfb\xdd\xef\xec\xf7\xbb\x8d\xea\xd6\xbf\xbf\x83\x29\xcd\xef\xdb\x95\x9f\x5b\x74\x72\xbe\xf3\x18\x17\x09\x48\xb2\x14\xb3\x56\x4b\x8b\x09\xb4\x3b\x27\xbe\xe0\x05\x2d\xcf\xbc\x47\x9e\xe5\x61\x47\x52\x03\xbd\x65\x19\x4a\xed\x4e\xa6\xea\xe0\xf3\x53\xab\x17\xc1\x27\x64\xfc\x44\xee\x0b\x7f\x82\x2f\xe8\x11\x06\xdf\x64\xc3\x21\x69\x28\xef\x76\x24\x1f\x55\x88\x73\xb5\xde\x8d\x12\xd2\x0b\xd1\x97\x7c\xba\xd1\x49\x00\x6e\x26\xed\x89\xc3\xe6\xdc\x25\xcd\xd8\xb1\x4d\x44\x66\x86\xbe\xea\xa2\x64\x5e\x2b\xc3\xc3\xb5\xe7\x3d\xc2\x30\xa1\xe6\xc0\xcd\x6d\x1f\x40\xf0\xde\x58\x67\x49\x99\x16\x97\x0b\x42\x0a\xe4\xff\x76\xe2\x0e\xcf\x96\xec\x31\x44\x3d\x61\x0d\x3d\xa1\xd0\xb1\xdc\x5a\x7b\xb9\x3b\x0e\xfc\xa2\x64\xe6\xe5\xcf\x04\xd1\x92\xaf\x26\x6c\x9a\x36\x41\xf4\x4f\x2d\x62\xc9\x9f\xd4\xa8\xf9\x04\xf4\xb7\x78\x2f\xa2\xd0\xad\x55\x56\xaf\x96\xc6\x58\xf2\x94\xff\x8f\xbc\x37\x5d\x6f\x1b\x57\x12\x86\xff\xcf\x55\xd8\x7c\x33\x0a\x39\xa6\x15\x3b\x67\x97\xc2\x64\xdc\x8e\xfb\x74\x9e\xce\x36\xb6\xbb\x7b\xce\xa8\x75\x34\xb4\x08\x59\xec\xd0\xa4\x0e\x49\x79\x39\x32\x2f\xe9\xbb\x89\xf7\xca\xbe\x07\x55\x58\x0a\x20\x28\xc9\x4e\x7a\x99\x79\xf3\x23\x16\x81\x02\x50\xd8\x0a\x85\x42\x2d\x9f\x3b\x90\x71\x92\xfc\xbc\xa3\x38\xb1\xd6\xf0\x9a\x25\x65\xaf\x76\x7b\xac\x1e\x22\x4d\xcb\x58\x6e\x8b\x53\x5e\xad\x95\x16\x0e\x0e\x70\xbc\x2d\x00\xab\xd7\xd8\x1e\x1a\xf5\x92\xc0\x13\xae\x92\x56\x21\x39\x9d\x72\x23\x1c\x99\xd0\x36\x62\x30\xd1\x56\x9a\x6b\x5d\xfd\x26\xc6\x0c\x57\xa4\xdd\x23\xf7\xb0\x98\x16\x02\x6e\x18\x73\x1d\xc9\x31\x57\xe3\x0d\xee\x1b\xd4\x46\xb0\x9a\xb5\x37\xc4\x43\x04\x75\xa0\x64\x68\x4e\x43\x4b\x1a\xb9\xc5\x86\x59\xbf\x84\x8c\x8d\xb3\xb6\xe3\x62\x03\x75\xac\x98\x9f\xbb\xa3\xdb\x91\xd8\x2f\xdb\xd7\x6e\x5a\xf1\xad\x9d\x47\x09\xaf\x3c\x14\x37\x1d\xa7\x8a\x14\x4a\x09\xb5\x79\x1a\x8b\x33\x15\x57\x77\xb7\xec\xe5\x01\xe3\x2c\x45\x1d\x0f\xdb\x54\x7c\x69\x4b\x2f\x2e\xdd\x27\xfa\x03\xa8\x7d\x4d\x3c\x12\x90\xbe\x1a\xf5\xd9\x66\xc7\x56\xf3\x96\xcf\x8a\x56\x57\xa3\xc8\x85\x44\xb0\x22\xae\xda\x91\x54\x88\x9a\xa9\x3a\xea\x1a\x4d\xdd\xef\xaa\x34\xbf\xdc\x11\x65\x76\x8a\x7c\x27\xd6\xa3\x49\xd8\xb4\x9d\x14\xe3\xcc\xc6\x59\x56\xdc\xb0\xa4\xef\xc1\xc6\x79\xa0\x33\x1a\x79\x24\x7e\x86\x53\x9a\xc9\x56\x5e\x69\x36\xe2\xf5\x88\x71\x36\x24\xf7\xc6\xf3\x95\xa8\x77\xf3\x28\xcb\x52\x0f\x1c\xe6\x47\xfb\xd8\xd9\xa4\x2e\xf3\x90\xa3\x2b\xcd\x93\x74\xca\xaa\x68\x34\x0e\xd3\xe1\x2f\xea\xbc\x07\xe2\x2f\x44\xd0\xcc\x30\x7d\x01\x7f\xf7\x20\x82\xd2\xde\x5e\xb0\x12\x68\x89\x38\x68\xd6\x7b\x5e\xe7\x6b\x4f\x1a\x04\x41\x23\x8b\x3a\xbc\x7b\x8a\xb9\xbe\xd8\x8f\x9b\x60\xd8\x61\x54\x88\x68\x1d\x0c\xd3\x17\xb2\x22\xea\x99\xd0\x5a\xac\x08\x31\x4a\xc7\xe1\xa1\xf4\x3a\xe4\xb2\x34\x7c\x88\x2b\xa2\x89\xc3\x17\x91\xbd\xc1\xfe\x47\xfb\x24\x9a\x3c\xc2\x29\xd1\x2f\xe4\x7b\x66\xb2\x8d\xf3\x99\x8d\x6e\x82\x26\x9f\xef\x27\x68\xb2\xd9\x51\x10\x28\x4c\x38\x58\x19\xcb\xd3\x0f\x39\x49\x51\xc7\x42\x08\x8b\xe3\x92\x46\xff\x68\x31\x10\x9d\x4a\x44\x18\x37\x83\xa8\x2d\x28\xa5\x05\xce\x0a\x29\x9e\xf4\xae\xcd\xcb\x77\x15\x72\xb7\xdd\xa1\x1d\xf0\x80\xa6\x35\x1b\xdc\xdd\x72\x9a\xa7\x06\x3b\x68\x68\xdf\x39\xaf\x91\x6b\xf9\xf6\x06\x5c\xc5\xbf\x6e\x2b\x18\xaf\xbf\xc1\xd8\x37\x1c\x5d\x5f\xb7\x00\x5e\x9f\x2d\x9b\x04\xd3\xc2\xdd\x10\x2b\x3b\xcd\xfa\x1e\xe0\x41\x74\x9d\x04\xd3\x16\x40\x3a\x04\x54\xc7\x12\x97\x48\x78\x64\x79\x57\x60\xc0\x6d\x8d\x64\x40\xcb\x28\xf8\x3e\xaf\xbc\x62\x9d\x9e\x77\x15\xe0\xe6\xd1\x28\xd9\x44\x4a\xb3\x7f\x41\x31\xfd\x22\x8b\xeb\x59\x51\x5e\x59\xc9\x37\x71\x3d\x9d\x0b\xa1\x37\x45\x65\x1e\xa7\xf9\x86\x50\xc2\x8f\x8e\x63\xec\x16\xf4\x7f\x62\x77\x9d\x6e\xa1\x84\x06\xc2\x1c\xe3\x63\xbb\x07\xa2\xed\xeb\xe5\x22\x15\x4a\x95\xdb\xbc\x57\x94\xcb\x7c\x92\x15\xc5\xe2\x7f\xb1\xf4\x9f\x24\xd8\x38\x1e\xda\x48\x1e\xda\x58\x1e\xda\x68\x1e\xfe\xe9\xd7\x7d\x52\xb8\x5c\xa6\x89\xed\x4c\xe3\xf7\xbc\x2c\xa6\x6f\xf7\xa4\x00\xfa\x0c\xed\x07\x05\x48\x16\xd8\xe5\xac\x8c\x6b\xf6\xd7\x65\x9a\xb4\x9b\x22\x99\x00\xfd\xd7\xef\xde\xbc\x9e\x7c\x7b\xf2\xb7\x16\xa4\xcc\x00\x28\xbe\xe0\x5a\x10\x3c\x11\x65\xf3\x27\xe7\x47\xce\x3a\x64\x06\xd6\x11\x7f\x72\x88\xef\xa1\x22\x99\x23\xb4\x5d\x61\x87\xb7\xde\x36\x44\x3a\x4a\xed\xd3\x3c\xad\xe6\xc7\xb0\xe5\x5b\xcf\x12\x34\x73\x8d\x7b\xf2\x3f\xb7\x22\x29\xbf\x39\x9b\x7c\xf5\xe6\xfd\xeb\x37\xef\xff\xda\x32\xb8\xd2\x59\x1d\x5a\x2b\x7f\xd9\xec\xeb\xec\x2f\x2d\x07\xb0\xeb\x5c\xb1\xb9\x9e\x35\xdc\x0f\x2b\xae\x67\x0d\x49\x3b\x5b\x0b\x45\x66\x00\x14\x27\x60\xad\xd7\x0f\xbb\x2a\x7c\xb1\x16\x81\xfe\x23\x7b\x4f\xda\xd0\x78\x92\x48\x76\x3e\xb2\x77\x6c\xdf\xcc\x87\x22\x5f\x21\xd1\x8b\xec\xcd\xdc\x17\x19\xe2\x18\x44\x1a\xe8\xae\x99\xaf\x0f\x1b\x02\x27\x62\x69\xf9\xdf\x76\xd8\xf0\x09\xeb\xa6\xd6\x82\x13\xe9\xf8\xe2\x36\x11\x1b\x8f\x6c\xb4\x62\x62\x75\x56\x8e\xad\xab\x93\xd5\x74\xce\xf8\xb9\x1d\x95\xcb\xbc\x2f\x3f\xf4\x8e\xc7\x05\x85\x2a\x4b\x13\xbd\xdb\x71\x29\x7f\x8c\xcb\x3a\x8d\x33\x91\x6d\xa4\x89\xd5\x56\x2c\x98\x2c\xad\x9d\xeb\x60\x32\xae\xd7\xa3\xf7\xaf\x8f\xce\x3f\x9c\xfe\x6d\x72\x76\x72\x7e\x7e\x72\x2a\x5e\xa0\x4e\xde\x7f\xdf\xb7\xb3\xf0\xf1\x73\x8b\xc8\xde\xe6\x33\x96\xba\xaa\xbe\x66\xd5\xb4\x4c\x17\x75\x51\x46\xab\x69\x91\xcf\xd2\xcb\x25\x06\xbc\x00\xab\xbe\x9b\x32\xad\xf5\x17\x09\x87\x81\x06\xda\xa0\xb9\x33\xd0\x36\x10\x68\xb9\xbf\x04\x06\xf1\x73\x6b\x05\x3f\xfe\x5a\x75\x86\x13\x9d\xe3\xba\x28\xc5\x35\xe0\x26\xae\x8e\x16\x8b\x2c\x65\x32\x42\x22\xe7\x73\x61\x44\x2b\xf8\xa9\xd5\xa0\x71\x39\x66\x71\x55\x45\xa6\xc4\x6a\x57\xd7\x11\xac\x00\x00\x27\xc3\x0f\x1a\x7b\xa9\xe0\x55\x4a\x92\xd8\xd0\xec\x61\x30\x74\x83\x7b\x93\x49\xce\x6e\xeb\x33\xce\x6a\x7b\xa1\x63\xc0\xf1\xb6\x76\x15\x71\xc2\x8c\x12\xef\x10\x10\x88\xae\x10\x91\xa1\xf8\xab\xec\xb6\x74\x1f\xa5\x8a\x2a\xff\x1d\xe9\xe4\xa1\xfe\x89\x11\x4d\x6c\x11\x1b\xae\xb1\x10\x0b\x82\xe4\xc2\x1c\x2c\x65\x4d\xbe\xc0\x6a\xc9\x30\x9a\x9f\x3a\x94\x2a\x2a\x20\xb1\x3c\xd6\x7b\x39\x95\xda\xa8\xee\x3c\xe2\x5d\xf0\x20\xcc\x22\x68\x4d\x89\x20\x5e\x64\x3a\x06\x89\xe6\xbb\x10\x68\x94\x8e\x87\x5a\xbf\x49\xe7\xee\x46\x91\x27\x18\xde\x5e\xcf\x48\xa6\x81\x31\x9d\xe2\x2d\xdc\x13\xe2\x11\x17\x89\xc5\x4e\x91\x67\x77\x3b\xf1\x74\xca\x16\x75\x25\xbd\xcb\xf6\x3d\x18\xad\xdd\x05\x19\x2a\xce\xd1\xa7\xf9\x92\x35\x82\x36\x83\x46\x4d\xc4\x89\xb4\x4f\xc0\x54\x6f\x7f\xe2\xbd\xcd\x22\x09\x28\x7b\xfc\xd3\x8b\x2c\x1b\xfe\x44\xc2\xae\xf0\x5c\x05\x35\xfa\x09\xba\x4c\xda\xed\xcf\xe3\xea\xc3\x8d\x12\xeb\x28\x27\x29\x16\x3e\xa8\x81\xa7\x8b\x8d\x04\x1c\x54\xa7\x8f\xc7\x7e\xcd\xaa\x9a\xd4\x01\x8a\x08\x48\xc7\xab\xe8\xaa\x2f\x7f\x02\x0e\xf2\x23\x58\x39\x20\xa2\x55\xa3\x34\x86\x77\xaf\x6c\x24\x3d\x09\xe6\x05\xee\xd2\x92\x60\xfb\x3a\x2d\x68\xe4\x2f\x85\xbb\x08\x5d\x2c\x4e\x81\x69\xc4\x49\x77\x35\x35\xfb\xe6\x5e\x73\xbd\x9e\x14\xad\xb9\xf3\x95\x27\x19\xe5\x34\xf7\x22\xae\x44\x1c\x1b\xbe\x94\x8d\x26\x54\x16\x0a\x31\x25\x59\x21\x62\x4c\x05\x21\xb6\x80\xd4\x88\xb4\xd3\x85\x33\x11\x14\xc0\x22\x88\xe2\xae\x48\x33\x16\xb4\x1b\x5c\x66\xa6\x33\x9f\x8f\x4a\xb0\xe2\xff\xf7\x3b\x7c\x9b\x61\x15\x7a\x33\xc1\x76\xad\x58\xfd\x5d\xfe\x29\x2f\xf4\xc4\x45\x34\x54\x69\xaf\xb7\x2b\x57\xca\x4e\x8a\x42\x9a\x40\x5c\xfc\xdb\x25\x7d\x47\x7b\x7c\x6d\xd8\xe7\x17\x47\xb3\x4d\x3b\x65\x61\xd0\x9c\xa0\x18\x1b\x73\x21\x96\x03\xff\x67\x9c\xb2\x58\xc7\x55\xd0\x22\x7f\x9c\x86\x11\x99\x90\x22\xb0\x48\x6e\x29\x23\x2a\x5e\x20\xed\x88\x50\xbc\x02\x2f\x68\x86\x78\x5c\xd4\xc5\x19\xe8\x73\xb5\x8e\x72\x99\x21\xe0\x6e\xd2\x2c\x3b\xc5\x43\xdf\x3c\x82\xda\x27\xd0\x47\x59\x07\xe5\x30\xc4\xd6\x70\x41\x04\x8d\x7d\x12\x4a\xe4\x26\xe4\x2c\x20\x66\x51\x7c\xfb\x92\x1c\x9e\x60\x94\x20\x24\xdc\x51\x8a\xe4\xd2\x92\x38\x8a\x76\x90\x2a\x7e\xf0\x4d\xe1\xe0\x45\x28\x9d\x00\x62\x78\xf5\x15\xac\xf4\x6f\x75\x04\xdb\x07\x34\xe9\x26\xa8\x75\xba\x06\x03\xef\x5d\x72\x11\x10\xd4\x38\x44\x30\x14\x37\x92\x56\x86\x61\xbc\xa4\x92\x1b\x29\x57\x04\xf0\x06\x99\xda\x52\xd8\x9a\x44\x9a\x1d\x19\xea\x54\xbd\x20\x5a\xfe\x0b\xc5\x41\xa3\x61\xbd\x86\x16\x5c\x37\xed\x2b\x3c\xb4\xa9\xb0\x4d\xf3\xa0\x42\x27\x5b\xc5\xd7\x75\x04\x35\xb2\x25\x80\xa0\xbd\xe2\x20\x81\xd2\xe1\x8f\x10\xee\x11\xbf\x3c\x22\x25\xcd\x2f\x45\x92\xc3\xc1\x80\xb4\x25\xa5\xd0\xb2\xf3\x4d\x2b\x07\xe7\x50\xf2\xd5\x52\xab\xbb\xf2\x42\xbd\x57\x89\x9c\x31\x20\x90\xa2\x69\x0a\x39\x91\xb9\x89\x82\x37\x06\x80\x4a\x2c\xbf\x0d\x5b\xd0\x6b\x7b\xc1\x12\xd5\x09\xd1\x32\xd5\x4d\x20\x60\xd0\xa3\x26\xbc\x30\x02\xd7\xd7\x45\x38\x2b\x8b\x2b\xf1\x3c\xc1\x7f\xee\xa4\x79\x55\xc7\xf9\x94\xd3\x5c\x71\x5f\x0a\x82\x15\xcf\x89\xc4\x67\x9f\x7f\x00\x6c\xd0\xf0\xff\xfb\x75\xe1\xd7\x05\x1c\x01\x39\x9b\xd6\xa6\x13\x65\x0e\xd0\x84\x72\xd9\x0d\xb4\x43\x2c\x91\x22\xb6\xe2\x3c\xae\xce\x45\xca\xc9\x6d\xcd\xf2\x2a\x2d\xf2\x88\x52\xfe\xba\x95\x4b\x09\x7f\xc8\x54\xb2\xab\xa6\x57\xde\xc0\xdb\x73\x57\xe3\x07\x03\xcf\x53\xc1\x0a\xbc\x17\x02\x6e\x5a\xe4\x55\x5d\x2e\xa7\x75\x51\xf6\x35\xaa\x7b\xbc\x1e\x21\x5c\xc1\x6e\xee\xa9\x86\xf7\xbc\x97\xde\xd0\x68\x03\xb6\xa0\xc4\xc5\x2f\x99\x19\xed\xbe\x09\xba\xb7\x57\xbf\xb8\xc9\x59\x79\xac\x71\x88\x34\xa8\x79\xe1\x30\xaa\x77\xb8\x5e\xa2\x0d\xa6\x33\x61\xeb\x80\xf7\x9d\x7e\x71\xcd\xca\x32\x4d\x98\x45\xaf\x57\x5b\x00\xf9\x9d\xa8\x07\x0d\xc9\x9a\xa0\x18\x7f\x32\xd1\xcc\x38\xd0\x2a\x17\x0d\xd1\x19\x34\xf8\x8b\x59\x39\xcd\x49\x2b\x28\x81\x37\xb4\x54\xc4\x42\x17\xbb\x1f\x75\x1d\xed\x87\x19\xbc\x62\x69\xba\x88\x77\x19\x41\xa7\xbb\xf0\x82\x19\xd5\x99\x81\x93\xac\x3b\x8a\x58\xa3\xd2\x6a\xc5\x31\xc5\x70\xee\x38\x4f\x8d\x0e\x58\x24\xbb\xe2\x31\xc9\x55\x90\x72\x12\xf6\x09\x87\x77\x36\x71\xae\xaa\x79\x32\x4f\x98\x21\x1e\x9b\xd6\x71\xa4\x59\x61\x13\x3a\x40\x70\xba\x77\x04\xa2\x54\x48\xe8\x03\x50\x30\x84\x3b\x25\xfe\x36\x78\x9c\xd6\x40\x91\xee\x05\xe6\x89\x17\x22\x1a\x3f\xa4\xf5\x1c\x99\x85\xd6\x8c\xab\x8b\x69\x2b\x08\xfc\x81\x7e\x28\x94\xac\x06\xf1\xc7\x2b\x0f\x5c\x7e\x19\x3b\x96\xed\x3c\xb6\x76\xe2\x70\xb7\xb3\x85\xf6\x09\xaa\x8e\x18\xe4\xcb\x7c\xca\x2b\xda\xd3\x2c\x2e\xcd\x64\xb6\x2d\x7d\x18\x9e\x8d\xdb\xc5\x3e\xa3\xed\x05\xee\xa8\xab\xfb\x2c\x37\x9d\x11\x62\x63\xf8\xae\xdd\x8e\xbb\xa1\x89\xf5\xae\xba\x84\x40\x9e\x61\xee\x82\xc1\x41\x64\x99\xe2\xe2\xa7\x08\x1d\x38\x68\x1d\x11\x7e\x88\xf1\xf4\xe2\xe2\x27\xb2\x9a\x1b\xa3\x16\x81\xc4\x1b\x71\x92\x59\xc8\xe8\xa7\x60\x7a\xd6\x21\xf6\x7c\x55\x7e\x5d\x94\x4e\x27\xa4\x2a\xf6\x7f\x4c\xb6\x89\x1f\x8c\xa4\x50\x7a\x1c\xe2\x95\x8f\xd5\x71\xaf\xc7\xff\xd7\x77\xbf\xb1\x1c\x23\xb8\xf1\x4c\x78\xe6\xfd\xfd\xaa\x69\x42\x16\x4f\xe7\xb6\x9c\x51\x37\x3a\x8d\xb3\xec\x22\x9e\x7e\x0a\xc5\x3d\x53\x09\x1d\x84\xc8\x45\xa2\x00\x0d\x57\x11\xdd\x52\x90\x12\xb2\xab\x45\x7d\x17\xad\xb4\x1b\x64\x75\xd7\xcf\xc5\x1d\x09\xe0\xb4\x0b\xe4\x08\x51\xce\xe5\x45\x52\xa6\xd3\x91\xb2\xf1\x0d\x56\x12\x4f\x74\x2d\x25\x90\x45\x9b\x2c\x0c\xf0\x28\xab\x91\x5d\x07\xbc\x82\x06\xac\x9b\xd6\xd2\x44\x7d\xec\x75\x9d\x5e\x84\x36\xbb\x4f\x2e\x0d\xe0\x13\x58\x7a\x4c\x11\xda\xaf\x7f\x0e\xdb\x24\x48\x95\xe8\x7c\x11\xd6\x20\x9b\xde\x40\x13\x36\x63\x65\x49\x63\xc2\x5a\xef\x7d\x1a\x60\xf3\x6b\x68\xa7\xa1\xd0\xcf\x19\x90\x92\xaf\xa2\xd7\x02\x49\x67\x5c\xca\x87\xbc\x72\x75\x19\x6e\x38\x1e\x04\x64\x9b\x2e\xeb\x06\x03\x9f\x60\x28\x3f\xfb\x84\x02\xfa\x2b\xe9\xb4\x73\xc3\x36\x93\x13\x10\xa9\x5a\xc4\xa9\x17\x0c\x9d\xeb\x3d\x94\x05\x02\xbd\xd9\x31\x61\x8d\x0a\x81\xac\x7b\xd3\x72\xe1\x74\xe2\x57\x30\x6c\xdb\xf0\x8a\xbd\xd6\xd6\xcc\x9d\xe9\xb6\x65\x5b\xfb\x2c\xdd\xe1\xf9\x72\x5d\xc8\x92\xf6\x43\xf8\x2f\x14\x28\xe9\xb7\xf8\xc4\xfd\x9b\x7e\x9e\x5e\xf7\x64\xe9\x70\xba\x2c\xdf\x91\xec\xa7\x35\xfa\x8e\xd4\x11\x06\xd3\x15\xd5\xb2\x83\xea\x38\x2c\xcb\xb6\xf3\x9c\xf9\x4b\x86\xe9\xd8\x54\xd6\x05\xf5\xd8\x28\x1f\x9b\xdd\x2e\x80\xe0\x8a\xa1\x28\xb2\x6a\x47\xf7\x30\xb2\x37\xbe\xeb\x3e\x77\xbf\xeb\x6e\xb4\x3f\xe4\x0b\x7e\x73\xbc\x17\x77\xd4\x16\x28\xeb\x0e\xdb\xb2\x21\x50\x8c\x51\xd2\x8a\x14\xb3\xc1\xe8\x11\x8a\x76\x58\x3d\x62\xf8\x82\x8e\xd0\x3a\x50\xd0\x86\xd8\xca\xc9\x2a\xac\xfb\x78\x3a\xc7\x0d\xe2\x38\x43\x49\x80\xd6\x95\x29\x99\x93\x4e\xfb\xa4\xec\x1b\xd8\x35\xb7\xc2\x9e\xf5\x4a\x24\x52\xa1\x40\x04\xff\x8b\x14\xcb\xab\x63\xd3\x65\x0d\x01\x7b\xbf\x66\x57\x91\x51\xcc\x34\x28\x94\xc7\x6e\x0a\x5e\x7c\xa4\x0f\xd3\xd0\x40\x68\xb3\x85\x84\xc4\xc8\x68\x68\x68\x7a\x59\x04\x1b\x88\xa9\xcb\xf6\xa1\x09\xa4\xe2\xc7\x87\xaf\xce\x4e\x4e\xbf\x3f\x39\x8d\x9e\xfd\xbd\xbf\x37\xf0\xd1\x5c\xec\x1e\xa7\x2c\x78\xf2\x8c\xb8\x5c\xd0\x64\xe1\xeb\xa2\x14\x7a\x87\xdf\xb2\xbb\xd6\x70\xa3\x5b\xf5\x34\xb9\x0d\xb3\x62\x8a\xc8\xca\xc8\x92\x90\xd5\x9f\xc8\x30\x6e\x9c\xc0\xc2\x83\x98\x54\x5b\x75\xc3\x45\xab\xc6\x8c\xc6\x68\x0e\x75\x6b\x90\x65\x34\x46\xe1\xbf\xad\x15\x65\x04\x86\xdb\xc4\x56\xaa\x4d\x7f\xcb\xa8\x61\x4d\x30\x6c\xb9\xf8\xea\x2c\x46\x3c\x7a\x0d\xff\x85\x77\x2c\x92\x02\x38\xe5\x39\x48\x76\x73\xc4\x73\xc6\x81\xf1\x15\x8d\xc6\x43\x23\x01\xd5\xd9\x21\x64\x64\xd3\xa8\x49\x30\x69\xde\x17\x9a\x87\x2d\xa7\x40\x9c\x6b\xe9\x34\x65\x62\xea\x1e\x3f\x29\x2e\xa2\xff\x90\x79\x71\xf9\xd0\xdb\x6a\x6a\x5c\x33\x23\xfa\x14\x19\xe3\xaf\x92\x47\xe2\xcc\x46\x26\x5a\x0d\x00\xef\xcf\x18\xe4\x85\x4d\xd3\x48\x62\xd5\x69\xce\xec\xa6\x50\x6e\x9a\x64\xd1\x9a\xe1\x5a\x2b\x52\xed\xb3\xce\x38\xba\x84\x16\x84\x6a\x10\xb8\x49\x12\xf1\x27\x49\x93\xa3\x24\x91\xe1\x68\x48\xb6\xf2\x46\xb7\x34\x5f\x21\x3b\x43\x3e\x09\x91\x34\xa7\x3c\x11\xe8\x04\x48\x9a\xed\x1b\xbd\x51\xb3\x83\x48\x6f\x7c\xaa\x04\x31\x34\xd4\x00\xe7\x24\xf6\x39\xcd\x2f\xc9\x7a\xb7\x43\x10\x41\x60\xde\xb8\x4b\x19\x5d\xe2\xd1\xa9\x14\xae\xf4\xc2\x14\x21\xc6\x50\x3f\x59\x7a\x35\xcc\xd2\xab\x48\x17\x7a\x79\xf0\x8a\xba\x9e\xcc\xeb\xc1\xfe\xa1\xdb\x44\x44\xcd\x10\x47\x76\x27\xcd\xa1\x01\x7c\xc4\xe0\xbf\x1c\x1a\x08\x54\xfb\x20\x9d\xf9\x59\x7a\x85\x2e\xc3\xb6\xda\xf6\xf8\x94\x03\x3b\x3e\xbd\x0a\x9a\x35\x11\xa8\x3a\x33\xf5\x84\x79\xe8\x6c\xb9\x3b\x86\xa6\x18\x6c\x87\xf6\xfd\xa3\xc6\x5a\x8e\xb3\x84\x12\xa3\x2c\x3f\xf9\x18\xdb\x8c\x04\x3d\x13\xa5\xc0\xe8\xf3\x06\x7a\x9b\x43\xae\x63\x94\xdb\x51\xb9\xba\xf2\xda\x63\xac\x76\x9d\xb9\x2f\x07\xae\xfd\x8b\x5a\x27\xf2\xd8\x46\xb5\x13\x9d\x2d\xf6\x77\xe7\xa6\x51\x90\xc2\x8b\xe6\x41\xb8\xff\xa7\x20\x68\xa0\xe5\x53\x98\xaa\xcf\x6f\xbc\xaa\x8b\xc5\x83\xda\xee\xc2\xd6\x11\xc0\xc8\xb1\x72\x86\x72\x96\x03\x2b\x83\x1f\x5a\x32\x4f\xa9\x3a\x04\x2b\xe3\x33\x3a\x1c\x76\x72\x53\xa1\xb4\xff\x69\xb1\x50\xc3\xad\x99\xa1\x5a\x99\xb2\x0b\xbd\x0b\xa3\xf5\xbd\xbd\xa6\x09\x3b\x86\x6b\xfb\xce\xf3\xbf\xbd\x9e\x51\xf1\xcb\x83\x5e\x6f\x7f\xdf\x48\x7a\xa1\x82\x58\x3f\xb0\xaf\x0f\xe1\x39\x68\x77\x95\x73\x07\xe3\xf0\x36\x84\xdc\xe1\xd6\xd1\xf2\x68\x65\x0e\x8a\xe3\xac\xab\x23\x4e\x9e\x25\xe6\xea\x93\x5b\x86\xfc\xd5\xca\x17\x07\xbb\xfc\xb5\x49\x0c\x96\xc5\xff\xbc\x9b\x64\x45\x9c\x6c\x21\x05\x5b\x2b\x7f\xca\xe3\x3a\xbd\x26\xce\x92\x7e\x6e\x41\xe9\x56\x72\x16\x79\x75\xb3\x65\x2d\xf4\xea\xc6\x3b\xff\x4d\x51\x7c\xaa\x88\xc6\xed\xc9\xbb\xaf\x4e\x4e\x27\x6f\x3f\x1c\xbd\x9e\x7c\xf3\xe1\xc3\xb7\x67\xca\x97\x1c\x07\x66\x09\xdf\xae\x8a\xd1\x2d\xf2\xb7\x45\x9c\x40\xa8\x9e\x50\x8a\x31\x29\x0f\x3b\x54\x0d\xe0\x23\x40\x64\x7d\xdf\xdf\x4b\x0f\xf4\x81\x0d\x4a\x23\xa8\xab\xaa\x87\xca\x32\x30\x42\x6c\x10\x56\xbf\x19\xf8\xd2\xc4\x97\x86\x7e\xea\x23\x9a\x11\xfe\xd1\xd8\x97\x4b\x48\x80\x46\xb1\x0f\xd2\xf0\x98\x56\x2e\x18\x4e\xa2\x89\x79\x93\xe6\x09\xb8\x42\xd5\x5a\x98\x46\x4e\x3f\x49\xab\x05\xe7\xf3\x50\xab\xdf\xd4\x29\x13\x90\xc7\xcb\xaa\x2e\xae\xda\x00\x38\x7a\x40\x83\x81\x51\x23\x70\x88\xe2\x2a\x61\x75\x9c\x66\x03\x6c\x1a\x1e\x44\x06\xfc\xbf\x26\x18\xba\x5a\x47\x72\x8e\x46\xbb\xe6\x00\x2b\xff\xf8\xc8\x32\x5b\xb9\x61\x4b\x9e\xed\x18\x64\x6b\x98\xe9\x78\x46\xf4\x63\xd3\x46\x24\x4e\xe2\x3e\x47\x1c\x6d\xee\xd1\x6d\x7d\xa0\xfe\xac\xcf\x1d\x0f\x95\xe8\xfe\xac\xd2\x55\x97\xb8\xf3\x77\x96\xb8\x73\x3b\x83\x9b\x6d\x64\xb1\x9b\x5c\xa7\x76\x89\x4b\x1d\xd1\x8e\xb4\xdf\x3f\xe7\xa5\xad\x52\xf9\x42\x7f\xc3\xd2\x00\xd3\xae\xff\xde\x1f\xbd\x3b\x39\xfb\x78\x74\x7c\x72\x86\x17\x77\xe4\xfc\x75\xfe\xc7\xd3\x0f\xc7\x27\x67\x67\x27\xaf\x85\x6e\x61\x5b\xd5\x48\xc8\x75\xf8\x8a\x25\x46\xc7\xfc\x13\xfd\x4c\x18\x51\xcb\x60\x5f\xce\xd2\x3c\x51\x2d\x58\x41\x6a\x47\x1c\x21\x78\xed\x6d\x60\x27\xc3\x9b\x92\x19\xe7\x76\x51\x16\x53\x56\xe9\x2e\xfa\x23\x43\x2d\xc8\x0f\xc6\x78\x9c\xaf\x9a\xa0\x33\x12\x8e\xda\x5f\x55\xe4\x1a\x0b\xd5\xcb\xc8\xaa\x1a\x68\x9e\xf8\x92\xef\xa1\xe8\xda\x74\x24\x93\xc7\x5a\xe7\x7c\x98\xb0\x8c\xd5\x6c\xc7\xd5\xc4\xe4\xab\xbf\x4d\xde\xbc\xd6\xa5\x1a\x8d\x52\xbf\x5a\xa0\xa7\x78\x7a\x81\xd7\xd9\xc8\x73\x87\x87\xca\x4e\x57\x04\xd2\x68\xe8\xbc\x19\x2f\x72\xba\xd5\xc1\x08\x70\x1e\x87\x36\x22\x83\x55\x13\xaa\xb9\xd6\xd1\xf7\xf8\x40\x1f\x65\xd9\x40\xff\xd4\x13\x17\x5e\x00\x5f\xa2\x87\x36\x97\xac\xf6\x2e\x0e\xcc\x57\x1f\x3e\x9c\x9f\xbc\x56\x13\x66\x14\xd6\x0e\x03\x5a\x43\x02\xd4\xb6\x11\x92\x3e\x3b\xd7\x39\x5d\x98\x35\x14\x8a\x6e\xe2\xc2\x14\xad\x1a\xeb\xfa\x64\x84\xd5\x33\x97\xd0\x22\xae\xe7\x55\x58\x16\x45\x1d\x56\x8c\x09\xbf\xa6\x69\x72\x1b\x41\x86\xd4\xd4\x6f\xa1\x8a\xb9\x3f\x15\x69\xee\x7b\x7d\x2f\x18\x47\xbc\x86\xa1\x75\xa5\xe3\x69\x38\x2c\x1a\x1d\x9c\x53\x68\xcf\xba\xd3\x09\x56\x01\x6a\x42\xd5\x06\x68\x64\x94\x26\xb7\xe3\xe8\x13\xbb\x13\x07\x7e\xaf\x57\x5c\xfc\xa4\x55\xe1\xa2\x08\xd4\x34\xce\xd5\xd2\x34\x72\x0d\x4d\x36\x0b\xe7\x60\x58\x5c\xfc\xa4\x77\x5d\x64\x65\x2b\xb5\x6d\xd5\x26\x21\x2e\xd0\x2b\x3e\x5e\x23\x29\x99\x2a\x2e\x7e\x0a\xc6\xa4\x37\xed\x4c\x54\xfc\xec\x98\x00\xce\x0e\xc3\xf8\x37\x0d\x1d\xf8\x28\x4d\x6e\x61\x60\xce\xce\x8f\x4e\xcf\xcf\x26\x3f\xbc\x39\xff\x66\xf2\xdd\xc7\x8f\x27\xa7\xc7\x47\x67\x27\xd1\xb3\xbf\x8f\x8e\xf6\xff\x6b\x4c\x64\xbe\x36\x85\x59\x21\xb7\xc6\xf7\x69\x64\xf8\x23\xe6\x0d\x92\x0e\xf1\xc1\x75\xd0\x3e\xa5\x01\x2a\x67\x96\x1f\xb9\x7c\x6a\xb1\x16\x9c\x5c\x27\x6e\x78\xd3\xe4\xe0\xf6\xbd\x1d\x4a\x5a\x0b\xb4\xd7\xdb\x75\xa6\xb7\x2a\xa8\xcb\x3b\x3e\xc3\x91\x20\x3d\x3c\x7b\x3c\x24\xfd\x88\x5c\xb3\xd5\x40\x04\x4a\x9f\x99\x88\x18\xd3\x69\x2d\x85\xb2\x58\x08\x21\xa1\x4c\x14\xa3\xa7\x3e\xe5\x19\xb8\xe7\x4d\x80\xe2\xeb\x29\x00\xaa\x04\xf4\x47\xac\xbb\x2b\xd4\x21\xb1\x14\xc3\x21\x75\x8d\x62\xb8\xf1\xa9\x71\xd3\x41\xa7\x1c\x99\x86\x9b\xdf\x16\x1e\xa4\xf6\x86\x42\x12\x69\xb5\xb1\x97\xfc\x36\x49\xeb\xf5\x76\xcd\xb3\xaa\x93\xc6\x5d\x13\xf7\xc8\x56\x09\xf0\x4f\x6c\x9e\x78\x72\xaf\x09\x57\x09\x6a\x33\x4b\x50\x9d\x26\x0d\x40\x4a\xce\x0f\x45\xad\x3e\xe2\x29\x0e\xae\x6e\x4a\x2c\xee\xf9\xd5\xf2\x02\xfa\xb5\x53\xcc\x76\xbc\xbd\xaa\x2e\xf7\xbc\xc0\xd3\xee\x96\x3d\x5f\x48\x4e\xd1\xa8\x2c\xf0\x9a\x0d\xca\xb6\xc4\x07\x75\x63\x13\x56\x6b\x18\x56\x68\x70\x28\x32\x19\xd9\x9a\xd1\xae\x63\xbb\x85\x04\x54\x58\x29\xe0\xe8\xc7\xf9\xdd\x77\x76\x16\xef\xa5\xb3\xea\x60\xd5\xe2\x33\x5c\x6c\x0d\x28\xbc\x75\xd5\x71\x7f\xdf\x42\x65\x3b\xfe\x41\xe5\x5b\xa6\x6e\xe4\x90\xb7\xed\xdd\x54\x16\x01\x1a\xa5\xe3\x36\xa9\x1c\xa9\x7c\x83\xe7\x51\xa9\xc0\xf8\x74\x0f\x98\x60\xe4\x9a\x47\xeb\x39\x77\xd9\xba\x98\x47\xd0\x46\xaf\xd3\x9b\xaf\x40\x54\x84\xf0\x1b\x0c\x35\xbb\x56\x3b\x67\x2b\x77\xd1\xa8\x79\xe3\x74\x17\x2d\x20\xa6\xc5\xe2\x6e\x5d\xfe\xac\x64\xec\x9f\x1d\x51\x6e\x17\x5f\x4c\xf2\xf2\xeb\x6b\xe1\xfc\x6f\x09\x6b\xdb\xa1\x3b\xe3\xb8\xe1\x75\xfa\x4f\x76\xe8\xd9\x7c\x50\xeb\x68\x93\x9a\xcd\xb1\x58\x4f\x9b\xbc\x37\x7f\x7d\xfa\xe1\xbf\x4e\xde\x4f\x4e\x4e\x4f\x3f\x9c\xb6\x35\x58\x68\xae\x10\x43\x2f\xee\x36\xba\x38\x10\xfe\x9e\x5a\x9a\x13\xd2\x11\xd4\xd6\xea\x15\xef\x81\x32\xe0\xc8\xb8\x82\xd7\xa2\x72\x85\x1e\x94\x50\xf6\x3a\x5c\x5d\xb2\xda\xd2\x39\x46\x39\x74\x14\x45\x4a\x70\x4c\x8d\xc1\x04\x91\x96\x07\x73\xdb\x5d\x1d\xaf\x83\x5e\x5f\x81\x63\x07\x70\x47\x40\x2c\x78\x5b\xd9\xe0\x90\x12\x6a\xe1\xcc\xbe\xc3\xcf\x62\xcb\xcd\xa3\xb6\x56\xfa\xba\x2c\xfe\xc9\x72\xe1\x95\xb0\x35\x3f\x19\xcb\xe5\x2b\x31\xe8\x56\x48\x45\x06\xa7\x83\xdb\x0e\xbf\x56\xbc\xe1\x8c\xe5\x22\x44\x53\x8e\xf1\x6f\xf1\xdd\x64\xa1\x02\x9b\xc5\x57\xb5\x0a\xe1\x80\xde\xbd\xd4\xa3\x93\xe1\x44\x7a\x83\x27\x2b\xd5\x96\xe5\x95\xac\xfb\x69\xd7\x7e\xd6\x95\x51\x49\xcc\x38\x86\x9c\xd1\x31\x6c\xc2\x15\x13\xc6\xe7\x4d\x58\x93\xd2\x67\x59\x71\x05\xb7\x7d\x98\x85\xe0\xca\xef\xa8\x56\xf7\x44\x78\x86\xa0\x2b\x46\xba\x19\x3c\x32\x1b\x94\x69\x07\xb8\x46\xe4\xa7\xf8\xfb\xe2\xe0\x15\x84\x81\x9a\xb2\x34\x93\xc5\x83\x01\x89\x0c\x25\xd3\x48\xf5\x2f\x0e\x64\xa5\x7b\x51\xc6\x72\xf4\xed\x97\xdc\xca\x2a\x87\x69\x72\xfb\x02\x5c\x0e\x26\xb7\xe0\x74\x50\x30\xa2\x70\x9d\x8c\xc4\xa2\x90\x2b\x98\x5f\xb3\xf0\xe7\xfe\x61\x13\x66\x71\x55\xbf\xf9\x99\xfa\x9f\xb1\x7c\xff\xf0\x97\x1c\x83\x97\xd1\x01\xff\xb3\xbf\xff\xa0\x21\xe0\x74\x4d\xf7\x3d\x61\x0c\xef\x7a\xf8\x83\x6e\xf0\xab\x78\xe1\x5b\x21\xde\x94\x4a\xd3\x42\x44\x39\x03\xcb\xcc\xc6\x34\x36\x15\x51\x76\xa5\xb4\x23\xbd\xcc\x8b\x92\x45\x23\xb9\x2f\xc7\x4a\x4b\x82\xd0\xbc\x3e\x38\x18\x20\x4a\x12\x57\x60\x9b\xa5\x1e\x3a\x11\x48\xf1\x67\x23\x9d\x3d\x0e\xb0\x01\x14\xf5\x91\x62\x0d\xaa\xb8\x60\xa6\xb6\xb1\xa1\x84\x96\x22\x70\x93\xd6\xf3\x62\x59\x0b\xbd\x7d\x92\x13\x62\x15\x78\xef\x39\xa2\xf6\xc3\x25\xa0\x16\x97\xa5\xb9\xff\x78\xc2\x68\xdc\xd0\xe0\xbb\xd8\x84\x70\xdf\xc8\x0b\xbe\x8a\xcb\x72\x40\x9b\x57\xde\xfd\x82\x66\x68\xa4\x4f\xeb\xf4\x3a\xae\x59\x64\x48\x3a\xed\x72\xd6\xf0\x04\x43\x1b\x4f\xed\x4d\xf0\xfe\x7e\x34\x6e\x1a\x6d\x1a\x71\xf2\x9f\xe7\x27\xef\x5f\x4f\x3e\x9e\x7e\x38\xff\x70\xfe\xb7\x8f\x27\x67\xfc\x1c\x28\x97\x4c\x3e\xda\xb4\xf2\xfb\xd0\x98\x85\x85\xc0\xd2\x97\x4c\xfa\x51\x74\x64\xbc\xdb\xd9\xdf\x1d\xb3\xd0\xcd\x60\x2b\x90\x4d\x2c\xb6\xed\x23\x6e\x9d\x1f\xb9\x6d\x38\xd8\xc7\xf0\x9a\xeb\x38\x3b\x62\x6e\xbd\x81\xbd\xeb\xe0\x80\x1c\xde\x91\xa8\x90\x9d\xd8\xa8\x08\xd1\xb9\xae\x27\x18\x52\xc9\xfa\x46\xbb\x6e\x65\xd3\xdd\x31\x2b\xa4\xb2\xed\x66\xe5\x57\xb0\x46\xe8\x30\x04\x58\x1f\x52\xa7\xc3\xa8\xa0\xd3\x50\x60\xed\x53\x93\x8e\x8e\xf3\xdb\x7b\x88\xfa\x5f\x74\xa9\x59\xef\x1d\xae\x4b\xc9\xfe\x0f\x0e\x1d\xfb\x35\xba\xee\x7f\x70\xab\xba\xaf\xd7\xca\xff\xc3\xe3\x95\xf2\xff\xb0\x4e\x27\x7f\x83\x8a\xf9\x1f\xbb\x35\xcc\xd7\x6b\xb5\xff\xb1\x53\xa9\xdd\x69\xd0\xf0\x27\xdb\xa0\x61\x8d\x96\xfe\x9f\xdd\x4a\xfa\xce\x50\x42\x7f\xb1\x43\x09\xb5\xa2\xe4\x1c\x90\x28\x39\x5d\xef\x8c\xf6\xa5\x4d\xcb\x43\x91\x47\xff\xd8\xd6\x75\x91\x7a\x34\x5a\xc9\x45\x69\xfb\x44\x3a\x4d\xb0\x39\x7f\x0e\x84\xd6\x8f\x72\x1e\x23\x45\xaf\x6b\x35\xfe\xba\xd0\xd0\x57\x86\x2f\x8c\x85\x4b\x23\x0e\x0f\x19\x3e\x64\xdd\xba\xb2\x46\xb4\x9f\x87\xc6\x7b\x69\x82\x30\xad\xce\xcb\x65\x3d\xbf\x53\xba\xf3\xfd\x8b\xa2\xc8\x68\x84\xa0\x49\xc2\x2e\x96\x97\xca\x11\xec\xb7\xec\x0e\x1b\xbb\x49\xb3\xec\x87\xb8\x06\x2d\x9f\x2e\xc3\x5a\x3d\x10\x91\x72\xb6\xed\xed\x7d\x62\x77\xc3\xb6\xa6\x39\xf4\x5b\x17\x40\xd5\xd6\xce\x55\x60\xaa\x9b\x6f\x53\x56\x0d\x0a\xaa\x0e\x7e\x97\xdf\x3c\x1a\x79\xa7\x46\xf6\x43\xf1\xb7\xd4\xb2\x1f\xda\x85\x75\x17\xd3\x87\x45\xde\x21\x51\x29\x88\x8a\x5a\xd0\x80\x7b\xf0\xef\xb6\xbc\xff\x52\x87\x72\xbc\x76\xe9\xe4\x48\x9a\x7a\x77\x28\x31\x53\x5f\x4b\x43\x23\x32\xe7\xa6\x1e\xc8\xa7\x16\x13\x6b\xe9\xb6\xa9\xdb\x3a\x93\x6c\xa8\x4d\x4c\x11\x70\x30\xbf\x20\x2f\x94\x56\x93\xbc\xc8\xb7\x08\xe3\xf7\x48\xc6\x59\xca\x87\xd7\x44\x0c\xdc\x1c\x53\xf0\xd1\x42\x62\x97\x93\xe4\x6d\x98\xbd\xdf\x62\xac\xe4\x5f\xc3\xe4\xd3\xf4\x91\xea\xf2\x6a\xfc\x9b\x36\x0a\x4d\xab\xf7\x45\xde\xf6\x49\x8c\xc9\x4e\xfe\xe1\x8f\x84\x7d\xe8\xb8\x95\x39\xe4\xd2\x42\x1e\xdb\x11\xdd\xcf\x15\x5f\xd0\x0d\xe9\x10\x50\x3b\x05\xd9\x2e\x1f\xbc\x5f\xcb\xc5\xdf\x36\x9a\x54\x59\x1b\x44\xde\x87\x2e\x91\x77\x97\x6f\x5f\xc7\x95\xf3\x33\xec\x1b\x1f\x6d\x53\x09\xc1\x05\xd1\x69\x4f\xdb\xa7\x2f\xc9\xec\xe6\x55\x0f\x8d\xb8\x97\x1b\x1d\x32\x58\x01\x10\xf5\x4c\x6a\xe9\xbb\x1a\xef\x70\x25\x8c\x04\x0f\x42\x08\x5b\xe1\x76\xc0\x25\x44\xda\x6e\xbf\x9d\x74\x3e\x90\x3b\xeb\x08\x7a\x41\xa5\xd5\x54\x9a\x2c\xf7\x0a\xca\xbd\x35\x91\x6d\x0b\xbf\x33\x96\x87\x07\xe0\x7c\xc7\xc9\xa3\x7a\xb3\xb4\xac\x54\xa4\xe4\x6e\xb0\x2c\x26\x50\xe4\x55\x78\x98\xbe\x50\x21\x61\x0c\x2b\x2f\x14\x52\x8e\x03\xa9\x45\x06\xdf\x68\xe3\x45\x53\xd2\x71\x53\xd9\xdd\xa6\xf8\x5a\xdc\x6c\x07\xba\x36\x94\x81\xad\x7b\x88\x74\x11\x31\x42\xa6\xd3\xb9\xea\xe4\x1f\xcb\x38\x6b\x3b\xaa\xd9\x75\x06\x69\x09\x02\xea\x61\x46\x68\x57\x4f\x3b\x26\x54\x3c\x61\xe8\xc4\xdd\x28\xca\x8a\xa9\x59\x85\x61\xe4\x77\x80\x4d\x17\x17\x3f\xf5\x45\x18\x06\x34\x06\x1a\x65\xc5\x74\x6c\xb6\xdd\x50\x4f\x38\x61\x9c\x24\x03\xb2\x5d\x7c\x0f\x58\x5d\x11\xf7\x1b\xd9\x46\x33\x5f\xb2\x92\x02\x64\x51\x2c\x3a\xe3\x64\xc9\x25\xde\x15\x4d\xca\x58\xe3\x43\xa9\x18\x46\xa4\xec\x2f\x0f\x5e\x41\x27\x48\xd2\xfe\xe1\x18\xae\x04\x38\x67\x88\x8c\xef\x0c\xa5\xd3\xdd\x2d\x88\xde\x62\x66\x2f\x8a\x85\x17\xc8\xc0\x2e\x56\xd6\xb2\x9a\x7b\x01\x1f\xa8\x93\x78\xda\x55\x6b\xa5\x46\xab\x0d\x44\x47\xac\x82\x70\x4d\x54\x59\x35\xad\xd9\x55\x65\x1b\x1c\x0a\x7b\xcc\x0a\x83\x97\xe9\x56\x44\x6a\x13\xe6\x3a\x4c\xfe\xa6\x57\x36\xb2\x1f\x9c\x46\xcb\xed\xe7\x40\x39\xec\x07\x63\xe2\xf9\x3a\x08\xf5\x96\x79\x60\x3d\xd6\xf4\xd1\x3a\x55\xd7\xda\xfb\xe8\xb1\xeb\x08\x75\xbe\x8a\x9c\x19\xdb\x0e\x5c\x6d\x49\x9a\x18\x51\x8d\xbd\x30\x4d\x6e\x23\x4d\x7b\x42\x37\x9d\x45\x23\xb9\xa1\x88\x9b\x16\x1d\xf4\x7a\xe2\xe1\x09\xa3\xe9\x91\xc7\x16\xa3\x45\x28\x15\x8d\x8a\x8b\x9f\xc6\x9b\x09\x31\x46\xd1\xe5\x25\xb6\x25\xb3\x6b\x02\x21\x09\xf3\x65\x4e\x7a\x91\x10\xb0\x1c\x0c\x1b\x86\x6d\x62\x9a\xb1\x7c\xef\xf0\x0b\x91\x4a\xda\x07\xcb\x89\x98\xde\x05\xbf\xf9\xc9\x4e\xab\xaf\xf9\xae\x89\x38\x74\x14\x1d\x84\x69\xf5\x36\x56\x9f\xf0\xb6\x07\xbb\x41\x1a\x51\x6e\xb5\x2c\x84\xb1\xe8\xd6\xab\x41\x80\xc3\xad\x55\x74\x14\x90\xea\xb6\xc9\x32\x8f\x3e\x54\x7e\xe4\x78\xaf\x29\x41\xe7\xb6\xc1\x5e\xbc\x80\xfe\x05\x2b\x9e\x15\xc9\xa5\xb3\x7f\x88\x18\x63\x87\x78\x96\x5e\x64\x7c\x6c\x79\x4a\x30\x06\x3d\xd6\xf5\xa7\xb9\xa8\xcb\xb9\x08\xf7\x0f\xdd\xfd\x5c\x7b\xc2\xbb\xba\xb9\x6e\x05\x37\x9b\x56\xb0\x31\xee\x66\xd4\x37\x79\xb4\xba\x1d\xc2\x19\x03\x02\xba\xc0\x2f\xa3\x03\xfb\x8d\x95\xba\xfe\xa3\x9e\x0e\x43\x69\xa7\x7d\x1c\x76\xf0\x05\x7c\xc8\x4a\x56\x93\x11\x2b\xa6\x41\x8b\x0b\x28\x59\x0d\x67\x7e\xa4\x4e\x7f\xbe\x0d\x47\x06\xcf\x05\x3c\xc1\x98\x73\x14\x86\x2e\x40\x97\xe5\x83\xf5\xf4\x8d\xca\x0e\xf0\x5a\x37\x1a\xab\xa7\xe8\x03\xfb\x21\x1e\x20\x70\xb9\xe8\xc3\x48\xf2\x21\x57\xb5\x74\x4c\x7f\xc6\xea\x17\xff\xfa\xef\x2f\xbd\x70\x04\x05\x84\x62\x76\xe8\x05\xe3\xa0\x01\x77\x18\xeb\xa5\x26\x42\x4c\xb1\x51\x70\xa2\x44\x20\x5f\xfa\x09\x6f\xab\xbb\xae\x2b\x74\xff\x73\x2b\x74\x3f\x60\xfb\x26\xaf\x16\xf6\xbd\x13\x00\x31\x7d\x88\x3a\xe2\xa7\x6f\xde\xff\x75\xf2\xfa\xe8\xec\x9b\x93\xd3\x37\xff\x75\x32\x39\x3d\xf9\xeb\xc9\x7f\x7e\x8c\x9e\x8d\x76\x26\xe3\x67\x97\x6e\x98\xe3\xa3\xe3\x6f\x4e\xa4\xb3\x08\x99\x7b\x72\x7c\xf4\xee\xe4\x2d\xad\xc2\x1f\xc5\xfb\xff\xfc\x31\x19\x07\x3e\x68\x9c\x07\x66\x75\x6d\xf0\x1f\xf7\xef\x27\xf7\x3f\xf6\xef\x7f\xac\x82\x3d\xbf\x1f\xbc\x32\xe1\xbf\x7b\xff\xfa\xe4\xf4\xec\xf8\xc3\xa9\x2c\x31\x39\x6c\x35\xb1\x17\x6c\x2a\xf3\x3c\x7a\xf6\xe3\xfe\xfd\x8f\xd5\xde\xb3\x4b\xa2\x00\x7f\x55\xfb\x55\x5d\x86\xb3\xa2\xbc\x8a\x65\x78\x44\x19\x01\x51\x26\xde\xdf\xb7\x1c\x6b\x3e\x07\x1b\x38\x9e\x1b\x59\xef\xe4\x22\xb2\x1e\xd8\x2d\x68\x0f\x95\x87\x78\xf7\xc2\x15\x2e\xc5\x80\x75\xa9\xa2\xc7\x3f\xfb\xd7\x7f\xf7\x47\x07\xfb\x7f\x19\xef\xf1\xce\xeb\x45\x05\x5e\x2e\x41\xb9\x84\xef\x04\xfc\x15\xc9\x1f\xaf\x16\x71\x59\xb1\x37\x10\xf7\x1a\x53\xc2\xc3\x83\x60\xff\x70\x00\x5b\x67\x58\x45\x02\xc5\x91\xcc\x56\xee\x1f\xab\x28\x02\xd7\x16\xaf\x3c\x38\x68\x03\x6f\x50\x51\x7d\x83\x57\x9e\x37\xa0\xeb\xc8\xaf\x82\x86\xbc\x2f\x64\xc5\xf4\x97\x1a\xb4\xaa\x2e\x85\x4e\x33\xce\xeb\xd9\xa8\xaa\xcb\xf1\xfd\x7d\x55\x97\x43\x42\x04\x28\x36\x1a\xcf\x1b\xa5\xd6\x2d\x87\xbb\x5a\x64\x69\xed\x3f\xe3\x8b\x80\xc0\x25\x6c\x1a\x5f\xb1\x2c\xfd\x27\x6b\x15\x90\xf3\xd3\xb5\xd4\x43\xef\xc9\xe1\xe4\xc9\x73\x2f\xe8\xd7\xc5\xdb\xe2\x86\x95\xc7\x71\xc5\x7c\x5a\x77\x5c\xcd\x59\xa9\xaa\x06\x29\x42\x3c\x9d\xb3\xc8\xbd\xb5\xc2\x79\x5a\x47\x00\x60\x9b\x36\xf0\xe2\xa1\xd0\xd8\x9a\xa7\x5a\x04\x0e\xc0\x30\x2a\x5a\x47\xdd\xea\x50\xab\x17\xd6\x96\x0f\xbd\x7d\x2f\x18\xea\x8a\x22\x4e\xc6\x5d\x5a\xeb\xdb\x0e\x93\x3d\x48\x5a\x03\x27\xae\xa7\xf3\xb0\x62\x8b\xb8\x8c\xf9\x61\x35\x9d\xeb\x7a\xa6\xf3\xf2\xd5\x74\x5e\xf6\xeb\xe2\xbb\xc5\x42\x0e\xe4\xc0\xf3\x1a\x8d\xff\xb3\xbf\x4b\x7a\xb2\x5d\x95\x90\x67\xcd\x4c\x60\x99\x2f\xa4\xb3\x3b\x3d\x35\x8b\xb8\xac\xab\x48\xaf\x14\xaf\xef\x05\x61\xb1\xac\xe5\x09\xa5\x15\xd4\x01\xd2\x19\x8b\x45\x0e\x52\x12\xa9\xe1\x02\x60\x10\x51\x14\xcb\x5a\xc4\xb1\x95\x50\xfd\xe9\x3c\x2e\x8f\x6a\xff\x20\x30\x7b\xbe\xa7\x21\xaa\xe5\x45\x55\x97\xfe\x61\xa0\xd8\x08\x5e\x8d\x36\x3d\x52\x1d\xe2\x1b\xb8\xac\xf8\xb1\xb5\x69\x86\x1c\x24\x55\x2f\xe5\x8d\xb0\xcf\x43\x6f\xd2\xbd\xe4\xa7\xf1\x22\xad\x63\xe7\x3a\xe9\xea\x2b\x8c\xb8\xec\x65\x63\x6c\x78\x7e\xd8\x74\x08\xd5\x56\xb3\xab\x7a\x30\xbb\xaa\x39\x07\x33\xc8\x8a\x69\x78\x33\xb8\x09\xf5\xda\x1f\xe8\x9f\xa1\xda\x86\x03\xf5\x2b\x54\x70\x0a\x4a\x2e\x88\x81\xfc\x11\xea\x11\x1d\xe8\x9f\xa1\xee\xe1\x40\xff\x34\xd0\xec\xcf\xae\xea\x68\x76\x65\xc4\xa8\xec\x73\x86\x2c\x2b\xa6\x46\xda\x4d\x74\x63\x7c\x6b\x9c\xc9\x2e\x36\x21\x64\x07\x22\xf5\xcb\xc8\x57\xe5\x9d\xa5\x65\xcf\x22\xf9\xc3\xc8\xd5\x7d\x8c\xf4\x4f\xab\x76\xd9\xdf\x88\x74\x7d\x13\x7b\xb5\xbc\x70\x9a\x27\xac\x79\x86\x72\xbd\xb9\xb8\x8c\x10\x7e\x6e\x87\x09\xf6\xf3\xc2\xa1\xed\x2c\xb6\x2d\xda\x76\x29\x53\xad\xd1\x8e\x77\xb8\x96\x3d\x3d\x39\x3f\x7a\xf3\x3e\xf2\x4a\xc4\xe1\xeb\x37\x6f\xcf\x4f\x4e\x23\x6f\x46\xcc\xc6\x3e\x2c\x58\x19\x63\xe8\x84\xbb\x05\x0b\xa7\xc5\x52\xb9\x9b\x02\xdf\xe8\xe0\x36\x5d\x5c\x0e\x96\xe0\x6c\x6a\x99\xd7\x4d\xc7\x46\x3a\x5b\x5e\x20\x03\xa9\xaa\x97\x29\x3e\x52\x38\xa1\x94\x68\x9e\xe7\x2f\xf8\xe5\x0e\xed\x0e\x0f\x44\x68\x6f\xc3\xe7\x78\x21\x51\xac\xa2\x11\xbf\x91\x68\x94\xb1\x7f\xc2\x03\x5e\x30\xd6\x01\x6b\xcc\x42\xe3\xa6\x91\x78\x10\xaf\xef\xab\x38\x49\xde\xd4\xec\x8a\x08\xac\x80\xf5\x01\x62\xaf\x14\x9b\x97\x65\x8e\x31\x89\xf6\x0f\xc3\xb4\x66\x57\xe7\xbc\x28\x80\xbc\xc2\xd6\x07\x38\xaa\x61\xc5\xb2\x19\x3a\x50\x47\x04\x66\x69\x9e\x68\x4c\xb1\x6a\x7d\x4d\x93\x19\xa1\xfa\x85\x7c\x17\x04\xf1\x3d\x83\x90\xed\xf0\xf3\x24\x4f\xc0\x40\xf3\x4d\x2e\x7b\x20\xec\xa1\xd8\x8d\xaa\x3c\x84\x33\x46\x7d\x4a\x61\x1d\x60\x1a\x45\xaa\x01\x98\xcf\x60\xb5\xb7\xa7\x53\x70\x32\xa5\xb2\x3d\xe0\x18\x45\x91\xc6\x21\x58\xf1\x5e\xd1\xc1\x94\xba\xe7\x16\xda\x07\xa1\x39\x31\xb2\xfd\x90\x9f\x35\x30\x2b\x14\xe1\xa8\x13\x78\x68\x76\xc5\x02\x34\xbb\xa2\x06\x68\x1f\x10\xdf\x3b\x0c\x86\x56\xcf\x22\xc8\xd8\xd7\xfd\x19\x6e\xd7\x9d\xbd\x43\xec\x50\xd7\x08\xc3\x1d\x5f\x2c\x93\x74\x66\xa1\x15\x45\x11\x2e\x0c\x79\x60\xe1\xf2\x31\x27\x71\xcf\xb7\x51\x0b\xa8\x69\xa4\xab\x48\xd3\x20\xf2\xd3\xe2\x6a\x51\x54\xec\xa8\xb6\x90\x0e\x1a\xc2\xed\x5b\x2b\xa6\xd5\x6d\x60\x1d\xba\xa7\x6c\xa8\xfb\xb7\x06\x21\x1b\x9f\x56\x2b\x52\xc4\xca\xaf\xcd\x9a\x0d\x94\xd5\x49\x11\x9c\x63\x0f\x3a\x77\xdf\x2f\xb7\xc1\xbe\xdc\x9c\x1a\x35\xc1\x9a\x7c\x79\x18\xac\xf6\xf7\x5d\x5b\x70\xdb\xbd\xc6\x77\xc9\x86\x95\xd0\x84\x46\xe0\x05\x57\x18\xbe\xe3\x38\x7f\x5a\x0b\x25\xbf\x9d\x18\x9d\x8c\xee\xd4\xf3\xb8\xde\x99\xc7\xd5\x4e\xce\xae\x59\xb9\x73\xc1\x18\xb8\xf3\x64\x09\xe7\x0e\xdd\x73\x68\x4e\x83\x4d\x4b\x67\xc5\x32\x4f\x8e\xa5\x3b\xf2\xbc\xa8\xbf\xa6\x09\xc2\x4f\x8f\xd9\x3d\x08\x92\xaf\x66\x6f\xf3\x74\x45\x07\xc0\x51\x9b\xb5\x10\x1a\x16\x1d\x68\x5b\x89\xf6\xe2\x1c\x9a\xe5\x40\x60\x44\xca\xca\x36\xf7\x0e\x43\x42\x37\xc5\x3d\x5a\x7d\xb7\x2a\x1f\x99\xa0\xe3\xa1\xac\x87\xe0\x65\x93\xe1\xfd\xc3\xa1\xa4\xc1\x2f\x09\x98\x08\xa3\xf7\x42\xa1\xc2\xef\xbe\x64\x0c\x3f\x6b\xa5\x8b\x19\xd5\x3e\x07\xba\x56\xbd\xb5\xd2\x23\x7b\xfd\x36\xf6\xd4\xda\x24\xa8\x09\xf5\x72\x75\x6e\xf6\x62\xd1\x1e\x45\xc8\x1e\x87\x45\x3d\x67\xe5\x87\x05\x7a\x1f\x55\x76\x20\x8d\x1a\xad\x83\x60\x25\x40\x3a\xaa\xd8\x3f\x84\xd8\x0f\x02\x48\xf6\xad\x58\x88\x13\xb1\x58\x60\x2f\xf6\x22\x09\x01\x9f\xc3\xd6\x92\xa1\x6e\x42\xf6\x0f\xf9\x46\xdc\xc7\xb3\xa7\x51\xc8\xbc\xe8\x58\x67\xfb\x87\x9b\x90\xdc\xfb\x19\x90\xdc\xe3\x48\x36\x4d\xb7\x28\xb5\xaa\xcb\xc8\xf3\x86\x1d\xc6\x7f\xbe\x5d\xb9\x83\xbe\x06\xab\xaa\x2e\xf7\x22\x6f\xc7\xdb\x33\x57\x0f\xc4\x96\xb2\xd7\x49\x40\x65\x56\x78\x51\x4b\xf3\x4b\x1f\x90\xdc\xc0\xfb\xd7\x65\x3c\xfd\xc4\x12\xb7\x7d\xf2\xba\x0b\xc0\x17\x62\xf6\x1f\xcd\xdc\xaf\x61\xd9\x1d\x1c\xfe\x36\xf6\x98\x16\x5b\xff\xe6\xfd\xd9\xc9\xe9\x79\xe4\xa5\x22\x86\xc5\xc9\xdb\x93\xf3\x93\xc8\x4b\xbc\xae\xfb\xee\x39\x0e\xa5\xc5\xaa\xd3\x54\xf9\x0a\xdc\xc1\xad\x43\x2e\xe7\xab\x85\x38\x9e\xb3\xee\xd2\x3f\x75\x5b\x17\x04\xf8\x7e\x37\x2b\x8f\x7e\x6a\xdd\xfc\x7c\x88\x38\xac\xe3\xea\x29\xca\x7d\x31\x2a\xf8\x67\x68\x64\x89\x11\xc2\x3f\x66\x96\x18\x2d\xfc\x63\x66\xb5\xaf\x0a\x95\x7d\xbe\xe5\xec\xe6\x0d\x8e\x14\xaa\xf5\x2c\x85\xc2\xa6\x4c\x37\xc7\x02\xf2\xf9\xf8\x09\x0a\x06\xba\xa3\x10\xca\x5d\x73\x34\xd6\x88\x20\x85\xc4\xe7\x0d\xcd\x16\xa3\x3c\x4a\x53\x7e\x33\x1b\x4f\x40\x84\x41\x34\xcd\xfc\x53\x7d\xbe\x21\x10\x39\x29\x04\x91\xc6\x13\x04\xb8\x5e\xfa\x13\xba\x04\x3f\x4d\x34\xf9\x38\x98\x29\xc3\x56\x4a\xe4\x98\x6f\x9c\x10\xbc\x74\xea\xb1\xc4\x08\x54\x14\x10\x25\xc3\x88\x2c\x34\xdf\x5e\x4f\x92\xee\x39\x86\x02\x99\x79\xb3\xe9\x60\x48\x7b\x1a\x39\x4a\xd1\x65\x87\x42\x3c\x57\xd5\x78\x16\x74\x8d\xef\x63\xda\xdd\x3b\x6c\xdc\x2b\x5e\x31\xed\x0f\xee\x49\x2d\x1c\x78\x0a\xb0\x8a\x95\xb5\x4f\x0b\x05\x94\x15\x6f\xad\x71\x21\x12\xf8\x9f\xb1\x7e\x5b\xc3\x63\xac\xe8\xed\x56\x25\xd2\x02\xd1\xef\xe1\xff\x53\x2b\xcf\xb0\xa1\x17\xf0\xaf\xe1\xb5\xdc\x5e\x30\x60\xdb\xd9\x0e\x39\xa4\x3d\xbb\x73\x0a\x1d\x16\xb3\x59\xc5\x6a\x64\xd1\x37\x70\x14\x26\x42\xa1\xcd\x6c\x2b\xcf\x8f\x26\x5c\x1f\x8f\x1c\x6c\xc7\x5a\x27\x28\x25\xb0\x2a\x6a\x13\x17\x00\xdb\x8d\xc4\x11\x10\xac\xb0\xae\x3d\x6b\x84\x04\xbb\x85\x3d\x83\xff\x65\x88\x68\x17\x42\xa0\x84\xff\x90\x23\x0f\x6b\xb4\x0e\xbe\xd0\xb1\xa3\x9c\xcc\xb3\x6b\x7d\xf0\x7b\x14\xac\x1e\x11\xae\xdf\x1a\xdf\xce\x85\xe3\xc8\x38\xc9\x13\xb8\x63\xb9\xb6\x69\xe7\xd6\x5c\x7f\xed\x72\x54\x05\x77\xaf\xbd\x3d\x47\x8e\x78\xbc\xff\xd0\x7d\xdf\x72\x14\x1a\x77\xcc\x74\xa4\x67\x5a\xb9\xe5\x72\xf7\xb9\xb3\x6f\x7b\xae\xa5\x41\xee\x6f\x51\xd4\x59\x34\x58\x5d\x94\x2c\xfe\x64\xca\xdc\x5e\x76\x41\xab\xcb\x9f\x1b\xc1\x60\x85\x13\x0c\x1e\xde\x74\xbd\xab\xce\x39\x71\x57\xc3\x4f\x1c\x12\xbd\xd1\x5c\x6f\xef\xc0\x87\xd9\xda\xc5\x43\x38\x84\xce\x65\xc5\x2f\x80\x00\x31\xe8\xd8\xf0\x2d\x8e\xa3\x4d\xc0\x1c\x4b\x7d\xcb\x95\x00\x57\x1d\xc5\xc1\xd8\x3b\x1b\xf7\x1e\x1a\xab\x69\x04\x02\x5d\x6a\xf3\x91\xe1\x22\x3c\xba\x41\xb9\xaf\x75\x4a\x30\x74\x2d\xa1\x48\xb7\x6e\xe7\xa7\x9b\x10\x3f\x08\x29\xea\x0f\x38\xa3\xa4\xb0\xd3\x3a\x36\x1d\x1d\x27\x97\x78\x64\x22\x9c\xb4\xa8\x7d\xc4\x76\xdd\xeb\x33\x36\xb3\x87\xb6\xf3\xfe\x1e\x96\xe9\xe5\x7c\x3b\xe8\xbd\x43\xac\xfa\xc3\x22\x6a\xb7\xd0\xeb\xb5\xd3\x84\x34\x99\x37\xf0\x61\x11\x39\x1a\xea\xf5\x1c\x89\x50\x0a\x6f\x38\xd0\x56\x24\xae\x17\xc1\xca\xd1\x82\xb8\xba\xb7\xc6\x46\x9c\x2a\x8e\x12\x38\xe1\x5d\x19\xf2\xec\x69\x57\x98\x2a\x16\x5a\x76\x68\x1b\xc4\x5c\xfd\xfb\x4c\xd4\x5c\x55\x0a\xe4\xd6\xca\x2c\xc2\xe7\x41\x07\xff\x6b\x40\x1d\x0a\x67\x82\x3b\xce\x9e\x76\x0c\xf4\xba\x8e\x76\x0c\xa5\x63\xce\xbe\x48\x37\x85\x68\x26\x34\xb9\xac\x2d\x4e\xf7\xce\xed\x84\x5a\x8d\xd5\x79\xf1\xd7\xc2\xc9\xbb\x3c\x6c\xbf\x3d\x62\x07\xe5\xec\xb6\x7d\x2f\xbc\xad\x3f\x2c\xe0\xcf\x31\xe0\x80\xf7\x8c\xf7\xec\xe6\x28\x4f\xde\x43\xa6\x60\x4f\x84\x96\xe3\x1b\xc1\x39\x1a\x1b\x4b\x9e\xd7\xd6\x40\xb4\xf1\x18\x22\xfa\xd1\x61\xa3\x95\x2c\xc4\x68\x0f\xc9\xf0\xbc\x3c\x18\xee\xed\xa5\x7c\x95\xd8\x08\x3b\x06\x64\x3c\xc4\x4e\x44\x6d\x68\x24\x01\xaa\x73\x2e\x08\xc1\x35\xce\x7c\x51\x49\x57\x67\x34\x85\x10\x95\x0d\xa9\xcf\x50\x95\xfa\x92\xf4\x42\x29\xf0\xe2\x98\xd1\x0f\x4d\x1e\x5a\x08\x89\x33\x63\x21\x0e\x0d\x5a\x5f\x30\xec\xea\xc0\x7e\x44\xe0\x86\xe9\x7e\x74\x48\x7a\x4d\xb3\xe8\x1a\x3c\xc0\x6d\x4c\xd1\x8f\xa2\xc8\xd1\x01\x63\x35\x80\x15\xc8\xa3\x3b\x16\x50\x0c\xf6\xf5\x68\x36\x74\x06\x24\x91\x70\x72\x71\xa4\x4c\xd3\x66\x20\xf1\x09\xc7\xf1\x32\x6d\xef\xed\x74\xff\x10\x45\xc3\x5b\x11\xb3\xf6\x38\xbc\x7a\x3e\x38\x24\x1e\x3f\xf5\x08\x6c\x94\xe5\xfe\x1a\xb2\x5b\x2d\x44\xb4\xf8\xa2\x82\x5c\xc3\xf9\xf6\xa7\xc6\x25\x18\x7a\x5d\x6d\x5d\x5b\xc7\x00\x13\xc8\x7d\xab\xe9\x68\x04\x39\x54\xdd\x52\x4a\xd8\x51\xfa\x94\x0d\xf5\xe9\x37\x1b\xab\x65\x64\xdc\xe1\x7f\x4c\x40\xd6\x1a\xfe\x17\xb6\x3d\xd6\xb3\x10\xfc\x6c\x8b\xad\x6b\x56\xd5\x9b\x74\x80\x05\xcc\xb3\x34\x4f\xeb\x14\x34\x5f\xca\xaa\x95\x59\x2d\x17\x8b\xa2\xac\xdb\xe9\xac\x5e\x2e\x26\xb3\xa2\x9c\xa8\xa6\x2c\x08\xfe\xb7\x95\x18\x27\xf1\xa2\x66\x65\x25\x7f\x74\x03\xfc\x63\x99\xa7\xed\xf2\x73\x96\x2d\x38\x9a\xbf\x1d\x5b\xe3\xc7\x6a\x3f\xc3\x00\x7e\x5d\x94\xe7\xd8\xb3\x4d\x2e\x26\x39\xd8\xa6\x30\xae\x47\x38\x76\x9b\x7c\x4c\xfe\xc7\x77\x79\x5a\xbb\x60\x2d\x5b\x5e\x54\x5c\x83\x86\xf9\x7f\xe4\xbb\x2f\x4b\x8b\xbf\x34\xcb\xa8\x9d\x7e\x08\x20\xbb\xdf\xd6\x77\xd7\x4a\x76\xac\x9c\xed\xd5\xdb\x7f\x7e\xb7\x42\x9f\xaf\x0c\xbf\x85\x8e\xfb\x03\xc2\x79\xcb\x09\x70\x39\x2c\x89\xab\xbb\x7c\x0a\x74\x63\x80\x53\xf2\x6d\x08\x49\x27\x79\xa2\x12\xd8\xed\x94\x2d\x4c\x49\x0f\xe8\xb0\xc9\x87\x7c\xf8\x58\xe3\xe3\x41\xb4\xbf\x79\x36\xc5\x36\x1f\x6d\x4b\x27\x7e\x66\xc3\x05\xd7\xb6\x78\xc4\x6c\xad\x1f\x15\xd7\x4c\x90\x63\x14\x36\x0d\x84\x25\xf3\x83\x46\x4f\x8d\x03\x22\x2e\x6b\x0e\xd2\x3d\x59\xc5\x27\x1f\x19\x5b\x81\x98\x48\x77\x1a\x91\xd8\x24\xf6\xf3\xb4\x1b\xcb\x65\x3e\xc9\x8a\x62\xa1\x92\xaf\x53\x76\x53\xc9\xcd\xf7\xd3\x3f\x96\xac\xbc\x73\x1f\x19\x3f\x1f\x69\xff\xd9\x14\x22\xcb\x65\xbe\x69\x43\xfe\xf4\x1f\xbc\xc7\x5f\x82\xca\xe3\xfc\x00\x49\xee\x97\xec\x32\xad\x6a\x56\x7e\x03\x69\xe8\x02\x80\xaf\x97\x6f\x1c\x30\x47\x3a\x63\xa8\xde\x09\x21\x31\x3a\x20\x4e\x9f\x96\x65\xc9\xf2\xfa\xb4\x58\xd6\xec\x7d\x7c\xc5\xfc\x78\xb1\x10\x17\xc0\xc5\xe2\xb8\xc8\xeb\xb2\xc8\x32\x56\x46\xf1\x62\xd1\x9f\x4c\xa6\xd2\x27\x11\xe8\x03\x17\x9f\x96\x0b\xf4\x5b\x84\x40\x83\x78\xc1\xf9\x4b\xe0\x6f\xb4\xbf\x98\x4b\x56\xfb\x46\x5d\xa1\x67\x37\x4a\xb5\xc0\x45\xde\xc7\xb8\x9e\xff\x92\xb8\xf0\xf6\x1c\x68\x7c\x77\xfa\x56\x63\x51\x72\x7c\xd7\x35\x8f\x00\x83\xab\x38\xb5\xda\xc4\x8c\xd0\xcb\x0a\x89\x11\x5f\x75\xbc\x72\xd2\xe4\x75\x5a\xa5\x80\x5e\xb8\x2c\xb3\xc7\xb5\x08\x5f\x7d\xd9\x0a\x3f\x7b\x79\x1b\xbc\x3a\x90\x4b\xf3\x6a\x4a\x16\x27\x69\xce\xaa\xea\x35\x9b\xb1\xb2\x8c\xb3\x0a\x42\x78\x42\xc9\x91\x27\x78\xc3\xef\x4e\xdf\x7a\xe3\x68\x59\x66\xc3\x72\x99\x03\x4a\x5e\x9c\x5c\xc7\xf9\x94\x9d\xca\xe2\x9e\xf2\x58\xe0\x2a\x2b\xf4\x0a\x45\x61\xde\xf0\x3c\xce\x93\x8c\x7d\x77\xfa\x16\x7a\x27\x2f\x19\x37\x31\x76\xd9\xb0\x6b\x48\xa7\x9f\xa0\x58\xc5\x32\x06\x56\x81\xe0\x6e\xe8\x56\xf8\xa1\x7d\xc2\xb2\x68\x96\xe6\xc9\x0f\x69\x3d\x3f\xaa\xe0\x59\xd1\x09\x0c\xa8\x3f\x61\x59\xe8\x5d\x15\xcb\x8a\x25\xc5\x4d\x8e\x0f\xe2\x4f\x58\xd6\x4f\x2b\xdf\x1b\xa4\xf9\x62\x59\x7b\x01\x56\x0b\x17\x03\x9e\xc5\x09\x9f\xef\xf1\x4f\x04\x17\x0f\x35\xde\x74\xce\xa6\x9f\x2e\x8a\x5b\x11\xcb\x8c\x27\x95\x71\x92\x16\xe4\x7b\x9e\x26\x09\xcb\xbd\x60\x25\x9b\x36\x7d\x02\xec\x26\xc5\x14\xb4\x1a\xfa\xf3\xb8\xfa\xba\x98\x2e\xab\xfb\xfb\x56\x92\x2f\xe3\x54\xce\xf0\x8b\xdc\xe4\xea\x32\xbd\xbc\x64\xa5\xef\x41\x16\x9f\x71\x4e\xd7\x1b\xb3\x9f\xcb\x85\x47\xba\x0e\x83\xa9\xd7\xa2\x63\xb8\x45\xa5\x18\x34\xcd\x35\x90\xa1\x78\xd0\x82\xfb\x9c\x53\x39\x23\x8a\xa2\xdf\x05\x2b\x18\x40\x51\x66\x28\xfe\x62\x04\x62\x1d\x41\x4e\xd4\x12\x45\x91\xa7\xcc\xb5\xbc\x60\x25\x93\x57\x18\x86\x64\xeb\x19\xbe\x56\x21\xe3\x90\xdc\xf6\xb1\x17\x06\xc2\x7a\x2c\x44\x4f\xbd\x10\x43\xc3\xad\x19\x93\x4f\xec\x6e\xd3\x78\x7c\x62\x77\xc7\x45\x82\xae\x78\xb5\x93\x70\x9e\x64\x77\x4e\x26\xa3\x4e\x7b\xe7\x20\x29\x7f\x14\x5b\x4d\x87\xac\x75\x20\xfe\x86\x37\xf3\x74\x3a\x97\x5f\xd4\x4c\x68\x96\x66\xd9\x9b\xbc\xa3\x2a\xba\xa9\x48\xa0\x3f\xc0\xca\xea\x06\xa4\x39\x31\x7f\xd0\x86\x24\x3b\x82\x6f\xb6\xeb\x38\xf3\x21\x53\x84\xe1\xf7\x89\xc6\xa7\x63\x62\xb6\x69\xc6\x20\x12\x1d\x98\xfc\x8b\x20\x03\x6a\xfd\x1e\x74\x69\xac\x9e\x64\x8c\x2f\xf5\x1d\x6f\x4f\xd6\xb2\xe7\xed\xe4\x45\xbd\x03\xfa\x90\x7d\x4f\x51\xb2\x27\x2c\x33\xf1\x5c\x8f\x9d\x1a\x42\xf1\xf7\xfe\x5e\x9c\x4d\xa1\x57\x16\x45\x2d\x9a\xf5\x82\x21\xef\x09\xa7\x9f\x4f\x7c\xc7\x80\x3a\x9a\x8e\xf3\xe4\x7c\xce\x70\xc2\xf5\xfb\xb8\x35\xa4\xa1\x7e\xd8\x5e\x2c\x02\x6a\x74\x28\x01\x84\xa3\x39\x51\x0e\x18\x8b\x45\x59\x5c\xa5\x15\xd3\x53\x58\xb2\xaa\xc8\xae\x71\x0f\xec\xed\x11\xfe\x22\x8a\x0e\x83\x15\x94\x11\xec\x7c\x5f\x73\xbe\x22\x5c\x0e\xc6\x03\x2f\xf9\x75\xf0\x4d\x5e\xb3\x92\x2f\x04\x4b\xb4\x84\xe7\xca\x9b\xea\x6d\xc1\x8f\x9c\xcb\x68\x77\x77\xcb\x73\xb0\x2f\xce\x41\xf0\xc1\xcc\xce\xcb\x38\xaf\xd2\x5a\xd8\x28\x58\x95\x52\xbd\x4e\xec\x24\xcb\x79\xfa\xd1\x4f\xf1\xed\x29\xfb\xc7\x92\x55\x75\x45\x61\xca\x65\xce\x29\xf5\xd9\x74\xce\x92\x65\xc6\x92\xf3\xf4\x8a\x95\x95\x1f\xdc\xdf\xf3\x1c\xc9\xd7\x2c\xf3\xb7\x85\xa9\x33\x0a\x75\xf3\xc1\x65\x65\xd5\xeb\xd1\xaf\x7e\x9c\xdf\xe9\x9e\x63\x22\xf1\x26\x78\x5b\x47\x98\x36\x3a\x40\x76\x50\xce\x9c\x4c\x3e\x94\x66\xb1\xbb\x32\x07\x0d\x51\xe5\x22\x69\x02\x85\x07\x78\x61\x52\xa3\x2d\x66\x00\xce\xb8\xfd\x7d\x63\xf6\x0e\x5c\xb3\x77\x92\x27\x7e\x00\x87\x8d\x08\x81\x0e\x93\x2f\xdd\xff\x85\x87\x07\x41\x13\x34\x84\x1b\xf5\x3d\x60\x68\xbc\x10\xfe\x04\x43\x23\x0b\xcf\xa5\x10\xfe\x58\x59\x92\xf8\x7a\xa1\xfc\x65\x01\x20\x45\xf3\x42\xfc\x1b\x0c\xe7\x2a\x3d\x4f\x78\x6a\x9e\x98\x69\x9a\x60\x60\xae\xfe\xb6\x2a\xe6\x23\xea\x85\xfc\x7f\x2b\x43\xec\x29\x2f\x14\x3f\x74\xfd\x2d\x4e\x36\xb4\x53\x5a\xb0\xc0\x69\x86\xe4\xa3\x05\xc1\x39\xa8\x50\xff\xb6\x90\xa1\x27\x84\x17\xd2\xaf\xee\x3b\x9e\x29\xf2\xeb\x70\x04\xae\xc3\x02\x77\x5f\xc9\x1c\x57\x2a\x11\x64\xd6\xbe\x55\x89\xa0\xb3\xd7\x32\x68\x24\xbf\xd5\xb0\x52\xb1\x8f\x3b\x69\xbe\xf3\xdf\x02\xbd\xff\xde\xb9\x2a\x12\xe6\x0d\x45\x54\x5d\xe1\x13\xe1\x88\x30\xf0\x1a\x1f\x92\x8a\x3c\x15\x49\xe8\xd3\x6e\xca\x60\xaf\x1d\xf9\xfe\x4a\x45\x90\x0d\x75\xb2\x19\x24\x1e\x88\x4c\x18\x5b\x2d\x92\xef\xbe\xe8\x40\xb0\xa2\x89\x66\x47\x7d\xd0\x32\x5e\x77\x01\x77\x88\x56\xb7\x90\xe2\x76\x08\x4e\x3b\xae\xdd\xbf\x09\x99\x57\xa7\x20\xd2\x71\xc5\x76\xdc\x9f\x1d\xb7\x6c\x4e\xa5\xc2\x52\xd0\x69\x7d\xa9\x4d\xf3\x69\x09\xe7\x27\x27\xe3\x1f\x91\xa2\x4b\x6a\xee\x4f\xc2\x5b\x34\xb2\xc6\x6f\x54\x70\xe4\x49\xc3\xae\x03\x20\x52\xb0\xc8\x2f\x18\xb6\xf7\x1b\x1b\x32\x9d\xc0\x59\x55\xa1\xe1\x75\x3a\xe3\x08\x44\x91\x6a\x68\x94\x8e\x09\x86\xf2\xd5\x06\xde\x6e\xb7\x46\xb2\x43\x26\xa5\x43\xf7\x99\x82\x58\x71\x45\xe1\x5f\x48\xfd\xa1\xc2\xb4\x64\xef\x0a\x7e\xd2\xd9\x8b\x16\x44\x37\x01\xa9\x58\xd8\x3d\x8b\x7c\xd4\x0e\x92\x15\xca\x83\xc4\x3c\x56\x0c\x69\xb1\x0c\xee\xc3\xf9\x29\xd1\xa1\xd1\x78\xeb\x19\x19\xe2\x72\xf1\xe5\x6d\x2a\xe8\x17\xb3\x99\xef\xc5\x3f\xc5\xb7\x67\x8c\x9f\x0a\xeb\x56\x44\xb0\xa6\xf4\x71\x71\xb5\xe0\x97\x5c\x2f\x5c\x37\xd5\xae\x1a\xf2\xcf\x69\x3e\x7f\x50\xeb\x9d\xcf\x41\xfa\x35\x67\x0d\x41\x71\x51\x8c\xed\xe9\xc4\x63\x69\x81\x63\x7f\x3b\xa8\xc0\x13\x71\xb1\xd3\x5b\x9b\xf7\xec\x58\xdc\xc4\x8f\x41\x52\x80\x82\x85\x32\x58\x3d\xf1\x9f\xbe\x80\x2b\x3d\xde\xe5\xf5\x85\xfd\xe5\xd3\xa0\x3f\xad\x2a\x7f\xb5\x28\x90\x11\x1c\x78\xf1\x45\x55\x64\x4b\x3e\xb2\x19\x9b\xd5\x03\x6f\xff\xf0\xe0\xe0\x60\x71\xeb\x85\x75\xb1\xd0\x5f\x4d\xd0\x8f\x17\x1c\xbd\xf3\xc2\xf7\x2e\x8a\xe4\xce\xc3\xb9\x11\xdc\x8b\x6c\x59\x5f\xcc\xc5\x75\x5b\x7a\xe4\x0b\x9a\x27\x94\xa9\x6d\xe3\x6e\xc9\x07\xf0\x35\x92\x43\xb0\xa4\xd7\xdb\x7d\xd2\x87\x9b\x6a\xbf\x5a\xb0\x69\x1a\x67\x7d\xe4\x96\x56\xce\xe4\x68\x25\x90\xb0\xfc\x10\x3e\xe9\xe7\x45\x82\x92\x3d\xe1\x59\x0c\x85\x1e\xe8\x99\x4b\xea\x26\x1a\xc2\x0d\x40\x02\x9b\xd2\xbf\x75\xfc\x66\x11\x58\x10\x6c\x67\xd6\xf6\x88\x1f\x79\x9d\x2b\x13\x5f\x0b\x37\x3e\xe9\xb4\xc4\xca\x42\x38\x9d\xc5\xf5\xac\x28\xaf\x1c\xf1\xf0\xae\x16\x71\xd9\xf6\x91\xcc\x6e\xeb\x67\x65\x75\xbd\x78\xc0\xbb\x26\x39\xd2\xe5\xee\xa0\x32\xc5\xdf\x88\x1f\xe4\xcf\x3e\x94\xa1\xb3\xa7\x96\x40\xdb\xb1\x15\x91\x3e\xb7\x1c\x12\x63\xb2\xf2\x2f\x1b\x97\x6c\x93\xcc\xfb\xf4\xec\xfb\x8f\x9b\x64\xde\xeb\x1e\x4b\x1d\x2f\x9c\x18\x51\x48\x4f\xce\x26\x8f\xc5\xa0\xbc\x18\x8d\xc6\xa8\xc5\x48\xa4\xec\x95\x74\x0e\x95\xe6\x3f\xb1\x69\x8d\x2c\x77\x25\xcd\x0b\xe1\x48\x52\x62\xfb\x95\x29\x8c\x37\x03\x64\x87\x58\x1f\x3a\xbf\x0c\x56\xa2\x76\xe4\x49\xa3\x15\xc6\x64\x1a\x50\x98\x90\x2f\xec\xc1\x8a\x5f\x3e\x06\x72\x87\x85\x0e\x51\xfe\x17\x6c\x06\x94\x5e\x9a\x26\x5c\xe6\xeb\x7a\x12\xac\x84\x98\xd7\xa8\x5c\xca\x7e\xe1\x80\xfe\x88\x82\x01\x12\x8c\x0a\x83\x7b\x87\x45\xfe\x86\x8e\xa3\x4b\x71\xdf\x3d\xd0\xd2\xcb\x8c\x80\x6a\x42\x21\x7b\x18\xd8\xb2\x07\xed\xa0\x25\x67\x37\x06\x36\x1a\xa2\x09\x05\xc3\x31\xa0\x17\x57\x5d\xd5\x75\x9c\x6d\x2b\xe8\x50\xaa\x31\xf0\x0d\x25\x9b\x40\xcf\xd3\x0f\x70\x25\x37\x2f\x11\xec\xb6\x26\x72\x18\xb7\xf4\xf4\x50\x5b\x1a\x74\x4a\x50\xf1\x70\x10\x42\x03\x41\x99\xc5\x97\xf0\x31\x75\xe4\x0b\xb7\x7e\x52\xb2\x00\x83\x38\xb2\x91\x18\x07\x74\xca\x37\xa3\x8c\x9e\x85\xd2\x72\xd8\x46\x42\xcb\x37\x1e\xd3\x29\x5e\x69\xd4\x46\x6f\xe8\xec\x9a\xd1\xb1\x59\x9a\xd5\xac\xd4\xf3\xc3\x32\xe2\x51\x0a\xa9\x10\x4f\x0b\x79\x0b\xc1\x6e\x14\x1d\x34\x81\xa1\x2f\x24\xee\xdb\xf1\x62\x11\xe2\x12\x07\x1b\xc8\x3c\x32\x96\x78\xff\x4a\xef\x98\x76\x4e\x3c\x6c\x87\xcf\x45\xb5\xc9\xcb\x2a\x72\xf9\x03\x43\xcf\xb1\x62\x71\xe2\x4b\x1d\x49\x18\xf2\x72\x7d\xe1\x79\x17\x84\x72\x68\x02\xc4\xea\x18\x7a\xad\xa3\xf5\xe6\x32\x30\xda\x62\x11\xf2\x42\x60\xee\xbf\x4b\xaa\x42\x9f\x95\xb2\x21\x07\xbc\x7a\x9a\x21\xa8\xb7\x70\x93\x4b\x9c\x56\xdc\xaf\xe7\x2c\x77\x38\xbb\x75\xb4\x41\x22\xe0\x91\x1a\x48\x38\x62\x68\x5f\x5c\xe1\xe5\x11\xd4\x92\x9f\xc9\x0c\x0e\x89\x68\xcf\x72\x7e\x9f\xb6\xe9\x7d\xbf\x64\xc5\x82\xe5\x3e\x70\x58\x92\xd8\xac\x9a\xb0\x28\xd3\xcb\x34\x8f\x33\xa4\x7d\x90\x24\x4e\x79\xa4\xb1\xa1\x75\xce\x50\xde\xa9\x75\x3d\xc2\x75\x69\xdc\x6f\x20\xe5\x14\x85\x8d\x12\x05\xf9\xf8\x36\xf0\x20\xb2\x04\x27\x0f\xb8\x78\x54\x3c\x97\xc1\x4d\x9a\x27\xc5\x4d\x88\xa4\xef\x9c\xa0\xac\x9a\xb7\x4a\xc0\x30\xb5\xd2\xa0\x75\x2b\x35\xb2\xbe\x1b\x85\xf4\x37\xfa\x80\x93\x37\x52\xbe\x98\x77\x52\xb9\x1d\x24\x51\xb1\x06\x4d\x1c\x26\xae\xc6\xc4\x51\x60\x37\xb1\xb1\x84\x40\x12\x19\x52\xd8\x80\x43\x38\x3a\x7e\x28\xe3\x85\xef\x3e\x51\x42\x72\xda\x91\x72\x61\x7b\x5f\xe2\x76\x69\x4c\x7f\x67\x1d\xa7\x8c\xed\x00\xcd\x0d\x36\x4a\xc7\x18\x65\xa5\x91\x16\x8b\xce\x39\xd3\x37\x7d\xf7\xb8\xba\x87\xa2\x7b\xc8\xa9\xc3\xd8\xf6\xf0\x1a\xb9\xce\xf2\xc0\xa0\xab\xfd\xa6\x07\x18\x7e\xe1\x78\x4a\x9a\x1b\xa6\x15\xb0\x18\xe0\x3b\xb6\x2e\x04\x6a\x2e\xca\xa6\xc8\x19\xba\xa8\x15\xa5\x94\x33\x3f\x21\x80\x46\x6a\x00\xd3\x44\x49\x0e\x31\xf3\xeb\xa0\x24\xdd\x35\x04\x8d\x10\x7d\x28\xc2\xa6\x0b\x73\x8e\x52\x2d\x19\xb3\xa4\xa0\xbd\x43\x9b\xde\xc2\xb8\x37\x43\xf7\x62\x8b\x84\x2c\xc2\xa8\x97\x84\x92\x74\x97\xa2\x7e\x6c\x23\x0a\x82\x52\x52\x31\x45\xe7\x73\x96\x47\xee\x8a\x61\x50\xba\x2a\xe7\x79\xba\xcf\x45\x7e\xb6\x9c\x4e\x59\x55\x85\x45\xfe\x75\x9c\x66\xcb\x52\x33\x27\xb4\x25\x3c\x83\x60\x30\x9c\xec\x4e\x5a\x15\x19\xef\xa9\xae\x0f\x58\x1a\x52\x2b\x39\x35\x25\xf0\x2c\x07\x28\x58\x14\x20\xfd\xa7\x27\x5b\x7b\xa4\xc1\x4f\x3d\xc0\x45\x33\x6c\x7d\xb8\xf6\x24\x94\x31\x7d\x7b\x3d\xf8\xb3\x93\xe6\x55\x1d\xe7\x53\x56\xcc\x0c\xfe\xee\xfe\xde\x3c\xf4\x8c\x50\x46\x5f\xfc\x88\xc3\x6a\xc9\xe3\xa4\x71\xaa\x75\x79\x3c\x60\x55\x3b\x0c\x24\x88\x5b\x5a\x32\xf8\xad\xd4\xa6\x8c\x3c\x53\xd9\xd1\xc8\x2a\xf9\xcd\xa7\x9c\x5c\x2c\x67\x33\xa2\x49\x67\x80\xb0\x5b\x5b\x64\x2c\xb2\xeb\xb8\x66\x76\xb5\xfa\x7f\x67\x86\x7e\x8f\x5b\x03\x92\x65\x0c\x86\x74\x1d\xcc\xd5\xa2\xc8\xe1\x51\xc3\x89\xf1\x35\xcb\xeb\x49\x92\x56\x0b\x7c\xb7\xb2\xa0\x44\x10\x24\xfe\x31\xa9\xe3\xf2\x92\xd5\x93\x18\x1b\x24\x1a\xcd\xbf\x85\x0b\xfb\xcf\x10\xb8\xe8\xb3\x65\x00\xdb\x09\xe3\xe0\xa9\x36\x67\xe5\x37\xe7\xef\xde\xba\x02\x13\xa9\x4c\xe1\xed\xf9\x2c\xbd\x5a\x64\x0c\xc4\x42\x2d\x70\x23\x17\xc5\x02\xb0\x68\xbf\x82\x35\xbb\x49\x84\x30\xcd\x8a\x9c\x9d\xc1\x52\x6d\xc5\x2f\x22\x79\x88\xb5\x1b\xac\xd2\x10\xc7\x45\xc9\xbe\x4f\xd9\x4d\x2b\x86\xa3\xcc\x00\x28\x27\x84\x91\x7b\xac\x16\xb9\x13\x4e\x67\x8b\x56\xc5\xae\x69\x55\xec\x0c\xe8\x2f\xcb\xb6\xa0\x9d\x51\x93\xc4\x4e\xda\x18\x36\x09\x9e\x0d\x5f\xab\x3d\xb5\x31\xb8\x3f\x6f\xfd\x1c\x76\xd7\x11\x60\x73\x86\x7b\x6b\x6d\x6c\x24\xbc\xc1\x29\x49\x2e\x7e\x76\x55\xd4\x91\x2e\x4a\x19\x6b\x84\x7e\x28\xe4\xd0\xdb\x8d\x6e\x03\xbf\x57\xcd\x50\x7d\x18\x2b\x35\x32\x96\xad\x86\x31\x17\xaf\xb9\x58\xb1\x72\xb5\x68\xd4\x22\xd1\x8d\x46\xd6\xb7\x58\x6c\x91\x58\x73\x24\x83\x2e\x64\xba\x70\x11\x64\x62\xad\x2a\x6b\x15\x49\x44\xe8\x3a\x32\xbe\x14\x84\xb1\x78\xcc\x4f\x05\x23\x97\x8c\xfa\x25\x72\xec\x25\x62\x7d\xaf\x8d\x84\xec\x3e\xfc\x74\x40\x3b\xd1\xd2\xa4\x66\x57\x0b\xce\x5a\xf0\x55\x54\x32\x29\x60\xfd\x9c\x38\x80\x2a\x84\xdd\x6f\xe2\xe1\x73\x5d\x94\xb7\x77\x1c\xd3\x16\x7d\x84\xd4\xae\xb1\x85\x4c\xf9\x60\xb6\xba\x49\xb3\xec\x1d\x2b\x2f\x19\x24\xeb\xfb\x08\x1f\x1d\x33\xa4\x4e\x07\x6f\x7c\x0d\x11\x6a\x71\xe0\x59\x22\x5d\x76\x87\xc2\x8f\xf2\x15\x89\x86\x19\x66\xf1\x5d\xb1\xac\xcf\x16\x6c\x9a\xce\x52\x96\x44\xd0\x46\x1f\x53\xdf\xc7\x57\xec\xfe\x9e\xa6\xa0\x4e\x93\x0c\x3e\x21\x61\x50\xab\x12\xe1\xe4\xc4\xf3\xf4\x5e\x6f\xd7\xaa\x3e\x58\xb5\xd1\x8a\x3c\x5a\xc6\x1b\x3a\xb0\x8c\x68\x63\x43\x1b\xc5\xa8\xdd\xb2\xbc\x4b\x41\xce\xc8\x6c\x60\xdc\xb4\x90\x7d\x28\xa2\x6b\x91\x34\x11\xb4\x90\xeb\x40\x0c\x91\x6a\x37\x19\xac\x1a\x97\x9e\xc1\xd6\x0c\xd2\x68\x8b\x10\xde\xa2\x9a\x4e\x16\xeb\x67\x0c\x19\xb9\x6e\x1b\xb6\x77\xd1\xa1\xda\x45\x20\xb1\xdf\x70\x68\xb9\x1e\x3c\x5c\xe1\xf2\x7e\x67\x87\x76\x86\x18\x57\x91\x0a\xe5\x0b\x9f\x5b\xed\x5b\x07\x46\xe1\x0a\x87\x15\x03\x67\x51\x6d\x76\x2f\x08\x71\xa8\x8f\x51\x5a\x4a\x21\x38\x2b\xef\x7a\x69\xdb\xc0\x3d\xff\x4c\x51\x56\xed\x88\xaa\x6b\x9f\xf1\xd6\x1a\x6c\x6d\x1b\x25\x7e\xcb\x6b\x93\x79\x89\xf9\x1f\x79\x13\xf8\xd5\xa2\x8d\x3a\x22\x89\xfe\xde\x8c\x24\x6a\x5b\xc4\x38\xde\xf4\xea\xbb\x05\xfb\x30\x6b\x31\xe2\x98\xec\x0c\x47\xfa\xa7\x2d\xa2\x99\x3b\x98\x65\xc7\x6d\xc6\xc1\x24\xb7\x18\x69\x08\x9e\xae\x18\x7a\xdc\x98\xc2\x7c\x66\x1d\x8f\x63\x19\xdb\x61\x40\xdd\xc1\xaa\x2e\x96\xd3\x39\x58\x6c\x0d\x3c\xf8\x0d\xca\xaf\x5e\x08\xbf\x21\x9e\x20\x26\xbf\x2b\xae\x99\x48\x65\x79\x22\x12\x4f\xf2\x44\xa4\x4d\xe3\x7c\xca\x32\x91\x7c\x0c\x1f\xa0\x17\x99\x14\x37\xf9\xc0\xfb\xc4\xee\x5e\x17\x37\x39\xa4\x2c\x17\xf0\xfd\xdd\x02\xbe\x16\x25\xab\x2a\x48\xf8\xc8\x7f\x79\xa1\xb2\x81\x18\xa0\x99\x00\x96\x13\x16\x03\x22\x8d\x97\x15\x14\xe5\x8a\xe5\xcb\x81\x24\x2f\xef\x58\xbe\x14\xba\x9a\x03\xa9\xfb\x90\x5c\x64\x22\x21\x29\x96\x17\x82\x37\x16\x15\x62\xf7\xe0\x27\x76\x4f\xd8\x2b\x0c\xd0\x70\x01\x74\x37\xf9\x8f\x62\x59\x8b\xa4\x0f\xcb\x5a\x94\x65\x79\xcd\x4a\x51\xf8\x24\x07\x4b\x40\xf8\x9d\xb1\x58\x55\xfa\x96\xff\xf6\xc2\x6a\x79\x71\x95\xd6\x03\x0f\xff\x7a\x21\x68\x36\x0c\x84\x82\x43\x88\xfa\xe4\x03\x0f\xff\x7a\x61\x52\xc6\x97\x62\x3e\xf8\x4f\x31\x1d\xfc\x27\x26\xe0\x6f\xd1\x3c\xff\x29\x5a\xe7\x3f\x45\xe3\xfc\xa7\x68\x9b\xff\x2c\xae\x25\xe8\x87\x6b\x84\x2c\x16\xfc\x9b\x93\x39\xac\x2b\x91\x35\x25\x5e\x13\x12\xb5\xee\x01\x2a\x93\xe0\xf3\x03\xf1\x4d\x94\x24\x2c\x01\xfe\xba\xa2\xd0\x28\x69\x83\x85\x85\xa6\x0b\x15\x09\x8c\x25\x02\x38\x4b\x25\x22\xb9\x0e\x31\x39\x24\x35\xde\xdf\xaf\x1a\x7c\x54\x12\xa1\xe2\x68\x0b\xf0\xdc\x21\x6a\xa4\xea\xe7\x06\x1a\x0d\xf9\x10\xb7\x39\x12\xb1\xce\xd0\x5a\x0f\x86\xe4\xb3\x1f\x27\xc9\x71\x16\x57\x95\xdf\xd6\xac\x10\x41\x52\x01\xdd\x9d\x34\xc7\x5e\xa2\x95\x09\xfe\xb4\x03\xc9\xa0\xed\x86\x60\x6b\x61\xfc\xbe\x41\x2d\x1c\xda\x9f\x90\x0e\xd6\x08\xfe\x8c\xc1\x23\x2d\x2d\x40\xde\x92\xdd\x25\xdf\xab\xa7\x41\xed\x04\x9c\x76\xab\xc8\x11\x9b\x3d\xaf\x0f\xfd\xf2\x42\xf1\x63\x1f\x4f\x19\xfd\x3c\x79\x5d\x4b\x3d\xdd\x34\xbf\x7c\x17\xe7\xf1\xa5\xd4\xf1\xbe\x96\xd7\xc5\x3e\x9c\x4f\x18\x24\x32\x4d\xc6\x61\xc9\xaa\x65\x86\x4e\xb6\xc2\x2b\x2c\x81\x92\x54\xf9\x81\xde\xb8\x67\x69\x9e\xbc\x67\x71\xc9\xaa\x1a\xa6\x59\x54\xee\xf3\xda\x48\x2f\xd0\xb5\x3a\x64\xf5\x7a\xe2\xc7\x6e\x14\x39\x90\x12\xed\x62\xed\x92\x5f\x40\x6b\x14\x51\x2e\xe4\xdd\x51\x55\x87\xbc\xa5\x40\x39\xc5\x81\x2f\xb3\x92\x8b\xe5\xc5\x45\xc6\xb0\x0a\x81\x16\x1d\x60\x94\xd5\xb2\x6b\xb4\x80\xe5\xf3\x1c\x5f\xa2\x1b\x07\xe2\x89\x82\x57\xd7\x04\x9b\x46\x7f\x94\xc4\x75\xbc\x2f\xd6\x18\x0c\xfd\xd8\x9c\x05\xa1\x31\x4c\x48\x7b\xb0\xa2\x5f\x6e\x95\xc7\xb2\x58\x52\x43\xd9\x67\x58\xb5\x17\x8c\x3c\x5a\xd6\x43\xbf\xb4\x98\xf9\x26\x91\x1b\x84\x77\x4c\x3c\x6b\x22\xc7\x17\xf4\xe3\xba\x2e\x7d\xaf\x85\xab\xe2\xf1\x22\x5a\xad\x32\xe7\x64\x09\x26\x57\x23\xd9\x04\xfa\x9a\x83\x8f\x5e\x0f\xff\xf6\xd5\xb8\x46\x51\x44\x16\xb1\x18\x48\x01\x24\xf4\xd6\x60\x44\xf8\x85\x21\xec\x5a\x46\x44\x47\xc2\x5c\x4f\x2b\x74\xc2\x49\x96\x25\x46\xe0\xc3\xe9\x97\x19\x9c\x38\x40\x41\xa4\x52\xa2\x52\xcf\xb9\x1a\x47\xaa\xf2\xb1\xf4\x56\x07\x7b\x43\xd7\xb1\x88\xf9\x20\xf2\xbd\xa2\x8d\x6e\x44\xe1\x26\x34\x97\xaa\x11\x99\x90\x4d\x6b\xd7\x92\x15\xce\xfe\xd5\x2e\x43\x2d\x20\x1c\x99\x08\x8b\x11\x9c\xa4\x71\xd4\x87\x99\xd2\x37\x8c\xa2\xc8\x93\xed\x78\x6a\xcd\x97\x4b\xd5\xa8\x00\x84\xc6\xa1\xc9\xa1\x7b\x95\x8b\xc7\x31\xc4\x04\x6e\xeb\x9b\xb6\x8c\xb9\x2f\x42\x0a\xdf\x9a\x32\x83\x98\xc9\x82\x4b\x91\xcd\xff\x13\xcb\xe1\xc4\x24\x7c\x21\x2c\x8e\x30\x61\x55\x5d\x16\xad\xc8\x8d\xf4\x24\xe8\x38\x02\xa4\x56\x2b\x3d\x41\x50\xaf\x56\xed\xd7\x7f\xfb\x37\xa5\x2a\xb9\xe6\x7c\x30\xbc\x83\x8a\xd0\xc0\xdd\xd7\x5c\xfa\xbe\x31\x72\xdf\x41\x1e\x64\xdd\x60\x33\xb6\x0e\xae\xfa\x1f\x4b\xb6\x64\x15\x9f\xf9\x3e\xfe\x1c\xf2\x9f\x93\x38\x49\xfe\x83\x7f\xfa\x1e\xbe\xc7\x78\xa1\x87\xfb\xaf\x42\x03\x4d\x0a\x11\xcf\x6a\x56\x9e\x4a\x30\x01\xbf\xa1\x8b\xf2\x96\xb3\xe6\x22\xb7\xfe\x46\xf5\xeb\x85\x25\xda\xea\xb2\x72\xd3\xba\xaa\xdc\x3c\x26\x1a\xd1\x36\xae\xcd\xc5\x8d\x01\x05\x9e\xe9\x15\x20\xde\xeb\x19\x9f\x7d\x84\xb9\xbf\xe7\xeb\x50\x28\xc9\x0a\x89\x36\x3f\x53\xf0\x27\x5a\x02\x17\xb3\x1d\x71\x8e\x58\x24\x42\x34\x23\x32\x7d\x4f\xcc\x20\x68\xf0\x60\x1e\xee\x2e\xe0\x19\x91\xd1\xbb\xf1\x3d\xc5\xb8\x42\xfa\x8e\xe2\x52\x77\x14\x67\xba\x23\xb9\xd1\x1d\xce\x7c\x0a\x88\x04\x59\x2b\xf0\xca\xa4\x2b\xa4\xc7\xa1\xa2\x0a\x92\x75\x04\xad\xe2\x59\x7a\xfb\x4d\x51\x7c\xaa\x08\xf1\x8b\x20\xa4\x6c\x35\x18\xc1\xa1\x05\xf6\x74\x33\x38\xf0\x9a\xa0\xeb\xe9\x13\xab\x5c\xbf\x80\xad\x67\xca\x2f\x2e\x90\xd8\xf6\xb9\xf4\xcb\x5a\xc9\x6c\x92\x0a\xfc\x6a\x97\xf8\xce\xe7\xbb\xdf\xbb\x9e\xef\x1c\x97\x68\xeb\x4e\xaf\xf4\x02\x80\x76\x9f\xb1\xda\x57\x5c\x39\xcb\xa3\x55\x83\x7a\x41\x59\x5a\xd5\xd1\x68\xdc\x48\x20\xcb\xbf\xbd\x3e\x58\x90\x38\x01\x87\x86\x3f\xf9\x75\x40\xd5\xa7\x74\x0d\x55\xca\x08\xa1\xc6\x44\x13\x8b\xb7\x85\x4a\x8f\xa2\xb2\x26\xac\x8b\xd7\x1f\xde\x0d\xda\xef\xf9\x1a\x1e\x03\x11\xee\x78\x41\x83\x9a\xbf\x5f\x1d\xbd\x9e\x9c\x1f\xfd\x75\xf2\xfe\xe8\xdd\xc9\xe4\xfc\xe4\xec\x5c\x47\x96\xfd\x7b\xbc\xff\xcf\xa3\xfd\xff\x3a\xd8\xff\xcb\x8f\xfb\xe3\x67\x6d\xe8\xd3\x93\x8f\x6f\x8f\x8e\x4f\xba\x0a\x90\xc0\xad\x1c\xbf\xc5\x79\x7c\x89\x7a\xf9\xf8\x57\x98\x00\xc8\x0f\x89\x28\x7e\x83\x92\x5f\x17\x6a\xa0\x1d\xa4\xaa\x69\x15\x35\x3f\x55\x7c\xc4\x35\xa8\x87\x9e\x87\x56\xba\x1c\xe6\xf8\x9b\xa3\xd3\x33\xd5\xa7\x9e\xff\x6a\xf7\xc7\x9b\xbd\x61\x70\x3f\x7a\xf1\xd2\x7b\xfa\xdf\x32\xd6\xee\xc7\x0f\x67\x67\x6f\xbe\x7a\x7b\x62\x81\x8f\x7a\x02\x4a\xf7\x9d\x55\xd3\x78\xc1\x8e\xea\xba\x4c\x2f\x96\x35\xf3\x85\xa5\x31\xdc\x71\x21\x2b\x5a\x79\x2f\xbc\x81\xd7\xcb\xea\xa1\x17\x7a\x2f\xf9\xcf\x4b\xfe\xf3\xa9\xf7\x74\xe0\xf5\xfe\xb1\x2c\x20\xfd\x29\x4f\xff\x3f\xb7\xcf\xff\xc4\x3f\xfe\x1b\x3f\xfe\x78\x30\xf4\x70\x16\xb1\xa6\xe3\x79\x5c\x6a\xa5\x19\x1a\x5b\x13\xf3\x47\xd3\x79\x39\xbe\xbf\xf7\x7a\xf1\xd5\x42\x96\xc4\xa5\x13\x01\x56\x7d\xe9\xf5\xce\xc7\x9b\xb3\xb3\x93\x38\xfa\x62\xc5\xd1\x78\x91\x69\x7e\xd9\x18\x5f\xc6\xd0\xd3\x2a\x42\x8d\x2e\x8e\xfb\x34\xce\xcf\x18\x10\xdf\x0f\xf9\x9b\x7c\xb1\xac\x2b\x5b\x1b\x2b\x49\xaf\x23\xe5\x3b\x02\x45\xca\x82\xcb\xf2\xbd\x24\xbd\xf6\x82\x90\x65\x9d\x00\xc2\x06\x64\xc8\x32\xbe\xf1\xf5\x54\x78\x39\x98\xb0\x7a\xb3\xa2\xf0\x82\x61\x92\x5e\x0b\xf3\x97\xe3\x79\x9a\x25\x3e\xcb\x24\x33\xb6\xbb\xcb\xf3\x52\x49\x30\xfa\xe0\xa9\xde\xc7\x62\x8d\xdf\xe9\x24\x4a\x2d\x01\xfa\x74\xeb\xdb\x2b\x3e\x67\x37\x3b\x13\x27\x04\xd1\x45\x72\x03\x08\x37\x19\xf8\x55\x45\x23\xf1\xeb\xfe\x9e\x5f\x51\x84\xa2\x22\x1e\x37\x91\xe7\x35\x46\x1d\x94\x2e\x4d\x98\x10\xd3\x80\xbe\xf8\x64\x1e\x57\x52\x6e\x03\xd7\x71\x91\x0b\x14\x8d\x55\x08\x34\xa5\x1f\x02\xe0\x4d\x62\x7c\xaa\x61\x36\xa1\x84\x64\x23\xb5\x92\xcf\xe3\x4b\xe3\xfb\xac\xbe\xcb\x18\xa6\xe0\x45\x08\xd1\x16\x29\xcb\x6a\xde\xa6\xa4\xa4\xbb\x7b\x11\x26\x0e\x8d\x40\xee\x52\x2e\x43\xb4\xbf\xf9\x27\x19\x4a\xb3\xab\x91\x23\xed\xfe\x1e\xc2\xb5\x0b\xea\x3e\x74\x40\xf4\xe3\x24\x21\x15\x0b\x97\x8b\xdd\x35\x02\x59\x36\x11\xad\x98\x1a\xed\x36\xaa\x95\x1b\x57\xa1\x76\x86\x81\xdb\x35\xb0\xf2\x76\x8f\x31\xdb\xc1\x26\x13\xe2\xb5\xef\xed\x89\x7a\x94\xb4\x4a\x17\x1a\xa5\xe3\xa0\x69\xc2\x94\x1c\x57\x69\x62\x36\xfb\x26\x89\xd2\xc4\x1a\xde\xba\xb6\xcd\x35\x08\xad\x8b\xd5\x72\x30\x06\xe1\x68\x53\xf2\xfd\xfd\xaa\x19\x76\x6a\xdc\xcb\x8b\xbe\x02\x17\xba\xa0\xe8\xa1\xdd\x4a\x45\x22\x67\x06\xf7\xc7\xeb\xd8\x51\x0b\xf5\x2d\x91\x06\xcc\xd4\x97\xb2\x1d\x69\xe1\x63\xb4\xc9\xb9\xb7\xee\x81\x5a\xa8\x0d\x62\xb4\xf9\x71\x53\xf2\x56\x03\xa5\x2b\xa7\x03\x65\xa7\x76\x0f\xd4\xc7\x16\xea\x5b\x22\x2d\xdf\xc0\xf1\x4b\x0d\x54\x0b\x1f\x73\x1f\x00\x11\x70\x8e\x14\x6d\x05\x68\x45\xd4\x4a\x81\x01\x69\xa5\xd2\x1e\x9a\xeb\xf7\x82\x5d\x52\x7d\x02\x37\x91\x45\x7e\xcb\x20\xb4\x81\x59\x0d\x07\xf8\xb0\x60\x79\x9a\x5f\x72\xa2\x66\x9d\x63\xa2\x24\x62\xab\x04\x65\xc8\x18\xe1\xa1\x6b\x9d\x0f\xe0\x4d\x08\x64\x01\x9a\x2e\xf7\x7a\x68\x98\x22\x09\xb7\xb8\x9f\x21\xed\xb3\x9c\xbc\x10\x30\x6c\xf4\x92\xe5\xac\x24\xa7\xa3\x8a\x4f\xc7\xd1\x13\xa7\x05\xa9\x2e\x4c\x93\xc8\xdc\xf8\xa1\x41\xcc\xc4\x07\xec\xfe\xae\x5d\x02\x2b\xbe\x6b\x65\xe0\x2c\xb7\xa7\x0f\x6a\x84\x92\x43\x49\xd4\xbd\x17\xde\x9e\x93\x95\x04\xed\xec\x24\x58\x49\xc0\xa7\x3b\x69\x12\x79\x4f\xf7\x6c\xde\x2b\x4d\x82\xbd\xa7\xde\xd3\xa1\x45\xc9\xa4\xcd\x91\xe8\x0b\xad\x07\x92\x5c\x55\x09\x58\xcd\x4f\x93\x9a\xa7\x94\x26\x77\x11\xeb\x06\x38\xff\xbb\x8c\xd1\xe6\x70\x2c\xbc\xa7\x40\xad\x79\xdf\xf9\xad\x40\x40\x49\x78\xfb\x89\x80\x83\x05\xba\x12\xfe\x09\xae\x85\x6d\x8c\xa1\xf0\x88\x67\x8f\x83\x3d\x6f\xe8\x35\x8d\x6a\xd7\x1a\x12\xdc\x50\x12\x49\x98\x59\xd4\xf6\xe7\x3f\x39\x46\x22\x49\x66\xda\x18\xf1\x44\x82\x91\xb7\xe3\xed\xf1\xa4\xbd\xa7\xae\x81\x84\x1a\x46\xfc\xff\x31\x0c\x61\xd3\x74\x9c\x0f\x12\x1f\xa1\xe8\x43\x47\x48\x24\x29\xd5\x15\xf7\x08\x29\x05\x6e\x54\x3b\xc1\xa1\x50\xfa\xd7\xf7\xf7\x42\x98\x81\x20\x51\xe4\xe5\x4b\x10\xdc\x41\xbd\x32\x91\x73\x44\x66\xcf\x60\xbc\xa1\x67\xf8\xcb\x7b\x8a\x44\xd5\x0d\x63\xf7\x9e\x60\x22\x7a\x6f\xf6\x9f\x90\x7d\xe8\xbf\xaa\xf5\xa5\x67\xf0\x77\xf8\x07\xa9\xcf\x71\x56\x54\x5b\x50\x1f\x4d\xd2\x8a\x05\xd2\x1e\x93\xe4\xe9\x5d\xf7\xac\x63\xdb\xed\x79\x2f\xbd\xa6\x09\x4d\x32\xd6\x75\xfb\x94\xcd\x8d\xcc\xc6\x65\xe4\xc6\x71\x13\x5a\x94\xe9\x01\xc8\xff\x7a\x44\x0a\xd2\xbf\x92\x3c\xb6\xa6\x59\x61\x1d\x5f\xe2\x5d\x4a\xb2\x08\x55\xaf\x87\x9b\x25\x47\xe5\xaf\xf6\x9d\x27\x58\xa9\x42\xdd\xa4\x6e\xef\xa9\xf0\x2f\xd3\xb1\x93\xa0\x7a\xbe\x94\x5e\x8a\x75\xa8\xeb\x94\x17\x64\xb8\x30\x8a\x23\xa1\xe3\xca\xa4\x0a\x05\xe1\x13\x66\x3e\x81\x8a\x4f\x45\x73\x65\xbe\x78\xe7\x49\x13\x2f\x4c\x93\x60\x23\x89\xb5\x8a\x41\xba\x17\xb6\xa9\xea\xe3\x28\xea\xc3\xc9\x27\x99\x48\x42\x43\x09\xcd\x44\x92\x69\xa1\x0d\xf9\x1e\x5d\x05\xc1\xcf\x41\x49\xcd\x56\x61\x91\x51\xb2\xf9\xf3\x91\x4c\xd5\x30\x78\x89\x84\x85\x4d\x29\xd6\x7a\x5a\x25\x65\x0f\x98\xdb\xc8\xab\x9d\xbd\xaf\xe7\xf5\x55\x16\x09\xf7\xf0\x39\x2b\xa9\x04\x82\x67\xd9\x4c\x0c\x15\xdd\xf9\x46\x56\x08\xe0\x66\x78\x35\xd5\x78\xd5\x72\xe7\xef\x64\xac\x8c\x52\x82\xee\xcc\x53\x99\x6f\x10\x00\x3f\x08\xc1\x14\x12\x04\x8c\x04\xa8\xaf\x52\x89\x8b\x41\x0d\x69\xf9\x19\x14\xd8\x8a\xcd\xe5\xbd\x48\xd2\xeb\x67\x2f\x3d\xe9\x88\xc3\x27\xf5\x06\x7d\xde\x3f\xfd\x4c\xac\xaa\x6c\x9b\x9b\x19\x03\xc9\x6f\x72\xfa\xbb\x8b\x3c\x8b\x03\xa4\xed\x5b\xc5\x25\x56\x76\xcb\xae\xb7\x11\x27\x7f\xb6\x38\x38\x67\x2c\xa9\xce\xe6\x77\x91\x18\x58\x49\xc0\x76\x8d\x71\xed\xf5\xec\xc3\x83\x55\xf5\x49\xb7\x84\x08\x44\x48\x43\x04\xd2\x82\x9e\x08\xa6\xe3\xe5\x8b\x67\xfc\x7f\x4f\x66\xcf\xd2\xb2\xaa\x41\x44\x64\x40\x56\xd3\x32\x5d\xd4\x2f\x5f\x3c\x13\x3f\x3c\x75\x2d\x58\x53\x2c\x8a\x3c\xaf\xf1\x51\x27\x99\xdf\xaf\xaa\x1f\xe6\x69\xcd\xaa\x45\x3c\x65\xbf\x4c\x07\xcf\x59\x55\x0f\x76\x04\xf2\xe8\x48\xe6\x69\xcd\x6e\xeb\x67\xb7\xfb\x20\xbb\x9b\x17\x59\xc2\xca\xa7\xba\x5b\x10\x91\xdc\xee\xdb\x94\x77\xeb\x7d\x91\xb0\x6a\x74\x30\x06\x0f\x2c\xdf\x4b\x26\x0a\x1a\xf0\x7a\xbd\x36\xe4\x73\x0b\x72\x07\xab\x96\xc3\x31\x4b\x85\x20\xee\xab\xbb\x37\x49\x44\x6c\xdf\x71\xaf\xf3\xa3\x27\x9d\xc9\xcf\xfe\xa5\x21\xd7\x4b\x13\x2f\x88\xa2\x88\xc3\x58\x44\x48\x4a\x48\x64\x39\x8d\x8f\x92\x94\x24\xb7\x21\xc7\x0b\xc3\xaa\xa3\xd8\x24\xb9\x8d\x0e\x86\x69\x82\xd1\xf3\xd2\xe4\x76\x6f\x2f\x58\x71\x18\x47\x35\xa3\x34\xb9\x1d\x0f\xa1\x6c\xc4\x41\xa0\x8f\xe7\xe8\x76\xe6\xb0\xd7\x33\x7a\xe5\x43\x3b\xfc\xb4\x4c\x67\x3e\x14\xd1\x36\xe6\xfc\xab\x11\x32\x7a\x4a\xf2\x7e\x48\xeb\x79\xb1\xac\xbf\x4e\x6f\xdb\x63\x82\xe4\x12\xa2\xb0\xe0\x26\x09\x56\x40\x5c\xbd\x5e\x35\xbf\x1b\x7a\x7b\xfc\x43\xc7\x13\x65\x32\x04\x90\xb5\xf0\x44\x21\xfe\x9f\x92\xe0\x3e\xf3\x7f\xac\xf6\x02\x5f\xae\x93\x34\x89\x9e\xfa\xa3\xbf\x3f\x1d\xef\x05\x4f\x83\x67\x97\x7a\xc3\x43\xc5\x21\x54\x53\x71\x16\x08\xa6\x49\xb4\x26\xfc\x33\xa4\x89\xc8\x1f\xeb\x8b\x73\x7c\xd9\x04\x8d\x1c\x4b\xbd\x3a\x39\x0a\xa8\x3c\x81\x15\xe0\x0c\xbd\x3c\xc0\x15\xcf\xa7\xd1\xcc\xe1\x73\xd7\x3d\x61\x30\x92\x80\x7f\x64\xce\x82\x1c\x3e\x51\x19\xcc\xe0\xe8\x60\x1c\xc0\x32\xb0\x77\xd4\x39\xbb\xad\xf9\x44\xfb\x06\xf4\xe1\x38\x18\x62\xdd\x7d\x14\x57\x72\x90\x7e\x0a\x01\xdc\xbe\x62\xb3\xa2\x64\x38\xd7\x08\x13\x34\x8d\x31\x49\x80\xd9\xfc\x4e\x1e\x32\x72\x20\x34\xc5\x10\xea\x26\x1a\xc6\x5a\x55\xbb\x56\x0e\x72\xf1\xa4\x4a\x92\xaf\x6b\x05\x7e\xc9\x59\xe5\xef\x7a\x3d\x2b\x03\xf6\x66\x7f\x3a\x8f\xcb\xa3\xda\x3f\x00\x65\x90\xff\xfb\xff\x79\xb4\x0d\xb2\x99\x9d\x65\x31\x82\x1e\x04\x21\x17\x2e\x67\xc4\x34\x9f\xc7\x97\xca\x0f\x0d\x32\xc5\xfa\xdd\xae\x2d\x8d\x81\x70\x8e\xa4\xa4\x14\x7a\x8f\x77\xa3\x48\x91\x47\x6d\xf0\xeb\x04\x25\x6f\x0e\xca\x71\x9b\x7c\x2e\xaa\x8b\xb7\xc5\x0d\x2b\x8f\xe3\x8a\xf9\xd0\x4d\x74\x43\xeb\x89\x17\x9b\x6e\x0a\x2b\xe1\x86\xee\xdd\xea\xb3\x2c\x7c\xfa\x02\xbd\x34\x8b\x2b\xa6\x07\x4e\xa1\x5e\x72\x0a\xf9\xe2\x19\xe6\xbc\x7c\x1a\x0c\x05\x62\x2c\xeb\x0b\x9f\xce\x44\x90\xd7\xb8\x3b\x14\x61\x99\xa1\x32\x2b\xe7\x5f\xe4\xf9\xc0\xe0\x99\x4c\x6a\x41\x6f\x56\x72\xe1\x89\x6f\x88\xa6\x6d\x4e\x08\x79\x75\xeb\xec\x26\xe5\xc5\x80\x33\x01\x7b\x70\xc5\xff\x30\x9b\x4b\xba\xbf\xf7\x73\x76\xb3\xf3\x9f\xef\xde\x9e\xb1\x52\xb8\xab\x0c\xfa\x95\xfc\x7d\x2e\xdf\xa4\xd4\xc5\x43\x98\x39\x96\xfc\xc6\x19\xa9\x6a\xc4\xab\x0c\xaf\xea\x94\x5d\x9e\xdc\x2e\x7c\x7e\x87\x12\xf8\xee\x79\xfe\xe8\xef\x2f\xc7\xff\x16\xbc\xf4\x42\x2f\xf5\x82\x60\x74\x30\x0e\x59\x9e\xf0\x1a\xe0\x7e\xab\xe0\x5e\x22\x2f\x72\x53\x72\x06\xac\xdc\x70\x9e\x76\x8c\x81\x28\x1c\x4a\x24\x81\xf0\xee\x61\x73\xc1\x50\x32\xb2\x02\xaa\xbd\xcd\xad\x69\xd8\x8d\x22\xb5\xfa\x99\x45\x22\x72\x76\x5b\x9f\xa5\x17\x59\x9a\x5f\x36\x36\xbf\x4d\x98\xad\x35\x46\x80\xc4\xdc\x9d\x58\xfd\x09\xbd\x53\xd4\x7b\x2b\x92\x74\x96\xb2\x32\x12\x6e\xd8\xe6\xe9\xac\xfe\x96\xdd\xdd\xdf\xe3\x37\xe7\x01\xc9\x67\x9c\xd1\xcc\x69\x5d\x66\xdf\xb2\xbb\xb0\x62\xd3\x22\x4f\xe2\xf2\x0e\x2d\x0c\x31\x13\x7c\x78\xbf\x3c\x94\x8f\x6c\xb2\x1d\x4e\xce\x0c\x70\xa3\x27\x6b\x4c\x15\x3b\x58\xd7\x0e\x93\xec\xcd\xfa\x17\xb6\xd3\x35\x4c\xbe\x48\xc1\x1b\xa1\x6d\x80\xc7\xca\xcb\xcf\x55\xe0\x58\xaf\xbe\xf4\x40\x13\x74\x23\x63\x0b\x0b\x27\x88\xc1\xf6\x3f\xd6\x54\xa4\x65\x34\xfe\xd9\xf7\x0c\x87\xff\xb7\xe7\xa6\xff\xb7\xb4\xfa\x6b\x56\x5c\xc4\xd9\xc7\xb8\x9e\x3b\x0c\xbe\x75\x26\x72\xf7\x7c\x81\x6c\x32\xf4\xb6\x75\x5d\xfe\xb0\x46\xd7\xe5\x8f\x44\xd7\x65\x9d\x25\xc9\x03\x0d\xaf\x1d\xb6\xe1\x7f\xd9\x68\x1b\xfe\x17\x6a\x4a\x52\x5c\x54\xac\xbc\xb6\x47\xf8\x60\x32\xe9\xcb\x1c\x00\xbb\x00\xb6\xe8\x43\x27\xb0\x99\x4f\xfc\xde\xf1\x85\xba\xd1\x72\xbb\x65\x04\x4c\x06\x41\x19\xaf\x80\xbd\x87\x7c\xf7\x66\x57\x8b\xfa\x0e\x4c\x8e\xe1\x8d\xf8\x7b\x50\x27\x95\x69\x08\x92\xd6\xec\xca\x82\x48\xf3\xb4\x25\xd0\x28\x99\x54\x6c\x15\xea\x9b\x22\x48\xa9\x68\xee\x75\x9a\x1c\x0b\xe7\xff\x43\xa5\xd9\x5a\x43\x90\x52\xc8\xff\x21\xcd\x32\x04\x18\x98\x63\x20\xec\xdf\xf2\xda\x0b\xad\x16\x45\xba\x7c\xe0\xa9\x35\x24\x5c\x2d\xc4\x47\x20\x3b\x2c\x94\x50\x31\xc2\x9f\xac\x1c\x5d\xfe\xa8\x17\x64\x84\x7c\xc5\x2b\x13\xbf\x43\x0f\xf9\x10\x2f\x18\x1c\x60\x8f\x80\x66\x68\x74\x15\x20\x44\x25\x0f\x9a\x20\x6c\x75\x79\x50\x6c\xdd\x17\xad\x67\xeb\xee\x0b\x8e\x69\x0c\x8e\xcd\xa1\x27\x6f\xd3\x4f\x0a\x85\x60\x28\xbb\x1a\x27\xc9\x97\xe9\xa7\x9e\x36\xdd\x4d\x58\x15\xb2\xaf\x16\x2a\x96\x8f\x39\x8e\xb2\x53\xbf\x58\xb9\x99\x93\xab\x45\xbd\xfc\x3d\x64\x34\x36\xcf\xac\x12\x77\x21\x09\x4b\x4e\xe4\xda\x96\x43\x69\xa7\xf7\x05\xb2\x7e\x60\xbe\xca\x5a\xb3\xde\xea\x27\xb2\x3d\x32\xd6\x2c\x44\xf9\x14\xcc\xb3\xac\x99\xda\xf3\xc8\x34\xec\x8f\xfa\xec\xf5\xd4\x4f\xea\x11\x07\xf1\x55\x59\xa2\xbb\x5f\x97\xc5\xd5\x47\xb8\x76\x89\x68\x0b\x70\x1d\xe7\x00\x42\x9e\x3f\xd1\x09\xa1\xfa\x09\x37\x7d\x7e\x3f\xd4\x21\xf4\x35\x98\xf4\x95\x85\xfb\xf9\xaa\xb8\x4e\xf3\xcb\xa3\x2c\x8b\x68\xaf\xa2\x28\x82\xeb\xe5\xcc\x27\x10\xd2\x89\x2c\xbe\x89\x80\x7f\x83\x3e\xe0\x8b\xd3\x20\xe3\x60\x5e\x17\x9f\xd8\x29\x9b\x2e\xcb\x2a\xbd\x66\x19\x89\x88\x20\x94\xf5\x75\xe7\x12\xde\xbb\xd7\x1f\xde\x61\xd0\xd6\x10\x1c\xb9\xa1\xbf\x2f\x7e\xcb\x85\xb1\xde\xa3\x58\xed\x1f\xf2\x0b\xef\x4b\xcc\xe1\x3f\xf7\xf7\x83\x95\xea\x58\xa4\xbb\x88\x92\x0a\xf5\x4d\xa6\x5b\xcc\xb1\xde\xb5\xeb\xa7\x18\xcd\xae\x84\xc6\x04\xff\x89\x23\x3f\x1a\x83\xbe\x3d\x50\x4d\x39\xd6\x26\x09\xd5\xf4\x75\xb8\xcd\x5e\x84\x68\xc5\x79\xb0\x32\xea\x20\x6b\xc9\x48\xc7\xf5\xe4\x09\x26\x2a\x8a\xa4\x38\xcd\x00\xea\xf5\xe8\x39\xed\x1b\x79\x81\xab\x21\x13\xe2\xfe\xde\xf8\x36\x27\x05\xc4\x0f\x38\x3d\x30\x28\x52\x0c\xc1\x8b\xc8\xae\xf6\xd1\x74\xe2\xa8\xe6\xc5\x82\x21\x58\x80\xe0\xf2\x81\xbd\x78\x2c\xe7\xc6\x6c\x37\x54\x07\x17\x0c\xad\xf8\x80\x38\xf3\x83\x34\xb9\x6d\x82\xa1\x9e\x05\x14\xba\xa0\xd1\x92\x30\x3d\xda\xbc\x0b\x77\x99\xa6\x0d\x5a\x0b\xa1\x3d\x96\x64\xb7\x1a\xe3\xa8\x8b\x07\x56\x73\x3a\xe7\xfe\x5e\xfd\x6e\x34\x8c\xb3\xf3\xba\x50\xab\x63\x24\xab\x72\xf4\x26\x24\xf9\xe9\xcc\x97\x4c\x4c\x3f\x61\x35\x44\x0b\x24\x78\xba\x69\x60\xa4\x91\xc4\xa7\x0e\x29\x10\xc3\x0d\x70\x10\x6a\x84\x82\x26\xb4\x10\xb7\x6c\x53\xc4\x53\x8f\x9e\x64\x41\xf0\x49\x26\xf2\x95\x35\xbb\x12\xaf\x7e\xc4\x1c\x48\x5c\x01\x71\x82\x28\x48\x04\x8f\x2d\xb8\x14\x75\x1a\x11\x85\xd0\x0c\x93\x2d\xea\x1f\x7f\x78\x7f\x7e\xf4\xe6\xfd\xc9\xe9\xe4\xdd\xd1\xc7\x91\x5e\x0f\xaa\xb1\x31\x0c\xab\x89\x41\x48\x2a\x54\x47\xc3\x35\x0c\x51\x30\x5c\xd7\x40\xb4\x5a\x66\x03\x2f\x4b\xbd\xb0\x10\x7f\xeb\xf8\x22\x63\x03\xaf\x2e\xbd\xb0\x9e\xb3\x38\x11\x3f\x2f\x8a\xe4\x4e\xfc\x9c\x15\x45\x2d\x7e\x96\x03\xaf\x4e\x3c\x11\x62\x68\xe0\xa1\x70\xc4\x6b\xba\xb4\x2f\x4d\x4c\x36\xdc\x0d\x95\x2b\xae\x8d\x8e\xe3\xb7\x74\xe6\xf2\x18\x37\x12\x1b\xae\x6f\x5f\xd2\x41\xc1\x97\xf6\x55\xf1\xa5\x2f\x7c\x9f\x7d\x7d\x53\x6e\x7d\xce\xc5\xf4\xbc\xd6\xb3\xb3\xc9\x13\xc6\x26\xe7\x19\x0e\xab\x9b\xd6\x8d\xe8\xf7\xf4\x46\xf4\xd8\x6b\x9d\xc3\x0f\xc1\x9f\x4c\x3f\x04\x4e\xa7\x1d\x7f\x6e\x39\xed\x98\xa0\x07\x70\x60\x0b\x89\x93\x45\xed\x0e\x5c\xfb\x43\xa2\x17\x24\x97\xcf\x8e\x75\x03\x1b\xae\x52\x70\x09\x79\x25\x2c\x69\x06\x1e\xd9\x59\x3a\xeb\x75\x5a\x2d\xb2\xf8\x6e\x20\x71\xf4\x5d\x8f\xb2\x09\xbb\x58\x5e\xaa\x6b\xdb\xb7\xec\x4e\x1e\x45\xde\x6a\xe5\xed\x75\xc0\x60\x3c\x71\xdf\x1b\x78\xc1\xe8\x70\xbc\xe7\x35\x8d\xd7\x34\x41\xeb\x92\x66\x5e\xce\xf4\xc1\x51\x94\xe9\xa5\xf0\x38\xe2\x85\x16\xc7\x7d\x0b\x66\xde\x55\x2b\x31\x44\xb6\xce\xcc\x10\x5e\x4c\x30\x8f\x73\xfd\xb0\x56\xde\x82\xcf\x9b\xb6\xef\x69\x15\x6b\x10\x2d\xb0\xd0\x5e\xfb\x22\x2e\xa5\x0f\xd5\x6a\xe4\xdd\xa5\x2c\x4b\xbc\xb1\x11\xea\x4a\x95\x6b\x42\x49\x83\x1c\x43\xfa\x89\xdd\x49\x9d\x49\xa9\xc6\xe4\x94\x94\xa3\xca\x27\xbe\x24\x6a\x7f\x40\x84\x47\x30\xdc\x04\x05\xaa\x49\xa1\x8e\x23\xbe\xbe\x2e\x4a\xd4\x56\x21\xc0\xba\x28\xb1\x6e\x14\x29\xd4\x65\x92\x18\xa5\x73\x05\xdc\x04\x7d\x49\xd8\xfc\xae\xe6\x61\x99\x09\x95\xf4\x22\x67\xdf\xb2\xbb\x9b\xa2\x4c\xaa\xf6\x2b\x37\x9c\xbb\x03\x68\x89\x44\x4d\x85\x1b\x4d\x13\x4e\x60\x7c\xd7\xcc\x8c\xb2\x5d\x97\x22\xf9\x24\xae\x63\xb0\x61\x0f\xb5\x9d\xae\x38\xd5\x75\x82\x1e\xa4\xf6\x30\x8a\x60\x9b\xe2\x4b\x70\xfc\xd4\xfc\x00\x2a\x58\xa5\xd5\xf7\x69\x59\x2f\xe3\x0c\x75\xf1\xc5\x19\x3c\xf0\x3c\x71\xb7\xbe\x85\x86\x06\x8e\x36\x07\xf2\x87\xf4\x71\x31\x30\x70\x4f\xf3\x2a\x4d\xd8\x5f\xcb\x62\xb9\x78\x75\xe9\xdc\x01\xc1\x80\xa7\x93\x9a\xf5\x46\xa0\x43\xe8\x02\x52\x5e\x7c\x24\x0e\xaf\xe3\x3a\x1e\xac\x3e\xc9\xd9\xd1\xf0\x7d\x63\xda\x7c\xbe\x57\x15\x5e\x9d\x08\x43\x80\xa9\x10\x0f\x53\xf4\x47\xe2\x5e\xf8\xd2\x99\xbb\x9a\x20\xdd\xd1\x09\x35\xaf\x96\xab\x52\xa7\xbd\x5a\xd7\x2b\x58\x6f\xc6\xe2\x34\x6a\x0b\x2b\x96\x0b\xe3\x75\xe2\xeb\x02\xfe\x88\x3b\x12\xfc\x86\xad\x21\x46\xb4\x8a\x04\x89\xb6\x9c\xa8\x87\x87\x81\x36\x7a\x37\xb9\x3a\x5d\x09\xe9\x95\xb4\xac\x17\xfa\xef\x0e\x10\x81\x47\xa3\x6a\x6d\xf3\x8b\xd4\xf2\x4c\x78\x4c\xc0\xde\xf8\xa2\xc6\x01\xe9\x80\xe9\xa6\x49\x76\x07\x02\x80\x75\x33\x66\xe2\x4c\xd8\xc0\x93\x99\x22\xee\x8d\xe2\x7a\x53\x02\x6f\x31\x5e\x57\x4b\x60\x35\x27\x4a\xca\xfd\xd9\x76\x96\x1b\x9c\xc4\x5a\x8e\x65\xbb\x03\x89\xbb\xec\x91\x3b\x18\xb5\xcd\x0e\xa6\xb4\x3a\xfd\x43\x3c\xe5\xae\x7b\x1d\x10\x05\xf3\xb8\x4e\xaf\xc9\xf0\xfd\x16\x79\xc6\x2f\xe0\x59\x96\x24\xd8\x38\x1e\xda\x48\x1e\x7e\x21\xfb\xd6\xf6\xc3\x80\x83\x25\x7d\x87\xeb\xb7\x2d\xfb\x76\xf0\xa2\x36\xb7\xf9\xfb\x35\xdc\xe6\x1f\x08\xb7\xd9\xe2\x61\xff\xb8\xa5\xc7\xd7\x3f\xba\x3d\xbe\x76\x79\xad\xfd\x93\xc3\x6b\x2d\x8c\x14\xaf\xa3\x03\xbe\xb2\x40\xdb\x61\xeb\x1d\x8f\x19\xeb\x2c\xe7\x1d\x1e\xb2\xb6\xb1\x9c\x77\xf2\xdb\xf0\x5c\x61\x30\xdc\x2d\x2f\x0a\x8e\x79\x47\xd2\xa7\xfc\x23\xda\xab\xb1\x6f\xe6\x0b\x41\x64\x87\xcf\xe0\x43\xc7\x32\x70\x3f\xc3\xfc\xfe\x21\xcf\x30\xbf\x77\x3f\xc3\x00\x85\x38\x8a\xec\xcd\xd0\x3f\xa2\x0e\x88\xc9\x0c\xfb\xd6\xec\x06\x8e\x77\x29\x7a\xed\xa0\x8b\x3d\x5c\x4d\xb0\xc2\x01\xfe\xd9\xc0\xcb\x5b\xc2\x5f\xc2\xc3\xab\x44\x4f\x9e\x3a\x4a\xd7\xb5\x05\x11\x22\x67\xa2\x12\x94\xc3\x49\xa8\x7f\xb2\x46\xba\xac\x5c\x10\x10\x81\xb3\x21\x05\x82\x43\x33\x4d\x6e\x35\x4b\xe9\x16\x53\x4a\x58\x21\x2f\x52\x1d\x51\xe9\x6b\x84\x85\xd7\xa6\x3c\x4c\x35\xab\x5d\x17\xad\xd6\x17\x46\xc9\xce\xc4\x12\x15\x47\x20\xe3\x11\xf7\x1d\x18\x68\x94\x71\x5b\x9c\x15\x49\x15\x6f\x14\x3a\x01\x5f\x3b\xda\x62\xf6\x60\xb5\x6e\x50\xdb\xc2\x79\xd4\x25\x32\x50\x14\x86\x59\xae\x2e\x51\x04\x30\xa8\x05\xc8\xf0\xa8\x71\xe3\xad\xf1\x5c\x41\xa5\x7a\x5a\xaa\x8d\x32\x7f\x9d\x05\x3c\xa2\xfe\x34\x44\xd5\xa6\x17\x2d\xfd\x88\x74\x6c\x3f\xf1\x75\xb4\x8d\xaf\x26\x42\xf7\x5d\xf5\x91\x14\x6b\x3d\x6b\xd8\xf5\x20\xe3\xa8\xf1\x26\xe6\x60\x74\x20\x45\xa8\x4d\xbb\xb0\x56\xdc\x81\x30\x18\x23\x1b\x60\xdc\x9f\x16\xf9\x34\xa6\xfd\xd7\x0d\xd2\x99\x55\xa6\x6a\x8e\x39\xdf\x7e\x9e\x3b\xf0\x26\x0e\x7e\x8d\xb1\xc0\x10\x1a\xad\x51\xd7\x2f\x78\x6b\x07\xfd\x5f\xac\x51\xd7\xc5\x36\x0e\xba\x51\x8f\xf1\x68\x26\x05\xfd\xc6\xa2\x33\x35\xb0\xed\xfd\xd6\x84\x38\x50\x4e\x39\x49\x47\x41\x19\x0c\x35\xe8\x5f\x17\x59\x5c\xa7\x19\xf3\x83\x10\x8f\x0d\xdd\x32\xb2\x7f\x62\xfc\x05\xc1\xd2\xbb\xc5\xfd\x12\xc5\x6b\x38\x2f\x84\xfd\xb9\xa8\xa0\x09\x9a\xb0\x2d\xf0\x11\x54\xdd\x0b\x5d\xeb\xd6\x14\x89\x57\xe6\x3b\x92\xc0\x48\x32\xdd\x64\xb5\x9b\xe4\x5b\x3e\xb8\xb1\x44\xaa\x82\xa2\xd3\x43\xb1\x8a\xae\xc9\xd2\xc1\xfa\x8d\x47\x32\xb9\xab\xe8\x03\x5d\xe7\x16\x0b\x5d\x68\xca\x37\x3c\x19\x45\x19\x0a\xfa\x14\x07\x7c\x18\x06\xe3\x50\x15\x44\x07\x46\x98\x88\x18\xf8\xa7\xe8\x31\x02\xe0\x4d\x56\x64\x98\xab\xc7\xb1\x18\xd7\x8e\xa4\x7c\x91\x93\x3b\xf2\x41\xe3\x84\x65\xb7\xe8\x24\x0c\x50\x5b\xb2\xc1\xef\xfa\xda\x70\xc7\x3d\xcc\xe6\x9e\x32\x46\x19\x9b\x6f\x8c\xa5\xa0\xc1\x8d\x95\xd0\x84\x16\x7e\xf6\xa0\x38\xc4\x22\x1c\x3b\xb0\x84\x81\x63\xfa\xba\x7d\x42\xa3\x6f\x48\x7c\xf2\xa0\xf7\x7a\x52\x19\x3e\x92\xc1\xce\x50\xeb\xbd\xd7\x23\xf9\xa4\x0a\xb2\x21\xa8\xd4\x43\x85\xb5\x02\x4f\x27\xe4\x99\xc7\x1c\x44\x52\x91\x91\x63\x76\x07\x9c\xda\x91\x53\x4e\x38\x72\x20\x29\xeb\x74\x4a\xc8\x79\xdd\xd2\xc5\x78\xc4\x09\x4f\x3e\xe8\x93\x72\x60\xe0\xe3\x54\x08\xf9\xc2\x88\xe0\x0a\x5a\x56\x73\xb9\xb1\x48\x26\xe0\xc3\xf2\x6a\x59\xe2\xbe\x2c\x59\x7e\x54\xb2\x37\xb9\xe5\x3d\xc7\xf1\x94\xef\x2c\x23\xe3\x65\x05\x43\xb8\xcd\xf9\xc8\xab\xf6\x27\x82\x23\x0f\x57\x4e\x5a\x88\xe2\xde\x6f\x9d\xbb\x5b\xe6\x75\xe0\x28\xb2\xed\x06\xd3\x1c\x29\x34\x6d\xd0\x41\x31\xc8\xb6\x68\xef\xbc\x55\x3d\x2f\x8b\x1b\x70\x4b\xa2\xaf\x5a\xbe\xf7\xb7\x62\xb9\x33\x8d\xf3\xbc\xa8\x51\x21\xf4\x0e\xf9\x6c\x60\x54\xab\x1d\x50\x5c\x45\x0f\x46\xfc\x0f\x62\x81\x57\x01\xaf\x3d\x2e\xda\xe0\xaa\x63\x64\xcc\x87\x53\xe7\x51\xa1\x03\x9e\x89\xd7\xf6\x17\x06\x95\x47\x07\x17\xe8\x64\x34\x1d\xeb\x00\xc5\x5b\xd0\x52\xd7\x98\x94\xcb\xbc\x5f\x4d\xe7\x2c\x59\x66\xec\x43\x3e\x25\x4e\xee\x04\xa1\x70\xcf\x13\x27\x51\x9b\x56\x99\xf6\xce\x48\x38\x21\xa0\x2d\x06\xa7\x01\xda\x13\x5a\x77\x65\x51\xb2\xeb\xb4\x58\x56\xa1\xb0\xd2\xbf\x36\xaf\xe7\x7c\xf6\xac\x2b\xb9\xf0\xff\x11\x82\xa6\x45\x4b\xcf\x85\x78\x05\x71\xeb\x8a\x80\xa5\xc8\xae\x64\x1d\x84\xd5\x31\xbd\x90\xfa\x81\xb0\xd3\xa7\x06\x75\x11\xc6\x76\xe5\x5b\x53\xe9\x99\x98\xcc\xc4\x9b\xd9\x7b\xc6\x12\x96\x48\xa6\x02\x27\x4d\xe3\x2d\x42\xa3\xca\xd2\xa6\xeb\x55\x02\x26\x99\x4a\xb4\xb9\x30\xfb\xae\xa7\x55\xa7\xd9\x23\x28\xb1\x47\x13\x53\x99\xa9\x87\x60\x68\xb5\x37\xcd\x58\x5c\x4a\x6f\x96\x6d\x70\xb0\xf0\xf8\xd2\x28\x9a\x21\xee\x1e\x5d\x8d\x3d\xc2\x42\xc8\x4b\xd5\x91\xbc\x9b\x34\xcb\xde\x40\x03\xda\xc3\x25\xd8\x8a\x62\x55\x81\xea\x72\x3f\x29\xae\x84\xa7\xd3\x3e\xb8\x75\xf4\xad\xe6\xfa\x95\xb0\x43\x24\x57\x4f\x5a\x68\x51\x82\x14\x01\x31\x6f\x15\xb1\x50\x95\xe7\xb6\xde\x3d\xc1\xea\xba\x5f\x97\x71\x8e\x91\xce\xcf\x0b\xdf\x4b\x71\xe7\x0d\xaf\x5d\xec\x03\x53\xbd\xb9\x76\xf6\x3b\x49\x13\xab\xdb\xdd\x4e\xff\x0c\x09\xc6\x5a\x61\xb6\x94\x06\x8f\xb6\x51\x30\x37\x05\xd9\xed\x6a\x9e\x49\x0c\xd6\x80\x2c\x4a\x36\x51\x6e\x38\x3b\xa1\xd2\xdc\x1d\x34\xcd\x00\x9a\xc7\x95\xb4\x87\xdd\x50\x57\x52\x5c\xad\x47\x1b\x98\x01\xa1\xd3\xfe\x5b\x94\x20\xaf\x93\xe5\x3a\xf4\xc1\x0f\x4d\x7d\xf0\xad\x04\xb9\x92\x25\xd8\x24\xc4\x5d\x94\x0c\xdd\x75\x6d\x52\x19\x97\x87\xed\xa6\x70\x04\x84\x26\x5b\x03\xd3\xae\xf1\xf5\x87\x77\x9b\x42\x8a\xeb\xc9\x5c\x27\x85\x55\xb4\x8a\x4a\x03\x67\x65\x71\x85\x07\x5e\x9a\xd7\x45\xb4\x6a\x86\xfc\xaf\x62\x96\x54\x82\x1e\x02\x11\x42\xc4\x00\x0b\x10\x88\xe0\xb1\x06\x4a\x0d\xd2\x1a\x18\x32\x40\x6b\x6b\xe2\x83\x43\x01\x74\xb9\x40\x45\x9a\x85\x15\xff\x5e\x84\x45\xc5\xfe\xf2\xd3\x93\xff\xb2\x0d\xed\x15\x68\x80\x4a\xbc\x69\xbe\x64\x0d\x72\x4b\xbc\xfa\x91\xca\x1f\x87\xbc\x38\xf9\x56\xba\x57\x1c\xce\xb0\x91\xe9\x0a\xb3\x45\xc4\xb3\x2b\xd9\xaf\x81\x62\x52\xd5\x78\x0f\xd4\xaf\x10\xba\x3b\x80\xff\x43\x39\x88\x03\xc5\x65\x12\x4f\x71\x84\xa5\xd3\x53\x32\xd0\x3f\x0d\x35\x2d\x33\x40\xd8\x16\x94\x53\x93\xbc\x9f\x29\x8c\x4b\xc7\x7b\x9a\x7a\xb0\xfb\x5f\xed\x29\xd5\x7e\xad\x70\x50\x99\x8e\x47\x17\x8b\xce\x74\x9c\x93\x2b\xa2\xd6\x60\xde\xae\xd6\x5c\x34\x9e\xd6\x3b\x7c\x10\x48\xd1\x9d\x62\x59\x57\x69\xc2\x76\x8a\x19\x5c\x33\xf0\x7c\x4b\xf3\xcb\x9d\x45\x59\x4c\x59\x05\x02\x81\x27\x0e\xff\x06\xea\x6d\xbb\x09\x2f\x59\xed\xf0\x2e\x23\x3d\x31\x2e\xb3\xac\x09\x89\x7b\x70\x97\xaf\x04\x50\xc2\x16\xeb\xba\x55\x95\x2d\x3f\x50\xe7\x26\xfa\x09\x13\x2c\x61\x7f\x22\xaf\x12\x82\xd7\xc0\xfb\x05\xc6\x3e\xe9\x80\x18\x3a\x93\x0d\x3f\x1b\x28\x9e\x77\x73\xd7\x8e\x9e\x20\x67\x1e\x96\x4c\x88\x07\xe5\x8d\x13\x75\xd3\xa5\x7c\x40\xdd\x34\xb7\xdb\xa5\xfa\x84\x1f\x6d\x36\x8f\xb3\xd9\x9f\xed\xed\xdf\x3a\x18\xa1\xdf\xd8\xa6\x6d\x33\x04\x8f\xb2\x33\xb3\x8d\xbb\x7e\x47\x8c\xbb\x9c\xec\xc4\xa3\xf7\xaf\x79\xb0\x23\x38\xd9\x8f\xd3\x38\xcb\x76\xfe\xf5\xdf\x77\x8a\x7c\x27\x86\xd5\xb6\x73\xc1\xf8\xf6\x13\x45\x58\xe2\xd9\xac\x81\x38\x27\xf5\x19\x8a\x07\x9b\x86\x08\x1f\x44\x1b\x66\x57\xb5\x6f\xe1\x17\x8e\x3c\x52\x83\x37\x0e\x02\xb2\xa4\x1f\x57\x9f\x2c\x8e\x95\x75\x6d\xf5\x07\x55\x69\x56\x82\x15\x83\x66\xf9\x23\xeb\x83\xb2\x58\x4d\xe5\xa4\x68\x0f\xa8\x8b\x53\xab\xa7\x82\x50\x3d\x0d\x77\xfa\xfd\x7e\x20\x87\xf1\x61\x94\x24\xa5\xf7\x26\x22\xa1\xea\x38\x15\x08\x6f\xb0\x05\x69\x31\x6e\x21\xa3\x87\x92\x84\x8e\xe3\x7d\x2b\xaa\xd4\xe1\x3b\x7d\x83\x5a\xcf\x03\xd8\x90\xff\x69\x37\x21\x27\xcd\x71\x50\x36\x9b\xad\x70\xdc\x86\xda\x14\xd2\x71\x15\x72\x50\xc8\xdf\x9b\x14\x72\xb3\xf3\xf6\x35\x34\xd0\x71\x03\xb2\x19\xa9\x3f\xad\x61\xa4\xfe\x4c\x18\xa9\xf6\x15\xc2\xa6\x7c\x54\xf2\xf9\xc4\x12\x3b\x56\x2c\x93\x4e\x26\xd8\x15\x0d\x26\xa3\x44\x16\xd2\xbb\x36\xcb\x5e\x09\x7f\x51\x15\x43\x8f\xc9\xc1\x80\x78\x67\x0b\xdc\x7c\x8e\x16\x34\xa2\xfc\xb7\x23\xd6\x0c\x88\x79\xe0\x3b\x58\x11\x40\xfc\x49\xb0\x69\x08\x1c\xe1\x40\xfa\xb3\x34\x4f\x44\xdb\x6f\x72\xb4\xca\x93\x5e\x13\x04\x78\x63\xf9\xbc\xfa\x3f\xde\x5e\xab\xb7\x6f\x12\x74\xd2\xe0\x26\x70\x28\xe5\x32\xb5\x9a\x85\x21\x8c\x78\xb1\x34\x45\x42\xea\x42\x23\x55\x23\x37\xca\xb8\x2b\x56\xef\xc4\xca\x97\xc2\x4e\x5d\xec\xc4\x3b\x79\x91\xef\xf3\x26\x50\x57\x7a\xe7\x66\xce\x50\xde\x2d\x81\xd2\x6a\x27\xce\x4a\x16\x27\x77\x52\x12\xfe\xfa\xc3\xbb\xbe\x8e\xde\x83\x2a\xd6\x8e\xe3\x89\xbc\xb4\x76\xc9\xe2\x8e\x33\x16\xcb\x88\x29\x82\x19\x9c\xea\x24\x96\x48\xf9\xb2\x2f\x32\x89\x80\x4d\x9a\x2c\xa1\x5a\x88\xc1\x2c\xae\xe7\x63\x91\xe5\xcc\x8b\x3a\x9d\xc1\x63\xec\x6b\x03\xda\xd9\x12\x48\xd9\xb5\xfe\xc9\xaf\xc6\x05\x5b\x87\xab\x5e\xfa\x93\x75\x42\x76\x30\x50\x4c\x6e\x39\x86\x24\x39\x58\x65\x2c\x8f\x1c\xb6\xa1\x9d\x9e\x86\xec\x97\xfc\x75\x83\xd8\x34\xf6\x28\xa2\xb5\x28\x2a\xeb\xb8\x6f\x23\xd7\x46\x74\xaa\x50\x46\xfa\xba\xc6\xe8\x46\x15\x89\x75\x62\x6e\x4d\xb1\xb8\x7c\x2b\xea\x91\xe1\x3e\x8e\xdf\x6f\x1a\xfb\x12\x40\xdc\xf0\x94\x97\xac\x0e\xe5\xa3\x5d\xb0\x92\xbf\x50\x71\x19\xb3\xd7\x29\xff\x6a\x02\xb8\xcd\xa9\x4f\x04\x94\x0f\x3e\xf3\x5d\xa7\xf2\xf6\x5e\x3e\x14\x6b\xf0\x6b\x5f\x22\xb6\x3d\x6d\x3b\x4e\x37\xc7\xa1\xdb\x96\x25\x3c\xea\xd0\x6d\x9f\xdd\x8e\x33\xd7\x16\xbc\xd9\xe7\xa1\x7e\xb0\x74\x9f\x86\xf8\x5e\x84\xf4\x52\xbb\x4b\x10\x21\xf6\x7d\x27\xaf\x7f\x2d\x1e\x7f\x5d\x04\xfe\xac\xb8\x62\xf5\x9c\xdf\x59\xee\x8a\xe5\x4e\x92\x26\x3b\xd3\x78\x59\xb1\x44\xde\x67\xea\x62\xa7\x64\xfb\x58\xe3\x0e\xbc\x66\xec\xa4\xb5\x10\x34\xb0\x64\xe7\x62\x59\x0b\x7d\x49\x9e\x7c\x13\x57\xe2\x0d\x86\x25\x20\x83\xa3\x24\x3f\x74\xde\x6b\xa0\x67\xfa\x11\xcf\x30\x2f\x11\xcf\x4f\xd0\x65\xf1\xa8\xb7\x8e\x58\x69\xc3\x6d\xcc\x6a\x29\xbd\xb5\x5a\x19\x6e\xa3\x7b\x67\x37\x13\x6d\xa5\x76\xa7\x9f\xe7\x86\x5d\xef\x7c\xf2\x7d\x0f\x49\xf8\x06\xc5\x0e\xe5\xc8\x4a\x3d\xa7\x6d\x73\x54\xc1\x81\xa8\x1e\x23\xa5\x7e\x25\x79\x15\xdd\xea\x40\x33\x1e\xc6\xdc\x4c\x84\x30\xc2\x1f\xae\x3b\x72\x82\xd5\xe6\x1b\x14\x79\xf2\x5a\x7f\x99\x7a\x80\xd0\x0c\x0b\x1a\xbc\xcb\x3c\xae\x39\x6b\xaa\x98\x93\x0b\xc6\x72\xb5\xa8\xbd\x8e\x3b\xe4\x67\xb3\x58\xae\x29\x69\x17\xd3\xe7\x41\x8b\x4f\xfa\xd9\xce\x20\x49\x74\xb6\x3c\x81\xe0\x59\xeb\xb1\xde\xa2\x5c\x57\x4c\xf3\x64\xda\xfc\xe4\xf6\x6b\x1f\x41\x5f\xc8\x5f\xd2\x56\x97\xbd\x8e\x63\xcc\x21\xd2\xea\x78\xd0\x72\x1e\x42\xe4\xcd\x86\x3e\xd7\x48\xbb\x06\x75\x18\xbd\xfe\xf0\x2e\x5c\x61\x4c\x64\x8b\xc0\x70\xda\x89\x6a\x45\x40\x72\x9d\x81\x53\xaf\x6d\xc3\xa0\x60\xe4\xc1\x9d\x6a\xdc\x28\x7d\x31\x65\xcf\x87\x15\x89\x30\xb8\x90\xa5\x6e\x3e\x42\xd3\x1a\x12\xe3\x24\xf9\xca\x52\xd8\xd2\x37\xa4\x70\x23\x5d\x00\xe2\xca\xcf\x3b\x3c\xe0\x9e\x56\x3b\xaa\xb4\x38\xdf\x60\x58\xd0\xff\xdb\x0e\xbf\xf8\xc4\x59\x56\xdc\x00\x59\x08\x9a\x90\xdd\xa6\x2d\x52\xfb\x05\x46\x02\x55\x0b\xd5\x48\x88\x58\x20\xdd\xe3\xd1\x49\x0e\x81\x48\xcd\xf2\xc7\x50\x45\x7a\x60\x77\x90\x48\x79\xb8\x7b\xeb\x89\xc9\xeb\x0f\xef\xb6\xa1\x24\xf4\x49\xfe\xc1\xcc\xec\x2f\xc1\xa5\x7e\x09\x2e\xf4\x0b\x51\x81\xd6\xd3\xaf\xcd\x37\xea\x17\xca\xd5\xa6\xa5\x41\xb8\x23\x72\xd0\x77\x30\x07\xfc\xbf\x6f\x52\x56\xc6\xe5\x74\x7e\x47\xd4\x6a\x1c\xac\x01\x5e\xa5\x9c\x8a\x32\xb3\x1c\x8f\x22\xbc\x08\x5f\x13\x77\xfb\xd0\x08\x38\xe8\x62\x54\xad\x46\x79\x99\xbc\x28\x92\x3b\xa9\x1c\x5a\x29\x8f\x97\x0e\x8d\x9d\xb6\xc2\x8b\x64\x4a\xba\x10\x75\x68\xb6\x3c\x90\x43\xb9\x5e\xc3\xd5\x19\xcf\x63\xc8\x0a\xc9\x07\xa5\x6d\xb9\x8b\xdd\x35\xdc\x45\x37\x9b\xd0\xbd\x33\xd5\x1a\x59\xbb\x3b\xaf\xb7\xb3\x2e\x35\xcf\x6c\xeb\xa5\x0a\x95\xfb\xbb\x6c\x4f\xe1\xb6\x4d\x2c\x38\x6d\xc7\x8b\xe8\x0c\x44\x44\x4f\x7e\xb8\xdd\xe6\xe3\x1e\xbc\x2b\x56\x4f\x1c\xd6\xa2\x6b\xc5\xe5\x92\xcf\xda\x6c\x74\x8a\x19\x0f\xb0\x67\x35\x8d\x4f\x6d\xcf\x25\x4a\x5b\xfa\x19\xd1\xa6\xde\xce\x50\x95\xd6\xa7\x4c\x15\xdc\x3e\x5a\x1e\x1a\x35\xd8\x28\x3c\x2d\x16\x76\x7b\x6e\x47\xa1\x6a\x4e\x30\x5a\xff\x36\xc6\xc3\xeb\x5e\x20\x8c\x3c\xf0\x47\xf1\xdb\x7c\x50\xf8\x75\x8c\x73\x49\x82\x8d\xe6\xa1\x8d\xe7\xa1\x8d\xe8\xa1\x8d\xe9\x73\x1b\xd3\xe7\xad\xb1\xb4\x31\x7d\x6e\x63\xfa\xdc\xc6\xf4\xb9\x8d\xe9\x73\x1b\xd3\xe7\x7f\xfa\x32\x1c\xfa\x03\x25\x44\xa8\x35\xbf\x91\x5f\x47\xe2\xb6\x89\x59\x17\x21\xfe\x45\xb8\xf9\x0d\xfc\x7a\xa7\x99\xeb\x17\x7c\xaa\xa9\x18\x0d\x57\xb2\xc1\x32\xb8\x65\xce\x7b\xd0\x86\x89\x93\xc4\x6d\x44\x7b\x38\x99\xf4\x49\xa6\xf6\x28\xd8\x61\x74\xcb\xe1\xcd\xfc\xc7\x9a\x0b\x4b\x87\x54\x6b\x4b\x59\x20\x38\xa8\xcb\x34\xf9\xba\x68\x9b\x18\xf7\x45\x86\x60\xe4\xea\xb8\x0d\xc1\x53\xd7\x58\x4a\xff\xde\xb6\x94\x76\x5b\x29\xff\xc1\xb6\x52\xae\xef\x16\xec\xc3\xac\xdd\x1c\xa6\x0b\x67\x49\x0e\xcf\xb0\xe8\x8a\x17\x32\xba\x3c\x2a\x71\xca\x40\x5d\x2a\xbd\xe3\x47\x51\x1b\x1d\x48\x36\x0d\x97\x23\x9b\x9e\xd8\x6b\xc2\x65\x28\xfd\x67\x65\x28\xad\xcf\xa3\xc8\x26\x3b\x7d\x9d\x87\x33\x19\x57\x73\x56\xa6\xff\xb4\x38\xeb\x03\x3e\x83\x32\x6b\xa3\xc9\xfb\x73\x07\x4d\x88\x27\x1b\xac\xde\xc3\x78\x02\x8b\x17\x68\x81\x0d\xa3\x72\xc2\x78\x42\x6d\xd8\x5a\x80\x34\x73\xa3\xd5\xf9\x1f\xdc\x56\xe7\xfc\x84\x8d\x6c\x62\xdb\xba\xea\x77\xf9\x64\x7e\xee\x74\xca\xdc\x36\x35\x8c\x6c\x62\xed\x30\x47\x34\x8a\x2a\x09\x66\x77\x49\x05\xb2\xd6\x2d\x02\x3f\x08\x5a\x7e\x11\xaa\x0e\x38\xe2\x0f\xc1\xf1\xf8\xfd\xdc\x41\x28\x0d\x65\x75\xad\x98\xcb\x39\x6e\x10\xba\x0a\x7e\x9e\x88\x53\x89\x3d\x44\x43\x14\x79\x59\x5c\x1e\xc7\xd3\x39\x93\x8f\xbc\xa2\x08\xdf\xf8\xf8\xb3\x3f\xe5\xd9\xf2\xfa\xae\x3d\xcb\x58\x9e\x59\x15\x51\x72\x99\xb7\x5e\x6f\x70\xe2\x5a\xb2\x3a\xc2\xdd\xe5\x07\x60\xee\x80\x86\xd6\x6a\x39\x77\xda\xdf\x1b\xe6\x64\xc7\x5a\x9a\x2e\x9f\xcf\x88\x7c\x46\xdb\x93\x1d\x9b\x1e\x05\xf0\x55\x93\xca\xab\x41\x7a\x4b\x6c\xcd\xaa\x76\x49\xe9\x7e\x53\x02\x4a\x9f\x9c\x70\x75\x92\x6f\xb4\xd1\x76\x26\xe9\xe9\xcc\xdf\x35\xe6\x33\x58\x99\xde\x14\x36\x0a\x65\x2c\xef\x3a\x01\x59\x2d\xd2\x70\x85\xba\xdd\xb5\x1a\xa3\x6f\x8a\xf2\x75\x79\x1d\xc2\x8d\x5b\x3c\xa3\x47\x70\x27\xad\x76\xd2\x2b\xe1\xa4\xc7\x0b\x1a\xea\x17\x3b\x18\xe2\x45\xf2\xfc\xe4\xdd\xc7\xb7\x47\xe7\x27\x67\x32\x56\x88\xf2\x55\x4e\xd8\x15\xe9\x42\x42\xb0\x25\xa1\xc1\x77\xa0\x37\x2d\x76\x83\xae\xb4\xa4\x5f\x09\xaa\x9a\x8e\x49\x9b\x1c\xc6\x09\xcf\x48\x1d\xd2\x6f\xe1\xec\x9b\x37\x55\xa5\x17\x19\x75\xcf\xa4\xd2\xc0\x07\x85\x75\xf2\x0a\x18\xc5\xfb\x0b\xfc\x36\x81\x2a\x48\x2f\x68\x88\x85\xa9\x36\x1a\x37\x8d\x58\xad\x3d\x26\x14\x3c\x6c\xc7\x65\x5a\x07\x44\x9a\xb5\xd2\x8d\x21\x26\x87\x6a\x85\x50\x05\x12\xe3\x3d\x19\x33\xc0\xdc\x12\xb0\x14\xa6\xa9\x04\x51\x74\xde\x56\xe4\xd3\x92\xd5\xcc\x42\xbd\x03\x73\x87\x0c\x91\x1a\xc4\x1b\x08\xe8\xd1\x37\xcd\x6f\x55\x73\x20\xdd\x73\xd8\xb1\x97\x4c\x78\x9e\x22\x8e\x0b\x59\x1d\xa7\x19\xb1\x32\x9e\xc7\xd5\x3c\x58\xf1\xff\x85\x27\x5f\xe1\x0d\x4f\x87\xd1\x87\xbc\x29\x71\x51\x18\x75\xb8\x2e\x44\x48\x45\xca\x6c\xd1\x8c\x6d\xbc\x29\x9e\x4d\x91\x46\x7f\x58\xb0\x32\xd6\xfe\xc5\x30\x3e\x24\x96\xef\x0b\x5f\x89\x66\xff\xc2\x04\x7b\x12\xc9\x08\xc9\xad\x3e\xfa\x02\x42\x49\x76\x34\x04\xc6\x61\x16\xf9\x21\x35\x47\x13\x00\xa7\xa6\x88\xc8\x72\x56\x60\x09\x90\xd6\x76\xa7\x91\x1e\x14\x27\x8f\x1f\x0d\x57\xd8\x50\x12\xf0\x47\xf9\xcf\xad\x5d\xbe\x73\x65\x22\xc4\x7b\xe9\x88\x90\x1c\x51\x1c\xe4\x7e\x11\x51\xf6\x21\xa6\xb4\x0a\x9a\x73\x7f\x6f\x18\x4c\xaa\xe8\xc5\x0e\x82\x22\xdf\xa8\x94\x58\x0f\x1b\x04\xb6\x08\xc7\x57\x89\xde\x84\x0b\x81\x76\x1a\x08\xf8\x2d\x60\x31\x15\x32\x5c\xac\x90\x0e\x76\xd0\x3a\xe2\x5f\x23\x54\x3e\xe9\x50\xa0\x09\x6b\x4c\xa5\x8d\x0e\xa4\x3e\x5f\x3d\x2f\x30\x14\x2b\xc6\xd9\x86\xe8\x5d\x90\xa8\x62\x76\x5d\xd6\xf3\xc8\x8e\x51\x3e\x54\x9e\x46\xf8\x19\x01\xec\xba\x2f\x03\xc3\x6a\xab\x9a\x34\x3a\x44\x3b\x55\x30\x58\xdd\xdb\x0b\x56\xbc\xc8\x28\xdd\x3f\x1c\x13\x54\x52\x15\x44\x1c\x1b\xb6\x3a\xc1\x0f\xe2\x50\x51\xd4\xe4\x8c\xe5\x09\x1e\x0f\x95\xed\xac\x8f\x46\xe1\xde\x05\x7a\x33\xd2\x19\x63\xbb\x12\x77\x69\xed\x41\x65\xdc\xef\x72\xf0\x67\xd7\xdc\x42\x58\x06\xe8\x0e\xe7\x71\x65\x07\x5f\x97\x5b\x0b\xee\x41\xbe\x1e\x78\x08\x5d\x25\x61\xbd\xfb\x7b\x7a\x82\x41\x49\x67\x2c\x82\x0d\x47\x42\x47\x9c\x02\x95\x63\x3a\xac\x17\x4b\x29\xb1\x15\x9e\x5a\xfa\x85\x7d\xe2\x20\x43\x58\xd2\x3b\x76\x04\x35\x2e\x30\xdf\xdf\x85\x8f\x0c\x97\x3a\x9c\x12\x42\xb7\xf5\xea\x2c\x83\x07\x57\x0e\x45\x40\x25\x5a\x8a\x08\x5a\xcf\xf9\xba\xed\x25\x4d\xb3\x73\xe8\xa7\x42\xf0\x6f\xf2\xf5\x41\x30\xb6\xf8\x93\x82\xdc\xdf\x8f\xc6\xb8\x87\xc5\x86\xb9\xa6\xce\x5d\x86\xdf\x5b\x16\xd2\xd2\xa1\x6f\xb4\x12\x1e\x63\x0e\xda\x1b\x5b\xeb\x84\x39\x9b\x07\x26\x9a\xec\xb4\x83\x30\x33\x1a\xe5\x1b\x4f\xdb\xd4\x63\x96\x30\x0a\xa7\xaa\x65\xa6\x16\x23\x69\xb4\x69\x1a\xd7\x1c\x6c\x8b\xde\xd6\x98\x81\xb5\xbf\x43\x89\x92\x62\xe2\x98\x71\x85\xc7\x2c\xff\xb2\xe3\x33\xcb\x25\xa3\x6f\xae\x26\xd5\x20\x70\x45\xa8\x13\x54\xb2\x8e\xc6\x1f\xda\x7b\xb2\x6d\xac\xea\x1b\x8c\x10\xde\xa2\xf7\x58\xd9\x9e\x9b\x30\xb7\xd0\x21\xfc\x3f\x2a\x00\x09\x92\x85\x23\xa5\x4f\x8a\xad\xdc\x1e\x5d\xa7\xda\xe1\x91\xb8\xbd\x11\x2f\x39\x71\x96\x5d\xc4\xd3\x4f\x1d\xe3\x22\xea\xd1\xd7\x3e\xc4\x40\x95\x12\x54\xa1\xa3\xbb\x91\x08\xef\x42\xc7\x33\x3a\x10\xe1\x09\x4f\xde\x7d\x3c\xff\xdb\xe4\xe8\xf4\xf4\xe8\x6f\xd1\x88\x38\xf9\x56\x31\x04\x48\x10\x21\x7e\x08\xe4\xfc\x20\xd0\x22\xc5\xc1\x08\x43\x5a\x43\x90\x72\x2f\xd4\x1f\x5f\xe1\xab\x00\x4f\x8b\x65\xc0\x52\x95\x36\x0e\xe9\x0d\xa5\xed\xe3\x38\x03\x0f\xd2\xfa\xfb\x61\x3e\xb5\xd1\x9b\x34\x3d\xd6\xb4\x2f\x6d\x9d\xa7\xbc\x66\xb7\x9d\x4a\x9b\x4e\x98\xc3\xff\x1d\x3e\xa6\xa9\x2f\xe3\x4d\x97\xa6\x9f\xdd\xa7\xb0\x98\xe1\x75\xee\x8c\xf5\x1a\x20\x4d\xeb\x44\x4f\xd6\xe1\x1e\x34\x0d\x28\x0b\x69\x54\xf1\xdb\x31\x5c\x6f\x05\xa0\xe1\xf3\xd8\x68\x72\x2b\x07\xda\x0f\xf0\x86\x2d\x7f\xb5\x7d\x9d\x6b\x67\xe7\xa2\x4b\x26\x47\x14\xf2\x73\x10\x6f\x88\x94\x41\x52\xb1\x94\x50\x70\x8b\x7e\x7d\xe4\xe7\xfd\xfd\xb1\xf6\xe2\xa4\x7e\xf6\x45\xe7\x55\x82\x52\x4a\xd4\xc0\xea\x67\x3f\x2b\x8a\x4f\xcb\x85\xde\x21\x03\x6f\x4f\xb0\x59\x53\xe5\x1b\x79\xbd\x6b\x76\x9b\xf4\x46\x51\xf4\x1c\x6d\x49\xc5\xea\x52\x1e\xe7\xb1\xcc\xd0\xd8\x54\xee\x2b\xaf\x2a\xc3\xef\xb8\xd4\x25\xdc\x64\x2d\x56\xf6\x1a\x27\x5b\x44\x06\x9d\xc2\x2f\x2b\x2c\x95\x5c\xcc\x6a\xc3\xeb\xc4\x66\x8d\x9b\x74\x2d\x6d\x30\xc4\x4b\xf6\x76\x21\x9d\xa1\x06\xbb\xba\x33\x9d\x51\xc6\x6e\x6b\x4b\x55\x0a\x78\x55\xa9\x55\xcc\x6f\xff\x52\x30\x83\x84\x57\x0b\xa6\x06\x6d\x79\x25\xd5\xca\x1d\x90\x53\x82\xa6\xaf\x73\xb7\x45\xdc\x8c\x3a\x68\x34\x91\x68\x74\xd2\x19\xb7\xb5\x0e\x8e\x9d\xc3\x79\x9e\x41\x72\xa8\xf7\x34\x74\xca\xe5\x70\x87\x54\xfc\xd2\xd8\x6a\x35\xe0\xb5\xc8\xe6\x2c\x2e\x59\x55\xbf\x11\x82\xc9\x0f\x33\xbd\xf7\x3f\x41\x40\x26\xed\xa7\xbf\xa3\x7d\x0c\xb0\xaa\x14\xd9\x6c\x39\xa7\xa8\x85\xea\xf5\xaa\xda\xae\x5b\x96\x52\x4d\x23\x31\xfa\x30\x3b\xbf\x5b\xb0\x87\x62\x13\xa6\x15\x16\x8c\x00\x9e\x22\x02\xaf\x4d\xaf\x2c\xc9\xb5\x40\x0b\x80\x65\x08\x23\x64\x2e\x6d\x1d\xbd\x2e\x48\x4e\xf3\x38\xc7\x30\xad\x8b\x32\x68\xec\xd1\x90\xe8\x60\xca\x23\x86\xe1\x87\xb4\x9e\xcb\x6d\x42\x44\x34\xd2\x7b\xee\x43\x67\x47\x16\xdc\x49\x11\x89\x47\x60\x04\xf7\xc0\xcf\x5f\x27\xee\x66\x3e\x67\xe1\x10\xf2\xe7\xda\x77\x5d\x32\x5b\xbd\xf1\x5e\xab\xeb\xb0\xd3\x63\x3f\x95\x9d\xaa\x06\x70\x03\x76\x49\x44\x15\xf9\xee\xf5\x76\xbb\xe8\x3a\x34\x81\x0a\xf4\x72\xa2\x95\xfe\x3e\x01\x6c\x24\x55\xc6\x84\x2e\xc2\x2c\xc3\xa4\x3c\xa8\x83\xc4\x1c\x64\x7b\x07\xa6\x2e\x7b\x03\x8a\x2f\xf0\x81\x5d\x01\x44\x28\xef\xf2\x3a\xae\x63\x07\xff\x82\xee\x1a\xe1\x96\x20\x83\x5c\x44\x34\xef\xd5\xb4\x58\xdc\xf9\x34\xa5\x2f\xe1\x82\xc1\xaa\x01\x63\x39\x99\x10\x7a\x28\x77\x36\x29\xec\x2b\x99\x0d\xd7\x95\x41\xad\xa2\xce\xe8\x62\x13\x5d\xce\xce\xa2\xa3\xdd\x31\xb7\x92\x9f\x90\x85\x9a\x4e\xbf\xb1\x1d\xbc\x9c\x64\x27\x29\x03\xd9\x19\xed\x44\x86\xb6\xbc\x6d\x85\xb6\xbc\xad\x5b\x03\x09\xdc\x9a\x19\x27\x04\x95\x07\x96\xf5\x62\x29\x5f\xc8\xeb\x38\x22\x31\x5e\x10\xd7\x81\x30\xa4\x49\x2b\x14\x0c\x41\x18\x12\x38\xe2\x55\x28\x12\x35\x46\x34\xf0\x88\x7b\x82\x69\x08\x12\x2f\x68\x86\xd8\x7c\xd4\xe2\x55\x57\x1c\x99\x01\xff\xaf\x81\x6e\x23\x9c\x79\x23\x12\x8e\xce\xe0\x25\x10\xf3\x41\x44\xe2\x72\x5d\x40\x2f\xcb\x86\x2f\x4a\xb5\x13\x84\x90\xdc\x2d\x01\xb3\x16\x32\x32\x97\xa8\x53\x1e\x91\xcb\xf0\x57\x44\xb4\x2c\x1c\x0f\x1f\xcd\x6a\xc9\x2b\x93\x04\x04\xb1\x3d\xad\xdb\x2f\xb4\x44\x64\x41\xca\xee\x1f\x0e\xd3\x97\x11\x6d\x70\x98\xee\xef\xe3\x53\x2b\xf5\x35\x48\x9c\x10\x82\x48\x83\xf8\x11\x6d\xc2\x09\x08\x1b\x8e\xed\x0b\x35\xb9\x7c\xf0\x2c\x99\x2c\xd6\x9a\xba\x8b\xcb\xd5\x24\xbf\xc1\x7c\x3a\xcc\x65\x68\x45\xa5\x4e\x91\xc0\x37\x7d\x51\xa6\xb5\x6a\x92\x25\xb4\xfc\xb0\x99\x22\x13\xc5\x04\x37\x54\xb1\x04\x34\x11\x80\xc4\x4e\x20\x41\x92\x4d\x08\x94\x28\x0b\x9b\xaa\x30\x64\xc6\x24\x5e\x72\x7c\xf9\x6f\x7c\x5b\xfa\xba\x28\xd5\x73\xa0\xaa\x06\x2c\xc7\x01\xf4\x89\x8f\x4b\x4f\x20\x84\x91\xe3\xa5\xa0\x95\xa7\xe8\xac\xa1\x1e\x0c\xd3\x13\xb1\x82\x68\xd2\x99\x2f\x31\x11\x35\xc5\x09\xe6\xe9\xf4\xa1\x04\x8f\x64\x12\x5e\x4a\x74\x32\xe7\xd6\x9b\xa1\x35\xc2\x5b\xf6\x2c\x9d\xf9\x56\xc1\x60\x45\x54\x53\x7c\x32\xa1\x36\x9c\x46\xcc\xca\x91\xe7\xc9\x65\x5a\xd5\xac\x34\xc2\xe5\x86\x7a\xf2\xfa\x8b\xb8\x9e\x6b\x6b\x23\x3c\x74\x8a\x9c\xb5\xed\xb2\xad\x73\x4c\x8f\xfd\xc6\x01\x1e\x5a\x83\x44\x1e\xbe\x96\x79\xb5\x60\xd3\x74\x96\xb2\xe4\xc8\x96\x17\x89\xc7\x54\xd8\x0f\xed\x4c\x8b\x6e\x87\x2d\x71\x93\x78\x9e\x90\xc9\xdf\xf3\x8b\x64\xb8\xae\x3d\x31\x57\x9f\x09\x72\x7f\xbf\x6a\xc8\xbe\x6a\xa1\xd5\xb1\xb7\x20\xb4\x5b\x24\x92\x48\xa0\xb7\x50\x9e\xed\x11\xa4\x8d\x0e\xc6\xba\xa7\x20\x25\xc1\xe4\xc3\xf1\xfd\xbd\x84\x1c\x5a\xcc\x25\x8c\xb5\x7c\xf8\x62\xf5\x72\x61\xe3\x8c\x6b\x23\x36\xd8\x59\xb3\x95\x60\x68\x8e\xa3\x3e\xd5\x14\xfb\x0b\x62\xfb\xbe\x7b\xb2\x5a\x73\x84\xc1\x95\x8c\x2a\xc5\xc3\xfa\xba\xa1\x1d\xc9\xc6\xc6\x91\x51\x53\x23\xc3\x36\x40\x1f\x2b\x56\x7f\x97\x7f\xca\x0b\xed\x85\x2e\x52\x7d\xb7\x32\x9a\x70\xe3\x80\xb4\x19\x7d\x6b\x64\x5c\xab\x8c\xd3\x90\x4e\xa2\x67\x52\xb1\xcf\x1b\x57\xa0\xee\xeb\x47\x75\xb8\x8e\x0c\xc8\x2e\xa9\xfd\x0f\xd6\x92\xd6\x28\x89\x7d\xe8\xc8\x70\xc9\x7a\x8c\xe1\xd0\x4f\xd3\x6b\xf7\x4c\xaf\xb7\x19\x66\xf4\x89\xdd\xc1\x83\x8c\x35\xfc\x5b\xae\x6b\x8e\xa1\x59\xb2\x71\xc5\x49\xf9\xc4\xee\x88\x23\x92\x5a\x25\x8a\xde\x35\x61\x07\x29\xef\xba\x0f\x6e\x71\x4a\x2e\x8c\xf0\x2b\x9c\x1c\x47\x16\x79\xc6\x67\x8a\x38\x23\xab\x23\xae\xe7\xe8\x6a\x22\xce\xe8\x93\xbe\x15\xa9\x18\xc0\x38\x22\x58\x14\x1f\xf3\x50\x96\x87\x55\x48\x51\x13\xe2\x66\x76\x0d\xd6\x0f\x54\xc1\x3b\x4f\x8f\x0c\x45\xf0\x69\xe2\x2c\xce\x2a\xcd\xb6\x04\x4d\x28\x34\xe4\xb6\x91\x3a\x6f\x25\x5e\x6f\x73\x88\xda\xf4\x46\xf8\xd9\x27\x74\xa4\xb3\xd0\xa5\x59\x08\x2e\x73\xc4\x3a\x1f\x0c\xf3\x3b\x0b\x3f\xc1\x86\x38\x50\x13\x5e\x2d\x6b\x6a\x93\x5e\x75\xbd\xeb\xac\xd3\xf4\x4b\x93\xdb\xb6\xbb\x6a\x7c\x8d\xc3\x4b\xfa\xfe\x3e\x84\x3b\x3f\x10\x2f\x6f\xad\xf8\xe6\xa2\x25\x1d\x68\x00\xc2\xef\x98\x21\xed\xed\x3b\xe4\x23\x10\x85\xf7\x71\xea\x34\x84\x36\x20\x18\xef\x8e\x8e\x80\xcf\x91\x4e\x67\x22\xeb\x7b\x85\xf2\x1f\x33\x3e\x3f\x78\x1e\xa0\x6f\x8c\xc2\x24\x5a\x50\x02\xc3\x60\xee\x6d\x5c\xb3\xd2\xb7\x85\xa3\x4f\xfc\xa0\x2f\xab\x51\x06\xd5\xd6\x7b\xbb\x50\xfc\x7b\x93\x3f\xae\x1d\xe1\xfc\x47\x14\x11\x4e\x4f\xc4\x01\xb5\x4d\xf3\x8e\xea\xcd\x57\x5c\x41\xf6\x2c\x57\x31\xdd\x8e\xdc\x85\xc4\xdc\xa8\xd6\x0b\x67\x79\x60\xb7\xb5\x4d\x33\xe0\x44\xbc\xbd\x3b\x8c\x7a\x70\x45\x42\x03\xd8\xd9\xae\x4b\x9f\x1a\x0a\xc3\x4c\x30\x90\x81\x45\x06\x2e\xcd\xb8\xed\x54\x31\x50\xc4\x60\xbf\x86\xdb\x12\x14\xf9\xc6\xef\xbc\x5f\x52\xdf\x0b\x6d\x67\x44\xc0\xca\x2a\x43\x5e\x3c\x27\xbb\x1d\x44\xd9\x6a\x5d\x3c\x59\x78\x0a\x4e\x22\xef\xff\x88\xa7\x4a\x55\xdd\xd0\xf4\x23\x95\x26\xc1\xe8\x60\x7c\x7f\xaf\x3e\x43\x52\x0b\xb8\x92\x32\xac\x40\xad\x61\x23\xc1\xf0\xa5\xa1\x61\x7b\x0f\x53\xe5\x2f\x4b\x8f\xcd\x08\x40\x2f\x57\x8f\xb8\xe5\x33\x39\xe0\xd6\x1a\x6e\xd9\x8e\x6a\x25\x13\xcb\x58\x53\x65\x58\x77\x8e\x35\x4a\x2c\x64\x95\x86\x69\x3e\xcd\x96\x09\x3b\x63\xd9\xac\x45\xc8\x48\x5e\x14\xa1\xbf\xfe\x57\x36\x71\x1b\x8c\x78\xca\xd8\x8e\xfa\x25\xe8\x69\x5b\x9b\x1a\x29\xb3\xc3\xd5\x08\x2d\x1c\xb5\x3d\x8b\x0c\x09\x5e\xa3\xb1\xa5\xf6\x40\xcb\xba\xb5\x2e\x28\xc4\x28\x1d\x0f\xdb\xea\xdb\xd7\x96\x7b\x93\x57\x76\x82\xc0\xe4\x00\x1f\x64\x95\xfa\xc6\xd0\xa5\x0c\x4e\xa5\x14\x54\x0d\x82\x9c\x5e\x2e\x35\xf0\x87\x69\xc2\xd0\x11\x81\x49\x08\xff\x9f\x9a\x80\xad\xf5\x8b\xbe\xec\x04\x75\xd8\x81\xdb\xc2\x34\xd2\xdf\xcd\x11\x38\x7c\x9c\x3f\xaa\xcf\x78\x30\x4c\x5f\x5c\xbb\x82\x44\x88\x48\x1c\x24\xea\x8d\x05\x26\x15\x6b\xfc\xd4\x0e\x7c\xd3\x37\x5c\x97\x5d\xb7\x83\x69\x10\x65\x1d\x12\x24\xa2\xab\x86\x86\x3a\x56\xd3\xf0\xeb\x1c\xa3\x76\x32\x87\xd6\xf9\x23\x44\x1c\x37\x2d\x4f\x3c\x8a\xaa\x75\xfa\xea\xb1\x27\xc2\x1a\x7c\xa5\xd6\xf3\x70\x5b\xfe\xb6\xa3\xbd\x2e\x48\x13\x23\xcf\x70\x07\x44\x07\x4a\xba\x72\x71\xbd\x82\xa8\x93\xc2\xe6\xc0\x5a\xaf\x1a\x6d\xc3\x9b\xa0\x09\x42\xd7\x2b\x92\x3e\x12\x4c\x95\xf6\x87\x68\xb3\xaf\x51\xd5\x40\x8d\x0f\x61\xe5\x80\xaa\xa0\x50\xf0\xd1\x4a\xda\x1d\x42\xe8\x76\x34\x40\xa2\x92\x46\x0f\x62\x81\xc4\xda\x46\x86\x6e\x29\x76\x67\x1b\x96\x9a\xf4\x26\x37\x09\x96\x0f\x27\x97\xa8\xde\x19\xf3\x86\x3c\x55\x04\x4d\x48\xb5\xbb\x3b\xa2\xf5\x99\x52\x8e\xaa\xe5\x86\x81\x3c\x2b\x7c\x58\xb0\x3c\xcd\x2f\xcf\xe3\x4b\x9f\x73\x98\xba\xd3\xed\xaa\x49\xa9\xe3\xac\xa8\x48\x29\x77\x73\xee\x27\xa1\x96\x8a\x1b\x7d\xd9\x69\xa9\xbf\x21\xd9\xb2\x93\xad\xd8\x90\x6e\x49\x7f\xbb\x58\xd0\x18\x42\x15\x07\x02\x6d\x5d\xbb\xc0\x10\x95\xac\x43\x60\xb3\xb4\x4e\xe3\x21\x03\xd8\xb0\x1a\xd0\x66\x95\x6f\xbd\x37\xa8\x39\x4a\x71\xfa\x35\x3b\x8b\xe2\x8d\xb2\x30\x4c\x86\xe2\x32\x8d\x4f\x8b\x4c\x3c\xa0\xf1\x4c\x35\x5d\xbc\x75\xdf\xe3\x49\x5e\x08\x19\x8d\xc1\xc6\x12\x63\x23\xc9\xd7\xa9\xa2\x55\x7d\x97\x31\xdf\x4b\x50\x69\xd0\x0b\x3d\x70\xb4\x80\x41\xf5\x2f\xb5\x7a\xa1\x6c\x5c\xd8\xe8\xa8\x3e\x0c\xa8\xff\x1a\x6f\x1c\xb6\xe6\xc3\xd0\x8b\x69\x8d\x92\x91\xeb\x34\xb5\x52\x63\x12\x99\x9f\xf7\xf7\xc2\x02\xd9\x27\xe2\x4c\xd3\x2e\x6b\x9b\x78\xa2\x43\x73\x4e\xd4\x72\x11\x16\x85\xee\x5c\x59\xd8\x2e\xdd\x51\x4c\xc3\xaf\xf3\x05\xa8\xf4\xe3\x3a\x29\x07\x29\x4b\x44\x18\x4a\x1d\xce\x1d\x5c\x52\xdd\xdb\xba\xdf\xd2\x3b\x82\x1c\xa2\x8b\xd6\x4d\xb2\x0e\xd3\xdc\x97\xf2\x53\xc8\x2d\xd7\x5b\x04\x6f\xb4\xa5\x09\xbc\xbe\xa3\x2c\x73\xbd\x5b\xd2\xc1\xb1\x65\x4a\xbe\x75\xca\x28\x5e\x4c\x5a\x17\x7c\x8f\x56\x8a\xda\xc2\x00\x45\x26\xda\x00\xe2\xcb\x36\x7a\x6d\xc6\x3d\x54\x33\xc4\x6f\xe2\x78\xd9\xdd\xd6\xe0\x82\xdc\xe3\x7d\x87\x57\x66\x87\xd5\x84\x31\xa2\x1d\xe6\x1d\xeb\x64\x6d\x79\x91\x0b\x6d\x83\x8f\x9b\x34\xb9\x54\x54\x69\xcd\x6b\x81\xbc\x13\x6a\x7b\xcb\xf2\x30\x5d\x63\x30\x22\x81\x1c\x71\xe8\x30\x4a\x9d\x04\xc0\xf7\xe2\x03\x7c\x24\x36\x9f\x84\x4d\x01\x47\x04\x8e\x87\xc4\x65\x81\x23\xd2\xeb\xb9\x3a\x13\xac\x5c\xa9\x7d\xb9\x17\xa0\x07\x18\xb5\xf5\x4b\xa0\xa8\x57\x81\x69\xa8\x62\x7a\xea\xb4\x28\x02\xa7\x96\xc2\xc4\xf7\xda\xf2\x64\x7a\x7e\xb7\x60\xd2\x74\xd6\xac\xa3\xda\x99\xa5\x65\x55\xef\x48\x1d\xd2\x9d\xab\x65\x55\xef\xb0\xdb\xb4\x12\x8e\xba\x95\x6d\x33\xbb\xe9\xf5\xae\xa5\x9c\x5d\x4e\x71\x04\x93\x28\x32\xb4\x96\x6c\x64\xe9\xc9\x9a\xfa\x4d\x80\x28\x3c\x33\x89\x17\x3d\xfe\xcb\xa8\x96\x97\xe6\xab\x40\xa9\xcc\x53\x9d\xb5\x60\x85\x05\x0c\xc5\x9a\x76\x92\x4b\x99\x44\x28\xdb\x20\x70\x97\x52\xef\xf0\xda\x72\x8d\xea\xe3\xc8\xaa\x1b\xe5\xb5\x8a\xb0\xce\xa7\xdf\x50\x42\x21\xb6\xa1\xa1\x01\x2b\x42\xa8\xab\x18\x84\xee\xb8\xed\xb8\xd1\x66\xcb\x2c\x43\xdb\x41\xd0\x4a\xf1\xf6\x40\x66\x2d\xed\x08\xbe\xd5\x6f\xdf\xb6\x12\xf1\xd7\xf1\xb4\x2e\xca\x3b\x5f\x56\x20\x7b\xba\xa5\x0a\x92\x8c\xa6\x0f\x2d\x98\x7d\x47\xc1\xff\x86\x71\x5b\x1f\x8f\xf6\x01\xa8\x34\x86\x8f\x15\xba\xba\x4d\x5f\xdd\x17\x6c\x1a\x5f\x31\xa9\x80\x2b\x6f\x2f\x98\xfa\x4d\x9a\x24\xc4\x8a\x4b\x5b\x55\xbb\x2e\x53\x9a\xe3\x71\x69\x94\x11\x8b\xec\xc8\x6d\x93\xad\xe8\xd3\x06\x21\x31\x56\x57\x17\x97\x97\x19\xa2\x9d\x66\x69\x7d\xc7\xaf\x63\xad\x44\x9b\xfa\x3e\x61\x99\xa1\x9f\xb1\xfb\x44\xbf\xa6\x34\xe8\xc0\x62\xbd\xd9\xb8\xb3\x37\xea\xb7\xaa\xea\x09\xcb\xfa\x88\x8b\xaf\x33\x5b\x96\xe9\xea\x17\xad\xf6\x28\x9f\xb2\xaa\x2e\x4a\x1c\x7a\x4d\xb5\xff\xa5\x01\x15\x51\xd5\x12\xc2\xe3\x05\xfd\x2b\x3a\x85\xbe\xf2\xb1\x6f\x03\xc8\x2a\x9b\x26\x74\x15\x6c\xb1\x81\xea\xba\x6d\x2c\x11\x6f\x5b\xc5\xbf\xd6\x70\xe2\x92\xb6\x86\x53\x7d\xde\xdf\xd3\x31\x25\xae\xe8\x3a\x3a\xc9\xcf\x76\x47\xf7\x36\xf5\x02\xa1\x7e\xdd\x4e\xe8\x89\x80\xd7\x0d\x6b\xce\x3b\x18\x94\xb5\xaa\xb2\x92\x37\x11\x57\x10\xe9\x17\xc0\x79\x09\xa1\xbe\x02\x1d\x11\x26\x0c\x4d\x59\xd3\x2b\x32\x71\x27\xdc\x1a\xe6\xf6\x33\x86\xe5\xdb\x24\x78\x88\x09\xde\xa2\x4c\x8b\x12\x38\xf0\xa8\xc5\x93\x87\xf4\xa3\x9d\x2d\xa5\x12\xe0\xbe\x01\xe3\xf5\x8d\x87\x24\x0d\xc3\xde\xa1\x0e\x8a\x6c\xa4\xd7\xd3\xbf\xfb\xec\x36\xe5\x5c\x9e\x99\x20\x58\x3c\x2d\xeb\x93\xf1\xa8\x6b\x7e\x30\xb7\xd3\x34\x3c\x36\x1a\x45\x32\x30\x2a\xba\x6a\x81\xec\x4e\x57\x2d\x52\x21\xaf\x64\xf9\xae\x9a\xb7\xed\x16\x6c\xcb\x79\x23\xb4\xcf\x39\xe1\x8e\x68\x06\x56\x20\x83\xce\x9b\x10\x29\x8c\xeb\xd0\x0a\x63\x10\xda\x2a\x1c\xba\x89\xb2\x28\x6a\x78\xcf\x0f\x5b\xce\xa3\x39\x11\x96\x5f\xbd\x9e\x36\x99\xd6\x47\xba\x7c\xd5\x54\xaa\x2a\x98\x30\xc4\x3f\xa8\xb1\xc5\x6b\xe1\x8d\xdc\xdf\x8b\x42\xfc\x63\x37\x8a\x3c\xe1\x1a\xd2\xa0\xf1\xd7\x92\x39\x0a\x2b\xbc\x56\xb0\xe9\x27\xa6\xbd\x87\xd1\xdd\x07\xec\x8b\xf9\x82\x48\x9d\x62\xe3\x38\x50\xdd\x14\xf9\x0e\xe9\xaa\x6d\xc3\xb1\xe6\x42\x26\x68\x86\xc4\x77\x59\x7b\x1c\x5b\xed\x6d\xab\x1f\x67\x7a\x38\xdb\xa6\xe2\x26\x30\xa2\x1f\x23\x39\x7b\xb7\x44\x67\x8e\x6f\xf9\xc4\xe7\xac\xac\x44\x37\x0b\xde\x3d\xb4\x22\xe9\x00\xf4\x50\x66\xf4\xfa\xc3\x3b\x11\x77\x23\x5a\x89\x48\xc4\x16\x43\x3e\xaf\xaf\x24\x0d\x7d\xe2\x07\x2a\x5c\x31\x24\x0f\x3b\xb1\x10\x12\xb7\xf5\x75\x61\xbc\xe4\x8d\x35\x71\x80\xf5\x15\xf1\xcf\xcd\xf5\x88\x17\x7b\x57\x58\x14\x49\x01\x5c\x51\x87\x3a\x03\xb9\xe0\xb9\xb2\xd5\x33\xbf\xf4\x64\x2b\xdd\x05\xfd\x90\xd6\x73\xdf\xd1\xd8\x3a\xfc\x1d\x0f\xde\x84\xe4\xf0\x61\x50\x97\xe5\x35\x83\xe0\x8e\x0c\x23\x6b\x90\x6a\x08\xdd\x15\xa0\xf5\x7d\xbf\x64\xc5\x82\xe5\xfe\x4a\xc7\x6d\x19\xe8\xa5\xd4\x04\x14\x08\xf5\x64\x57\x6d\xc5\x26\x2a\x20\xaf\xe7\x54\xcb\x91\x7f\xbb\x54\x1c\x41\x4d\x4a\xa9\x39\x12\x11\x94\xe7\xe9\xaf\xd0\x54\x34\xe2\x07\x0d\x14\x11\xf7\xd7\x97\x87\x44\x21\x55\x29\x47\xda\x50\x51\x14\xfd\x2e\x58\x99\x35\x09\xe0\xe7\xe3\x86\xb6\x3c\xf0\xf6\xa6\xb4\x2d\x4b\xcd\x89\x28\xbf\xee\x01\xb0\x99\x2f\x9f\x97\x56\xbc\xcb\x03\xda\x4f\x2a\x6f\x24\xda\xbd\xea\xa7\x4e\xe4\x67\x9b\xf7\x4a\x1d\x5e\x83\xae\x91\x18\xd8\x4d\xdb\xba\x6a\xa0\xd0\x65\xce\x0a\x68\x76\x75\x55\x28\xac\xa6\xd0\x5f\xc9\x75\x9c\x11\x4d\x32\x5e\xcc\xc3\xa1\xf4\x82\xdd\x28\x3a\x68\xa8\xb8\xfb\xfe\xde\x51\x91\xca\xed\xf5\x76\x77\xaf\x89\x4f\x23\x95\xa1\xee\x9d\x66\xe9\x5e\xcf\x00\xb7\x7a\x49\x95\xbd\x50\xbb\x58\x45\xd0\x07\xd5\x38\xce\x86\x29\x3e\xaf\xae\x8c\xb5\xd7\xd7\x62\x3a\xa5\x3b\xed\x03\xd8\x08\xfe\xef\x4b\x27\x2d\xe3\x80\xd6\x2a\x59\x86\x5e\x0f\x3e\x90\x0b\xd5\xe6\xaa\x0e\x94\x84\xfb\x8c\x2b\xb1\xe1\xd6\xb8\xf4\x0a\xe4\x95\x56\xea\x7d\x26\x89\xbd\x4d\x23\x87\xf6\x96\xac\xb9\x5f\xe4\xbe\x37\x45\x6b\x28\xe2\x27\x60\x48\xa4\x84\x0f\xab\x6e\x36\xeb\xae\xaf\x83\x8a\xd0\x33\x59\x55\xa4\x6e\x09\xa2\x32\x59\x07\x38\x27\x88\x56\xe2\xcb\xe5\x3e\xaf\x95\xb4\x4e\x21\x56\xb7\x8d\x76\x0f\x20\xd4\xd0\x7a\xa9\xe0\x45\x44\x38\x93\x11\x66\xc6\xe9\x0c\x0c\xab\x39\x33\x03\x29\x5e\xaf\xe7\x03\x58\x14\x49\xf1\x07\x72\x3d\x3c\x21\x5f\xf2\x89\xf3\x7a\xbd\xdd\xb4\x7a\x1f\xbf\x17\x75\x04\x86\xe2\x22\xda\x0f\xd4\xb5\x70\x44\x23\x0d\x0a\x64\x82\x54\x52\x54\x0b\x2a\x17\x5b\x1c\x5b\xd7\x6d\x5d\x14\x45\xc6\xe2\xdc\x13\xbb\xf0\x3d\xe7\x39\xb0\xec\xfd\xbd\x0c\x57\x22\x38\x57\x62\xfc\x70\xa4\x1a\x06\x6b\x09\x90\x52\x63\xbb\x9e\x67\x2c\x62\x8d\xab\x02\x91\xb8\xea\x32\x36\xae\xbb\x62\x2c\x9d\x0d\x36\x66\x10\x6c\xe5\xbf\x4e\xfe\x30\x72\xbf\x97\x72\x9c\x56\x2a\x79\xe7\x36\x3f\x6d\x3f\xe7\x96\x5b\x73\xdb\x67\xb5\xfa\x46\xc6\xfa\x22\x2e\x2d\x97\xd3\xba\x40\xb1\xac\xa9\x27\x6b\xbe\xb4\xd2\xa9\xe9\x45\x1b\x76\x69\x95\x16\xf9\x7e\xb5\x5c\x70\x74\x7f\x45\xff\xd3\x96\x87\xe4\x74\x26\x14\x7b\x27\x93\xac\x88\x13\x08\x54\xc7\x6f\x0a\xe5\x9d\x1c\x9f\x9a\x55\xd0\xc1\x31\x27\x53\x0e\xd7\x89\x32\x3f\xd0\x8e\x30\x41\x2c\xcb\xd9\x98\x77\xac\xaa\xe2\x4b\xe6\x5f\x55\x97\x9a\x04\xd3\xbb\xa9\xe1\xfa\xb0\x8f\x02\x5c\x0e\xdc\xe8\xca\x2e\x39\x5d\x88\x6b\x76\x2a\x1c\x28\x02\xc7\x30\xd5\xa7\x03\xd0\xc6\xea\x32\xf2\x20\x48\x05\x04\xa7\x00\x40\x8c\x62\x11\xef\x2c\xb2\xe5\x65\x9a\x0f\x76\xe6\x75\xbd\xa8\x06\xcf\x9e\x5d\xa6\xf5\x7c\x79\xd1\x9f\x16\x57\xcf\xa0\x03\x3f\x55\xf8\x77\x5f\xf8\x14\x14\x44\x7d\x85\xa4\x75\xd0\xea\x8b\x6a\x7a\x8f\x23\x2a\x24\xd6\x9b\xc0\x9a\x06\x7b\x08\x17\x15\xc9\x54\x3b\x7b\xe6\xb5\x01\x3d\xe9\xe6\x11\xaf\xd0\x1b\x8b\x79\x01\x59\xed\x7c\x79\x5f\x15\xe5\x62\xee\x85\xa3\x31\xbd\x65\xb4\x1c\x65\x7f\x4b\x69\x6f\x13\x5e\x2e\xd3\x24\x3a\x08\x93\xb4\x8a\x2f\x32\x76\x0a\x6e\x5c\x4d\xd1\xa1\xa7\xd8\x0a\x6f\x57\xdd\x08\xdf\xc9\xf6\x4e\xde\x7f\xaf\xe6\x9c\x26\xf6\x5f\xbf\x39\x3b\xfa\xea\xed\xc9\xe4\xf4\xe8\xfd\x5f\x4f\x26\x47\x1f\xdf\x68\x91\xb1\x51\x21\xad\xa0\xbb\x9c\x19\x1b\xaa\xf1\x83\x50\xec\xb1\x0a\x51\xde\xa5\x1d\xe8\xf5\x04\x96\x52\x5b\x94\x53\x6e\xdd\x68\xaf\x27\x1e\x0f\x00\xd8\x4b\x73\x05\xa7\x0a\x42\x8e\x5d\x0a\x12\xb5\xab\x29\x19\x6f\x0c\x4d\x1e\x97\x71\xf6\x75\x19\x5f\x42\x5c\xd3\x9c\xb1\xa4\x3a\x9b\xdf\x45\x1b\xd0\x68\x19\xd8\x56\xf5\x49\x16\x29\x15\x57\x33\x62\x07\xf8\xdf\x0b\x86\x08\xd4\x4f\xf3\x9c\x95\xdf\x9c\xbf\x7b\x1b\x79\x2f\x92\xf4\xfa\xe5\x8b\x67\xfc\x7f\x4f\x66\xc3\x5b\x08\x08\x28\x0c\xc8\x6a\x5a\xa6\x8b\xfa\xe5\x8b\x67\xe2\x87\xa7\x1d\xc5\x74\x17\xe3\xac\x25\x1f\x70\xbe\x0c\xab\x1f\xe6\x69\xcd\xaa\x45\x3c\x65\x91\x1e\xb4\x2f\xd3\x8f\x73\x56\xd5\x83\x1d\x81\x23\x1e\xc3\x4f\xf9\xc8\x3e\xbb\xdd\x87\x0b\xd3\xbc\xc8\x12\x56\x3e\xd5\xd8\x03\xaf\x6a\x77\x01\x78\x81\xf7\x45\xc2\xaa\xd1\xc1\xb8\x9f\x17\x89\x30\x9a\x89\x44\x03\x5e\xaf\xd7\x86\x7c\x6e\x41\xee\x60\xd5\x8d\x30\xb2\x55\xeb\x5a\xef\x0c\x71\xfb\x04\x37\xea\xd9\x4c\x0a\x8f\x0d\xff\x05\xb2\x50\xb0\xe2\x20\xe8\xd2\x12\x96\x32\x7c\x72\x72\xf8\x6d\xc3\x7f\x92\x31\xe0\xb5\x22\x17\x78\xf7\x57\xbe\x2f\xf5\xb6\xde\xf7\xf6\xf8\x4e\xdd\xdb\x1b\x42\x91\xaa\x8e\xcb\x3a\x42\xa8\x3d\x6f\x1f\x3e\x3d\xcc\x62\x79\xa2\x33\x58\x9e\x78\x24\x66\xee\xac\x19\x7e\x4b\x7c\xa5\x29\x14\x75\x1a\x2a\x60\xf0\x85\xfe\x75\x51\xc2\x1d\xfb\xeb\x65\x3e\x95\x0f\xb8\xfc\x67\xb1\xac\x11\x5b\xf8\x92\x8a\xd9\xf8\xc1\x2f\xf3\xf0\x4b\x88\x08\xe0\x37\x20\x77\x1e\x5f\xc2\x07\x07\xc6\x9f\x43\xa3\xa2\xa8\xe3\xd9\x59\x16\xf6\x03\xe9\xc4\x53\x8c\x95\x50\x84\x86\xea\xfc\xa0\x19\xd2\x56\xda\x95\xc9\xa5\xbf\x93\x26\xd1\x53\xa1\x44\x0d\x25\xf6\xbc\xa7\xdb\x2c\x35\xaf\x19\x6a\xcc\xb7\xab\x9e\xe5\xc9\xf6\x95\xf3\xab\x27\xa5\x67\xc1\x4a\xce\x81\x6e\x0c\x66\x0a\x87\xff\xbc\x28\x70\xf1\x01\x94\xbd\xd3\xa0\x06\xb1\x74\x51\xa1\x4a\x43\x68\xcb\x96\xaf\xee\xde\x24\x58\x27\x8e\x04\xc2\xc3\x14\x6e\x00\x67\x79\x22\x8d\xba\x05\x2a\x80\x46\xbf\x62\xf5\x19\xaf\x09\x55\xd8\x7c\x6c\x3a\x18\xaa\xcc\x93\x3c\x01\xc5\x33\x1f\x1a\x91\x36\x38\x46\x51\xcc\x77\x95\x14\x95\x8a\xa2\xd2\x39\x32\x07\x68\x86\x72\x99\x9a\xdb\xd3\x39\x54\x72\x58\x85\xd8\x50\x42\x88\xa6\x30\x0c\x17\x50\xf4\xbc\x96\x26\xf6\x33\x41\xd6\xb1\x6c\x27\xd5\x17\xc2\x27\x04\x42\x89\x10\x27\x2e\xbe\x2c\x0e\x2e\x9d\xe5\x2e\x8a\x2c\x92\xe9\x42\x0e\x6e\xa5\x1d\x88\x35\x43\xba\xf1\x74\x6d\x9c\x8a\x6d\xb1\x32\xcc\x41\xc7\x52\x22\x71\x5a\x64\x59\xbc\xa8\x98\x2f\x63\x29\x89\x11\xd8\xd4\x7b\x94\x79\xca\x2d\xed\x83\x18\x2b\x31\x75\x77\x78\x35\x1c\x73\x49\x25\x5c\xd4\x74\xe3\x82\x5e\xbf\x40\xe5\xce\xb3\xbb\x48\xd7\x5d\xe7\x82\xfc\xc2\xb3\x4d\x68\xe0\xa3\x7a\x8a\x34\x7e\x6d\x4f\xc5\xc6\x75\xf5\xd5\xce\x52\x7d\x25\x9b\xfd\x8b\xf5\x55\x84\xbb\x8c\xcb\x9d\x9b\x32\x5e\xbc\x8b\x17\x11\x3f\xe4\xd8\xb4\x1e\x8c\x0e\x43\xef\x05\xfe\xde\xb9\x5a\x66\x75\xba\xc8\x58\xf4\x54\xfe\x7a\xfa\xd2\x0b\xbd\x17\xcf\x30\xff\x25\xbf\x2e\xa5\x2c\x4b\x2a\x26\xca\xc9\x2f\x84\xd2\x5f\xe3\x10\xbc\xa4\x23\x10\xfc\x44\x08\xf1\x73\x1c\xd6\x17\x45\x72\x37\x18\x3d\x57\xd9\x2f\x20\x45\x40\xc1\x4f\x0a\x5d\x0e\x46\xbf\xb3\x41\x5f\xd4\xa5\x00\x2f\x5f\x3a\xca\x4c\x8b\xec\x12\xfc\x64\xb4\x1b\x51\xd0\x12\x06\xeb\x51\x5f\xa4\x96\xab\x78\x81\x9d\xb8\x8a\x05\x14\xfc\x18\x87\x32\xd8\xdb\x60\x74\x10\x7a\x5e\xe8\x79\x63\x74\xc9\x38\x4b\xc5\x66\xe2\x6b\xc0\x14\x64\x70\xc6\x33\x4d\x80\x63\x17\x9f\x7c\xc9\x28\xe9\x87\xef\xa5\x09\xbc\x40\xa6\xda\x5a\x52\xc0\x29\xdb\x3c\x59\x4e\x73\x46\xd2\x46\x2f\x4d\x6e\x43\xbe\x9f\xc3\x59\xb1\xcc\x93\x6e\x4b\x3d\x0e\xe3\xa8\x06\x2d\xf6\xa0\x6c\x04\x64\x81\xff\x77\x8e\x42\x8c\xc3\x5e\xcf\xe8\x15\x50\x23\xde\x13\x90\xa4\xf2\x22\xfa\x4e\xc9\xbf\x1a\xe1\x9d\xb2\x62\xf5\x1b\xc5\x38\xb5\x46\x42\xef\xb3\xab\xb8\x9e\xce\x19\xd8\x72\xa4\x33\xdf\x62\x62\x83\x15\x07\x04\xbe\x4b\xb9\xf1\x7f\xe6\xff\x58\xed\x05\x3e\x3d\xd2\xfd\xd1\xdf\x9f\x8e\xf7\x82\xa7\xc1\xb3\x4b\x7d\xb7\x82\x8a\x43\xa8\xa6\x0a\xeb\xf8\x12\x46\x5f\xb4\x86\x5e\x4d\x46\x69\x22\xf2\xc7\x5a\xd7\x2f\xbe\x6c\xf8\xd1\x87\x43\x64\xb1\x7e\x1c\x41\x51\x81\x90\x54\x1f\x28\x97\x25\x91\x99\xb3\xc1\x62\x92\x0f\x10\xe0\x1f\x99\x83\x2b\xc7\x47\x54\x06\x13\x33\x3a\x18\x07\x30\xbb\x36\x35\x3a\x67\xb7\xb8\xd3\x0d\xe8\xc3\x71\x30\xc4\xba\xfb\xf8\x4e\xcd\x41\x04\x5d\x10\xa7\x34\x4c\x21\xc2\x04\x72\xbe\xe0\x6e\xc1\x41\x0d\xa6\x46\xd7\x40\xa6\x2c\x2e\xcb\x48\x10\x92\x11\x69\x42\x28\xe6\xf6\xeb\xe2\x6d\x71\xc3\xca\xe3\xb8\x62\x7e\x30\xbe\xbf\x17\xa0\x7d\xb9\x69\x64\xe4\x1f\xf0\xb2\x5d\x8e\x0e\xc6\xc8\x82\xc2\xc7\xe1\x98\xb3\xa0\xf0\xf3\x39\x2c\x08\x79\x57\x13\x2b\xc1\xeb\x55\xf3\xbb\xa1\xb7\xc7\x3f\x1a\xfa\x2c\xb4\xfe\x36\x43\x17\xa3\x1a\x63\x64\x30\x79\x4d\x7b\x70\x24\x99\x46\x2f\x11\x60\x88\x56\x2e\xb2\x11\xb9\x2c\xf4\x3d\xac\x31\x50\x84\x69\x9d\x4b\x7b\x0b\x09\x2e\xf4\x0f\x74\x86\xb5\xbd\x76\xad\x1c\xa1\xf2\xa5\xeb\x21\xf9\x66\xcb\xee\x2a\x7f\xd7\xeb\x59\x19\x70\x5d\xea\x4f\xe7\x71\x79\x54\xfb\x07\xe0\x78\xfb\xff\xfe\x7f\x1e\x6d\x83\xdc\xaf\x9c\x65\x51\x53\xf8\x50\xdb\xda\x48\xda\x24\x82\x45\xc5\x19\x5f\x02\x11\x55\x58\x28\xeb\x60\x25\x7a\xce\x3f\xfa\xed\x95\x02\x57\xd7\x60\x85\xb3\x6f\x03\xc9\x86\x20\x5d\x2e\xd1\x5b\x54\x89\x8c\x2f\xed\xa6\xf8\xaa\x01\xda\x6a\x57\xb3\x1b\x45\x2c\x4f\x48\x42\xb0\x32\xbf\xcd\x9d\xa1\x2a\xa3\x10\x7a\xd0\x83\x66\x4b\x6e\x16\xfb\x24\xc7\xc5\xdf\x82\x4b\x10\x51\x38\xf3\x64\x0b\xe6\x49\xab\xbc\xc0\xa8\x9b\xe8\xa2\xf3\x7b\xbe\x63\x73\x76\x5b\x9f\xa5\x17\x59\x9a\x5f\x86\x59\x5c\xd5\x43\x3a\x80\x64\xdc\x80\x15\x14\x13\x40\xca\x88\x75\x8b\x3c\x2b\x49\x17\x47\x04\x01\xe4\x95\x43\x6a\x04\xa3\xcd\xf7\x2d\x4f\x42\x1f\x33\x6a\x5c\x98\x3a\x5d\x74\x51\xe4\x4c\x2e\x4a\x16\x7f\x6a\x1a\xc8\x24\xe3\x4e\xd5\x87\x91\x07\x56\x15\x63\x09\x68\x92\xd6\x06\x09\x94\x92\xb5\xd6\x03\x92\x31\xf3\x7a\xd4\x5a\x9f\xb4\x61\x9c\x9d\x66\xeb\xb1\x58\x4b\x73\xf5\x68\x53\xac\xd7\xdd\x3c\x7e\xde\x85\x04\xbf\xe0\x69\xde\xe3\x54\x72\xf3\x38\x0c\xad\xad\x41\x21\x78\x8d\x5d\x17\x1f\xba\xff\xe4\xfa\x34\x27\x8a\x4c\x51\xfb\xae\x02\x45\x1e\xb3\x32\x09\xaa\xf4\xaa\x83\xab\xc9\x31\x11\x6b\x2f\x3f\xdb\x6f\x4e\x3a\xf3\xb0\x3d\x29\x4e\x5b\xec\x5e\x0b\x9a\x23\x3a\x5c\x3b\x64\xb8\xaa\xbf\xcc\x22\xa5\x29\xce\x41\xda\x70\x73\xda\xfe\x62\x64\x8d\x84\xbd\xfe\x3e\x6b\x2c\x5a\xd3\xf0\x19\xf4\xed\xb3\x86\xab\x71\x88\xf1\x60\xcf\xd9\x63\x87\xfa\x64\x73\x36\xfd\x24\xde\x14\x50\x01\x17\x40\x3b\x9d\xa9\x28\x0e\xb5\x91\xe7\x12\xc6\xef\x00\x11\x05\x8e\x84\x09\x07\x9c\x6c\x33\x74\x21\x45\x34\x5f\xb6\xc1\xad\xa3\x41\x14\x8c\x74\xb5\xc0\x0b\x47\x9a\xdc\x39\xa1\xd4\xd6\x8f\x0c\x19\xa4\x13\x56\x92\x9b\x88\xd2\x1d\x37\x24\x48\x26\xd4\x06\x77\xc2\x88\x95\x1d\x91\x15\xee\x84\x93\xd2\xcc\x88\x8a\x35\x9d\x90\x28\x96\x8c\x88\x5c\xd5\x05\x95\x56\x62\x58\x6d\xf2\xbf\x41\x3e\x68\x6f\xa6\xad\xa5\x2f\x18\x32\x06\x6b\xbf\xbf\xdf\x85\x72\xee\x29\xa3\x93\x1e\x39\xdd\xa0\xaa\x15\x61\x3c\x25\x8a\xe8\xfe\x71\x9e\x17\xf5\xce\x82\x95\xb3\xa2\xbc\xda\x29\xa4\xb9\x6b\xb5\x53\xe4\x3b\xb1\x16\xc2\x63\x7c\x7b\x11\xe0\x1f\xfc\x9d\x41\xd8\xfb\xbe\x17\x34\x2a\xd4\x9a\x02\x26\xef\x6a\x25\x5f\x21\xfb\x25\x9b\x16\x97\x79\xfa\x4f\xf1\xa0\xec\x8a\x2e\xbc\x2e\x36\x2d\x38\xac\x8a\xb3\x2a\x1a\x79\xcf\xbc\xd0\xeb\x7b\xa1\xf7\x6f\x5e\xe8\xed\x79\xa1\xf7\xca\x0b\xbd\x7b\x2f\xf4\x7c\x2f\xf4\x02\x2f\xf4\x46\x5e\xe8\x8d\xbd\xd0\x5b\x79\xa1\xd7\x78\xa1\xf7\xe3\x8f\x32\x90\x66\x35\x8d\x17\xec\x94\x5d\xb2\x5b\x78\x3b\x38\x65\x97\x27\xb7\x0b\xdf\xf3\x7f\xfc\xd1\xdb\x93\x0d\xf4\x7f\x2a\xd2\xdc\xf7\xee\x7f\xfc\xd1\x0b\xf6\xa0\xbe\x4b\x8f\x28\x0c\x4a\x3d\x9d\x9a\x55\x5a\xcb\x54\xa8\x98\xe8\x09\x91\xa1\xbb\xc4\xb6\xe3\xb0\x9c\x91\x1e\xa1\x1e\x27\x86\x26\x1a\x7b\xfa\xe5\xf6\xac\x8e\xeb\x74\x7a\xc6\x50\x56\x84\xfa\x10\x62\x43\xe3\x47\x84\x7f\x1a\x03\x90\x86\x6c\x61\xa0\x4d\x4b\x83\x54\x98\x3e\x87\x44\x35\xa4\xca\x70\x3a\xb7\x3c\x33\x60\x7a\xcb\x27\xc3\x74\x2e\x73\xc4\xed\x24\x0d\xb4\xe7\xa0\xd5\x75\x9c\x81\x11\x45\x59\x0d\xa6\xf3\x06\xa3\xc1\x5f\xb2\xdb\x2e\x1b\x38\x51\x93\x14\x14\x90\x29\xe1\x13\xf5\xe4\xd0\x0b\x9a\x50\x3e\xdb\xae\xaf\xa3\x69\xf4\xac\xbc\xbe\xcb\xe3\x2b\x3d\x80\xb9\xf6\x58\x06\x6a\x1f\xfc\xbf\xc6\x84\xd9\x76\xec\x74\x47\xd3\x9c\x74\x95\x2f\x42\x4e\x7f\xe2\x1a\x1c\xc1\xa2\x56\xa1\xb3\xdb\x9e\x3f\xfa\xfb\xb3\xf1\x5e\xe0\xb9\xfa\xb5\x88\xcb\xf8\x4a\xdb\x6d\xe2\xe7\x48\x21\x3e\xa6\x7d\x3c\xab\xe3\x72\x6d\x07\x09\xc0\xe7\xf6\x6e\xfb\xce\xf5\xbf\x40\xcf\x4e\x16\x55\x9a\x15\xb9\xec\x5c\xb0\x6a\xcc\x94\xf5\xbd\x09\x56\xdd\xe8\x39\x51\x23\xb9\x04\x09\xd0\xab\xf4\x81\x56\x81\x3e\x53\x05\x31\x20\xd0\x86\x0e\x52\xcd\xbb\xf9\x33\x2f\x58\x41\x72\x84\x99\xd5\xf2\xa2\xaa\x4b\x7e\xfb\x46\xc1\x1a\x20\x5e\xc9\x4c\xd4\x83\x7b\xe6\x05\x61\xc9\xaa\x65\x56\x3b\xdc\xa2\xc8\x22\x6d\x97\x28\xba\x3e\x05\x34\x4a\xc7\x28\x7e\x52\xe2\x2e\x99\xd5\x87\x2f\xff\xd9\xdf\x07\xfe\xe8\xef\x3f\xf2\x85\xf7\xe4\x19\x18\xdf\x40\xb3\x28\x53\xe3\xb4\xcf\xda\x31\x50\x6a\x74\x38\x0e\x82\x21\x74\x1e\x01\x55\xea\x10\xc6\xa2\x9f\x60\xa1\x6a\x6f\x4f\x29\x22\xb8\x1b\xff\xf1\xdf\xd6\xb7\x4e\xd7\xf2\x76\x4d\xf3\x03\x94\xb6\x2b\x47\x04\xc5\x13\xad\x06\xcc\x05\xa4\x7c\xd5\xb5\xd1\xa0\x64\x57\x00\x93\x26\x6b\xec\xac\x7a\x2b\xc3\x0a\x4c\xba\xcd\x7c\xbe\x30\xce\x16\x6c\xaa\x58\x30\xfc\x8c\xe4\x0f\xe4\xee\x80\xe1\xc4\x40\xbc\xa3\x71\x83\x7a\xf8\xff\x3f\x7b\x7f\xb7\xe5\xc6\x8d\x2c\x0a\xc2\xf7\x7e\x0a\x56\x1e\x35\x95\x69\xa2\x58\x64\x49\x72\xbb\x49\xa7\xea\xc8\x25\xa9\x5b\xa7\xf5\xd7\x92\xdc\xde\xde\x14\xbb\x4e\x16\x13\x2c\xc2\x4a\x66\xd2\x99\x49\x95\xaa\xc9\x5c\xeb\xbc\xc9\xf7\xdd\xce\xd5\xcc\xdd\x5c\xce\x5a\x7b\xbf\xd8\x2c\x20\xf0\x0f\x24\xc9\x92\xe5\xde\xdd\x33\xe3\xe5\x55\x62\xe2\x37\x00\x04\x02\x11\x81\x88\x80\x86\xd8\x57\x58\x73\x66\x50\x2d\x4a\xf6\x1a\x6a\x5a\x2d\x59\x38\xa4\x32\xbc\x58\xc4\x94\xc9\x5a\xa1\x09\x11\xcf\x1d\x3f\xf9\x65\x9d\x64\x60\x03\x28\xc1\xef\x2b\x82\x10\xc7\xb1\x27\x75\x2c\xea\xf1\x7f\xbb\x5d\xab\x01\x9d\xa6\xe8\x4d\xe8\xe9\xe0\x76\xc4\xea\x2b\x4b\x55\xa6\x3b\x63\x8f\x4c\xb5\xce\x89\xf4\x7e\xa9\x94\xb3\xcc\x15\xae\x55\x29\xd9\x1a\x2b\xd0\x40\x31\xb1\xe8\xda\x9a\xd9\x8b\x03\xd8\x01\xde\x26\x2c\xb8\x84\x80\x1a\x28\x22\xd3\x44\xd4\xb8\xa5\x42\x63\xf4\x09\x5b\x54\x1f\xc1\xbe\xf5\x04\xf7\x21\x24\xfa\x64\x3f\x2a\xae\xbe\xa3\x0d\xe3\xd4\x25\x1c\x3b\x16\xdd\xb7\xe0\x1a\x76\xea\x8b\xc5\xcc\x2f\x98\xa9\x0d\x1b\x71\xe5\x5b\xf0\xc8\x34\xbe\xe1\x01\xb7\x93\x92\x4a\x2e\x29\xfe\xf4\x8a\x7e\xd1\x32\xc7\x43\x31\xf9\x38\x85\xd9\x99\x71\xc5\x9c\xd8\xbd\xfe\x9e\x74\xbc\x38\xa8\xaf\x78\x57\x5f\x6a\xd3\x42\xae\x4e\xec\xab\xa2\xac\xdf\x16\xd9\x9a\xb1\xb9\xe2\xbd\x5e\x03\x61\xaa\x3e\x2d\xa3\x7c\x10\x12\x74\x09\xef\xeb\xf4\x35\x7a\x74\x14\xc7\x97\xfa\xb7\x6c\xc2\x28\x75\x6c\x94\x69\xec\x46\xec\x66\x29\xcd\x31\x1b\xa6\x29\xb2\x69\x2b\xfd\xd8\xaa\xa9\x37\x2f\xc8\xb5\xd6\x9a\x48\x72\x9a\x13\x19\xc7\x76\xe5\xe6\xb6\x2d\xda\x65\x8f\xed\x92\xcd\x17\x1d\x2f\x2f\x36\x68\x34\xab\x4a\x29\x6b\x50\x54\xe2\xcb\x8b\x3c\xbb\xcf\x3d\x84\xdb\x89\xa7\xe6\x74\xc7\xf6\x91\xd6\x8c\xb6\x03\xe1\x19\x37\xe8\x92\x9f\x86\xb3\x45\xa4\x9e\x1a\x92\x25\x19\x9b\x50\x9c\xb3\x8b\x90\x98\xcb\x0f\x70\x2d\xb2\xdd\xea\x31\x6e\xeb\x22\xda\xc8\x71\x3d\xa5\xcc\xce\x53\xed\xd4\x60\xbf\xc6\xb2\xf1\xeb\xce\x53\x0d\xc9\xdf\x88\x59\x78\x03\xc7\x56\xf8\xcb\x1a\x97\x37\xaf\x39\x63\xc6\x28\x8f\x96\x12\x6b\xbf\xb7\xdb\x4d\xd3\xd8\xd5\xb5\x6e\x39\xdc\xe1\x86\x32\x36\x33\x3c\x62\xf2\x8c\x2e\x7a\xb3\x64\x54\xf9\x33\x59\x1e\x7b\x3f\xd0\xce\xa2\x89\x48\x3e\x3e\xa9\x01\xc4\xdf\x35\x53\x63\x9b\x13\xf1\xe0\x2a\x5f\x5f\x70\xfb\x32\x46\x48\x67\x18\x8c\x92\xcb\x0a\x16\xae\x2f\x3e\x81\x61\xe4\x89\xec\x37\x04\x2b\x49\x56\xf5\xba\xc4\xdc\x7b\x01\x96\x8f\xe5\x46\x32\xc2\x1b\x94\x88\x87\x9c\x28\xd3\x99\xe1\xb2\xe4\x8e\xc9\xb6\xb0\x4c\x40\xe1\xc5\x33\x9e\x29\x0b\x51\x56\x8f\xf1\x45\x22\xa5\x0f\xdc\x29\x70\xd4\xf1\xa6\x91\x8d\xff\x1c\x0f\xd0\x32\x06\x1e\x8a\xb7\xfc\xf3\x77\xcb\xf1\xcf\xb4\x65\xce\x7f\xb3\xcc\xc9\xcf\xd3\x69\x2c\x86\x3a\x31\x07\xd6\xeb\x4d\x1b\x18\x15\x10\xd3\x0d\xef\x74\x24\x3a\xe7\xff\xf2\xee\x47\xf0\x0f\x22\x15\xe7\x27\x47\x47\x47\x3a\x00\x4d\x64\xb2\x4e\x6a\x8b\x26\x69\x2a\xf8\x2e\xc3\x29\x56\x30\x61\x1b\xc1\x52\x0a\x86\x3f\x74\x8e\x51\x60\x01\x0c\x9f\x59\xc3\xc9\x71\xb5\xa6\xec\x80\x16\xf2\x55\xcf\x65\xfb\xef\x0d\xe5\xce\xe5\xca\x19\x5e\x8e\x10\x36\xa5\x28\x78\xc3\x92\x71\x18\x4b\x11\x86\xce\x7d\x33\xb6\x9a\xd0\x39\xba\x24\x4d\x75\xdf\xd1\x35\x25\x42\xc6\x4b\x76\xae\xbb\xaf\xec\x90\x23\x68\xf0\xb7\x00\xc4\x90\x78\xc3\xe9\xdd\x68\x80\x04\x1d\x1d\x0d\xd8\xf5\x68\x35\x1a\x08\x97\xd8\x92\x92\x34\x94\x64\xd9\x5b\x21\x7f\x4c\x00\x79\x04\x9b\xb7\x5c\xd5\x37\xcc\x55\xc7\xc2\x48\x80\xce\x8b\x8f\x9a\x90\xa3\xe1\x22\x7f\xcb\x52\xca\x39\x9a\xf4\x04\x2f\x1d\xe8\x22\xd4\x58\x87\x48\xfb\x2d\xa9\x25\xff\x8e\x2c\x54\xb6\x45\x22\x89\xcd\x5e\x91\xe8\x67\xf0\x3e\x83\x4f\xdd\x8a\xd4\x92\x05\x36\xb3\x22\xaf\x49\xbe\xc6\x8d\x98\x10\x66\xa6\xb5\x07\x91\x36\xa6\xf0\xcf\x90\xea\x0a\x7f\xea\x51\x49\xd0\xac\xba\x0f\xb3\x45\x45\x81\xe0\xec\x33\x04\xb9\x51\x6c\x7e\xb9\xed\x60\x46\xc5\xa6\x63\x93\x3a\x62\x7f\x9b\xb1\xa4\x22\x6c\xa3\xf2\xaf\x08\xc2\x2b\xb0\x71\x99\xfe\xdc\xb7\x1b\x52\xe3\xf1\x99\x2e\x25\x09\xaa\xc6\x56\x58\x3a\x4b\xa3\x06\xed\x04\x77\x82\xc8\x2c\x08\xa8\xcc\xfe\x0a\x87\xa0\x98\xef\x88\x6e\x97\xff\xe8\x27\x95\xa6\xd9\xe0\xef\x50\xc7\x82\x1c\x54\x23\x0d\x7f\x24\xd6\x0b\xea\x54\x35\x8d\xda\x0a\x4f\x8b\xd2\x7e\xe6\x5a\xe1\xb3\xdd\x01\x97\xcb\xb9\x85\xcb\x11\x2b\xe4\x51\x95\xbe\x5b\xe0\x12\x83\x0a\x14\x1a\x62\x2f\x98\xa7\x1d\xf1\x4c\xa3\x67\x57\xf5\x5b\xa9\xbd\x4e\x67\xcd\xa2\x13\x32\xb5\x09\x27\x5a\x24\x15\xa3\x35\xfe\xa7\xbb\xe1\x65\x71\x7d\x44\x3e\xcd\x47\xce\x63\xc9\xcb\xe3\xb1\x65\x32\xf8\x93\x44\x41\xf0\xab\x26\xc3\xa7\x08\xe1\x9f\xbf\x52\xf7\x71\xdb\x8d\x0e\xe3\x81\xbd\x2a\x7e\x8b\xed\x27\x66\x49\x68\xac\x1a\xf9\xd4\x92\x52\xf8\x1c\x71\x85\x8f\x98\x97\x93\xa0\x07\x3f\xf9\x2b\xe4\xc9\xb2\x62\x2f\xf6\x27\x4b\x83\xa5\x12\x15\x7a\x42\x3c\x85\x9e\x98\x2f\x33\xe8\x87\x43\xb7\x12\x32\x51\x41\xe2\x01\xef\x10\x79\x5a\xb1\xb5\x6e\x72\x0b\x08\x87\x4c\x52\x4a\x8a\xfd\x01\xdf\x18\x7c\xef\x07\xcc\xde\x2e\x11\x48\x21\xc7\xd3\x5f\x24\xd5\x2b\xf5\x04\x05\x7b\xcf\x33\xda\xd0\xda\x80\xb0\xf4\xbb\x69\xd8\x37\x13\x94\x2c\x1e\x07\xe7\x31\xcb\x53\x0b\x8a\x73\x58\xd2\x0f\xf8\x86\x65\x09\xe5\x03\xf8\xd8\x71\xfe\x44\xbc\x3d\xc1\x1d\xef\xc0\xe5\x53\x2e\xa3\x18\x0c\xad\x3f\x36\x7d\x66\xd7\x38\x8a\x36\xfa\xe9\x91\xc5\x2c\x55\x1d\x1d\x99\x3a\x3a\x12\x5a\xeb\x35\x6f\xa8\x17\x4c\xa6\x41\x2f\x88\x83\x1e\xce\x67\x45\x8a\x7f\x78\xf3\xec\xbc\x58\xae\x8a\x9c\x12\x70\xd6\xc6\xe4\xe7\x69\x34\x66\x93\x08\x43\x97\xd5\x85\xd1\x26\xcd\xeb\xc5\xbb\x9a\x30\xea\xaf\xa0\x2a\x9b\x6a\x52\x6a\x0f\xb5\x0e\x34\xcd\x24\xff\x71\x16\xf4\xa0\x10\xdc\x4a\x74\x83\xa8\x81\xc7\x20\xbc\xcb\xff\x8b\x4a\xd4\x97\x5e\x4b\x16\xaa\xc8\x6e\x10\xe9\xcc\xb2\xce\x46\x82\x69\x95\x0e\x9a\xda\x8b\x6c\xf6\x59\xd6\x84\x4c\x45\x5b\x71\x10\x21\xba\xaa\x29\x76\x06\x4f\x8b\x32\xd3\xb8\x0f\xf8\xe6\x39\x0c\xf3\x03\xbe\x91\xe6\x77\xb0\x7e\x70\xfe\x82\x13\xe4\x98\xcf\x8a\x9a\x94\x21\xf3\x86\x5e\xe3\x38\xa0\x7c\x4b\x00\x33\x4e\xe6\xa1\x6c\xf1\xe1\x69\xb7\x4b\x1b\x05\xf3\x27\x99\x7c\x7c\x0a\x57\x2e\xd3\x20\xda\x88\x8e\x18\xe7\xc3\x11\x50\x44\x88\x46\x7a\x0d\x46\xef\xb4\x79\x61\x08\x19\x6d\xec\x94\x78\x32\x6d\x1a\x81\xb8\xa4\x9c\x0c\xa7\x67\x6d\x83\x1f\x4e\xa3\x51\x10\x34\x0a\x5b\xdd\xd6\x00\x2b\xf4\x47\x35\x9c\xfe\x3c\xad\x0b\x9f\x51\x4e\x1e\xb4\x2a\x0d\x92\xf2\xaf\x37\x36\x00\x97\x7d\x4d\x86\x73\xca\x04\x28\x16\x72\x0f\x65\x88\x63\x4c\x52\xd6\x16\x96\x20\x52\xbd\xcd\x92\x6a\xf1\xb8\x2c\x56\x2b\x9c\x72\xd6\x89\x3d\xa6\x22\x61\x84\xbe\xc6\xaa\x0d\x10\xa7\x84\xde\x26\x38\x83\x60\x43\x2a\x9f\xab\x8c\x28\x70\x1a\xaa\x72\x17\x72\xd0\xab\xab\xc2\xbd\x21\x83\x54\x44\x58\x1d\xf3\x87\x5c\x54\xd1\x81\x06\x3d\x87\x82\x83\x0f\xf1\x24\xad\xdd\x63\x6c\x1a\xd8\x94\xf5\xc2\x25\xfd\xac\x1b\x4a\xf8\xe9\x8f\x86\xcf\x55\xac\x41\x32\xe6\x55\x9f\xe3\xfc\xe1\x90\x9e\x06\xaa\x15\x9e\x7c\x3c\x94\x37\x07\x1e\xa0\x55\xa1\xb1\x35\xc7\xec\x0e\x06\xc2\x05\x52\xba\x66\xf4\x29\x0e\x4a\xbe\xa8\x5e\xc5\x87\x0e\x0a\x89\x00\xc7\x0d\x45\x87\x30\xd5\x82\x13\x5b\xa8\xc5\xc4\x29\xb1\x53\x33\x22\x14\xb0\x8c\x1e\xa8\x63\x47\x36\xa2\x29\x47\x81\xab\x69\x38\xa4\x96\x06\x4e\xfc\x92\x66\xfb\x35\x8e\x65\xe2\x64\x30\x95\x9a\xde\x6e\xd7\x94\xe4\xb9\xdb\xb6\x3e\x61\xa2\x08\xe3\x42\xfb\x55\xb1\x2e\x67\xc2\x38\xf2\xf8\x01\x5b\x82\xb0\xdf\x8b\xee\xe8\xcb\xd0\xa3\x2c\xaf\xb0\x90\xde\xaf\x5a\x68\x4c\x1f\xec\x89\x78\xe1\x3c\x98\xc6\x96\x3c\xa8\x34\x16\xef\x58\x44\x1a\x88\x06\x01\xb6\xc0\x25\x4a\x71\x86\xaf\xe0\xa5\x72\x40\x4d\x0e\x0e\x08\x99\xbc\x14\x37\x5a\x2e\x21\x51\x54\x89\xc5\x8f\x06\x1a\xd6\x05\xcf\xda\x79\xb4\x05\x99\x97\xc1\xb2\x11\xa3\x49\xf6\x3a\x1e\xff\xdd\xed\x8a\x5f\xfd\x6b\x92\x65\x8f\xd2\xf4\x0d\xe7\x02\x21\x5c\x91\x37\x37\xd4\xc1\xee\xf3\x9e\xc5\xc3\x2b\x46\x5e\x92\x72\x4b\x07\x2d\x58\x0f\x68\xdb\x25\x9c\xda\x87\x71\x42\x3a\x6c\xe8\x4f\xc5\x1a\x02\x55\x2e\x92\x8f\xb8\x93\xe4\x2a\x7c\x25\xb7\x51\xd0\xae\xf8\xaa\x0a\xa7\x9d\xba\xe8\xfc\xcf\xba\xf8\x9f\x81\x0b\x93\x8a\x82\xaa\x03\x26\x27\x0f\x19\xd3\x65\xc6\xe3\xd4\xf4\x6e\x2f\xa0\x41\xf3\x1d\x1b\x10\xa0\xe9\x39\xcb\xef\x88\x20\x2c\x96\x4c\xe0\xf3\x0a\xff\x34\xbc\x89\x56\x6d\x02\x83\x4e\x88\x7c\x7a\x07\x13\x9a\x33\x15\x72\x5a\x83\xc4\xa0\xac\xaa\xf6\xc0\x14\x22\x2a\x73\xff\x92\x49\x74\xd6\x60\x4c\xe8\x79\x6f\x02\x41\x65\x5d\xe9\x78\xcd\x6a\xb7\xe0\x7c\x0b\xba\xf1\xe7\x4f\x9f\xe4\x35\x2e\x71\x1a\x6d\x5a\x32\x04\x62\xb3\x66\xa3\x46\x5e\x64\xf3\x6f\x6d\x39\x4c\x58\x98\x21\x0e\xc9\xaf\x5e\xfb\xf7\xa1\xed\x79\x0f\xba\x0c\x5c\xd5\x38\x3d\x37\xb6\xd0\x7c\x9d\x65\x10\x47\x47\x6b\x90\x1d\x0e\x60\x11\x6f\xd6\x30\xbf\x43\x13\x24\xd1\x94\x0b\x8e\xf9\xc6\x16\x0b\xde\x0a\x54\xc4\xe9\xd4\xad\xdb\x34\x86\xb2\x0d\x36\x28\x43\x12\xc6\x86\x20\x13\x85\x84\x83\xc4\xc0\xa7\x18\x02\x35\xad\x4d\xfa\x33\x9c\xf7\xb4\x7c\x7a\x00\x68\x47\x53\xe3\x1c\x71\x19\xce\x45\x6c\x72\x2a\x74\xf2\x50\x3d\x1a\x14\x42\x8a\x6f\xc6\x5a\xaf\x4a\x3a\xd6\xf4\xfb\x38\x99\x2d\x60\x40\x97\x49\x85\xd9\x2f\x39\x01\x12\xa7\x8d\x67\x1f\xf9\xf6\x13\x7b\x1d\x3e\xe5\x58\x29\x14\x94\x5a\x40\xb2\xba\xf2\x77\xa4\x20\xf9\xd0\x1b\x6f\x11\xd8\x4a\x09\x84\x8c\x0c\xde\x3a\xe1\xfa\x2e\x8d\x94\xaf\x4a\x69\x6d\xa9\x68\xa3\x86\xa8\x35\xe1\x2f\xec\x0e\x19\xd0\x46\x92\x4f\x66\x84\xc4\xf3\x90\x6a\x8e\xbd\x51\xd2\xaa\xbf\xec\x2f\x93\x95\x1b\xb3\x06\x89\x91\x99\xbb\xc1\x43\x31\x94\x89\x90\x89\xed\x41\x20\x97\xca\x24\xa7\xd1\x58\x8d\x79\x32\x95\x85\x4c\x0d\x2a\x5c\x96\x39\x30\xd8\x29\x60\xe9\xc8\xd1\x46\x85\x11\xa5\xc7\x0e\x4f\x14\x4f\xa3\xda\x76\x6a\xe5\x09\xc7\xc2\x63\x92\xcf\x8b\x00\x4d\x82\xfe\xc9\xba\x26\x59\x15\xa0\xa0\xac\x3e\xae\x4e\x56\x65\xb1\x24\x15\x0b\x7b\xe2\xb3\x61\xdb\x17\xa1\x64\x97\x8d\x1b\x5d\xa2\xd8\x6a\xa2\x4f\x13\x81\xb2\xe2\xf2\x0a\x3b\xd9\x2c\x95\xeb\x62\x4b\x92\x64\xe4\xef\x6e\x19\x99\x03\xc6\xbc\x30\x80\xe7\xc9\x25\xce\x9c\xa2\x7a\x26\x2b\xfd\x1a\x12\x62\x6b\x24\x1a\xcb\xa3\x28\x2d\xe7\x9a\x9e\xe5\xf3\x22\xbc\x58\x95\xc5\x4a\x28\x20\xe8\xcf\x18\x52\x58\x90\x67\x06\xb4\x7a\x1a\xb3\x92\xf6\xaf\xa4\x06\x40\x43\x48\x6e\xb4\x16\xf5\xb3\x30\x97\x6f\x0b\x08\xd2\xc1\x3e\x56\xea\xae\x08\xf1\xd3\x82\xbf\x15\x06\xb1\x90\xe1\x43\xf5\x62\xda\x10\x65\x85\xa1\x48\xb9\xc9\x8a\x24\x45\x4b\x88\x51\xc2\x15\x23\x2c\xad\x9f\x15\x57\x94\x75\x94\x1f\xa1\xd4\x9f\xf5\x82\x51\x27\xe8\x89\x3a\x4d\x83\xf4\xe9\x54\x8d\x67\xf4\x53\x99\x46\x69\x65\xc2\x40\xb8\xbe\x43\x73\x77\x3b\x41\x0f\x4a\x37\xe8\x0a\xd7\x3f\xe4\x25\xae\x8a\xec\x23\x6e\x7b\xe4\xad\x41\x72\xad\xdb\x8c\xe7\x56\xea\x86\x0f\xf1\xd6\xb4\x18\xa6\x8b\x62\x9d\xa5\xe7\x5c\xe1\x82\xf8\x20\x85\xf5\x08\x9e\x7d\x78\x5a\x94\x8f\x2e\x8b\x12\x5e\xd0\x0d\x55\x1c\x63\x23\x13\x99\xcd\x44\xfc\x49\x92\x17\x45\x8a\x33\xbb\x62\xb9\xce\xbf\x57\xb9\x7f\x2a\x8a\x0f\xb2\x57\xb4\xf4\x55\xb8\xc2\x35\x2b\xaa\x8a\x31\xc3\xd8\xb6\xc6\x1f\xc9\x4c\xb3\xed\x4b\x3c\x2b\x96\xf8\x0d\x9f\x4e\xbb\xa2\x99\x2b\x6b\x89\x8b\x24\xbe\x29\xfa\x7c\xfe\x42\x69\xa7\x00\xb5\xcd\x15\x65\x82\xa8\xd0\xec\x07\x51\xd4\xaf\x17\x38\x0f\xcd\x09\x63\x88\xe9\xa9\xcb\xe2\x68\x76\xe6\x45\xd9\x49\x68\x39\x59\x5b\x9b\xd0\xd6\xba\x30\xad\x1d\x36\x89\x9f\xd5\x2d\x99\x43\xaf\x38\xed\xa4\x6b\x2a\x1e\x77\xee\x6a\xfd\xde\xed\x2c\x8a\xe2\x83\x6c\x78\xb9\x13\x96\x17\x5f\x02\x08\x92\x77\xee\x2e\x3d\x5d\xab\xf5\x6f\x6d\x8b\x61\xc1\x97\x99\x0a\x0a\x85\xea\xd1\x02\xc5\xc2\x9b\xf6\xa5\xa1\xc5\x3a\x62\x33\x07\x51\xd4\x20\x77\x23\x38\xd4\xc8\xa0\x42\xf2\x29\x33\x2b\x21\xac\xcb\x35\x46\x2c\x6a\x2a\x87\x03\x26\x5f\x20\x31\xc0\x23\xaf\x8b\x74\xd2\x50\xae\xf3\xb7\x8b\xa4\xc4\xa9\x04\x41\xd2\xc1\x40\x5b\xf9\x00\x4d\xa6\x00\xb0\xb9\xb9\x5c\xea\x29\x06\xc8\x8a\x70\xeb\x0b\xf9\xd8\x03\xbb\x97\x14\xc6\xf1\xd5\xe2\x8d\x5e\xb6\xa5\x85\xf1\xa1\xd0\xaa\x05\x0a\xd0\xc4\x68\x63\xca\x57\xca\xa5\x8e\x62\x1e\x8d\xe2\xf2\x32\xa5\x6d\x29\x9f\x5d\xe5\x74\x97\xcd\xd7\xd9\x9c\x64\x19\x13\x3b\x99\x66\xae\x93\xe4\x29\x37\x3d\x02\xbc\x83\x64\xb1\xd4\x16\xe4\xee\xd4\x51\xb4\x82\x77\xa6\xcb\x2b\x71\x21\x46\xcf\x1a\x39\x44\xca\x5e\xd1\x3d\x19\xf4\x44\xd1\x5e\xc0\x91\x51\xc6\x61\x37\xee\x22\x68\x43\xc0\x4e\x3b\x79\x8d\xca\x93\xa4\x4e\xbf\x8e\xd4\x51\x46\x37\x7c\xe0\x49\x13\x01\xc1\xb4\xdb\x75\x92\xf8\x3b\x71\xe2\x0a\x93\x0d\x87\x3d\x42\xc4\x9a\xe8\x76\xf9\x2d\x18\xa9\xde\xc9\x68\xcf\xe2\x6a\x0c\x82\x22\xb7\xd0\x5c\x28\xd2\xba\x2e\x1c\x9d\xf8\x62\x08\x1b\xb0\xce\xbc\x2c\x96\x9d\x22\xc7\x9d\x62\xce\x74\x03\xb0\x34\x14\xd8\x8a\x2d\x8d\x38\x5d\x38\x13\xa1\x93\x88\xf6\x53\x12\x3a\x86\x77\xc0\x37\x2d\xe0\x9a\x75\xc2\xe8\x36\xd4\xde\x83\xab\x5a\x97\x9f\x89\x9b\xe2\x56\x85\x0d\xdb\xdd\x81\x7b\x37\xb3\x7f\xbb\xc4\xfe\x64\xc6\xf5\xb5\x6c\x30\x65\x13\x1e\x1b\x39\x8d\x75\x46\xb7\x43\xc4\xc3\x6d\xc8\xf0\xa3\x52\xd7\x2b\x99\xa1\xd0\x2e\x3a\x56\x94\x54\xfa\x59\xec\x25\x42\xb2\xb2\x18\x09\xef\xcb\xfc\x34\xc6\xea\xd8\xbd\xf3\x9b\x2e\x83\xee\x72\xf6\x34\x0c\xe4\x81\x80\x36\x82\x7f\xb5\xfa\x66\x26\x00\x23\xd9\x9c\xe4\x7f\xf5\x1d\x6a\xda\xe6\x34\x74\x79\x19\xf2\xbd\x5d\xaf\x70\x39\xc3\xa9\xc6\xef\x15\xf5\x42\x46\x2f\x87\x9f\x7a\x54\x7d\xc6\xf5\x41\xbf\x15\x13\xde\x62\x56\x48\x68\x62\xf4\x97\x5d\xf0\xa7\x5a\x10\x67\x28\xc3\x83\x7d\x4a\x48\xb7\x5b\x0e\xa2\x21\x4f\x07\xbc\x6e\x10\x75\xbb\x47\x46\x57\x2d\xe5\x61\x4c\xac\x38\xfc\x04\xa1\x52\xe3\x6c\x11\xf4\x2f\x6e\x73\x4d\x0b\x7f\x59\x41\x98\x73\x1e\x25\x7f\x3b\xba\x8c\xcc\xc8\x78\x2c\xd9\x9c\x09\x79\x5b\x4a\x8f\xff\x84\x5b\x6c\xda\x37\xa4\x51\xb7\x9b\x4c\x3e\x4c\x8f\xe2\xf8\x72\xf2\x61\x6a\x35\xda\xe8\xcd\xb5\xe8\x8e\x35\x69\x67\xb7\x58\x7a\xc2\x31\x86\x8a\xa7\xbe\x6c\x81\x34\xc7\xa6\x2c\xeb\x2d\xbb\xce\xbd\xa5\x8f\x2f\x6f\x8e\x79\xd4\xf9\x5b\xd7\x63\x13\xfd\xb9\x02\xb2\x1d\xc2\x73\x97\xc0\x2c\xb6\xab\x36\x71\xb6\x44\xab\x0b\xaa\xb4\x8a\x12\xa1\xb4\x4a\xdf\xdf\x80\x05\xe6\x2e\x29\x77\x47\x65\x76\x8a\xc6\x16\xe8\x7a\xdd\x85\x2a\xcd\x9f\xe5\xe9\x7f\x80\x77\xfd\xe2\x8d\x94\xe8\x3c\x83\x81\x9d\x3c\xda\xd5\x2d\x82\x45\x6a\x2b\x03\xe3\xd2\x36\x81\x0b\x0a\xb7\x0a\x51\xe2\xfa\x79\x5d\x48\xf3\x43\x0f\xc8\xdc\x46\x44\x2b\xc0\xd4\x3e\xb4\x56\x28\x45\xfc\x48\x1f\xb3\x20\x70\x9e\x46\x05\xd1\xd0\x72\xda\x76\x87\x5b\x79\xcf\x26\x69\xd9\x05\x93\xa0\xdf\x3f\xf1\x6f\x8c\x2f\xa9\xe8\xb9\x0d\x1e\xdf\x02\x7f\xab\xf5\x25\x8b\x97\x6a\xa3\x6a\x5f\x64\xec\xd6\xf1\x9c\x1e\xaa\xe3\xb9\xe7\x76\xed\xdb\x6d\xa2\xd7\x50\xc7\xda\xcd\xc1\x7a\x05\x75\x0a\x77\xbb\x7e\xf6\xa0\x8d\xd1\xd0\x8f\x54\xfd\x14\x6a\x63\x17\x95\x6c\xef\xe5\x13\x05\xf3\xb7\x57\xc3\xa2\x0e\x6b\x4e\xe5\x36\xb7\x38\x91\xb5\x63\x8a\x1e\xcb\xa4\x92\xbc\x0d\xf8\xd9\xb5\x5e\x2a\xba\x33\xbf\x07\xf7\x0f\xa0\xea\xff\xda\xfb\xc0\xd5\x86\x9e\x9a\xda\xd0\xdf\x60\x9f\x90\xca\xa5\xf4\xb4\x20\x4f\xbf\xcd\x5e\xda\x7d\x0c\xf9\x77\x95\x94\x4d\x5c\xbd\x80\x23\x1e\x1a\x2a\x49\xe8\x8a\x0a\x8b\xab\xb2\xf8\x48\x52\x9c\x0a\x55\x48\x9b\x42\x4b\xdf\x51\x14\x51\x3d\x2a\x53\x7e\x60\x68\xe6\xd0\x2c\x05\x7e\x6f\xb7\x13\xfe\x58\x91\xe0\x15\x21\x53\x6c\x52\x9f\x9a\xf2\x62\xa9\xb4\x04\xa0\xf9\x83\x14\xce\x09\xce\x34\x06\xb8\xd2\x4c\x16\x51\xab\x90\x0a\x88\x1e\x6f\x1a\xb0\x15\x63\x6b\x04\x7a\xaa\x28\xda\x40\x26\x37\x88\x1f\x4c\xa7\x31\xcb\x90\x3c\x2c\x1c\x9b\x64\x2e\xe4\x56\x25\x4a\x48\x6a\xe0\xe4\x08\x1d\x18\x7b\x9f\xb7\xe1\xf6\xad\xc2\x64\xe2\x88\x59\x32\x69\xcf\xf7\x48\xbf\x5d\x61\xde\x70\x72\x41\xd2\x3b\x27\xfd\x1a\x57\xb5\x08\x13\xaf\x01\xc9\x01\xec\x93\x14\xee\x33\xdc\xac\xc6\x84\xbd\x9d\x9a\xec\x66\x15\x3e\x9b\xae\x70\x7a\x78\x00\x59\xf9\xe2\x17\x27\xff\xe4\x74\x63\x27\xdb\xe8\xdf\xeb\xfb\x76\x9c\x90\x3c\xd9\xae\xd2\x55\xfa\x3b\x88\x84\xba\xb6\x36\xac\xa1\x92\x65\x35\xf6\x9d\xc3\x86\xf2\x48\xab\x27\xef\x6f\x54\x1a\xd2\xda\x8a\xc6\x2a\xdd\xf0\x2f\xf2\xb4\x0b\x36\xef\x5c\x53\x24\x1f\xca\xd2\xf6\x71\x3f\xc5\xea\x5a\x2b\x8e\xd5\xbb\x5a\x67\x81\x96\x13\x8c\x02\xa0\x67\x87\xea\x07\xa5\x72\x6d\xa2\x60\x9d\x46\xb7\xdf\x32\xac\xa6\xbb\x63\xe0\x1f\x29\x9c\x19\xa1\x2f\xec\x33\x55\xdd\x2e\xf6\x4f\xd4\x7b\x67\x10\x61\xdf\x4a\xb4\xcb\x10\x16\xc9\xf6\x84\x19\x5d\x1f\x3b\xe9\x2d\xa5\xd7\x65\xd6\x52\xd6\xda\xb3\x5f\xe4\xb0\xff\x55\xef\x2f\x18\xdf\xdf\xee\x17\x06\x2d\x67\x9e\x3d\x84\xe0\x80\x8b\x4d\x5a\x8c\x6b\xd5\xed\xf3\x5c\x68\xdb\x59\x99\xac\xb8\x72\xf2\xb3\x02\x42\x21\x31\x8b\x00\x27\x97\xa5\x42\xbc\x3c\x78\x08\xcf\x29\xc1\xd3\x5b\x68\xd6\xbd\x03\x6e\x7e\xef\x39\x37\xbf\xf8\x53\x5d\x26\xb3\xfa\x2f\xda\xa6\xb4\x2b\xb8\x45\x58\xcd\x2b\x5c\xc3\x3b\xa9\x19\xa9\x6a\xa7\x92\x91\xbb\x9b\x3e\xde\xf3\xd1\x47\xa5\xf9\x05\x4f\x15\x0b\x6f\xec\x25\xc9\x8a\x2b\xb8\x83\xb4\xf0\xa9\x2f\x32\xac\x46\x9d\x72\x2a\xcb\x2a\xf9\x08\xee\x78\x76\x54\xe0\x25\x58\x3d\x4a\x41\x52\x95\xf5\x8c\x6d\xa5\xd8\x42\x6a\x87\xf1\x7b\xf3\x7c\x67\x95\xdf\x1f\x26\x77\x59\x5b\xa3\xef\x29\x03\x0b\x51\xac\x62\xc7\xcb\xb2\x58\x69\x4e\xa2\x8c\x56\x49\x87\x37\xb5\x7d\x98\x3b\x8f\x65\xcc\xc8\xcb\x54\xb8\x0e\x23\xb0\x1c\x31\x4c\xd4\x96\xc9\xca\x17\x64\xc4\x6a\xb9\xdf\x62\x7d\x68\x17\x5b\x26\x2b\x65\x76\xa2\xac\x40\x64\x01\x24\xac\x75\x94\xc5\x92\xe1\xc6\x76\x3c\x44\xab\xb2\x98\x61\x6e\x41\xcb\xde\xd7\xee\x76\x79\xd2\xf8\xf8\x98\x78\xfd\xdb\xc6\x1a\x04\xd2\x5c\xa4\x42\x9b\xa4\x32\x7d\xb1\x9a\x68\x2c\x5a\x57\x5e\x6f\x60\xde\xbb\xdd\x9a\x29\x32\x41\x72\x8c\x60\x8b\xfa\x0d\xb3\x45\x05\xbb\xe8\x80\xbd\xa1\xea\xfa\xf8\x70\xa3\x17\xe3\x5c\x53\x00\x8a\xf2\xc2\xa8\x45\x7b\x99\xf4\xfb\x1b\x40\x2e\xd5\x14\x90\x7a\x44\x2a\x9a\x51\x2e\x71\x4a\xa4\xc1\xdf\x75\xa2\xdd\xbe\x90\xfc\x2a\xe6\xee\x44\xc9\xac\x26\x1f\xb1\xb5\x5d\x8a\x2c\x85\x6d\x6a\xd7\x3a\xf3\xd6\x61\x8e\xda\x5c\x40\x06\x8f\x4d\x70\xc2\xbe\xb6\x9a\x85\x43\x13\x5e\xfb\xae\xcb\x1b\xee\xaa\x7d\x0d\x5d\x01\xec\x70\x95\xf4\xae\x80\x08\x0e\x02\x0e\x64\xcd\x8a\x34\x13\xe0\x7b\xc1\x1e\xf1\x58\x71\xf5\x74\x9b\x40\xec\x89\x50\x74\xd5\xd7\xb3\x90\xe8\xc3\x48\x8d\x34\x53\x75\x46\x23\x35\xd2\x68\x90\x42\x09\xa2\xe1\xdf\x23\x7b\x32\x3c\x84\x85\x41\xbc\xd5\xa0\x78\x20\x19\x9e\xf3\x4a\xff\xe2\xf5\xd7\x56\xc5\xfb\xbc\xdc\xd8\x50\x58\x7b\x4b\xf2\x97\xef\x99\x0e\x66\x57\x01\x57\xcd\xdd\x0e\xd3\xe4\xc3\x14\xee\xec\x1a\x79\x19\xbd\x20\xda\x88\x8d\xb9\x65\xf7\xd4\x93\x40\x9b\x05\xf9\x1a\x77\x80\x76\x0d\xce\x9f\x99\x64\x99\x3f\x83\x8f\x63\x2a\x1e\xae\xf6\x4c\x25\x85\x99\x99\xc5\xdb\x28\xdd\xed\x7a\x71\xda\xdc\x90\x76\x2e\x08\x68\x06\x86\x33\x6a\xaa\x3e\xe1\xd9\xdc\xb1\x0f\x3d\xe2\x39\xc9\xd9\x89\xfd\x17\x6b\x2c\xbb\xa6\xd2\x87\x52\xc8\x00\x20\x1a\x1b\x9f\xe2\x0c\x8e\xbd\xa9\xd6\xad\x23\xdc\xb4\x46\x9b\xf5\x2a\x4d\x6a\xfc\xc3\x9b\xe7\xa1\x51\x0b\xa9\x8d\x58\xf2\x97\xde\x60\x2f\xf7\x53\x92\x1a\x73\xe6\x49\x15\x45\xb9\x9b\xe8\x9f\xf4\x6d\x66\x7b\x40\x82\x8d\x97\xa1\xbd\x53\x0d\x75\x66\xc5\x72\x95\xe1\x1a\x07\x51\xa4\x05\x44\xd0\x56\xa5\xd1\xcd\x68\xad\xa5\x00\xff\x1c\x93\x30\x56\xb8\x5e\xaf\xf8\xb5\x5b\x65\xce\xbe\xe8\xa1\xd9\xbb\xc8\x88\x53\x5d\x55\x53\xdc\xcd\xbb\x38\xe5\x27\x9f\xec\x2a\x38\x8c\xbe\x6a\xbc\xd9\xe6\x02\x7e\x81\x45\x56\x4e\x10\x0c\x0b\xb5\xe1\x98\x8b\xce\xaf\xed\x79\xd8\x1b\xdf\xda\xbc\xc5\x75\x9d\xe1\x8e\x3a\x92\x04\x57\xd8\xb9\x5e\xe0\x5c\x4f\x27\x95\xec\x2f\x0d\xb8\x83\x8a\xbd\x13\xa3\x0d\x3c\x83\xf8\xe4\x13\x61\x8f\xa8\x71\x4c\xb1\x16\xc6\x42\xfa\xc6\x8b\x08\x33\x76\x03\xa8\x4e\xd5\x5d\xcb\x46\x87\x85\x21\xa8\x5d\xa5\x07\x68\x52\xb1\x15\x61\x06\x36\x9c\x5f\xd7\xd2\xcc\x2d\xaa\x62\x75\xaa\x54\x6f\xc0\x07\x76\x61\x22\xd4\x58\x9a\x02\x0a\x9e\xf3\xd6\xbf\xe0\xe1\x75\xd5\xa1\x85\x7f\x5a\xb8\x02\xcf\xee\x02\x3a\x8d\x6c\x7c\xd2\xad\x2a\x7f\x78\xf3\x5c\x0d\x78\x5d\xca\xc0\xf2\x57\x55\xcc\x38\x18\xb0\x2b\x16\xde\x16\x70\x86\xad\xcb\xcc\xf5\x9d\xa2\x55\x26\x83\x29\x73\x9f\x5a\x97\x52\x51\x95\x16\xf6\xac\x33\xe3\x90\xfe\x12\xd7\x8b\x22\x65\xef\xae\x47\x0d\x92\x54\x67\xe4\x7f\x0e\x0f\x9c\x40\x64\x29\x19\x9f\x92\x52\x83\x25\x7b\xeb\x33\x50\x8f\x16\xbb\x43\x62\xf3\xa3\x28\x1b\x4d\x6b\x7b\xe0\x5d\xf7\xb7\xf6\x03\xcf\x27\xa2\x61\xe8\x23\x28\xc9\xbb\x1d\x8d\xed\x68\x85\x87\x68\x45\x25\x9e\x97\xb8\xd2\x5f\xf9\x25\x1f\x0b\xb1\x94\x7a\x68\x1a\x2f\x7d\xb8\x0d\x4f\xa6\xe3\x6b\xec\xa2\xf0\x58\xb3\xae\x30\xdd\x45\x99\xbb\xaf\x5e\xd4\x74\xfb\xed\xf5\x88\x81\xe9\x4c\x80\xd1\x8b\x53\xb6\x9b\x1b\x4a\xe8\x9b\x00\x74\x9b\x7a\x8a\xa6\xe8\x12\x76\xb7\x08\xec\x2b\x49\x7e\xd5\x49\x3a\x7c\xae\x34\xda\x12\x88\x20\xc3\x4c\xd0\xa2\x08\xe3\x95\xda\x42\xb8\xc5\x31\x80\xf2\x0c\xe8\x78\x38\x85\x4b\x1e\x7d\x0d\x46\xfa\xc7\x76\x6b\xb4\x31\x90\x4e\x71\xc2\x20\xb9\x1a\x4d\xa6\x46\x64\x9b\x36\xa6\x64\xbb\xad\xec\x23\x9d\x0d\xdc\x34\x82\x73\x19\x7e\xc1\xe7\xc3\xdb\x43\x12\xf3\x7f\x24\xfa\x4b\xd1\x07\xa3\xb2\xd8\x8c\x01\x6f\xc6\x1f\x9e\x93\x8f\x51\xbd\x32\xb9\xa2\x4b\x42\xb3\x70\xfa\x88\xd2\x0b\x57\xad\x10\xfa\x48\x08\x1a\x46\xf0\x28\x61\x46\x70\x2a\xd5\x86\x46\x53\x93\x81\x31\x7d\x4e\xf6\x70\xfa\x19\x0b\xce\x74\x81\x72\x81\x4c\x00\x1a\xdd\x25\xd1\x27\x87\xa8\x5d\xb4\x4f\x12\x89\xf6\x6c\x21\x77\xcf\x1d\xb0\x91\xdc\x4a\xc2\xb3\x9e\xa7\xf1\x89\xd2\xf7\x91\xba\xb2\x88\xb8\x2e\xd7\x0c\x1c\x20\xcc\x02\xdd\xe8\x04\x7a\x94\xa8\x71\x8b\x54\x2a\x23\x2a\xe8\xb3\x2b\xec\x71\x10\xa9\x1e\x31\x6a\xf4\x1b\x61\x8f\x58\xc5\xdb\xe3\x0d\x3f\x0b\xff\x62\x3b\x0c\x3b\xdb\x10\xf4\x82\xcc\x11\xcb\x38\x51\x5b\x8f\x7e\xf6\x66\x0f\x38\xb9\xc3\x95\x15\x5c\xd1\xe8\x26\x14\xe2\xf7\xab\xcb\x9f\x11\x41\x2c\x58\xc2\x3c\x3c\x72\x3b\x91\x1e\xbb\x86\x71\x91\x03\x50\xec\xd6\x9c\xb4\x36\x26\xa8\x1a\xb7\xec\x9c\x15\x92\xb9\x8a\x5d\x85\x03\x64\xb0\x07\xd6\xf4\xf6\x04\x99\x4d\xf1\x27\xee\x43\x46\x11\xda\x68\x4c\xe2\x32\x2d\x24\xf0\x99\xfe\x96\x5c\x0d\xc3\x67\x0f\xe4\xac\xd4\xd4\x92\xdb\xfb\xfc\x41\x67\x03\x7b\xb8\x1f\x33\xe5\xe6\x19\x28\xb1\x17\x04\xcf\xec\xb5\x33\x50\xee\x82\x7a\x40\x94\xc1\x04\x58\xb7\xbd\x61\x34\x36\xe7\xd1\x84\xc2\x29\x7c\x0b\x8a\x65\xf4\xad\x68\x96\xf8\xd1\x88\x77\x18\xbc\x8a\x13\xc9\x34\x57\x3c\xc6\x94\x06\x95\xa3\x36\x31\x7b\x62\xd2\x3a\x08\x78\x8c\x0b\x84\xbd\xf2\xba\x7a\x95\xbf\xc4\xd7\x02\xeb\xe4\xd5\x90\x37\x1b\x79\x43\xa2\xf1\x00\x24\xce\xe6\x03\x23\x3b\x3b\xd5\x17\x96\xa4\xdb\xf5\x76\xe7\x8f\x60\xe2\x2d\x0a\x41\x16\x9c\xce\x58\xb2\x94\x1b\x0f\xd5\x19\xb9\x08\x13\x75\xbb\x47\xa6\x62\x68\xff\xfc\x50\x26\x94\xa9\x50\x7c\x31\x8c\x76\xf0\xe0\x86\xe2\xa5\x8d\xf9\x07\xe6\x00\xd8\x6d\x70\x7c\x62\x6c\xff\xc5\x35\xc9\x32\x80\x92\xcb\xbd\xec\xb5\xfc\x51\xe0\xa4\x07\xe8\x82\x77\xf4\xa3\x9d\xe5\xd0\x75\xa9\xa2\x30\x64\x5d\x1d\x4c\x8f\x5a\x08\xb8\x22\x3f\x3c\x66\x5b\xd3\xa8\x31\x80\x79\x8e\x13\xcf\xe1\xe2\x01\x02\x65\x38\xf9\x48\xf2\x2b\x66\x75\xcd\xdc\xa8\xf7\xc0\xc4\xa6\x81\x35\x1f\xec\x6c\x69\x6a\x58\x9d\x9a\x6a\x04\x50\x77\x28\x79\xb5\xd6\xe6\xc4\x38\xfa\xd4\x01\x25\x37\x2d\x57\x95\x54\x42\xd0\xe5\x0a\x05\x21\x79\xca\x0a\x4c\x38\xc4\xe9\x67\x8a\x9c\xf0\x4c\xa6\xb4\x6e\x10\xc6\xbd\xfb\x25\x51\x53\x39\xcc\x81\xb5\xbf\x41\xda\xd0\x3f\x62\x31\x12\x88\xc0\xe8\x91\x54\xdb\x55\x44\x6a\x92\xfa\xeb\x9c\xb3\xd0\xd2\x07\xb7\x2e\x6f\x36\xee\xdc\x80\xa8\x27\xcd\xa9\xfd\x73\x64\xee\x78\xee\x71\xfe\xaa\xfc\x01\xea\x86\xbe\x1d\xa5\x9f\xe5\xb0\xbb\xb4\xa5\x6d\xbc\xab\x04\xcd\xfe\x36\x20\x70\x72\xad\x41\xa0\xa9\x3d\xf4\xd9\x17\x0b\x34\xde\x31\xcb\x5e\x2d\xf8\x18\x64\x70\xdc\xe8\xcd\x1d\xa6\xc9\xe4\x9b\xc0\x37\x06\xaf\x26\x53\x1f\x87\x6d\xc8\x7a\xeb\x99\x61\xd3\xee\xec\xbb\x1d\x3b\x42\x1c\xb2\x46\x9e\xb6\x2d\x58\x83\xd2\xf1\x05\x96\x55\xdb\x1e\xf4\x33\xd4\x47\x40\xe6\xda\x67\xb7\xab\x7e\xf7\x49\xc5\xaf\x17\x75\x05\x87\x73\xf7\xd8\x58\x5b\x33\xf6\x6c\x51\x9e\x24\x15\xea\x0a\x1e\x3b\x27\x8c\x4c\x2b\xa7\x7a\xbd\x52\x85\xd9\x67\x28\x2c\xaf\xbe\xe8\x20\x3c\xcb\x64\x04\x32\x64\xbb\x60\x6c\xd8\xe0\x6b\x76\xfc\x16\x65\x94\x1a\x68\x49\x15\x37\x9c\x18\x49\x0e\xcc\x8f\xc3\x9c\x57\x92\xa5\xbc\x27\xba\x2e\x4c\x55\xf1\xc6\xa4\x20\x54\x9c\x07\x7a\xcb\x7e\x01\x36\xd2\x9f\x92\x20\x8d\x26\xfc\xe1\x51\xde\xc4\x39\xbf\xc5\xe0\xd3\x7a\xee\x5c\x6a\x54\x22\x89\xa0\x4c\x8b\xc0\xa3\xc1\xe9\x8d\x93\xa7\x46\x1b\x6b\x03\x67\x21\x3b\x15\x87\xa6\x35\xc2\xe3\xe8\x1d\xa9\xc2\xdb\xad\xfa\x2d\x66\xe0\x28\xd6\xea\x48\xb7\xc1\x8d\x39\x16\x08\x51\xa4\xf0\x88\x27\xcb\x62\x95\x20\x76\x32\xf4\xbe\x14\x1b\xc8\x3c\x54\x9d\xea\x15\xd8\x9c\xf6\xd7\x79\xb5\x20\xf3\x5a\x2f\xa3\xa2\x88\x9b\x33\x68\x40\xcf\xb3\x4c\xe8\x79\xe2\x76\xeb\xce\x75\xb4\x31\x1b\x83\x2b\x63\x09\x8d\xb9\xe6\xce\x28\xe0\xc6\x47\x95\x96\x67\x11\x2b\x68\xc0\x0e\xeb\xe9\xae\x25\xca\xf4\x55\x73\x16\x78\xff\xbc\x18\x41\x23\x45\x71\xb5\x69\x94\x8a\x53\xed\x55\x60\x55\x11\xc9\x57\xeb\xfa\x07\xa1\xdf\x5d\x97\xd9\x0b\xa6\xf3\x89\xb5\x4d\x2d\x13\x19\xc6\xc8\x2f\xc3\xa0\x51\x5c\xe0\xaa\x5a\x9c\xce\xef\xd1\x2b\x22\x4d\x82\x8b\x0f\xd7\xc0\x79\xb4\x28\xde\xf2\xec\xde\x5f\x5d\xf7\xef\xd2\x41\xfa\x54\x21\x9a\xde\xd1\xbe\x39\x96\xf7\xf9\x24\x4f\x66\x33\x5c\x55\xe4\x32\xc3\xdf\xdf\xfc\xf0\xe6\x79\xb4\x51\xb3\x08\xf7\xa1\xa0\x1a\x17\xb3\xe6\xd1\xab\x68\xd3\x76\xf1\x91\xb0\xa6\x76\x2b\x03\xc7\x7c\xb1\x04\x7b\x74\xa0\x02\x66\xac\x43\x12\xc7\xb1\x52\xec\x6d\x64\x43\x42\x55\x0e\xda\x70\x08\x41\x03\x79\x96\xa2\x5c\x0b\x31\xe3\xb9\x30\xd2\x10\x4d\xd1\x65\xca\x95\x31\xdd\xad\x83\x26\x5a\x4a\x85\x7f\x59\xe3\x7c\x86\x91\x30\xcf\x4f\x3b\x49\x96\x81\x55\x30\x7b\x95\x2a\xc5\x55\x4d\x72\xf6\x4a\x15\xe0\xdd\x58\x00\x40\xf2\x2b\x4d\xfd\xdb\x0f\xa2\xf1\xe1\xb8\xd9\x22\xcf\xe1\x5f\x62\x0f\x6c\xe3\x83\x19\xfb\xb1\x71\x58\xea\x07\xa4\xc1\x3a\x2d\x0e\xe3\x79\x5d\x93\xed\x9f\xf1\xac\x0e\x85\xed\x93\xce\x6a\x44\x8d\x77\xd7\x7b\x60\xec\x73\x3d\x01\x5d\xd5\xb1\x09\x2b\x93\x54\x79\x9c\x3f\x0e\x95\x7b\x09\xb9\xce\x32\x29\x79\xf2\x99\x68\x1f\x81\x10\xa7\x8c\x8b\xe0\x60\xfa\x25\x6f\x8e\x29\x86\xed\x42\xab\x77\x6f\x1e\xbd\x7c\xfb\xec\xdd\xb3\x57\x2f\x3b\xe7\xaf\x5e\xbc\x7e\xfe\xe4\xdd\x93\xbe\xb2\x86\x3f\x84\x08\x09\x33\x20\xc9\x55\x53\xc2\x18\x62\x3d\x1c\xad\xc3\xf4\x70\xc3\x11\x02\x4a\x24\xeb\x36\xc6\x62\xae\x55\xae\xe9\xd7\x8f\xcb\xb2\x28\x03\xa4\x2f\x1e\x22\x5c\x4b\xe6\x85\xd0\x58\x4f\x7e\x99\xdc\x08\xde\x5d\xed\x5f\xe3\x12\x80\x4f\x5d\x52\x5e\x55\x5e\x7b\x21\xa6\x7a\xe3\xb7\x7a\xdb\x6d\x70\x02\x06\x98\x59\x52\xd5\x8f\xca\x2b\xc8\x60\x1e\xe5\x12\x98\xb1\x69\x30\x53\x71\xa3\x7c\x5e\xa3\xdb\xe5\x3f\x1c\x77\x4f\xad\x4a\x10\x19\x91\x33\xe3\x55\xb1\x92\xca\x8f\x2a\x72\xac\x8a\x01\xa1\x69\x27\x1a\x24\x10\x41\x4e\x43\x8e\x80\x49\x0d\x94\x66\xb0\xfa\x1d\xe1\x5e\xea\xde\x87\xb5\x6e\xd5\xf1\x97\xbe\x5b\x6a\xbb\x28\xd2\x47\x18\x49\x1e\x88\x56\x71\x5f\xa6\xd2\x87\xf8\xa8\xae\xf1\x72\xc5\x06\xf9\xc3\x9b\xe7\xfa\xbd\x7b\x5d\x88\x58\xcd\xfa\x20\x3c\x16\x8a\x21\x3d\xcf\x58\xdc\x71\xde\x73\x5b\x07\x7b\x1b\xdf\x35\x43\x1c\xa1\xb4\x8b\x18\x43\xc3\x55\xa1\x61\xb4\x63\x42\x84\xb1\x08\xac\x53\xfb\xbd\x98\x85\xcf\x8e\x40\xa9\xe9\xf7\x4c\x53\xb0\x7a\x81\x4b\x83\xca\x6c\x2c\x43\x32\xe5\xe9\xe1\x94\xf5\x2b\x9e\x6f\x79\x85\x6a\x75\x37\x21\x53\x5f\x57\x94\x0d\xdc\xe1\x7a\xec\x1c\xd8\x6d\xd2\xb9\x65\xf0\xce\x44\xf3\xbf\xf8\x85\xf2\x8d\x61\x6d\x66\x96\x63\x60\x9b\x49\x3e\xc7\x69\xb3\xc4\xe4\xc3\x34\x16\xd1\x9f\xb9\x3e\xca\x29\x00\xd1\x4a\xd9\x28\xb4\x0c\x08\xc8\x36\x99\x3a\xa7\x91\x3d\x1a\x7e\x06\xb5\xcd\x42\x60\x0f\xd7\xdb\x91\x36\x09\x53\xeb\x98\xa7\x9c\xce\x2e\x8e\x2e\xde\xf8\x07\xe0\xbb\x17\xf4\xf6\xdd\x72\x35\xf8\xcb\xca\x5f\x9c\xf2\xb7\x76\xc6\xe4\x97\x55\x9f\x69\xbe\x7f\x59\xf5\x65\xf4\x65\x5d\xac\xa7\xe9\x00\xf9\x51\x0c\x2c\xc0\xbe\x61\x39\x4d\x36\x8d\x6e\x51\xa4\x95\x54\x98\xd8\x62\xd8\x63\x73\x54\x96\x06\xd9\x16\xf0\x5b\x09\x34\x62\xc2\x18\xc9\xaf\xe2\xc9\x54\x68\x6a\x9f\xb1\xdb\x21\xa6\xf4\xe6\x29\x96\x0e\x17\x11\xa4\x1a\xd7\x04\x68\x21\x8f\x8f\xc9\x77\x3e\x71\x8d\x8a\x6a\xad\x72\xf8\xd8\x94\xc3\x5d\x56\x53\x48\xe4\xaa\x9c\x21\xd3\xf2\x90\x0a\x9a\x40\x0b\x37\x02\xc6\x98\xc8\x18\xee\xc0\xcc\x76\xfa\xca\xd5\x34\xda\x88\xf9\xf0\x48\xa7\xf4\x4c\xd6\x5a\x3b\x12\x9b\x90\x27\x1a\x22\x2a\xe8\x59\xf5\xe2\xc8\x9d\x92\x68\x6c\xce\x6b\x6c\xdd\x66\x08\x54\x5f\xc4\x83\xf1\xe2\x3b\x5e\x56\x4c\xe7\x82\x47\x18\xe6\xc9\x93\xc5\x54\x5c\xfa\x19\xf6\x0b\x8c\xae\x35\x06\xc9\x13\x9c\xaa\x73\x31\x20\xda\xda\x7d\x15\xd0\xc0\x63\x63\x30\x4b\x00\xcc\xc3\x81\x64\x43\x5b\xaf\x3e\x64\x1d\xdb\x0c\xcd\x22\x46\xda\x34\xe9\x57\x0b\x1a\x33\xec\x5c\x71\xec\x8a\x36\x5c\xba\x1e\x48\x1e\x0f\x1f\x3d\x90\xe1\x41\xbe\x3d\xbb\x7c\x6d\x76\xc5\x22\x54\x11\x8f\xed\x63\x5e\x77\x60\x73\x62\xfd\xf1\xf0\xc6\x49\x9d\xc4\xf2\x17\x33\x78\xb1\x9b\xd1\x3d\x0e\x34\x37\x39\xb6\x99\x75\xc3\x0c\x78\x33\xaa\xcd\xa3\xcb\x6e\xf5\x80\x39\x6c\xf7\xb4\x62\x3e\x8f\x5e\xaf\x2a\xbf\x53\x57\xbf\x25\x9a\x07\xcd\xf9\x55\x4e\x92\xfb\xfc\xaf\x76\xad\xe9\x4e\xb7\x14\x8f\x03\xd5\x2e\xaf\x1d\x8f\x23\x95\x46\xe8\x78\xf8\x86\x7d\x3e\xd2\x3e\x77\xeb\xfb\x96\xbb\xf5\x1e\x97\xa6\xfb\xed\x2e\x4d\x2e\x0a\xdf\xdf\xef\x08\x7a\x5f\x77\x04\x6d\xc1\x2c\xe9\xd0\x69\x4f\x28\xd2\xe2\x56\x1a\x06\x64\x7a\xc0\x4a\x1e\xbe\xd2\x7e\xfb\xec\x20\x17\x6c\xcd\x03\x1b\x76\x93\xde\x8b\xf0\x15\xd5\x92\x0c\x0f\xed\xca\x74\xd1\xd6\x5c\xb8\x0d\xa9\x8b\x95\x31\x1e\x1b\x30\xf6\x9c\x8a\x2c\x24\x54\xf2\x9a\x39\x54\xbb\x4f\xc6\xa1\x66\x3f\x5a\xd4\x07\xf1\x78\x94\x31\x86\x28\x42\xab\x75\x89\x59\xf5\xdb\x1b\x00\x49\x1d\x7f\x8b\xc5\x8b\x68\x7a\x32\x98\x46\x9a\x11\x10\x23\xc2\xba\xf6\x52\xca\x77\x1e\x71\xdc\x30\x9a\xb2\xcd\x32\xe4\xa4\x89\xfa\xc8\xb1\xc7\x90\x9d\x39\x82\x0c\xb2\x5a\xf3\xac\xc5\xed\x9b\x85\x10\x68\xf4\x80\x9f\x83\x26\x88\xab\x30\x4c\x2b\x13\x9f\xdd\x8c\xf2\xc0\xaf\x8c\x00\x1d\xd2\xfc\x45\x98\xbd\xb0\x57\xa8\x92\x1a\x03\xff\xb2\xb0\x59\x2a\x6e\x66\x6d\x5a\xbd\x2a\x2e\xcc\x2e\x2f\x24\x25\x35\xc2\x70\xa1\x58\x30\xa9\x14\x11\xb1\xab\xcc\x66\x6d\x60\x04\x33\x05\xac\xba\x5e\xf6\x29\xb3\xe9\x3a\x72\xda\xe0\xfc\xa1\xb3\xfe\x96\x16\xda\x8c\x9f\x27\x2d\xf6\xd8\x26\xe6\x96\xf5\x02\x5f\xf4\xdb\x49\x6d\x50\x20\x59\x9b\x4c\x30\x53\x6a\x7b\x2f\xba\x64\x07\x92\x23\x84\xb8\x3d\xdc\xef\x85\x77\xa9\xc7\x2b\xa0\xfc\x0e\x99\x87\xe4\x61\x6c\x4d\x4a\xb4\xb1\x1a\x81\xc5\x65\x0f\x42\xb2\xad\xa5\x47\x01\xd6\x23\xa2\x20\xbd\x17\x6e\x02\x57\x21\x13\xfa\x48\xfa\xce\x38\x3d\x98\x16\x57\x4f\x8b\xd2\xf3\xe6\xfb\x6d\xba\x72\x11\x5f\x3c\xe7\xf3\x9b\x8e\x8f\x71\x96\xf6\x96\xb2\x97\xc5\xf8\xb4\x82\xd1\x32\xbb\x78\x64\x15\x11\xa1\x3a\x04\x42\x70\x86\x34\x36\x7b\xef\x76\xcd\x6f\xfd\x16\xdb\x8b\x02\x4c\x2e\xf7\x54\x88\xe3\x58\x75\x62\x83\x2f\x62\x13\xec\xe9\x9b\x87\xc1\x69\xe9\x40\x35\xaf\xbf\x8b\xf7\xae\xf8\xa1\xc2\x56\xc3\x63\x2f\x96\x6e\xb7\x56\xc3\x56\x08\xbc\xd0\x5a\x17\x77\xef\xbf\x60\x4f\x80\x92\x3c\x24\xc8\xde\x01\x63\x03\x1c\xb3\x23\xd7\x93\xa8\xdb\x3d\x72\x57\xdc\x68\x41\xff\xf0\xae\xb6\x51\x40\x86\x65\xf1\xca\x90\xf2\x66\x50\xaf\x03\x8f\x9a\x01\x46\x6a\xfb\xdb\xf1\xa2\x78\x51\x94\x58\x44\xfc\x13\xc4\xbb\x73\x8d\x4b\x2c\x9f\xce\x58\x24\xec\x4d\x8d\x12\x77\x92\x12\x77\xf8\x4b\x94\xf2\x95\x37\x16\xbb\xb2\x5e\x60\xd0\xc2\x8d\x3a\x41\xcf\xda\x64\x0c\x90\x23\xfb\xf0\xe7\x02\x81\x98\xe4\x73\x1e\xdd\xbe\xc5\xbe\xce\x5e\x8d\x06\xae\xed\xbc\x96\x23\x3e\x0f\x3b\x61\xf2\xec\x37\x35\xb1\x18\x1e\x88\x65\xa6\x1c\x85\xe0\xed\x50\xe4\x02\xdb\x62\x71\xe6\x10\x4f\xa5\xdb\xb1\xb2\xd4\xbb\xb0\xb6\xfe\xef\x30\x07\x0a\xeb\xdb\xce\xef\x1b\xc1\xad\xc2\x08\x42\x85\xec\xa2\xa8\xd6\xb3\x81\x82\xca\xdd\x92\xa6\xc2\x7d\xc1\x7a\xf9\x92\x85\xed\x31\x1e\xa7\x55\x1c\x02\x43\xd2\xb1\x17\x47\xb5\x02\x31\xcf\x9d\x98\xa5\x8e\x87\x53\x3d\xc0\x8f\x56\x21\x32\xfd\x34\x0f\xa1\xe1\x07\x1c\x4e\xa2\xf7\x55\xb1\x0a\x35\x63\x84\x3d\xe4\xce\xa7\xb8\x30\x8b\xc8\x97\xcd\x78\x94\x32\x6c\x71\x54\x22\x96\xbe\x96\xee\x1c\x53\x6e\x2d\x87\x0d\xd0\x27\xb4\xad\xb1\x6e\xb7\x2d\x47\x46\x70\xd2\x1f\x26\xb1\xc6\xe1\x31\x98\x15\xa1\x06\x03\x11\x7c\x8c\x8b\x42\x7a\xc0\x34\xcb\xdc\x6a\xa4\x01\x6a\x3c\x7c\x1a\x35\xc8\xbf\x92\x9f\x81\xb0\x46\xc8\xd8\x0d\x98\xe9\xf8\x91\xf5\x7a\x41\x32\x1c\x8a\xbc\xe3\x63\xa9\x80\x7c\xed\x3f\xed\xf8\x7a\x7b\xb0\xa0\xe5\x24\x64\x61\x63\x19\x34\x18\x7f\xd8\x81\xea\x12\xe0\x97\x2a\x80\x94\x00\xcb\xd8\x08\xb4\x9d\x48\xbe\xfc\x2c\xab\x4c\xe3\x20\xe8\x99\x38\x2c\x10\x4f\x8e\xc6\x7d\xf6\x84\x57\xf6\xb6\x27\xab\x69\x89\xe2\xd1\x0d\xcf\x5b\x4d\x29\x49\xf3\xbb\xb5\x08\x45\xd6\xc1\x79\xb1\xbe\x5a\x30\x4d\x44\x7e\x75\x92\xaf\x97\xb8\x24\x33\x18\x21\xae\x71\x59\x75\xea\xa2\x53\x25\x35\xa9\xe6\x37\xcc\x08\x80\x07\x6e\xf6\x1e\x3d\xf0\x0a\xa9\x78\x7f\x74\x27\x22\x1a\xd1\xfb\xbc\x78\x68\x47\xd1\x6d\xa2\x43\x74\x44\x2d\xf1\x75\xfe\x3f\x0d\xd1\x6f\xa1\x21\x12\xef\xe7\xdb\x2a\x1a\x9e\xfe\x5f\xa6\xe7\x61\xb7\xa5\x87\x68\x6d\xd6\x65\xc6\x55\x2a\xeb\x32\xfb\x3c\x55\x4a\xb4\x39\x48\x14\x07\xfe\xde\x50\x6d\xc8\x9f\xa1\x80\xc5\x7e\x13\x54\x73\x45\xe2\xf5\x75\xa6\x91\xb2\x13\xbc\x85\xf4\x87\x37\xcf\x61\x8b\xcb\xa6\x94\x5b\x4d\xf5\x98\xcc\xe7\xb8\xe4\x36\x24\xd2\xa0\x91\xf9\x07\xb1\x46\x5b\xae\xb2\xb8\x90\xcc\x0b\x7d\xb6\x8c\xac\x99\xb7\x7a\x0c\xb5\x6e\x35\x1c\x4b\x4e\xfb\x55\x74\x45\xbc\xfe\xac\x3b\x19\x1e\x2a\xca\xcb\x57\x17\x61\x66\x6f\x2f\xec\x18\xeb\xc2\x4c\x1d\xdb\x2e\xa4\x6c\xf1\x46\x48\xc8\xfe\xc2\x36\x27\xb0\x83\xd3\x16\x6b\x6f\x70\xe6\x36\xa3\xdd\x44\xea\x3a\xc1\xbb\x3e\xf2\x7d\x1e\xb6\x50\xfc\x2b\xe6\xff\x6e\xb7\x81\xaf\x52\xa0\xde\xf0\x8f\xfd\x05\x3c\xaf\x42\xb9\x44\x7a\xe2\xc6\x4c\xfb\xb2\x4f\x45\x7d\xe1\x48\xd8\xad\x31\xa2\x7c\x21\xc8\x4e\xad\x10\x64\x5f\x3c\xa0\xb0\xe7\x96\x88\x87\xf5\x81\x38\xf4\x7a\x14\x40\xb0\xc0\xf1\xa9\xa3\xc5\xeb\x89\x92\x83\x6b\x6c\xf6\x57\xbb\x2c\xd2\x5b\x6b\xd1\xb2\xeb\x2f\x48\xed\x7c\xbb\x49\x69\x7f\x19\x1b\x16\x04\x63\x23\x00\x84\x21\x03\xfa\x1d\x3c\x28\xa3\x2f\x1b\x38\x8a\xe3\x20\x10\x8f\x6b\xb2\xb7\x3c\xe2\xa0\x1f\x34\xfa\xf7\xc2\x62\x23\x95\x58\xea\x3e\x20\xa5\xaa\x05\x77\x47\xda\x13\x52\xb7\x7a\xef\xa9\xc2\xd9\x1c\xc2\x31\x7d\xb4\x9e\x55\xe0\x41\x23\x6f\x3b\xe2\xdb\xba\xf8\xcb\x77\x16\x44\xe8\x48\xdf\x2b\x12\xcf\xb8\xcb\xa9\xe6\x3c\xf4\x56\x86\x43\x18\xf3\xe0\x56\x22\xae\x1b\xb7\x62\xf4\xc7\xbc\x6d\x7b\x45\x03\xde\x6f\xd2\x43\x0a\xf0\x67\x39\x78\xc5\x57\x39\xd6\x45\xe0\x7d\x0f\x92\xf0\xc1\x06\x51\x34\x09\x98\xf1\x60\x30\xe5\xd3\xc4\x68\x8f\xaf\x2a\x34\xdf\x01\xd3\xbf\x48\x23\x89\x24\xcf\x71\xf9\xd6\x7a\x59\xe4\xe0\x17\x48\x5a\x1e\x3a\x82\x72\xfa\xfb\x20\x0a\x50\x2d\x5c\x4c\x52\x15\x79\xb4\xd1\x26\x97\x1d\x23\x7e\xe3\x54\x5e\xba\x41\xde\x71\x89\xc7\x4e\x6c\x53\x2c\xa0\xf0\x6c\xd4\x8e\xfa\xa3\x8a\xf5\xc5\x76\xdd\x35\x58\x2d\xb9\x2c\x14\x45\x7c\x78\xf3\xd0\xa7\x72\x39\xf3\x1a\xe7\x8d\x7c\xf5\x5b\x86\xbb\x61\xbd\x8f\xd8\x5f\x71\xfc\xff\x48\xea\x05\x1b\xd0\xa8\x15\xf0\x89\x03\xb4\x8a\x1e\xa1\xe6\x79\xa4\x7e\x82\xfd\xbe\xd1\x60\xa3\xcd\x22\x8f\x4f\x17\x7a\x42\x97\xca\xb0\x6f\x8f\xb2\x12\x27\xe9\x8d\x7c\x07\xad\x1d\x38\xdf\xf8\xa7\x9a\x5d\xc9\xf8\x76\x55\x7b\x3d\xf5\xdc\x8b\xa5\xcd\x3d\x72\xe1\x32\x9d\xb4\x3c\xf5\x3c\x11\x73\x94\x4b\x56\x89\x53\x52\xe2\x99\xe6\xb4\x28\x52\x7c\x73\x23\x23\x4d\x0b\x6a\x28\xe5\x48\xef\x76\xdb\x4b\x0b\xf6\x91\x01\xb5\x60\xde\x46\x42\xe3\xd5\x2f\x83\xea\xc5\xed\xcb\x65\x19\x1c\x72\x8c\x64\xf0\x78\x90\xa6\xb1\x95\x8b\xb7\x44\x03\x8f\xe1\xb4\x24\x3b\x9e\x49\x93\x33\x0b\x73\xc7\xf1\xd4\x37\x5b\xaf\x21\x8b\xce\x52\xfb\x93\xdb\xd6\x91\xbf\x8b\x77\x63\x31\x79\xed\x00\xbc\xad\x4c\xdc\x6f\xce\xb5\xf9\xf8\x24\x8f\x1c\xbd\x8f\xb9\x3b\xdd\xc1\xdc\x1d\x12\xbf\x76\x5f\x8c\xda\x5d\xf1\x6d\x0f\x8f\xf4\xea\xe1\xf8\x84\x41\x14\x37\xcd\x05\x77\x24\x8d\xe0\xab\x85\xe3\x71\x21\x55\xac\x2b\xf6\x97\x07\xd6\x14\x6e\xc5\xfc\x1e\x81\xa9\x26\xb8\xfd\x37\x04\xb0\x00\xef\x0f\xf8\xc7\xb6\x33\x82\x82\x3c\xd0\x1f\x77\x83\x10\xb6\x47\x32\xe0\xa9\xfe\xc2\x95\x48\x76\xcd\xd9\x39\xe4\xfa\x09\x1e\x5b\x47\x03\x14\x11\xe1\xe3\x84\x1c\x67\x06\xf5\x06\x13\x46\xce\x64\x39\x5d\xf9\x1d\x81\xf6\x84\x8f\x99\xb3\xd7\x97\xa1\x17\x8d\x6d\xf5\xc4\x8e\x69\x6d\x44\xd8\xa7\xeb\x56\xcb\xb7\x8f\x4b\x43\xc9\xbb\x4e\x25\x74\xbb\x44\xb8\x6b\x77\x0d\x57\x3c\x2e\x57\x3c\xea\x19\xf7\xe7\xd0\x28\x80\x70\x07\x79\xcb\xb3\x7a\xbd\xb1\xb1\x1c\x00\x95\xa0\x4d\xe6\x13\x90\x2c\x12\xa0\x97\xd7\x81\xd0\x78\xea\x96\x54\x1d\xc1\xdb\x6d\x8b\x67\xcf\x2d\x9c\x74\x40\x55\xea\x3a\x7c\x08\x5f\x0f\xde\x29\xb0\x13\xb5\x13\x82\xcf\x66\x30\x7c\x0e\x1f\xad\x7c\x99\x6a\xd9\x7e\xae\x56\xb2\x67\x8f\x04\x7b\xa6\xde\x51\x76\x91\x5b\x7b\x36\x02\x30\xda\x96\xcb\xe4\xee\x37\xe6\x9c\xc7\xd1\xbb\xc5\x14\xaa\xa7\x56\x5b\x23\x41\x8a\x97\x3a\x8f\x3b\x50\x07\x4e\x8f\x76\x1c\x89\x07\x63\x33\x3c\xa2\x10\x18\xd5\x4e\x81\x93\x53\xfa\xcd\x8d\x78\xbc\xb9\x80\x53\x2e\x8f\xf0\xe8\xd8\x77\xe9\x07\xe6\x68\x80\x5c\x61\xd4\x24\x33\x5c\x7f\x28\x82\x25\x31\x33\xd1\x4a\x9a\x35\x22\xfd\xb9\x44\xc8\xe4\xd3\x01\xd9\x94\x80\x8d\xb8\x24\xa2\xdf\x4d\x56\x6b\xa6\xff\x42\xf3\x84\x64\xeb\xd2\x0a\x2c\x6c\x04\x86\xb4\x4b\x36\x28\x31\x1f\x41\x54\x11\x10\xdd\x35\xa3\xc9\x32\x42\x9b\xf4\xef\xd3\xb7\x2c\xb2\x48\x51\x2f\x18\xe9\xce\x23\xd7\x49\x25\x96\x31\x88\x74\xba\xee\xb9\xe1\x8a\xb5\x4e\x8c\x83\xc0\x94\x4c\x44\x9a\xee\xcf\xa6\xd7\xf4\x3b\xb5\x19\x6f\x2b\x97\xb8\x2e\x6f\xcc\x30\x84\xa4\xb2\xb7\x98\xde\xa6\xc7\x0b\x45\x1b\x8b\x0c\xd1\x06\x31\xd6\x54\xc3\x4b\xee\x26\x2a\x94\x8f\xdc\x59\x13\x92\x4d\x90\x9c\x20\x31\x84\xbd\xf9\xf8\x54\xac\xef\xfe\x88\x8d\xfc\xd5\x05\xa3\x5e\x1c\xc7\xc1\x65\x51\x64\x38\xc9\x79\xf8\xc6\x3e\x18\x15\x88\xbb\x22\xa3\x30\x98\x5c\xeb\xd1\x53\xcc\x25\x77\x4f\x14\x11\x00\x49\x3f\x5e\x9f\xf1\x60\x48\xc8\x68\x5c\xc4\xa8\x99\x17\x59\x56\x5c\xbf\xe1\x6c\x7b\xa5\x2f\xc2\x47\x33\x78\x34\xef\x7b\xec\xc1\xec\x1d\x72\xac\x72\x3d\x6c\x8d\xf5\xdb\x92\xdf\xb7\x40\x0b\x23\xf7\x09\x2a\x43\x08\x8e\x1a\x54\x17\x6f\xd9\x75\x97\xfb\xc6\x94\x4e\xc7\x42\xb1\x59\x3a\xfc\x4d\x70\xf1\xdd\x0b\xa2\xc0\x7a\xaf\x5c\xea\x41\x77\xef\x3a\xf5\x34\xb9\x97\xe4\xf5\x2b\x9c\xa7\xb1\x37\x47\xf0\x8b\x92\x8e\xfb\xce\xb2\xdb\x78\xf6\xa6\xb8\xc6\x33\x4a\xa6\xd9\xfe\xd1\xbc\x2f\xfd\xf1\x22\x3c\xdc\x23\xcf\xda\xab\x03\x76\x6a\x18\x0a\x60\x37\x57\x37\xb6\xd7\x42\xff\x6b\xf3\xa2\x4b\x22\xf2\xd5\x81\x58\x3e\x3f\xe0\xaf\x2f\xa8\x91\x3b\x36\x47\x60\xe1\x02\xc8\xc4\x2f\x81\xec\x92\x28\x80\x95\xb7\x23\xfe\x2b\x56\xfe\x82\x80\x3b\x10\x63\xc4\xa0\x18\x4f\x89\x36\x22\x4f\xf9\x68\x7c\x92\xc8\x0f\x8f\x03\xe9\xf8\xc0\x51\x18\x48\xca\x27\xe6\x79\xc8\x6f\xab\x3b\xac\x95\x69\xc0\xcd\xe9\x64\xb3\x46\x77\xe0\xa4\xc9\x73\x24\x54\xfa\xcc\x89\x4c\x91\x27\x31\x00\x2e\x15\x16\x49\xb5\x40\x5c\x59\x2c\x58\xd2\x55\x59\xac\x3a\x84\x3f\x41\xca\x36\x35\x3c\x06\x6a\x5f\x67\x97\xc5\x2a\x8a\x36\xb4\x85\x09\xfd\x3d\x05\x2f\x3a\xf8\xcd\x8d\x3d\xc5\xd5\x22\x1f\x38\x58\x1c\x6c\xb7\xfa\x2d\x5e\x5d\x44\x1b\x09\xd4\xd3\x30\xda\x34\x4f\x35\xee\x81\xfd\xd2\x71\xfa\xa9\x21\xc0\x8a\x3b\xca\x58\xdc\x55\xca\x96\x3c\x66\xcf\x09\x2c\x90\x60\xf4\xd9\x67\xb7\x9b\x68\x6e\x60\x68\x81\x13\x23\x86\x08\xe7\xf9\xbb\xdd\x0c\xe7\x0f\x07\xbc\xf0\x24\xc3\xf9\xf1\x70\x6a\x7e\xdd\xc6\xe9\xd6\xa8\xa7\xf7\x46\xbb\x37\xcf\x98\x32\xb9\x41\xec\x96\xef\x78\x28\xb6\xf6\xc4\x06\x72\xaa\x9b\x91\x4c\xa0\x0e\x3d\x76\xa7\x8d\xb1\x07\x3d\x46\xfe\x1e\xa3\x7e\xc5\x61\x16\xb8\x9c\xe9\x4e\x69\xef\x38\xae\x86\xe6\x93\x46\x66\x00\xba\x5f\x2c\x9f\x45\x7e\x2e\xfe\x62\x85\x83\xa3\x78\x9e\xaf\x97\x97\xb8\x0c\x8c\xa9\x81\xcc\x20\xe8\xd9\x69\xd2\x40\x88\xe3\x71\x68\x17\x88\x74\xa3\xb0\x01\xca\x62\xbb\x80\x13\x0c\xc4\x2e\x30\x21\xde\x9e\x27\x84\x22\x73\xa3\x53\x6c\x21\x70\xab\x03\xa1\xba\x02\xd7\x75\x7e\xba\x65\xc5\x95\x0c\xea\x01\xbe\xd3\xc0\x2a\x28\x07\xea\x7b\xd2\x0f\x8a\xb6\xa7\x9f\x57\xff\x2d\xe8\xa9\x13\x6a\xd4\x09\x7a\xb4\x71\x58\xe1\x65\x75\x15\xcb\xc0\x09\x5a\x75\x56\xa2\xb1\xa8\x29\x25\xa4\x6a\x35\x2f\x49\x9e\xca\x10\x44\x73\xee\xf8\x77\x59\xac\x73\x70\x12\x90\x10\x8a\xad\x26\x77\xe8\x47\x78\x8f\xdb\xc7\x01\xc9\xea\xe8\x34\x1a\xab\xb7\xcf\xa1\x86\x6c\x28\xe7\x4f\x97\x8b\xce\x81\x15\x31\xa0\xa5\xc0\xc5\xf4\x8f\xa6\x93\x37\xec\xd0\x14\x4b\x0c\xe8\xc4\xdf\xa4\x8b\xe3\x00\x0c\x5e\x82\xed\x96\x13\x4d\x2d\x70\x00\x60\xeb\x76\xeb\xd4\xe1\x88\xe7\xab\xf3\x92\x65\x69\xee\xbd\xfc\x72\x06\x36\x95\x7a\x8c\xc5\x44\xb5\xc4\xf2\x24\xed\x76\x19\x33\x77\x14\xc7\xa2\x06\x34\x30\x21\xd3\x08\x70\xcf\x1c\xbf\xb8\x3a\x14\x57\x85\xb2\x7b\xcb\xe3\xcd\xb4\x89\x74\x19\x3c\x8d\xff\xe2\x35\x59\xa4\x3f\x89\x6a\x7a\x62\xb8\xaf\xb1\xb1\xfd\xca\x9e\xce\xc0\xda\x1a\x08\xe8\xdb\xe2\x9a\x79\x03\x8e\xf9\xd2\x39\xbb\x19\xc9\x8b\x5a\x8c\xaf\x83\x29\x44\x9d\xbb\x60\x72\xd4\x0b\xee\xf6\x3b\xef\xa4\x75\x6c\x5e\xf0\xa8\x96\x32\x1c\x4f\x00\x66\x04\xac\xd2\x8f\x49\x05\xf2\x61\xaa\x19\x46\xec\x8d\x63\x43\x84\xe5\xd9\x0e\x53\x50\xf9\x22\xa2\x47\x71\x62\xc4\xf1\xa3\x60\x54\x5a\xe4\x32\xf6\x0d\x4f\x0a\xea\xde\xe6\x46\x86\xef\x39\xff\x38\x66\x22\x56\xb4\xb1\x07\xc6\x3c\x33\x35\x12\xdf\x30\x0f\xd3\x23\xab\x58\xb7\x7b\x64\xcd\xbf\x33\xf1\x2f\x8b\x7a\x41\xf2\x2b\x3e\xea\x94\x59\x80\x39\x53\x1f\x58\x9b\x53\xa8\x3e\x1d\xd6\xd5\x79\xa4\x05\x0e\x79\x94\xe3\xeb\x57\x7c\xd7\xf2\x83\xc1\x30\x9d\xd9\x24\x59\x36\xda\x34\x48\xc4\xf5\xda\x50\x89\x90\xbd\x2d\x32\xda\x34\x22\xf2\xa9\x30\x6b\x48\xc0\x48\x9f\xb7\xc7\xda\x49\x45\xcc\x35\xbe\xe0\xed\xe7\x94\x04\x29\xda\x51\x48\x6b\x9d\xa2\x0e\x3f\xc6\x54\x55\x6e\xd1\xc7\x19\x18\x6f\x30\x54\xee\x24\xbc\xab\x88\x02\x9a\xdf\xef\xc1\xf0\xf8\xc0\xe1\xd4\x93\xbd\xf0\x80\xa9\x8d\x06\x8f\x36\xa7\x10\x08\x60\x0f\x3c\xe2\x94\x34\xdb\x8c\xba\x5d\x91\x21\x9b\x10\x87\xa7\x3e\x4c\xfd\xbc\x04\x57\x69\x37\x9d\x6e\x6f\x18\x04\x5f\x48\x18\x84\x59\x76\x6c\x8e\x1b\x90\xd8\xa4\x9d\xde\x4e\xd5\x21\xed\x80\x05\xf1\x1a\xcc\x6e\x78\xb0\x86\x5b\x83\xd3\x34\xba\xd1\xa6\x56\xd0\xe9\xe1\x73\x9b\x17\xb1\xe1\x45\x46\xb7\xcb\xdb\x31\xb6\x98\xf9\x2e\x9c\xf9\x0e\x9c\x7e\x0f\xa9\x14\x75\xdc\x7e\x82\x4b\xbb\xe0\xbf\x2c\x4d\x14\x8c\xb6\x8d\x9b\x05\xff\x4d\x82\x34\xc1\x5b\x25\x25\xce\xeb\xf3\x22\xaf\xea\x72\x3d\xab\x8b\x12\xd9\xfc\xf9\xb9\xb0\xbb\x73\x8a\x02\x4b\xc0\x82\xbe\xaa\xe7\xcb\x9b\x73\x8d\x95\xe7\x2c\xba\xdb\x8b\x2a\x23\x9c\x0a\xb4\x6a\x1c\x04\xc1\x4e\x9c\x1b\x83\x93\x56\x87\x3e\x2b\x43\xb0\x4e\x8c\xc1\x46\xd1\xa8\xc5\xa4\x3b\x90\xe6\x4c\x51\x09\x3c\x65\x85\x67\xac\x9e\xd7\x4a\x40\xe2\xd6\x1c\x47\x20\x05\x63\x27\xeb\x75\xcb\x5f\xef\x45\x0e\xab\xbf\xeb\xf6\xeb\x60\xb7\xf7\xea\xe3\xea\x84\x19\xd5\x96\x79\x92\x99\xce\xee\xfd\x13\xc2\x16\x6c\x29\x1e\xba\x9c\x15\xf9\x9c\x5c\xfd\x23\xee\xf7\x80\x4d\x7b\x55\x3e\xe5\xcd\x3b\x26\x59\x76\x01\xee\xf7\xdc\x5a\x5e\x65\x81\x2d\x64\x71\xed\x14\xc9\x8b\x6b\xee\x58\x29\x06\xbd\xcf\xee\x16\xe6\xc3\xb9\xbc\x83\xe4\xb1\x16\xa6\xa3\x58\x51\x21\x97\x5d\x5c\x3e\x79\xf9\xf8\xd9\xcb\x3f\xc6\x1f\x0b\x92\x76\xc0\xf8\xe6\xe9\x0f\xcf\x9f\x3e\x7b\xfe\xfc\xc9\xe3\x78\x08\x8b\xfb\xe4\x7f\x3c\x39\x7f\xf7\xe4\x71\x7c\xca\x3e\xff\xf8\xe4\xdd\xc5\xbb\x3f\x3d\x79\x79\xf1\xe4\xcd\x9b\x57\x6f\x62\x79\xb6\x03\x15\x32\xce\xe6\x77\xfc\x52\x98\x6e\x78\x08\x18\x67\x1a\x3a\x31\x05\xb5\x08\xbc\x05\x57\x6e\x66\xeb\x70\xa1\x11\xb3\xbf\x62\xfb\x99\x25\x34\xa9\xa8\x2e\x6f\x58\x87\xb4\x51\xc4\x24\x00\x34\x5f\x67\x73\x92\x65\x4b\x15\x56\x0c\x81\x0e\x4f\xf9\x42\x00\x5c\xb4\x0e\x90\x8f\xc3\x2b\x3a\xcf\x0f\xe9\x51\xb8\x80\xbf\x79\x5a\x94\x98\x5c\xe5\x14\xac\xe4\x32\xc3\x62\x2e\x98\x2e\x9f\x26\xb0\x1f\x2c\x62\xe5\x9c\x5c\xf5\x93\xea\x26\x9f\x85\xba\x62\x82\x16\xbe\x73\x2a\xac\xb8\x12\xc5\x62\x4a\xcb\x98\xd8\x18\xb5\x6c\xd7\x96\x9d\xc8\x3c\x84\xfa\x92\x25\xe6\xcd\xc1\x83\x8a\xf3\x50\xd4\x3c\x8a\x63\x5e\x45\x5c\x05\x49\x30\x60\x4e\xb9\x1c\xc8\x27\xc8\xcd\x6d\x90\x4f\x25\xbb\xa3\x73\xae\x54\x55\x0d\x49\x1b\x23\xfe\xf0\x14\x3d\x54\x54\x76\xff\x82\x1d\x30\xdb\x6d\xd0\x59\xe7\x1f\xf2\xe2\x5a\x62\x93\x78\x70\x0a\x1a\xef\x76\x39\x46\xed\xec\xcb\xbe\x30\x73\x4c\x97\x5e\x5d\xb7\xaf\x5e\xb4\x11\x78\x7c\x51\xe4\xb0\x1a\xc2\x0f\x57\x14\xe9\x5f\xc0\x25\x77\x1c\xcb\x5d\x15\xd9\x73\x87\x54\x61\x7e\x41\x29\x35\x0d\xb2\x7d\xd1\x8a\xd8\x8b\x74\x26\xf5\xa1\xb4\xb4\xb1\xa9\xd6\x97\xd5\xac\x24\x97\x58\x42\x84\xd4\xbd\x9b\x07\x49\xf6\xa2\xc1\x2e\x24\xd8\x81\x02\x16\xb4\x4a\x83\x6e\xcf\xf7\x8b\xe4\xe6\x12\x3b\x33\xbe\xd4\x53\x19\xa0\x46\x8a\x2e\x3e\x8b\x29\x9b\xa9\xc3\x5d\x58\x0b\xf9\xd6\xd2\x6c\x19\x86\xc5\x0c\x16\x16\x38\x8f\x05\x09\x33\x0b\x89\xf5\x8d\xe3\xd8\xa4\x45\xce\x30\x7d\xc4\x4c\x2d\x2e\x6f\x43\xae\x87\x8b\x18\x1e\xe0\x40\xff\x24\xce\x0e\xd6\x46\x24\xc6\xd7\x46\x6d\x8c\x66\x80\xe4\xf8\xd7\xcf\xea\xaf\x71\x0c\x9a\xac\x95\xde\x28\x14\x8d\x25\xc2\xb4\x20\x85\xf4\xae\xb3\x0e\x4a\x8e\x7c\x62\x0c\xfe\xf5\x3f\x04\xe9\x14\x97\xba\xbe\xcc\x48\xb5\x78\x23\xe8\xb5\x3a\x81\xf4\x1d\xc5\x77\xac\xbb\x87\x55\x11\xb1\x93\x78\x83\xa1\x4b\x23\xfc\xb0\x6c\x9c\x9d\x7b\x14\xc7\xfc\xa0\x95\x24\xd0\xea\x05\x66\x6f\x6c\x6d\x78\x49\x34\xc6\x46\x93\x62\x53\x97\x66\x38\x44\x08\xa4\x4c\x4f\x12\xc5\x32\x44\x1b\xf5\x3b\x0c\x38\xbc\x38\x0d\x14\xc1\x83\x59\x35\x8e\x20\x3e\x60\xad\x8c\x86\x08\xbe\x8d\x7c\xbb\x11\xc3\xd8\x04\x29\x1b\xdb\x33\x01\x6d\x8e\x7d\x10\xc9\x35\xf5\xd0\x6b\x45\xea\x80\xbb\x47\xb3\x05\xc9\x52\x54\xe4\x4f\xd5\x59\x8e\x8a\x5c\x36\xc1\x4f\x55\x35\x97\x31\xd4\x33\xe6\x57\x98\xe4\xd0\x39\x76\xa7\x7d\x2c\x6a\x18\xe4\x5f\x2b\x37\x81\x72\xd3\x98\xc1\xe2\xc9\xe9\xc9\x15\x9e\xc6\x06\xa4\xbe\xb2\x62\xc6\x68\x51\x39\x0c\x7e\x3d\xc0\x91\xa0\xdb\x95\x83\x00\x73\x24\xff\xba\xb2\x32\x9e\x3d\xa3\xb6\x8a\x33\x37\x1e\xe4\xe3\x4f\x96\xd3\x33\x3a\x8d\xcd\xd5\x1d\xef\xc5\x45\x51\x4f\x3b\x19\xcf\x34\xfc\x1c\x05\x80\x69\x06\xaa\x52\x46\xa2\x05\xf7\x35\x4d\x21\xac\xbb\x7c\x70\x3a\xc5\x75\x42\xb2\xd8\xc2\xb2\xb1\x69\xfc\xe4\x59\x5b\xd2\x8b\xef\x45\x1b\xd6\x98\xbe\xf4\x13\x32\x1d\x8b\xb6\xcd\xf4\x1e\x1f\x12\xb3\x8d\x62\xf5\x58\x2c\x82\xe2\x03\x3e\x17\x2a\x58\x5e\x02\x79\x41\xe4\xf4\x4d\xea\x6b\x45\x6a\xb3\x6b\xe3\x0f\xd4\x1a\x6a\x5c\xb8\xb0\x68\x50\x58\xc9\x66\xe6\xdd\x9b\x9f\x2e\xce\x1f\xbd\x3b\xff\xd3\x3e\xde\xbd\x2e\x6f\xce\x19\x73\x6b\x83\xa8\x33\xf1\x0e\xa0\x92\x1f\xb6\xfa\x11\x5c\xbc\xe0\xe0\xad\x6c\x0d\x0d\x5b\xa6\x4b\x50\x1b\x07\x1a\xd0\x9f\x56\xa2\x42\xac\x9d\x8c\x52\x51\xce\x45\x01\x30\xba\x62\xc6\x30\x38\xa5\xcc\x4f\x42\x32\x9c\x82\x16\x55\x36\x40\x5b\xcc\xd6\x38\x6e\x1d\x3f\x2d\x0f\x45\xe2\xd8\x1a\x46\xb4\x81\x26\x81\xd3\x84\x21\xb3\xa2\x30\xfc\x31\x54\x63\x6b\xc1\x59\x33\x0e\x8a\x8c\xb9\xef\x1c\xa5\x16\xb1\x65\xf7\xe9\x37\x2b\x6e\x4e\x1f\x3c\x12\xbc\x4e\x25\x97\xa2\x33\x4b\xf2\xbc\xa8\x3b\xd2\x64\x22\xa9\x3b\x55\xb2\xc4\x92\x2b\x52\x6f\xea\x36\x82\xd7\xa1\x50\xc1\xe8\xc6\xad\x20\x79\x88\xba\x3c\xd0\xb5\xe9\xeb\x76\x65\x0b\x3b\x19\x47\x5a\x0d\x26\xcb\x19\xa3\xc5\x23\x79\xa8\xc4\x5e\x0e\x43\xd5\x69\xe5\x96\x1d\x9e\x41\xb9\x77\x72\x5b\x0f\xed\x84\x63\xc3\x28\x05\xea\xc3\x57\x68\x73\x46\xa2\xda\x6e\xae\x19\x59\xe7\xa8\xa8\xb5\x97\x4d\xd6\x44\x4d\x73\xba\x2c\x4d\x39\x15\xed\x63\xfa\xc7\xd0\x1c\x71\x68\x84\xb9\xbd\x95\xc7\xee\xa4\xe0\x1f\x23\x87\x4f\x73\xcc\xff\x1d\x5b\x5a\x2f\xa0\x44\x8a\x04\x1a\xf9\xfc\x3c\x89\xf9\xbf\xbe\x3c\x79\x82\xc5\x76\x82\xa9\x11\xb3\x57\x26\x76\x52\xac\xf2\x3a\x09\x89\xcd\x4f\xa3\xa4\xd2\x73\x28\x36\x4b\xcf\x97\x7a\x0f\xf1\xc3\x56\x53\x25\x59\x76\xcc\x91\x0d\x14\x55\x98\x39\xbd\x27\x75\x51\x32\xf5\x94\x6e\x9a\xfe\x0f\xb3\x44\x7f\x22\x61\xd8\x67\x8c\xbe\x4c\x3e\x60\x90\xb0\xd3\x37\xc0\x79\x39\x61\x20\xed\x12\xad\xb6\xee\x1e\x65\x54\x71\x31\x73\x7d\xba\xef\x5d\x5c\xf4\x45\x86\x3a\x6e\x1e\x65\x19\xef\x26\xd4\x35\xbf\x38\xaf\x4b\x82\x2b\xc4\x35\xcd\xf0\x92\x58\xb5\x5e\xe1\x52\x2b\xe5\xad\x01\xef\x36\x71\x67\x39\xd5\xba\xae\x09\xe6\x40\x84\x6a\xbe\x74\x1d\xb0\xaf\x8e\xdb\x77\xac\x2a\xb7\xd4\xa0\x33\xc8\x27\xd7\x9d\x4c\x7f\x15\x1e\x4b\x86\x14\x39\xa3\xf3\xb1\x63\x59\xa6\x5f\xa7\x25\xb2\x89\xce\x72\x5d\xd5\x9d\x4b\xcc\xce\x02\x9c\x76\xae\x49\xbd\xe8\x24\x79\x87\xdd\xfa\x06\x51\xab\xcf\x85\x5c\x04\xd5\x54\x68\x4d\xbc\xd6\xad\xb6\x52\xaf\x05\x09\x32\x0a\x0b\x65\x7f\xe3\xd9\x2c\xb0\x49\x6e\xe9\x4b\xdb\x86\xeb\x5f\x1d\xe8\x76\x71\xc0\xb0\xf9\xd5\xba\x39\x5a\x61\xf3\x67\xe7\xbb\x03\xab\x92\xd5\x67\x59\x78\x09\x0e\x6e\x3f\x88\x55\xb2\x52\x9c\x48\x52\x5e\x31\xc3\x91\x35\x56\xd2\x85\x20\x6f\x7a\x72\x6f\x38\x8d\x93\xf2\x6a\xcc\xbf\xe2\x53\x43\x52\x38\x8d\x36\xd5\x6c\x81\xd3\x75\x86\x9f\x66\xeb\x6a\x11\x46\x0d\x04\x2d\xb9\x2c\x8b\xeb\x0a\x97\x7f\xcc\x8a\xcb\x24\x8b\xb9\xe1\xc2\x35\xc9\xd3\xe2\xfa\x28\x8e\x03\xa9\xad\x08\xce\x20\x71\xc4\x83\x9d\x7c\x0f\xf5\x5e\xac\x6b\x86\xbb\xaf\x2e\x2b\x5c\x7e\xc4\x65\x6c\xb4\xd7\xb7\xb3\xb7\x5b\x33\xff\x47\x7c\xf9\x67\x52\xdb\xa5\xb8\x32\xfd\xc7\xa2\xfc\x80\x4b\x01\xd3\x0f\x24\xaf\xbf\x3d\xcf\x92\xe5\x0a\xa7\xec\x42\xd1\x04\xaf\xdb\x15\xf6\xb0\x4b\x3a\xb7\x6f\x67\x25\x59\xd5\x55\x4b\x99\x17\x60\x62\x78\xbe\x48\xf2\x1c\x67\x66\x21\x45\xa6\xd6\x15\x7e\x89\x3f\xd5\xef\xc8\xec\x83\xda\x8c\xda\xf6\x64\xee\x4f\x55\xd5\xcf\x45\xa1\x39\x9d\x59\x9d\xcd\x58\x57\xd8\x1e\x1b\xb7\x7b\x25\x35\xa5\x23\xa4\xc8\x2b\xee\x02\x5b\x88\x09\xa4\xdb\xae\x65\x72\x79\x07\xfc\x06\x21\xc5\x71\x5a\xcc\x98\x74\xc5\xad\xdc\xde\xe1\x4f\xf5\xcb\x22\xc5\x61\x10\x44\x63\xd1\x60\x9f\xff\x08\x69\x0d\xb4\x99\x2d\x92\x32\x99\xd5\xb8\x7c\x9c\xd4\x09\x33\x40\x57\xfe\xc8\xda\xd8\x68\x61\xf0\xb5\xd1\x20\xed\xf5\xd4\xc7\xef\x4e\xad\x71\x1a\x53\xca\x47\x39\x83\x2f\x36\x26\xb3\xc0\x98\x67\xf5\xe9\x62\x0d\xfb\x45\x2e\xac\x3f\xd9\x10\x3d\x00\xe9\xe5\x4f\xfb\xab\xa2\xaa\x79\x83\xe1\xc0\x9a\xf1\xb7\xb8\x7e\x47\x96\xb8\x58\xd7\xde\x55\xab\x54\x36\xeb\x0b\x0d\x23\x30\x1c\x64\x9b\x89\x81\x0a\xf7\xd5\x43\x7c\x4f\xf3\xd8\x9d\xc3\xae\xd9\x38\x4e\x34\x5c\x76\xe4\x5a\x7b\x29\x2a\xc2\xd6\xe4\xa1\x2f\x92\xf2\x4a\x24\xf4\x86\x4a\x9e\x0c\xe9\xde\x1e\x8b\x92\x4a\x33\x38\x56\x65\x55\x62\x23\x25\x40\x26\x86\xeb\x9b\x59\xb3\x06\xe7\x38\x69\xe3\xfd\xa6\xb1\xec\x3e\x79\x39\xc3\xfa\x93\xa7\x4d\x03\x8b\x56\xc4\xc6\x46\x90\x7c\x77\x0b\x92\x7a\x2a\xbb\x7b\x40\xd3\x6d\xc2\x2e\xf7\xd5\xb2\x30\x8a\x8b\x51\x76\x31\x7d\xb9\x1d\x62\x2d\x6e\x0c\x19\xb7\xc6\x8c\x61\xbe\xc4\xf5\x27\xb3\x66\x7a\xc7\x5c\x20\xf6\x31\x5d\xfc\x8a\x4e\xd3\x84\x8c\x78\xa0\x73\xad\x91\xfe\x92\x7c\x22\x39\x57\xa0\x44\xba\x3d\x24\x4d\x58\x97\x18\xe2\x62\x29\x6d\x23\x8f\x51\x15\x70\x3d\x54\x20\xf5\x3e\x45\x2e\x9d\x8f\x0c\x9b\xb8\x16\x93\xc0\x53\x51\x11\x4c\x84\x40\x0e\x35\x22\x84\xe9\xd9\xa6\xe8\xc1\x47\xc6\x2f\x1b\xdd\x9c\x75\x89\x63\xf9\xcb\x5e\x97\x14\xcf\xc5\xe5\xf4\x17\xe2\x0f\xbe\x10\x7b\xc0\x00\xd3\x63\x45\xb0\x84\x12\xa7\xf1\xa6\x19\x8b\xdf\xd2\x8d\x8a\x12\x0b\x21\xd3\xe9\x5e\x67\x54\xea\xe2\x17\x88\xd1\x46\xd6\xb2\xc5\x32\x2d\x43\x93\xc9\x1a\xce\x78\x08\x1a\x28\x4a\x39\xb8\xad\x4b\x1f\xe6\xb5\xb9\x76\x9f\xfe\x79\x02\xc8\xae\x49\x96\xa6\xdf\xce\x0d\x37\x58\x7b\x43\x19\x43\xaf\xef\x29\x6b\xe4\xf3\x03\xad\x58\x39\xce\xb1\x4c\xb4\x05\x53\x2e\x36\x45\x76\x3e\x17\x63\x59\x30\x14\x2e\xbe\x3a\xc1\x50\xb8\x38\x6b\x68\x38\x9d\x52\x4a\xac\x35\xaf\xc4\xed\x72\x4a\x74\x34\xae\xca\x1d\xa7\x5e\xa1\xec\xd6\xef\xdc\xed\x42\x3c\x9d\x95\x79\xf4\xfd\xab\x37\xef\x2e\x5e\xbd\xbc\x80\x9a\xcf\x5e\xbd\x04\xbd\x92\xbe\xaf\x3c\x65\xdc\x24\xcd\xda\xde\x16\x40\xf8\xe3\xe1\xab\x82\xbb\x21\x6a\x77\xc5\xee\xa5\x25\x77\x3f\x07\xcf\x35\xfd\x22\x81\xd5\x1a\xf1\x27\x42\x34\x52\x21\x8a\x2a\x3d\x2e\xa8\x33\x44\x51\x83\x78\xb8\xb2\xa8\x2b\x2e\x29\x45\xa7\x44\x74\x43\xf8\x63\xaf\x1f\x82\x73\xdb\x2b\xae\x1f\x37\x45\x47\x71\x4b\xa8\x4b\x70\xda\x6f\xd3\xbf\x94\x6e\x65\x5d\xcc\xa4\x98\x27\x76\x22\x34\x67\xf4\x14\x1b\x5f\x32\xd8\xf5\x85\x8a\x0c\xba\x5a\xd7\x21\x03\x31\x52\xf0\xac\xd6\x75\xcc\xfe\x42\x93\x9c\x0e\xb3\x14\xa1\x86\x86\xa2\x25\x5e\x26\x24\x27\xf9\x95\x2f\x93\xe4\x84\xdb\xc3\xea\xad\x30\xb5\xb8\x50\x95\xe9\x43\x43\xa2\x49\xed\x9e\x58\xaf\xa8\xfd\xde\x6e\x07\xbc\x0f\x41\x5c\xb0\xd6\x91\x06\xd5\xa1\x9d\x49\x0c\x61\x5a\x2c\x4f\x41\x4b\xfa\x0d\xa3\xa8\x69\x7c\x22\xba\x35\xb3\x4a\x4a\x86\x29\x16\xc7\x95\xb0\x35\x84\xd4\x66\xbc\xb3\xa9\xc3\x44\x6e\xd6\x60\x07\x3c\xf9\x2a\x29\x75\xf3\x20\x88\x29\x15\xb9\x1f\x09\x91\xdb\xdf\x1b\x5d\xae\xd8\xf6\x3d\x14\x97\x5f\x8a\xdd\xd4\x96\xa1\x5d\x7a\xd7\x14\x10\xfe\xce\xe4\xba\xc5\x96\xa3\x9d\xbb\xd8\x7a\x14\x80\x58\x5f\x1a\x6e\x85\x44\xa7\x59\x43\x5c\xe3\x06\xc5\x31\x54\xe0\xb4\xac\xdb\xd5\x78\xe2\x9e\x18\x2b\x4e\x66\x8b\x27\x79\x5d\xf2\x75\x99\x90\x29\x8b\xd9\xdd\x36\x04\x51\x5a\x0d\x01\xd3\x4f\x11\x93\x76\x16\xb7\x6e\x6f\x88\xa2\x69\xde\x29\xb3\xba\x60\x6d\xca\x7e\xea\x96\x02\x71\x1c\xcf\xba\x5d\x48\x76\x55\xde\x3c\xdd\xb8\xec\xe3\x4a\x29\x20\x54\x8f\xea\x50\xaf\x8b\x08\xe2\x9f\xee\x5e\x63\x2f\xe2\x03\x7d\x7b\x54\x87\x33\xe9\x78\x0d\xd0\xa9\x10\xe6\xd6\x46\x3b\x3e\x1e\xeb\xe8\x42\xa5\x04\xf8\x56\x8a\xa6\x50\x12\x6d\xd1\x7f\xfb\xd4\x4a\xb8\xd5\xd4\x0a\xc8\x35\xa7\x0b\x2f\x4e\xf8\xac\x53\xe4\x4c\xb9\x50\x4b\x9a\x61\xd0\xc9\x6e\x77\xaf\x61\x8b\x7e\xf5\xbf\x77\xe8\x26\xf0\xcc\x46\x7d\x27\xa5\x6a\x21\x52\x2d\xb3\xa5\x29\xf3\xda\xa6\x8b\x93\x0b\x38\xe2\x5a\x9a\xd1\x57\x3e\xb6\xad\xbd\x04\x52\x2b\x66\x0e\x02\x66\x68\xb7\xdb\xbc\x60\xbb\x1d\x8f\xaa\xab\x63\xa6\x8e\x16\xf6\x75\x84\xbc\x80\xf0\x57\x15\x8b\x83\x88\x6e\xb9\x63\xb3\x9f\x5c\x9c\xba\xa5\x26\x4c\xbb\x82\x49\xf1\xa7\x57\x73\xa9\xe8\xaa\x5a\x7d\x5d\x64\x09\x9f\xa9\xb6\xcc\xa4\x08\xa2\xbc\x5f\xd4\x89\x20\x2c\xa2\x8f\x87\x5a\x28\x03\x51\xe9\x69\x51\x4a\x7f\x1f\x5d\x7c\xaf\x78\x1c\xdf\xfe\x05\x9f\x7e\x71\xa3\xc0\xdc\xf3\x8e\x64\xb1\x68\xb3\xbf\x46\xbc\x91\x46\xd9\xb2\x70\xdb\xb3\x50\x1b\x26\x09\x6a\x11\x44\x39\x6c\xbc\x6d\x1e\x4e\xa5\x5f\xe4\x63\x91\x32\x9f\xf3\xa4\xf9\x5c\xa4\x49\xf7\x09\xe6\xa9\xcf\x7d\x28\x5a\xa1\x53\x5a\x07\x11\x14\xfa\x12\xc4\x90\x42\x83\x83\x2d\x36\x0b\x0c\x3e\xd3\xae\x4e\xcb\x4e\x92\x65\xaa\x25\x63\x56\x59\x4c\x0e\x59\xba\x1a\xab\x79\xd2\xeb\x4c\x64\xc3\xd3\xf6\x89\x6d\xa9\x10\x4f\xa6\x2c\x66\x7f\x3b\x1e\xc5\x71\x7c\x3c\xd4\x5a\x02\x67\x31\x99\xdd\x34\xa8\x98\xcf\xbf\xe0\x20\x11\x83\xc5\x18\x48\xb4\x69\x87\x5e\xc8\xe6\x07\x4c\x0d\x3c\x6a\xd2\x3e\xd2\xb1\x98\x88\x23\x7b\xc8\xd5\x8a\xb9\xec\xb3\x4c\xa6\xea\x72\x23\x0f\xa8\x71\x17\x2b\xa6\xdb\xbb\xed\xb0\xc5\xaf\x77\xeb\x55\xa6\xdd\xda\x5f\x92\x3c\x25\xf9\xd5\x58\xdf\xa5\x6d\x43\xb4\x15\x6b\xee\x9e\xa7\xfb\x5d\x6a\xd7\xf4\x5d\xaf\xd4\x69\x02\xfc\x86\xfe\x67\x91\xab\x39\xc9\x6a\x57\xe5\xf0\x2b\x2f\xea\xbe\x40\x88\xa8\x16\x9b\xf1\x53\xd7\x66\x7c\x97\x50\x7d\xea\x11\xaa\xf7\xa9\x3a\x60\x46\xc4\xf9\x52\x21\xf8\x7e\x9a\xef\xb8\x18\x91\x65\xf9\xe5\x0f\x0b\x38\x62\x1e\x47\xe0\x96\x77\xa4\x59\x66\x88\x76\x23\xdd\x3d\x4c\xb3\x6b\xf8\xa9\x58\x03\x5b\xbd\x4a\xaa\xaa\x93\x74\xb4\x7b\x10\x0e\xe3\xdd\xaa\x53\xe1\x59\x91\xa7\x1d\xa1\xc3\xea\x73\x87\x3c\xce\xd5\x42\xcf\x3a\x5f\x0b\x15\x71\xaa\x31\xd8\xe2\x5d\xc3\x16\x0d\x6e\x2f\xda\x88\x4a\xf4\x28\x11\x50\xf3\x51\xe9\x6f\xf4\xeb\x33\x22\xaa\xf8\x67\x44\xe4\x0a\x9b\x6e\xe1\x90\xe6\x02\xc5\x83\x14\x3f\x17\x77\x44\x12\xc8\x3b\xa7\x14\xcc\x3b\xa7\x12\xd0\x3b\xa7\xfc\xe4\x53\x8d\x4f\xc8\x9d\x53\xe5\x2f\x34\x91\xed\x70\x85\x5e\xc5\xf2\xc7\x32\xb9\xd7\xa3\x07\x92\x1e\xc0\x39\x96\x79\xe2\x10\x10\x3e\x43\xbe\x93\x7f\x91\x54\x0b\xf3\x22\x5c\xdf\x50\xfe\x4b\xf1\x63\x5a\xe9\xcb\xdf\x8c\xdf\x26\x08\xfa\x81\x1b\x72\xf7\x35\xf9\xe9\xbe\x6b\xf2\x3f\x25\xd5\x62\x5f\xf4\xf3\x96\x3b\xfb\x43\x2f\xd5\xef\x7b\x2f\xd5\x69\xc7\xbe\x5b\x75\x38\xce\x6f\x71\xa9\xce\x2b\x18\x77\xea\x5a\xe3\xbe\x4b\x75\x6d\xec\xfa\xad\xba\xb7\xd6\xee\x6b\xf5\x96\x2a\x3b\xef\xd5\x5b\xea\xdc\x4a\xca\x5f\xa8\x36\xda\x6e\xd6\xf9\x0b\x18\x07\x5c\xad\x6b\x8d\x85\xe6\xf4\x6b\x1d\xeb\xeb\x25\xee\xd6\x8d\xc2\xad\x57\xeb\xb0\x95\xec\x7d\xe7\x6c\x34\x63\x23\xfe\xb3\x44\x44\x6c\xdb\x25\x1e\xdc\xf7\xa8\x3b\x6d\xd3\x12\x8f\xfa\xf3\x90\xb5\x69\x5f\x14\x0d\xbc\x5b\x2e\x8a\xee\xaa\x36\xd1\x7d\xd5\x7e\x43\x16\xc3\xe3\xff\x35\x54\xfe\x5f\x3e\x3f\xb3\x53\xcd\xcf\x0c\xee\x3b\x27\xfb\xef\x44\x34\x2b\x5e\xc5\x2a\x4a\x1b\x4d\x6e\xf8\x3a\x0f\x87\x71\x0c\x97\x9c\xc0\x66\x43\x20\x7d\xad\x02\x84\x0e\x1d\x6d\xae\xd6\x24\x1d\x49\x5d\x02\xfd\xfa\x33\xbe\xe9\xc9\x04\x92\x22\x59\x49\xab\x0e\x26\x8b\x23\xcb\xac\x17\xba\xff\x23\x6d\x91\xfd\xea\x76\x9d\x86\x59\x3a\x6b\x96\xad\xa0\x6a\x81\x7d\xa2\x9a\x2c\xf1\xdb\x3a\x59\xae\x46\x79\x71\x1d\x46\xa8\xaa\x93\xd9\x87\x91\xa2\x0c\x66\xf1\xa8\xcf\xf2\x9b\x26\x32\x2f\x92\x4d\x5d\x1b\xd3\xc2\x58\x7c\x06\xcc\x8c\xce\x6d\xb0\x52\xea\x9e\x98\xdf\xe0\x89\xf8\x0b\xa0\x49\x62\xf7\x7e\xf0\x53\x06\xb5\xd5\x5b\x8a\x07\x0d\x7a\x30\x88\x5c\x76\x77\x09\x46\x2a\xff\x6c\xbc\xae\x7b\x75\x74\xea\x5c\x1d\x1d\xc2\x0f\xef\x43\xd9\x65\xb2\x52\xcc\xea\x32\x59\x7d\x79\xae\x96\x35\xfa\x39\x2c\xed\x32\x59\x7d\x06\x3f\xdb\xce\x39\xb6\xb3\xb3\xea\xfd\x8d\x98\x41\xbb\x87\x95\xe5\xc5\xc5\x91\xef\xf2\x7d\x79\x91\xe2\x7f\x3d\xa4\xda\x7f\xe3\x4b\xc7\x45\xe6\x37\xcc\x40\x86\xae\x2f\x12\xab\xc2\x9e\x66\xe2\xc2\x30\xef\xc5\xc8\xe2\xe1\x33\xc0\xc4\xa3\x62\x67\x9a\xb8\x80\x30\x9b\x18\x3b\xbd\x11\x9c\x3e\xf5\x2a\xe8\xed\x5b\x7a\x69\xec\xc3\x82\xe6\xdc\x66\xf9\x45\x25\xba\xfe\xb2\xd5\x09\x99\x36\xe0\xef\x46\x21\x65\xb2\xf9\x11\x1f\x5b\xb7\x7b\x04\x83\xe8\x76\xad\x09\x50\xe6\x25\xb3\x22\xaf\x8a\x0c\x6c\x0f\x38\x3b\xb4\xe1\x69\xfd\xeb\xa4\xcc\xc3\xe0\x31\x5e\x95\x78\xc6\xd8\xae\x51\xe7\xcd\xdb\xbf\xbe\xee\xab\x09\x8e\x3a\x69\x81\xab\xfc\x6e\xdd\x49\xb2\xac\xb8\x66\xbe\x24\x24\xbf\x62\x41\x41\x82\xde\xdd\x80\x02\x15\x74\xb8\xda\xa0\x93\xe4\x37\xcb\xa2\xc4\xfd\xce\x0f\x15\xee\xdc\x14\x6b\xe9\x42\xc6\x82\xf7\x84\x34\xe5\xdd\x82\x54\x11\x3b\x9f\x70\x92\xf6\xef\x46\x0d\x1f\x96\xb9\x4c\x4a\x99\x4c\xb3\x58\xf8\x45\x0f\xfa\x8b\xe9\xb2\xf7\xbf\x48\xa7\x32\x9c\xcb\x29\x84\xd2\x5e\x7c\x6c\x9b\x88\x97\x8e\x25\x80\xa3\x7f\x34\x96\xfe\xce\xa9\x7f\xf1\x13\xdf\xc2\xdf\x39\x8d\x5a\x65\xc4\x3b\xa7\x42\x4a\x4c\xd8\xf2\xdf\x39\x35\x10\xe0\xce\x29\xa0\x00\xdc\x6a\x24\xf0\x2c\x32\xeb\x09\x9c\x03\x12\x78\x54\x59\x8b\x8b\x6c\x84\x40\x96\xa6\x3b\x89\x08\x3f\x27\xee\x32\x20\x5a\x0f\x53\x37\x0d\x23\xbd\x1c\x45\x2a\xfe\xec\xda\xe5\xcf\xe2\xb5\x36\x1e\xa7\xf4\x91\x00\x2c\x36\xaa\xcb\x17\x83\x60\x8f\xdf\xb9\x07\xcf\x0f\xdd\xb9\xc7\x46\x7a\xef\x3b\x63\x81\xe5\xb1\x7a\xe7\x1e\x43\x7c\x1e\x3a\x48\x15\x98\x90\x3b\xf7\xd8\x03\x7a\xdc\xce\xc5\xee\x9b\xe5\x37\x62\x1c\xc5\xe5\xcf\x91\xb8\xb7\x84\x14\x71\xbf\xa0\x70\xc1\x52\x25\x8e\x05\xed\xe0\x51\x76\x38\xb2\x21\x0d\x79\x9a\x26\x6a\x3c\xbb\xbf\x7f\x71\xc1\x64\x96\x8b\x8b\x58\xb4\xa1\x2c\x3f\x9c\xd2\x0e\x4d\x36\xb9\x7e\x8f\x51\xba\x6e\x0b\xf2\x4f\x69\x96\x7e\x88\x75\xc4\xa1\xf6\x18\xb7\xb0\x41\xd7\x39\xfd\x2f\x21\x2e\xb3\x50\xbe\xfc\xe8\x6c\x39\x72\xb4\x2e\xc7\x5e\x89\x79\x9f\x95\xba\xb7\xd2\x6e\x79\xba\xa5\xca\xce\x3b\xe9\x4d\xd3\xb4\xd5\x3b\xec\x12\x9e\x7e\x29\x7b\x5c\x56\x54\x1d\x18\xfb\xda\x3e\x4c\x5e\x17\x94\x9b\xe2\xfd\x7e\x81\xbd\xa5\xc7\xd6\xcb\xf2\x5b\xdc\x8a\xeb\xcc\xd9\x64\x3a\xb6\x62\x13\xf2\x89\xd9\x71\x79\xda\xed\x82\x85\x87\x37\xac\x92\xd0\xd2\x81\x40\x25\x0c\x77\x46\x1f\xf0\x0d\x08\x05\x23\xb8\x4f\x67\xc1\x9b\xb8\x15\x2b\x67\x23\xac\x07\xda\xec\x5b\x51\x87\xb3\xfc\xac\xdb\x7d\xf7\x9d\x37\xfb\xbe\x5f\xc4\x29\x67\xf7\xf7\xe2\xe1\x34\x3e\x0c\x8f\xd4\x22\xf9\x4a\x4b\x82\x96\xa6\x9b\x4e\x48\x18\xbf\xd1\x9b\xe4\x50\x4f\x66\x49\x55\x1b\x09\xcc\x2f\x41\xfb\x2e\x93\x19\x36\x13\x80\xe6\x5b\x69\xf0\xf8\xe9\x6f\xa3\xb4\x54\xdf\x0f\xac\xef\x6f\xac\xef\xdf\x5b\xdf\xdf\x5a\xdf\x7f\xb0\xbe\x87\x83\x2f\xa0\x43\x68\xb3\x76\xf5\xa8\x6c\x5a\x42\xd7\xf8\x1e\x80\xdc\x15\x60\xe7\xfe\x2d\x03\xec\xdc\xdf\x1f\x60\xe7\xbe\xa6\xf8\x70\x2c\x0d\x1f\x98\x96\x86\x60\xa5\x69\x17\x10\x56\x9b\x2d\xd6\x88\x0f\xf6\x5b\x23\x3e\x38\xc8\x1a\xf1\x81\x63\x8d\xe8\xba\xc4\xd9\xe5\x5d\x17\x39\xa8\x67\xb8\xc6\xb9\x95\x0c\x57\xb9\xf6\x73\xf6\x81\x73\xce\xd2\x5d\x15\x5b\x88\x6a\xaf\x70\x62\x8d\xfe\xf7\x6e\x11\xba\xf7\x62\x0b\x9f\x5b\x9e\x50\x89\x2d\x34\x77\x8b\x39\x2b\x42\x91\xdf\x2e\xc6\x95\x42\x31\x23\x37\x17\x41\x8f\xe9\x7c\x7a\xc1\xb1\xd8\x0b\x6b\x4a\x43\xe2\x81\x16\x3b\x09\xe3\x54\xbc\x74\x51\x86\x07\x8a\xfb\x42\x00\x30\xe4\x7e\x2a\xe4\xcc\x49\x59\xd5\x52\xe8\xef\xd4\x05\x4b\xe5\x54\xa6\xa3\x19\x26\x05\x5a\xa0\x03\x06\xc2\x4b\x7c\xdd\xd6\xfb\x53\xe6\x59\x4b\x1b\x93\x0d\x74\xee\x72\x3c\xb8\x3b\xea\xbc\xce\x70\x52\xe1\x0e\xdd\xf7\xb4\xb3\xbb\x39\xbe\xbe\xdb\xa1\xa7\x0c\xe5\x0f\x10\x13\x04\xf9\x6e\xd4\x01\x10\x9e\xc5\xea\x54\x4d\x74\x45\x46\x3f\xd8\xc7\xe5\x38\x9c\x96\x94\x94\x2c\x23\xcd\x34\xe6\xd3\x2e\x5e\xfc\x00\x4d\x5b\xcc\xfe\x0a\x7b\x2b\x2d\x32\xc1\x64\xba\x3f\xd8\x40\x00\x6c\x54\x1a\xc0\xd3\x20\x0d\x99\x33\x7b\xce\xa3\x38\x56\xee\xbd\x96\x3e\x47\x66\x44\x1b\x6b\xcd\x59\xe4\x4b\xc6\xd1\xeb\x71\x67\xf8\xa8\x44\x71\xb6\x3e\x8d\xeb\x56\xcc\xa2\xd3\xc9\xb6\x9b\x46\xf0\x2d\x6c\x07\xd1\x3f\x63\x4d\x06\x8d\x93\x2c\x93\xdf\x6c\x73\xd0\x3f\x63\xeb\xb1\x8e\x98\x83\x36\x36\xc3\xd4\xc7\xdc\x14\x55\xa4\x6a\xcf\x61\x68\xeb\x3a\x12\x5a\xed\x0b\x92\x8e\x94\x49\x91\xd0\x96\x8e\xf8\xbf\x08\x16\x41\x2f\x01\xe6\xbd\x5a\x02\x1c\xe7\x46\x11\xb5\x4c\x7a\x32\x37\xa0\x1b\x39\xd6\x47\x96\xca\x53\x3d\x9b\xc2\x03\x42\x99\x4f\x60\xb4\x46\xf6\x40\x9a\xb9\x3e\x84\xba\x00\x1b\x2a\x6f\xb4\x0e\x19\x31\x82\x89\xd4\x0c\xbd\x66\x2d\x66\xbf\x1f\xc5\x3b\xb8\xb1\x11\x64\x43\xe3\x9a\x64\x06\x67\xa2\x0e\x40\xcc\x45\xc2\x5c\x72\x90\x1e\xb4\x24\x6a\x7c\x36\xd8\xdd\xae\x31\xe2\xb6\xb0\x61\x6e\xd0\x09\x66\xa2\xe6\x8b\x86\x22\x0c\xde\x9c\x60\x51\x07\x46\x50\x91\x66\x4c\xb4\x5c\x83\xf8\xa3\x0c\xfa\x0a\x39\x6b\xa2\x3f\xe6\xc0\xf4\x2a\xec\x6d\x13\xb7\x60\x83\x82\x39\xc9\x93\x2c\xbb\xd1\xda\x93\x96\x24\xda\x02\xeb\xd6\x9b\xf6\xea\x8d\x9d\xde\x6c\x53\x39\xe5\xd5\x22\x23\x41\xca\x27\x85\xa4\x4e\xc6\xd6\x00\x59\x66\x7e\x3e\x3b\xba\xcf\x6c\x17\xe8\x39\x34\x42\xdb\x15\x2e\xa7\x2d\x7c\xb1\x74\xaa\xfd\x9c\xcb\xbd\x5f\x2f\xad\x1f\xe2\x5a\xdb\xee\x4a\xac\x59\xf1\x33\xa2\x28\x4a\x6a\x82\x73\xeb\xe5\x9a\xc9\xcd\xb3\x90\x96\x92\x4b\xff\xd5\x83\xf7\x31\x7c\x87\x8d\x9c\xd7\x6c\x83\x16\x44\x8b\x89\xfe\xf2\x7b\xff\x9f\xc2\x39\xe7\xd0\x28\x95\xbf\x85\x1b\x8f\x3b\xd7\xa7\xfb\x99\x6b\xcb\xd5\xe7\x50\x37\x9e\x7d\xaa\xa5\x7d\x08\x4d\x17\xd0\xc6\x68\xda\xee\xb9\x45\x83\x40\x18\x37\xec\xe9\x77\xb9\x93\x00\xe7\x01\xda\x5c\xde\x7a\xb4\x2f\xf8\x8b\xc5\x62\x72\x3f\x7f\xca\xf4\x51\x20\xb5\x38\x2f\x02\x02\x5d\x19\xc0\x3b\x11\xca\x00\x39\x3e\x83\xd2\xef\x09\x65\xa2\x55\x52\x91\xd6\xf6\xc4\x31\xf9\x1c\x9d\x82\x3a\x94\xce\x3d\xc4\x94\x8f\x64\x42\xa6\x91\x66\x10\xbd\xff\xc4\xda\x47\x58\x84\x80\x3f\xf9\xac\x1d\xba\x6b\x47\x3a\xfb\x61\xa8\xef\x87\x0b\x0f\xb2\x0f\x15\xb2\xef\x45\x50\xfd\x81\xa2\x5d\x18\x7a\x30\x6e\x5e\xf8\x97\xd2\x46\xae\xf6\x79\xe4\x64\xf9\xbf\x60\x22\xbd\x54\xbc\xef\x89\x81\xd3\x32\x95\x52\xf9\xaf\xe9\x7f\xbd\x73\x29\xa3\x1a\x4a\x1d\xa7\x7a\xe8\x81\xeb\x1c\xbb\x5d\x6e\x6f\x6d\x3a\x9b\x9c\xeb\x41\x2a\x4d\x73\xeb\x5b\x2c\x90\xb9\x3f\xb9\x89\xf8\xbe\x15\x92\x87\xd1\x3f\x99\xc3\x2d\xa3\xb1\xbb\x02\x72\x38\x05\xdc\xa1\xa9\xcd\xfb\xcf\x36\x38\xdf\xfe\xdc\xf5\xc8\x58\xfb\x10\xd5\xbe\xfa\xa7\x1b\xa3\x76\x47\xd6\x3a\x46\xb7\x8c\x67\x8c\x8c\x1d\xbe\xb5\x47\xc9\x7e\x00\x59\xbb\xf2\xb0\xf2\xdb\xed\x98\xac\xf8\xd8\xf8\xb4\x21\xfd\xbc\x57\xbe\xd4\x09\x6a\x87\x44\xfd\x64\x3f\x36\xf3\x89\x92\x12\x51\x3e\x90\xef\xc9\x7c\x32\x28\xcc\xa7\xa3\x18\xc2\xcb\x19\x8f\x53\xd9\x7a\x55\x47\x8f\xaa\xcc\xba\xaa\x43\x01\x68\xcc\x90\xf5\xb2\x6d\x8d\x5d\xd4\x5a\x35\xdd\xef\xfc\x4d\xef\x1e\x84\xcd\x77\xfa\xf8\xcc\x7f\xe1\xf7\xd0\x84\x7e\xfa\x71\x52\xe3\x7e\x5e\x5c\x6b\x8f\x93\x09\x30\x43\x7a\x04\xd0\xfc\xa8\x7f\x05\xe8\x1a\x9a\x76\xa7\xb4\x5e\x2c\x14\xda\xf2\xda\xb3\xed\xcd\x33\xdd\xc5\xa9\xd0\x2f\xbb\x9a\x71\xa1\x5f\x3f\x42\x58\x48\x71\x30\x59\xcf\x9e\x89\x4e\xc4\x0f\x6b\x57\x70\xb9\xcc\x7e\xa3\xdb\xf0\x15\x13\xdf\x60\x49\x24\xbe\xc4\x95\x8c\x1b\x64\x4d\x24\xca\x4b\x1a\xcd\xfe\x55\xff\xf2\xd4\x10\xc4\x44\x24\xf0\x88\x13\xe2\x53\xbb\x5c\x52\xf6\x72\xaa\xb2\xba\x02\x32\x4e\x18\xf1\x2d\x9c\x49\x24\xd0\x2c\x26\xd4\xbf\xe8\xed\x90\x96\x60\x43\x38\xb4\x41\x1c\xda\x30\x0e\x6d\x20\x87\x36\x94\xc3\x6f\xbe\x94\xa5\xd7\x2d\x2e\xa2\xa4\xcd\xd1\xbe\x7b\x28\xfb\x96\xe2\xbe\xb7\x08\xb7\xd3\xb6\x6f\x45\xf6\xde\x67\x78\xae\x45\x16\xb6\xe5\xb3\xe7\x5e\x44\xb3\x1f\xdf\x77\x3d\xc2\xf1\x7c\xdf\xf5\x08\xc3\xfe\xbd\xb7\x23\xbe\xbb\x40\xeb\x32\x50\xc5\x76\x69\x29\xb5\x2e\x31\x77\xa3\xb0\xb8\x75\xcf\x2a\x79\x79\x76\xcf\x22\xf9\x84\x24\xcf\x42\xc1\xae\x8c\x6d\x6c\x74\xd6\xb3\xb2\x41\xb3\x96\x49\xd7\xb3\xc6\xb4\xf4\x58\xbb\xc7\xb9\xc9\x67\x56\x6c\x36\x43\x2d\x6b\x64\xe9\x42\x73\xa8\xc5\xe8\x51\xcf\xd3\xcd\xc9\x15\x52\xaf\xfa\x6a\xe5\xe7\x73\xad\xc2\x7c\xde\x5a\x43\x99\xe6\xf9\x62\xb6\x49\x01\x05\x32\xfb\x17\x17\xaf\xdf\xbc\x7a\xf1\xec\xed\x93\x8b\x67\x2f\xdf\xbe\x7b\xf3\xc3\x8b\x27\x2f\xdf\x3d\x7a\xf7\xec\xd5\xcb\x8b\x0b\xc3\xa4\xef\xa3\xe1\x0a\xbb\xbf\xf2\x58\x45\x2a\x0a\xf4\x0b\x7a\xf6\xb8\x98\x34\x2d\x90\xc6\xdc\x1d\xa2\xb9\xc2\x9a\x5e\xbc\xb6\x1d\x84\xac\x13\x45\x1b\xaf\x8b\xa6\xe1\x44\x68\x45\x19\x11\x74\xc5\x17\x37\x54\x27\x26\xda\x6f\xa3\x8c\xb8\x92\xb1\xd2\xc4\xd6\x54\x3f\xcd\x08\xab\xf2\xe2\x46\x4f\x65\xfb\x9e\xfe\x71\x52\x45\x73\xda\x6f\x2b\x62\x2b\x6c\x71\xfe\xaf\x91\x07\xfb\x9a\xfd\xb5\xd2\x05\xfd\x93\xbf\xf6\x85\x68\x32\x0f\xfb\x3c\xb6\xe2\xb2\x16\xf3\x79\x5c\xcc\xe7\x5f\x20\xce\xac\xd8\x57\x37\xf9\xcc\x7c\x3b\x29\x59\xc5\xcb\xc4\x8c\x64\xcb\xb7\x34\xfc\xc3\x02\xd5\xfd\xb2\x26\x25\x7e\x51\xa4\xeb\x0c\x87\x01\x86\xe7\x3c\x9b\x28\x8c\xc6\x5f\x29\x6e\xfe\x8a\x05\x17\xf4\x1c\x34\x17\xdf\x27\x15\xfe\xe6\x7e\x0c\x05\xfa\xf0\x05\xa6\x8f\xb8\xac\x28\x4b\x1b\x9c\xf6\x87\xfd\xdf\x43\xe9\xcb\xf5\x7c\x0e\x0f\xef\xf1\x5d\xb4\x64\xdd\xda\x5b\x0c\x52\xfb\x1c\xe8\x68\x03\xd5\x62\x0e\x6a\x18\xc0\x77\x10\xf5\xbf\x67\x3f\x18\xbf\x78\xf9\xcd\xfd\xd9\x22\x29\xab\x38\x78\xf4\xfd\xf9\xe3\x27\x4f\xff\xf8\xa7\x67\xff\xe3\xcf\xcf\x5f\xbc\x7c\xf5\xfa\x2f\x6f\xde\xbe\xfb\xe1\xaf\x3f\xfe\xdb\x4f\xff\x9e\x5c\xce\x52\x3c\xbf\x5a\x90\x9f\x3f\x64\xcb\xbc\x58\xfd\x52\x56\xf5\xfa\xe3\xf5\xa7\x9b\xbf\x0f\x86\xa7\xf7\xee\x3f\xf8\xe6\xf7\xdf\xfe\xa1\x77\xc2\x41\xfd\xe6\x7e\x9d\x5c\x2a\xce\xee\x92\xf0\x78\xf7\x75\xbc\x69\xc6\xa6\x3b\xfd\x25\xc9\x6d\x47\xfa\x7a\x42\x13\x29\x44\x8f\xea\x90\x44\xd3\x98\xc8\xab\x94\x26\x14\xb0\xc2\x85\xd8\xbc\x2c\x96\xe7\x8b\xa4\x3c\x2f\x52\x1c\x73\xce\x59\x4f\x83\x53\xe2\xf2\x62\x5d\x17\x1a\x3c\x33\xd8\xe5\xbc\xdf\xef\x44\xb0\xbc\x59\x3c\x63\xbd\xd2\x8a\x8f\xea\x70\x20\xb5\x18\xb3\xd9\x77\xc3\xd3\x6f\xcf\x66\xa3\xd9\xec\xbb\xd3\xc1\xfd\x6f\xcf\xf4\x2e\xc2\xe1\x1f\x4e\xb7\xb3\xd9\xc3\x87\x0f\xbf\x89\x7a\x66\xc6\xe9\xb7\xdb\xd9\xac\xfb\xcd\xbd\x68\x64\xa4\x9f\x9e\xde\x87\x0a\xc3\xd3\xee\xf0\x81\xb7\x12\x6d\x8d\x56\x6c\x6b\x50\x3d\x15\x32\x9b\xc5\xdf\x3c\x78\x70\xef\x9b\x5e\x68\x01\x7f\xfc\xe0\xc1\xe9\x1f\xbe\x89\xbe\x1e\x0e\x4e\xef\x5b\x99\xc3\xe8\xf8\xc1\x37\xf7\x4e\xd5\x00\x4d\xf0\xee\x0f\x38\x78\xdf\x76\x7f\xdf\x06\xdd\xf0\xb4\x0d\xbc\xbd\xa0\x37\xfc\x14\x85\x45\x39\x99\xbc\x5f\x3f\xfe\x76\x30\x38\x7e\xbf\x7e\xfc\xfd\xd3\xa7\x53\xfa\x79\x0e\x9f\x4f\x9f\x3e\x7d\x3a\xdd\x4e\xfe\xf6\xfe\x13\xfd\xfe\xf4\xfb\xa7\xd3\x13\x38\xf6\xcd\xd5\x5c\x4b\x69\x6a\xdd\x2f\xf1\x2a\x4b\x66\x38\xe4\xad\x23\xbe\xf4\x51\x23\x10\x01\xe7\x33\x8a\x2a\x0a\x15\x66\x33\x71\x55\x9b\x66\x38\x8f\x27\x03\x74\x8a\x86\xd3\xc9\x6c\x26\xd0\xe3\x77\xf7\xa6\xa8\x28\xd3\x98\xa6\x18\x13\xfc\xdd\x77\xc3\x6f\xb6\xa1\x2a\xf8\x70\x78\x66\x95\x19\x46\x23\x5a\xec\x5b\xa3\xd4\xa9\x5d\xea\x94\x96\x42\xb0\x01\x27\x02\xbd\x05\xfa\x17\x65\xca\x56\x22\x42\x2d\x39\x6c\x1d\x10\x40\xff\x30\x3e\x3d\x0b\xe2\x60\xe4\x2f\xfa\x8d\x51\x72\xd8\x56\x92\x96\x9a\x4a\xcc\x67\x99\x3f\x17\x24\x0f\x83\x80\xcf\xe2\x65\x5d\x24\x82\x66\xd1\xdf\x67\x6a\x9f\xcb\x95\xd0\xb2\xc3\xcb\xa8\x19\x79\x8a\x5c\xca\xc5\x3a\x99\xbc\xaf\xde\xbf\x9d\x6e\x86\xe8\x5e\x73\x72\x85\xe4\x2a\xf1\xfe\xc4\x9a\x01\xe5\x3a\x73\xd7\x3d\x5c\x5b\x8a\x4d\x28\xa9\x27\x9e\xad\x99\x13\x15\x64\x84\xeb\x28\x92\x82\x76\x18\x5c\x32\xba\x1b\xe8\x50\x2a\x94\x62\x23\xa0\x28\x44\x2b\x01\x3c\x36\x0a\xad\xd1\xba\x24\x55\x32\x97\x17\xba\x47\xfc\xfb\x8c\x43\x1e\xf2\x9e\xd6\x51\x34\x72\x93\xb4\x69\xe8\xbd\x3f\x99\x9e\x5c\x29\x71\x6d\x29\x9f\x96\xe8\x2c\x07\x71\x1c\xf4\x82\xb3\xe0\x38\x18\x05\x17\x41\xa3\x55\x8b\x4f\xae\x90\x5c\x1c\x68\xfe\x87\x37\xcf\x7c\xfb\x83\xf7\xbd\x06\x4e\x48\xee\xc3\xcb\xba\x58\x33\x2d\xef\x1b\x7c\xf5\xe4\xd3\x2a\x9c\x04\x93\xff\xfc\x5f\xc7\xff\xf9\xff\x9b\x4e\xfe\xe3\x7f\x1d\xff\xc7\xff\x35\x0d\x50\x30\xf9\xcf\xff\xff\xf1\x7f\xfe\xef\x22\x61\x73\xda\xb0\xb4\xff\xe3\xf8\x3f\xff\x4f\x99\x76\xaf\x09\xa6\x1c\x53\xb6\x41\x84\x82\xab\x20\x12\x9b\x8e\x75\xa0\x6f\xb9\x59\xb4\xa9\xae\x09\x7b\xe2\x40\xed\x8c\x68\x33\x4b\x2a\xdc\xb9\x3f\x62\xb5\x56\x71\xf8\xfb\xee\xcc\xd9\x74\x74\xd7\x7d\xbb\x0d\xbf\xb9\xe7\xe4\x0d\x59\xde\xa9\x37\xef\x94\xe6\x7d\xb3\xf5\xe4\xdc\x8b\x50\x31\x9f\x57\xb8\x8e\x67\xab\x63\x46\x48\xbd\x34\x31\x84\x42\x74\xc3\x0d\xa2\x1e\x50\xd6\x9e\xaf\x44\x77\x38\x38\xbd\x17\xf5\x38\x79\x65\x03\xba\x37\xf2\xb6\x38\x7c\xd0\x32\x3c\xff\x10\x86\xad\x43\x38\x8d\x98\xea\x83\x8a\x0b\xfe\x9e\xee\x0d\xfd\x3d\x79\x5b\x1b\x46\x32\x16\xb3\xb1\x6a\xbe\x8d\xcb\x71\x07\xf1\x25\x56\x54\x36\xc5\x0e\x95\x9d\xa9\x77\xe7\xb5\x35\xe7\xe4\x28\xce\x70\xfe\xbb\xfb\x28\x8f\x43\xf6\xcc\xfc\x19\x30\x10\x13\x09\x1b\x83\x78\x4a\x97\x7e\x34\x88\xb6\xac\xd0\xd0\x57\x68\xc8\x0a\x9d\xca\x42\xa7\xbe\x42\xa7\xb4\xd0\x37\xb2\xcc\x3d\x5f\x99\x7b\xd1\x54\x23\xca\xc6\x74\xe6\x14\x09\xbe\x89\x90\x93\xf8\x6d\xf7\xf4\xc1\x03\x3b\x9d\xa5\x4d\xc7\x40\x47\xf9\x1b\xcc\xf4\x90\xe1\xc7\x0c\x0c\x7f\x27\xb9\x4d\xe8\x61\xc7\xe9\x29\xfd\xad\x08\x60\x62\x93\x5b\x9a\x1d\x26\x3a\x21\x53\x45\x12\x0f\xb9\xbd\xcf\xc9\x2d\x2c\x97\x20\xb7\x7c\xf1\x6c\x72\x2b\x9b\x0a\x93\xfd\xe4\x36\xd1\xc9\x6d\x82\x24\x8d\xd5\xe8\xae\x1f\x4c\x8a\x47\x21\x1f\x07\x07\xc8\x46\x26\x55\x98\x83\x2a\x88\x69\xa2\xd3\xd2\xe3\x8b\x9d\xa4\xf4\x38\x38\x0b\x7a\xc1\x28\x38\x31\x48\xe9\xe4\x6f\x8f\x8e\xff\x3d\x39\xfe\xfb\xe0\xf8\x0f\xef\x39\x31\x0e\x02\x01\x47\x5e\x9c\x17\xf9\x3c\x23\xb3\xda\x36\xd0\xf7\xf2\xf1\xc6\x57\xcc\x79\x7d\xb1\xd0\xf0\xd5\x58\x85\x36\x7f\x7d\xf2\xe6\xed\xb3\x57\x2f\x47\x9c\xff\x47\x74\x22\x46\xf4\x0f\xa2\xe7\xd0\x88\xfe\x61\xf8\x05\xe5\x47\x30\x7c\x54\x17\xfc\x1b\xe8\x3b\xa2\xc7\xd5\x88\xb1\x3f\x90\x20\xd2\xe5\xd9\x30\x92\xbf\x68\xbb\xeb\x11\xdb\xc4\xd0\x98\x68\x53\x0d\x76\xa4\x7e\x36\x9a\xf4\xc1\x95\xbb\x20\x78\x08\x01\xd9\xd0\xd3\xc3\xdc\xe4\xc5\x93\x7c\xbd\x54\x33\xf6\x51\x06\xf3\xe4\xa1\x3b\x11\x37\x1e\xba\xcc\x30\x04\x23\x46\xd7\x25\xa9\xd9\x27\x33\xc6\x11\x22\xa1\x4c\x69\xac\x69\xeb\xe3\x4f\x35\xce\x53\xfe\x1a\xad\xb6\x34\x5e\x10\x39\xb2\x68\xef\xeb\x06\x6a\x46\x03\x04\xe0\x7a\xac\xad\x38\xaa\x81\x05\x67\x14\x8d\x0f\x6d\x5c\x2c\x8e\xdb\xb4\xc5\x35\x88\xd3\x99\x99\x70\x88\xbc\xcf\xe9\xe9\x87\x37\xcf\x76\x8c\x43\xef\x05\xd8\x80\x88\x99\x78\xc1\xc8\x44\xa4\xbc\x49\xf0\x02\xd7\xb8\x28\x83\x69\xb4\xf1\x61\x77\x73\x72\xd2\x39\x2f\x56\x37\x25\xb9\x5a\xd4\x23\xf5\xb3\x73\x3a\x18\xde\xeb\x3c\x2e\x66\x1f\x7e\x4a\xca\x14\x75\x9e\x3f\x3f\xef\x77\x92\x3c\xed\xcc\x8a\xbc\x2e\xc9\xe5\xba\x2e\xca\xaa\xff\xd5\x91\x06\xd7\x13\x2a\x35\xf7\xff\x2a\xdd\x6d\xaa\x18\x52\x98\xab\xdc\x2a\x99\x61\x7e\x81\x10\xca\xdd\x11\x0c\xfb\x83\xfe\xa0\x7f\x89\xeb\xa4\x7f\x1a\x34\x51\x13\x46\x68\x57\x83\x7d\x1e\xcd\xbd\x8a\x37\x25\xce\x53\x3d\xd8\x54\x8d\x40\xe3\x03\x75\x9e\x0d\xbf\xcd\x23\x3e\x4f\x2a\xa5\x5f\x73\x5b\xd0\xaa\x1f\xf4\x68\x05\xb0\x46\xd2\x39\xa6\x60\xb3\x09\xfb\x5f\x9f\x45\x4d\x13\x44\x08\xc7\x41\x20\xf6\x39\xe9\xd7\xb8\xe2\xa1\x46\xf9\x19\x5d\x4d\xea\x69\xd4\xed\x86\x38\x26\x7d\xfc\x09\xcf\xdc\xcc\xc9\x70\x1a\x21\x3b\x55\x12\x29\x82\xaa\x09\x9e\x46\x0d\x12\x99\xa3\x0d\xc9\x67\xd9\x9a\x12\x8c\x51\x40\xaa\x4e\x5e\xd4\x1d\x96\x92\xe2\xb4\x43\x72\x66\x67\x9d\x91\xaa\x0e\x10\xfe\xa4\x97\x2b\x31\x8b\x7f\x9e\x06\x88\xe4\xcc\xdb\x89\xa5\xf2\xdf\x01\xec\xbb\x72\x09\xbe\xb3\x81\x70\x95\x5d\x26\xf5\x6c\xd1\xd9\x6c\x92\x1a\x96\x13\x37\x4d\x80\x92\xd9\x0c\xaf\x6a\x9c\x8e\x02\xe1\xfb\x24\x52\x02\x84\x97\xab\xfa\x66\x14\xcc\x12\x5a\xfb\x12\x77\xd8\x77\x80\x2e\xb3\x24\xff\xa0\x25\xb3\xef\x00\xad\x28\x50\x79\xad\x1a\xe2\xe9\x75\x51\x3c\x2f\xf2\x2b\x06\x61\x5d\x14\x9d\xac\xc8\xaf\x3a\xe1\x32\xf9\x44\x96\xeb\x65\x87\x54\x9d\xcd\x86\xd9\x6d\x37\x4d\x47\x3e\x29\x50\x45\xac\xde\xdb\x45\x51\xd6\xb2\x62\x45\xbf\x3a\xe1\x92\xe4\x7b\x6a\x5e\x97\x45\x7e\x05\x51\x88\xa0\xf2\x02\x77\x58\x1a\x37\x63\xea\x84\xd5\xa2\x58\x67\x29\x05\xb2\xa5\x89\xbc\xa8\x1f\xbd\x5c\x53\x3c\x92\xeb\x92\x74\x72\x96\x00\x99\xf9\xb3\xbc\xc6\x57\x34\x5b\xce\x5b\xde\x21\x90\x16\xa0\x2b\x86\xf6\xe5\xbb\x45\x92\xab\x02\x3c\xb1\x53\x2f\x92\x5c\xf5\x6b\x14\x7e\x55\x3e\xf9\x65\x9d\x64\xef\x8a\x96\x5a\x45\xd9\xc1\xb4\x40\xa7\x2e\xf4\x16\xb0\x5d\xc9\x57\x28\xc3\x55\x65\x02\x44\x53\x1c\x68\x44\x31\x0f\x28\xaa\x7c\x0b\x1c\x45\xbd\xb0\x07\xcd\x92\x9c\x4e\x8a\x54\x43\xb8\x22\xa5\xb8\xf6\x11\x6b\xb5\xe8\x57\x80\xd6\x65\xa6\xcd\x3e\xc3\xed\xce\x0f\x6f\x9e\x07\x4d\xb3\x97\x6c\x30\x63\x37\x41\x8e\x38\x15\x86\xb3\x26\xdc\xf0\xd7\x7f\x05\x39\xd6\x28\x8a\x69\x65\x5c\xe1\x3a\xac\x11\x34\xb1\x4c\x3e\x60\xb0\xb3\x8b\xf8\xfe\xbe\xa2\xb9\xcc\x17\xd7\x84\x05\x74\x65\x50\xeb\x05\xf9\x44\x72\x49\x03\x49\xc5\x20\x1c\xb9\x84\x7d\x10\xc7\xb1\x6c\x34\xe0\xee\x8b\x45\x59\x05\x51\x7f\x56\x2c\x57\xc9\xac\x0e\x23\xae\xc1\xfc\xfe\x26\x0c\x78\x43\x01\x3a\x1a\x46\x50\x05\xf0\x3a\x88\x1a\x7a\xa8\xc0\x21\xa3\x35\xd3\xff\xef\x38\x99\x2d\xfa\xa2\x5a\x84\x48\xf5\x8c\x93\x0d\x80\x93\x76\xb2\xae\x71\xda\xcf\x8b\x5a\x35\x1f\x35\x11\xaa\x62\x8d\xde\x12\x71\xef\x5b\xb3\x5e\x49\x34\xae\xfb\x25\x5e\x16\x1f\xb1\x7c\x8f\x81\xa0\x2a\x42\x75\x5f\xeb\x7b\xb5\xae\x16\xfc\x6d\x41\xe8\x4c\x18\x2c\x16\xd1\x99\x3a\x1f\x96\x45\x8a\xb3\x51\x8d\x04\xf8\x23\x42\x89\x58\x8d\xf3\xfa\x7b\x70\xe2\x1f\x05\xac\x48\x3f\xe8\x91\x26\x1a\x15\x51\x83\x48\xac\x2f\x1c\xb3\xe6\x8c\xeb\x3e\x7b\x49\x9f\x85\x08\x18\x1b\xa7\x81\x8e\x1c\x1a\x74\x59\x31\x4b\xb2\x49\x35\xdd\x6e\x77\x16\xa3\xa3\xac\xf1\xa4\x9a\x36\x08\xf3\xb5\x65\x83\x78\x5d\x16\x9f\x6e\x04\x62\xd5\x68\x23\xbc\x5a\x3d\x6b\x6c\x46\xf5\x0e\xa3\x06\x5d\xf8\x4a\x03\xfa\x28\x64\xe0\xb3\x10\x44\xdc\xcb\x2a\x0c\x64\xb5\x20\xea\x5f\x93\x7a\x51\xac\xeb\x10\x1e\x61\xb7\x86\xcc\x62\x26\x24\x59\x46\xd1\x94\xbd\xe7\x40\x72\x52\x07\xec\x59\x43\x3e\x2e\x7b\xf9\x93\x8c\x24\x95\xd6\x67\x13\x8d\xdd\x69\x61\x48\xed\x43\xf0\x1a\x6d\x68\x0f\x23\xc7\x1b\x98\xb9\x15\x87\x7c\xdf\x60\x7d\x67\xba\x5b\x56\x34\xc6\x4b\xcb\xcb\xb5\x5a\x15\xfd\x33\xbe\xa9\xe2\x4d\x03\x05\xd4\x60\x62\x67\xa7\x22\x98\x16\xdf\xe6\xa2\x3d\x06\xf4\x28\xd7\x1b\x61\x1c\xcc\xa6\xe1\x5d\x5f\xae\x49\x96\xfe\x55\x36\x2f\x20\xd2\xb0\x62\x5e\x94\x4f\x92\xd9\x22\xd4\xf1\xb0\xee\x27\x69\x2a\xb7\x83\x60\x3e\x26\x53\x70\x20\x42\x2e\xca\x3a\x50\x8f\xf7\x76\x43\xa2\x0d\x91\x1b\x9d\x8e\x4e\x7e\x74\xbb\x61\x15\x33\x4f\x86\x59\x52\x87\x84\x4f\x76\x14\xc1\x64\xf1\x11\x50\xba\xa6\x71\x45\xb2\x32\xa2\xdc\x31\x2f\xd9\x20\x6b\xf8\x0e\x8e\xb2\xbb\x80\x1a\x98\x14\x73\x0a\x23\x3b\x81\xb2\x40\xa6\xd8\x09\x04\xe1\x4c\xcd\xf3\x9b\x75\x86\x65\x67\x61\x1d\x8d\x54\x16\x94\xd5\x33\x39\x70\x46\x9d\x91\x33\xb3\x0c\xc0\xca\x07\x20\x65\xd4\x7c\x30\x5a\x37\x86\x55\xd4\xed\xda\x6b\xa1\x51\x33\x12\x56\x91\x4d\xbf\xe8\x12\x4b\x12\x56\x8b\x28\xa8\x23\x4f\x67\x94\x96\x44\x62\x24\xd6\x10\x8d\xb1\x08\xa2\xf9\xb2\xc8\x81\xf5\xe7\x27\x4f\x04\xb3\xa7\x63\x5b\x0d\x38\x56\x45\xa3\x8a\x0b\x09\x51\x83\x76\x13\x99\x71\x0b\x75\xb2\x1c\x4c\x78\xec\x1a\xc2\x29\x3f\xc7\x9e\x40\x12\x1c\x86\x72\x75\x42\xf2\x2a\x3c\x1a\x46\x67\x1a\xfd\xe1\x46\x89\x24\x1a\x91\xe6\x00\x9a\xa7\x4d\xf5\x97\xa2\x77\x07\x08\x19\xab\xa4\xae\x71\xb9\x43\x7c\x61\x62\x2e\x99\x25\x19\xa9\x6f\x46\x27\x7f\x0b\x8f\xb7\xef\x7b\xd1\x59\x78\x36\x7a\x9f\xf6\xb6\xef\x53\xa6\xfe\x0e\xcf\x46\xe8\x7d\xba\xb9\xd7\x44\xbd\x88\xe6\xf4\xdf\xa7\x5f\x47\x67\x77\x4e\x38\xbf\x7c\xf2\xb7\xf7\xd5\xd7\x77\x4e\x0e\x80\xc6\x21\x69\x0e\x3c\x11\xda\x7f\xa8\x7d\x66\x5d\x38\xe9\x5a\x2b\xdf\x02\x78\x26\x6e\xfa\x39\x30\xef\x31\xa1\x91\xa5\xa0\x95\xeb\x6a\x3d\x0f\x5c\xe2\x2f\x7c\xba\x52\x16\x23\x20\xc9\xaa\x78\x13\x90\x79\x30\x52\x67\x01\xdf\x9e\x7d\x32\x0f\x22\xb4\xce\x29\x7b\xeb\xc9\x85\x8c\x80\x53\xc6\x3e\xb0\x21\xc6\xb6\xe3\xb1\x1d\x80\x88\xc2\xc6\x33\xb6\x53\xd4\x20\xad\x7c\xf5\xb4\x28\x1f\xfb\x47\xe1\x1e\x9d\x2d\xc3\xf5\x1f\x3d\x2d\xe0\xb5\x80\x04\x74\x5e\x67\x0c\x28\x71\xf3\x43\xf6\xae\x78\xc1\x08\xdc\x0e\x46\x85\x75\x1c\x44\x63\x75\xe6\xb6\x42\x3f\x31\x66\x6c\x4a\x4f\xe1\x43\xcb\xba\xeb\x4c\xd9\xcd\x03\x2b\xc3\xb4\x50\x4c\xac\xc2\x9d\xd3\x6b\x4e\xcb\x2c\xc9\xb2\x91\x6d\xe0\x1b\xbc\xa4\xa2\xfa\x72\x95\xe1\x25\xce\x6b\x9c\x1e\x05\x0d\xda\x25\x58\x70\xfe\xd4\x99\x2e\x41\x40\xcf\x04\x5d\x1f\xc1\x04\x36\x48\x88\x0b\x16\x8f\xc6\x84\x70\x9d\xb1\x88\x7e\x1b\x12\x0f\x88\xe4\x10\xfa\x33\x32\xf2\x51\xf7\x56\xda\xae\x77\xce\x61\x9e\x65\x38\x91\xec\xe0\x2c\xc9\xff\x2a\x41\xe2\xe7\x2d\xb3\x9f\x15\x74\x8a\xf7\x03\x66\xdf\x6a\xfe\xa4\x90\x72\x76\x34\x18\x1d\x0d\xed\x15\x93\x8d\xea\xb0\x90\x79\x28\x2c\x93\x8e\xc4\x63\x90\x0e\x95\xe0\x4a\xa4\xa3\x81\x7c\x79\x42\xcf\x9d\x50\x12\x32\x85\xa6\xa4\xb6\x34\x6e\x6d\x8c\x17\xd7\x27\xc1\xcd\x0e\xd5\xc6\x45\x06\xc2\x32\x95\x5e\x50\x31\x6d\xe1\xa1\x9d\xb4\x41\xc5\x9a\x9f\xb4\xd4\x9d\x9e\x1d\x50\x26\xe4\x4c\x19\x20\x06\x43\xd6\x16\x48\xc0\xc2\x81\xcc\xc3\x23\xa7\x04\xa7\xa6\xc6\x24\x1f\x32\x91\x56\xbd\xb6\xfc\x5f\x3b\x95\x66\x37\xb7\x9c\x4b\x5e\x79\x7a\x76\x74\x48\xa9\x30\x1a\x1d\xed\x9b\x4f\x01\x4e\xe3\xaa\x19\xf6\x33\x00\xfd\x47\x97\x15\xce\x67\xd8\x23\x6a\x59\x87\xf4\xee\x73\xd9\x14\xdf\xf8\xa9\x18\xc7\xf1\xd1\x80\x6f\xd7\x4a\x3b\x2d\x03\x44\xe5\x27\x53\xee\x12\x07\x29\x57\xe5\x7a\x6a\x89\xac\xc0\xc3\x9b\x08\x05\x70\x1f\xf4\xbf\x61\xc0\xf5\x8c\x81\x01\x0f\x65\xa5\x6d\x3a\x2d\x38\xe7\x27\x8c\x62\xfa\xe6\x5a\x62\x47\xb4\xdd\xea\x14\x4a\xe3\xf2\x7d\x23\xf0\x68\x7d\x0e\x59\x0e\xa6\x57\x4d\xfe\x1f\xb8\x22\x4a\x63\xbc\x6f\x49\x8c\xde\xa1\xda\xd9\xce\x85\x39\xb2\x20\x86\x3a\x1c\xe0\x03\x57\x6b\x14\x0c\x03\xd1\x4e\x5b\x3f\xdd\xee\x70\x7f\x91\x7d\x90\xca\xf9\xff\x2d\xd1\xe8\x5c\xd3\xed\xff\x5a\x44\x2a\x4a\x72\x45\xf2\x24\x93\x77\x80\x2e\x2b\xab\xf4\x0c\xc6\x57\x2f\xd0\xe1\xe0\x0b\x6f\xe2\x65\x2b\xef\xea\x4c\x8b\x05\x85\x17\xaf\x43\x1f\x62\xcb\x9b\x8c\x91\xb7\xa1\x46\x57\x78\xa8\x5a\x7c\xfa\x47\x07\x60\xf6\xcc\x1d\xa4\x7c\x1a\xa4\x15\xbf\x2d\x0c\x71\x86\x77\x20\xa2\xfd\x96\x48\xf4\x44\xdc\x26\xfd\x26\xa4\xc8\x52\xf6\xf0\x98\xb0\xbe\xa5\x08\x48\xce\x05\x32\x9e\xf6\x5b\x93\x2a\x79\x8d\xb6\x9f\x56\x31\x0e\x1a\x55\xe3\xdb\x1c\x23\x67\x7e\xe0\x59\x90\xda\xef\xb3\x24\xff\x70\x4b\xca\xa5\xa7\x4e\xe8\x64\x4d\xcf\x8e\x29\xa1\x02\x98\xee\xf4\x49\xae\x3d\xf9\xd7\x06\x15\x72\x5b\xb9\x25\x8e\x19\x70\xf4\xcb\x24\xa7\x0b\x11\xd6\xb1\x9b\x3c\x19\x4c\x51\xe5\x4b\x1f\x4e\xd1\x4e\x20\x1f\xc6\xf5\x1e\x02\xfb\x5d\x5c\xdd\x0e\xea\xcf\xdb\x1a\x4f\x0b\xba\xdf\xff\x11\xfb\x02\x2e\xa0\x5b\x36\xc6\x35\xa9\x17\xff\xd8\xad\x21\x6f\x8f\xbf\x24\x5f\xf5\xdb\x6e\x08\x36\x49\xd3\x6e\xf7\xc8\x97\xac\x5d\xdf\xb7\x83\xf7\xf9\xbb\x80\xab\x22\x39\xfc\x56\xea\x21\x7d\xff\x03\xc8\xfc\xb3\xfc\xff\xa5\x64\x5e\x5a\x55\xfc\x0b\x93\xf9\xf8\x5f\x94\xcc\xef\x86\xf2\xbb\x9a\x8b\x5a\xad\x07\x41\x75\x4b\xa8\x3f\x6f\x6b\xf0\xf7\xb1\x3e\x7f\x5f\x08\xbc\x99\xf3\x30\x54\x6a\x8f\x04\xdc\x4e\xc4\x54\x1a\x70\xb0\xfd\x1b\x84\x54\xb7\xda\x1e\xbe\x56\x64\x1e\x08\x7c\x75\x3c\x18\xd7\xdf\xc1\x4c\x43\x06\xe5\xbd\xc3\x48\xc6\xf1\xed\xf5\x22\xbe\x82\x46\xfe\xa4\x9e\xf2\xbe\x2d\xd1\x6b\x52\x4d\x4d\x5a\x37\xa9\xec\x5b\x3d\xb0\x6b\x33\x8e\x71\x47\x4f\xae\x2a\x7b\xd5\xd2\x63\x63\xb8\x75\xf1\x01\xe7\xe4\xef\xe2\x05\x4a\x27\x59\x73\x4c\xd7\x6c\x37\xd8\x4b\x85\x35\xb3\xc2\x6d\xd0\xf9\x9f\x9e\x9c\xff\xf9\xed\x88\xce\x70\x10\xc7\x01\xe2\xd6\x43\xa3\xe0\x21\xfd\x00\x23\xa4\x51\xf0\x5d\x1c\x34\xe8\xc5\x93\xb7\x6f\x1f\xfd\xf1\x09\x2f\xac\x19\x11\x69\xb5\x84\x51\x92\x56\x97\xdb\x37\x05\x0d\xba\xc2\x54\xd4\x59\xe3\x56\x8b\x12\x31\x78\xe7\x3e\x14\x66\xce\x2b\x0a\xab\x3a\xd1\x76\x3b\x18\x59\x69\x0d\xd2\x56\xcf\xa3\x77\x05\xfc\xfe\x40\x97\x96\xd5\x14\x63\xa4\x84\x70\x81\x67\x1f\x0e\xac\x06\xb3\x18\x35\x08\x08\xec\x0b\xe8\xf3\xa9\xef\xda\x15\x91\x18\xec\x7c\xe4\x55\x0a\x9b\x93\xb0\x8e\x1a\xeb\x46\x56\x10\x65\x32\xa9\xa6\x36\xaa\x8d\x3d\xd3\x26\x31\x7c\x62\x0c\x65\x52\x4f\xbd\xe6\x1b\xf6\xa1\x60\x57\x42\x44\x8e\x87\xd1\x6c\x3e\xa8\x36\xe5\xb5\xbc\x2c\xaa\x60\x99\xec\x99\x08\x03\x52\x05\x16\x09\xe5\x68\xd3\x56\x81\x67\x07\x4a\xe7\xdf\x72\x38\x21\x32\x96\x86\x8e\x87\x9d\x50\xd1\xfe\x13\x2a\xb4\x86\xc5\xe9\xb2\x05\xfb\x1e\x62\xec\xce\x5f\x18\x45\x63\xf6\x60\x03\x7b\x66\x41\x2e\x36\xc7\x20\x4e\x72\xe0\x6b\x42\xa6\xe6\xa1\x45\xd8\x5d\x10\xb3\xce\x94\x11\x45\x02\xbe\x08\x41\xcf\x4f\x03\xf6\x4c\x04\xa7\x77\xbd\xa0\x13\xf4\x2a\xf6\xd7\x44\x4b\x12\x45\xa8\x0e\xf7\xe8\xff\x9c\xa5\x23\xd1\x67\x1e\x3b\x2f\xb5\x8b\xe4\x5f\x7f\xf8\x20\xe2\x39\x7e\xf4\x69\x62\xca\x93\x33\x23\x65\xd3\x8c\x76\x30\x71\x82\x84\x87\xc4\x40\x1c\x64\x35\x61\x2f\x5b\x7c\x34\x88\x50\xb8\xfb\xcc\xda\x6e\x77\xe7\xf7\xf5\x4b\xf6\xc8\xc6\x4f\x69\x07\xdc\xd2\xb6\x05\x93\x66\x37\x6c\xdc\xdd\x1f\xc0\x3b\x2a\xd3\x4f\x47\xe3\xe3\x3f\x19\xfb\x45\x9e\xdd\x70\x73\xd0\x6e\x77\xcf\x20\x8d\xb2\xfe\x21\xea\x65\x3c\x38\xe2\x05\x58\x98\xa3\xda\xfc\x2e\x12\x37\xe3\x0e\x2d\x17\x46\x42\x93\x80\xd9\x5f\x06\xcc\xe4\x72\x2a\x18\x87\x4a\xe7\x13\x48\x5c\x31\x7a\x59\xbd\x4c\x5e\x86\xd6\xca\x47\x87\x1d\xf7\xc4\x7f\xdc\xb7\xb0\x1a\x94\x0e\xec\x9e\x47\x20\x15\x5e\x5d\x08\x41\x2d\x23\x76\x70\x8a\x1d\x53\x76\xcf\x91\x1f\x8f\x28\x92\xef\x5f\x0b\x62\x4e\x7f\x0b\xbe\xb0\x7e\xbb\xdd\x14\x67\xb8\xc6\x1d\x37\x2b\x52\x6c\x8b\xb4\xec\x8d\x29\xf3\x62\x98\x15\x3f\x6c\xb3\x1c\xa6\x9c\x8d\x32\xf6\xfd\xce\x6b\xd2\xcb\x18\x9e\xd6\xd3\x06\xe1\xdf\xe0\xbc\xb9\x05\x4f\x6f\xd1\x82\xb1\x78\x00\xa8\xdd\x72\xc7\xa8\x70\x88\xf4\x1d\x89\xdb\x5d\xcf\x26\x66\xaa\xfc\xed\xf6\xe4\x6f\x93\xde\xfb\xe3\xe9\xd9\xfb\xb4\x77\xe7\xe4\xf3\xda\x4c\xd3\x6e\x77\x95\x94\x15\x7e\x96\xef\xa9\x8c\x86\x83\xe8\x77\xa7\x71\x1c\x0f\xa2\x5b\x4d\x54\x91\xa6\x6a\x7e\x8c\x22\x74\x43\xdf\xae\xf7\xa3\x5b\xf7\x4e\xfb\xd0\x8e\xfb\xda\x3e\xee\xb1\x71\xdc\xb7\x8a\x16\x35\xdd\xcc\x47\x40\x5f\x18\xc0\x4f\xb3\x22\x71\xf9\xdf\xa8\xdb\x25\xd5\x53\x7a\x16\x62\x27\xef\xac\xb2\x9b\x1c\x99\x7d\xb5\xb3\xd5\xcc\x68\x72\x4f\x99\x08\x91\x9d\x6c\x49\xdb\xc4\x32\x8e\x03\x03\xf7\x11\x21\xb2\x8f\xd1\x70\x39\xdd\xa9\x60\xa7\x6e\x87\x15\x0a\x99\x3f\xa7\xba\xb1\xfb\x3e\x8b\xcf\x79\xcd\x2e\x69\x7f\xdb\xab\xce\xd0\x62\x4a\xf6\xea\x94\xbc\xa3\x3d\xe4\x84\x15\x9e\x2c\x8b\x2f\xa7\x18\xfd\x07\x68\xff\x7e\x28\xb3\x5b\x4c\x7f\x89\xaf\xf0\xa7\xd5\x88\x45\x55\x87\xdf\x17\x84\x7f\xee\x5e\x19\x8f\x91\xb5\xad\xb2\x8b\x7e\xad\x3e\x6f\x5d\x66\x0e\x67\xb3\xa3\x5f\xe6\x59\x37\x2b\xb2\xca\xdf\xb3\xca\x46\x93\x60\x51\xd7\xab\x00\xb1\x7f\xaa\x60\x0a\x0e\x62\x75\x1c\x84\xa7\x0f\x26\x83\xe3\x07\xd3\xed\xe9\x64\x70\x7c\x7f\x3a\x19\x1c\xff\x61\xba\x9d\x0c\x8e\x87\xf0\x93\x7f\x0f\xd5\x4f\xfa\x37\x0a\x50\x15\x07\x61\xd0\xab\x7b\x41\xf8\xfe\x7d\x9f\xfd\x88\x36\xf7\x9a\x28\x40\x24\x0e\xc2\x49\x72\xfc\xf7\x47\xc7\xff\x3e\x38\xfe\xc3\xfb\xf7\xc7\xd3\xde\xfb\xf7\xfd\xa8\x27\x12\xa7\x9b\x53\x44\xcb\xe1\x38\xf8\x1d\x6d\x2c\x39\x9e\x3f\x3a\x7e\x0a\xfe\xfa\x45\x1c\xc8\x9a\x77\xde\xbf\x3f\xbe\xe8\xf7\x8e\xbe\xbe\x1b\x46\x68\x3c\xfa\xef\xdd\x38\x40\x39\x6d\x3b\xe8\x15\xbd\x60\xba\x65\xe4\x26\xfa\x3a\x40\x65\x1c\xfc\x2d\x18\xbb\x93\x93\x16\xcb\x84\xe4\xaf\xf2\xec\x26\x88\x40\x3e\x28\x7b\x31\x19\x85\x65\x0f\x40\xdf\x35\x9b\x2a\x48\x40\x2f\x88\x46\xef\xdf\x9f\xbc\x7f\x7f\x12\x20\xb7\x0a\x3b\xf7\x7f\xa8\x70\xf9\x3a\xa9\x2a\xde\x4d\xb7\x0b\x5d\x68\xb3\x60\x8d\xa5\x1b\x0b\xf0\x7b\xff\x3d\x3a\x0b\x22\x54\xf6\x3c\x8b\xcb\xda\x7e\xb6\x12\xc0\x53\x98\x49\x2f\xd8\x32\xf1\x2e\x0a\x46\xfc\x3b\x6a\x05\xeb\x75\x51\xd6\x16\x48\x23\xb6\x7a\x3d\xd1\x27\x5d\xbb\x93\x00\xf1\x09\xc9\x7b\xf0\x4d\x7f\x44\x5f\x47\x67\x81\x28\x72\xc6\xe7\xfc\xe4\x4c\xce\xba\x96\xfb\xdf\xda\x73\x65\x3f\x77\x38\x90\xb0\xdf\x74\xaf\xc4\x32\xd2\x73\x2e\x88\x91\x59\xb5\xa9\xb1\x77\xdf\x2b\x7b\x78\xba\x28\x6a\x99\x24\xc6\xb3\x05\x87\x18\x35\xf8\x37\x3c\x9c\x3a\x1b\xc1\x93\xf8\x17\x50\x6f\x5d\x0e\x94\x33\x5a\x91\x30\x9a\x63\xdb\xfc\x73\x00\xd0\x9a\x15\x6d\xee\x3e\x7c\x5b\x1a\xe2\xc6\x57\xe3\x93\x93\xce\xf3\xa4\xaa\x3b\xb3\x62\xb9\x24\xf5\xa8\x33\xb8\x9c\xcf\x1f\x5c\xce\x3a\xe1\xe9\x60\x78\xff\x78\x70\xff\xf8\xf4\x9b\xce\xf0\x74\x34\xf8\x66\x34\xf8\x7d\xe7\x78\xf0\x60\x30\x88\xbe\xfa\xea\x2b\xd3\xd9\xf6\x3f\xfe\xb7\xd3\xc1\xf0\xf4\x98\x79\xda\x3e\x29\xc9\x87\xce\xf7\xe5\x4d\x8e\x3a\x3f\x25\xab\x55\xe7\x59\x3e\xeb\xa3\x3d\x0e\xb7\x32\xac\x1b\x0e\x31\x52\xca\x45\xdc\xed\xd6\xdd\x2e\xee\x7f\x62\x66\xb7\x9f\xe8\x4f\xf0\x0b\xb9\x51\x81\xe0\x6a\xc9\xe0\xe7\xa8\x14\xb7\x1d\xda\x7b\x22\x1f\x09\xbe\xee\xaf\x57\x54\x2c\x3b\x2f\xf2\x1a\x7f\x52\xef\xab\x3d\x01\x23\x57\xdb\x85\x25\xda\xd4\x31\x01\x47\x83\x00\xf3\x22\x11\xca\xb9\xa1\x08\xaf\x8b\xb8\xee\xf6\x42\x26\xe4\x0c\xd8\x10\x87\x39\x2a\xa3\xed\x96\xa3\x64\xb9\xce\xfb\xd5\x6c\x81\x21\x1c\x17\xd0\xfd\x40\x97\x19\xe1\x65\x91\xbf\x52\x28\x59\x08\xbb\x77\x65\x92\x57\xf3\xa2\x5c\xa2\x1a\xe5\xfd\x4f\x28\xef\x8b\x2b\x10\xd9\x55\x9c\x4b\xcf\x17\x88\xad\xca\x8f\xc3\x2b\x5c\xf3\x09\xa8\xb0\x70\xf0\x7b\x4e\xaa\xfa\x59\x8d\x97\xb4\x83\x56\x0f\xa7\x83\x78\x94\x1c\x87\x41\x4a\xd2\x67\x79\x85\xcb\x5a\x4d\x1d\xdd\xb3\x59\x52\x55\xcc\xa6\x7e\x34\x81\x88\x63\xc7\x19\xa9\xea\x63\x52\xe3\xe5\x31\x9d\xff\x60\x8a\x24\xf0\x70\xf4\xc2\x82\xbc\x16\x69\xb2\x6b\xcc\xfb\x96\x43\xc5\xd6\xd8\x79\xc7\xcc\xcf\xcc\x4a\x1b\xd5\x0e\x37\xa1\xe3\x55\xb4\xc1\xfd\x6b\x92\x65\xc6\x00\x28\x4a\x39\x89\x61\xa4\xa3\x17\xab\x68\x0f\x9c\xd6\xb3\xd3\xf4\x6a\x84\x63\x25\x41\x05\xca\xd0\x62\x4c\xe2\xdc\xc1\x28\xd2\xed\x86\x99\x4c\x9f\x01\x72\x06\x7c\xba\xf9\x93\x3f\x6f\xf0\x6c\x5d\x56\xe4\x23\xce\x6e\xc2\x80\x02\x7a\x9e\xe1\xa4\x7c\x03\x68\xc4\x8b\x82\x46\xe3\xd1\xbc\xc6\x3c\xe3\xa1\x96\xfc\x3d\x9e\x17\x25\x86\x74\xc1\x29\xce\x54\x1b\x38\x3d\x5f\x90\x2c\x2d\x71\x2e\xcd\x9b\xd8\xdb\x35\x14\x5d\x44\x13\x71\x4b\x73\x11\xca\xce\xc2\x82\xe3\x13\x24\x41\x00\xb7\x30\x42\x45\xac\x29\x18\xdf\x15\x3c\xbd\x88\x10\x6f\xcd\xed\xe5\xe1\x00\x2d\x38\xcd\x04\x0f\x19\x7d\xe8\x18\x1d\x0d\x23\x44\xfa\x24\xcf\x71\xf9\xa7\x77\x2f\x9e\xc7\x05\xfc\xe6\x17\x0c\xc6\x57\x18\x8d\x2a\xda\x55\x69\xcd\x38\x22\x72\x6e\x93\x1c\x30\xe7\x5d\x11\x06\x24\x7f\xfc\xea\x45\x10\xed\xe8\xbd\xa6\xbd\x47\x23\xbd\xfb\x80\x3f\x47\x9e\xab\xad\x87\x84\x52\x8b\x6e\x3e\xcd\xbf\x14\x8b\x43\x6c\x32\x45\x24\xc6\x7d\x36\x72\x98\x90\xca\x74\xf4\x01\xd7\xcb\x22\xbb\x99\x93\x2c\x93\xbe\x10\x60\x36\x4e\x90\xdd\x20\x89\x1d\xbb\x5f\x3c\x26\x67\x35\xbc\x85\x89\xa3\x11\xee\x27\x70\xbb\x1a\x35\x11\xaa\xb5\x10\x2e\x2e\x65\x10\xfc\x34\xa5\x42\x9c\x71\x6e\x21\x1f\x68\x63\xd0\xd2\x91\x3b\x4c\x07\xa1\x0f\x23\xca\x06\x69\xd4\x49\xd1\x51\x1c\x53\x19\xa7\xb4\x9a\x45\x38\x42\x98\x6e\x43\x52\xd1\x26\xca\x22\xcb\x28\x86\xeb\xc5\x20\x8d\x96\x54\xee\x7f\x25\xb6\xe3\x2d\x08\x99\x43\xa7\xd4\xaf\xf2\x99\x4d\xad\x09\xa5\x38\xbc\xf3\xc7\x24\x3d\x5f\x24\xb9\xb4\xb5\x2b\x94\x9b\xb0\x82\x4f\x07\xc1\x75\xd6\x62\x81\xb1\x34\xe4\xa9\x15\xf2\x8c\xc5\x8e\x5a\x57\xc9\x65\x86\x3f\x77\x9d\x76\xd2\xf4\xb1\xde\x3f\x30\x0b\xe0\xf3\x2b\x1c\xa2\xc6\x4a\xbc\xd0\x67\x9c\x13\x63\x5a\x94\x2f\x5c\x8c\x99\x4b\x07\xa9\xc8\x65\x86\x2d\xa7\x0e\x59\xb7\x2f\x5c\x6f\x91\x73\x0b\x75\x74\xa4\x98\x14\xbb\x34\x45\xdc\x16\x74\xe3\x3e\xdb\x79\xcc\x55\x26\x06\x4c\x48\xb9\xfa\x8e\xf3\xa3\x38\xa6\x94\x96\xef\x73\x21\x57\xb1\x47\x56\xf8\x8e\x5f\x95\x98\x9e\xc2\x4f\x8b\x92\xce\x39\x0e\x29\x9d\xd8\xd9\x2a\xa5\x24\xa4\xdb\x25\x16\xee\xd5\x1e\xdc\x23\x14\xf7\xac\x0e\xf8\x2c\xfd\x79\xcf\x71\x45\xe6\x21\x0b\x04\x4b\x04\xcb\x88\x65\x9c\xca\x9a\xd1\x11\x1e\x84\xaa\x5f\x17\x3f\xac\x56\xb8\x3c\x4f\x2a\x1c\x46\x3d\x2c\x9f\x08\x47\x65\x3c\x18\x97\xdf\xc9\x60\x96\x65\xaf\x27\x1c\x76\xf2\x49\x39\xed\xb1\xe7\xd8\x2a\xa3\x0b\xf9\xf0\x3b\x0b\x39\x0f\x5d\xa5\xc5\x8c\x6d\x5b\x8e\x1b\xe2\xb4\x0b\x52\xf2\x91\x9e\x62\x71\xdd\xaf\xea\x9b\x0c\xa3\x3c\x9e\x04\x3f\xe2\xcb\x0f\x84\x22\xff\x8b\xe2\xef\x01\x0a\x5e\x05\x28\x58\x56\xc1\x14\x95\x31\x0e\x83\x5a\xb0\x36\x41\x84\x2a\x9a\xb0\xc2\x65\xb5\xc2\xb3\x9a\x7c\xc4\x01\x3d\x33\x68\xa7\x47\x71\x5c\xa2\x4c\xfc\xac\x34\x62\x45\x71\xfb\x4f\x38\x5b\xe1\x32\xde\xc8\xa6\x5e\x97\xc5\x6a\x54\x22\x93\x75\xf2\xdc\x75\x16\x2a\x6a\x14\x46\xcc\xe5\x1f\x03\xd8\x93\x72\x1a\x03\x64\x19\x45\x7c\x26\xda\xae\x3e\xa1\x0e\x93\xb6\x56\x9f\xa2\x40\x8b\x09\x65\xd6\xec\xd7\xc5\x2a\x66\x85\x02\x24\x92\x32\x3c\xaf\x63\xd6\x42\xc0\x82\x39\x30\xb8\xee\x3d\xde\x05\x59\x76\x18\x64\xf7\x52\x07\x36\xd4\x19\x50\xf0\xfe\x6b\x86\x66\xc7\xaa\xd0\x70\x57\x50\xb7\x4c\x27\xd9\x6c\x33\x32\x82\x9d\xa4\x29\x3b\xe9\x8c\x1b\x15\x9b\xe5\xe2\xec\x03\x04\x61\x80\xc7\xf5\x23\x84\xfb\x29\xae\xea\xb2\xb8\xb1\x59\x2d\x45\xc1\x0b\x4a\xb9\xa1\xdb\x8b\xea\x26\x9f\x9d\x4b\x3e\xc3\x78\x31\xd4\x10\x33\xb2\x10\x4b\x20\x9f\xe5\x29\xfe\x14\x44\xc7\x59\x58\xdb\x69\xaa\x7a\xa9\x14\x55\x94\x12\xe7\x45\x4d\xe6\x37\x2f\xd6\x35\x53\xf3\x50\x54\xc5\x39\x2e\xab\x6e\xd7\x02\x4b\x55\x41\x41\x4b\x1d\xbd\x97\xca\x99\x48\xe6\x23\x47\xeb\xf3\xa9\xd4\x9f\xdb\x54\x8d\xd3\x39\x86\x99\x7b\x5a\x16\xcb\xd7\x4c\xbe\xd0\x27\xac\xd8\xd7\xae\xeb\x50\x84\x59\x70\xa0\x2c\xc4\xd1\x76\x4b\xd7\x81\x3f\x2c\xc8\xe8\x81\x9c\x61\xba\x42\x0b\xa7\x45\x7a\x6a\x00\x6c\xe7\x45\x89\xd9\x7c\xa5\xb8\x86\x05\x15\x0c\x29\x7f\x2f\x21\x7d\x22\x6a\xc5\xe2\xa8\x59\xe7\xd5\x82\xcc\x6b\x89\x02\xc0\x75\x65\xda\xc1\xb9\xd0\xb8\xae\x59\xfc\x22\xa9\x17\xfd\x25\xc9\x51\xc2\x7f\x26\x9f\xd0\x1a\x7e\xce\xb3\xa2\x28\x51\x0a\x1f\x33\x4c\x32\xb4\x8c\x77\xf1\x5d\x68\xce\xb3\xc5\x8b\xf3\x7c\x10\xcc\x1f\x1c\x97\x6c\x24\x4c\x85\x14\x46\xfd\xb4\x58\xbe\x48\xf2\x84\xa9\xa5\xe7\xec\x3c\xc1\x79\x1a\xeb\x9b\x8b\x6e\xad\x3b\x61\xd0\xd7\xc4\xa3\x99\x68\x2a\x88\x44\x95\xb0\xa6\x6c\x6b\xd4\x20\x93\xea\xed\x10\xdc\xf8\x99\x7f\x4e\x45\xb0\x51\x3b\xe3\x80\xe4\x82\xe8\x25\x59\x4e\x9b\xf4\xc6\x05\x37\xe9\x8b\xc0\x03\x96\xd0\x52\x8c\x20\x04\x53\xa4\x86\x3d\x9a\xa3\x6a\x46\xcf\xbc\x77\xc5\x6a\x34\x40\x97\x45\x5d\x53\xd4\x4b\x59\x88\x93\x01\xba\xc8\x92\xaa\x7e\xc2\xea\xb3\xcd\x34\x1a\xa0\x15\x64\x9e\x33\x93\x9a\xe1\x1e\x5d\x2c\x97\x40\xbd\x02\x28\x14\xbc\xc9\x67\x74\xbc\x72\x79\x7e\x24\x69\xbd\x90\xce\xd2\xd9\x7a\x99\xb3\x9e\x24\xe7\x26\xc5\x1d\x93\x48\xc8\xe4\x24\x4d\xcf\x61\xf7\x9b\xb4\x8a\x72\x81\x2d\x79\x7c\x52\x2f\x99\x88\x24\x2b\x68\x63\xc2\xc0\xca\x73\x4e\x54\x91\x45\x64\xb3\xa4\x4c\xe4\x64\x6c\xfc\xdd\xef\x52\xf2\xb1\xc3\x96\x28\x0e\xbc\xb8\xf3\xf0\x6e\x64\x78\xa9\x30\x32\xc9\xea\x06\xdf\x9d\xa4\xe4\xe3\xc3\x20\x6a\x90\x23\xe2\x5a\xee\xa3\x1a\x0f\xb6\xc0\xe4\x6a\x51\x07\xd1\x76\xab\x25\x96\xc5\xf5\x9f\x78\x7a\xa4\x9e\x58\xe6\x2f\xef\x3d\xea\x08\x3c\xed\x88\x38\x47\x7c\x3f\x77\xae\x49\xbd\xe8\x24\x1d\x68\x93\xe9\x80\x92\x8e\x6c\xab\x1f\x44\x63\x63\x99\x1b\xc4\x10\xcb\x61\x22\x39\x48\x28\xb8\xa6\x8b\x1a\x38\x6c\x34\x3d\xba\x50\x3e\x56\xf4\x4c\x8c\x01\xd5\x32\x09\xaa\x46\x28\x57\xa7\x52\x55\x31\xf6\x25\x08\xa8\x1c\x11\x92\x5e\xcc\xeb\x8d\x98\x5a\x73\xf5\x69\x4c\x1b\xe0\x39\xac\xfa\x88\x9f\xa0\xe3\x40\x85\xec\x2f\x29\xfb\x94\x47\xb9\x1d\x64\xa3\x8c\xa0\x66\xd9\x0b\x46\x41\x8f\xb1\x5b\xc1\x58\xf9\x1b\x93\x26\x92\x1b\xc6\xf1\xc1\xd6\x27\x97\xcd\x68\xf1\x11\x97\x25\x49\x71\xa7\x2e\x3a\x2b\x5c\x52\x46\x82\x05\xff\xfa\x48\xaa\x75\x92\x75\xa0\x21\x36\xbd\x78\x3e\x07\x7e\x2a\xbb\xe9\xa4\x38\xc3\x57\x49\xcd\x6a\x5d\x40\x19\x8e\xb6\xef\x0a\x8a\x14\x17\x12\x00\xce\x8f\x22\xbb\x94\x2b\xdd\xd1\x89\x46\x25\xaa\x50\x81\x16\xec\x99\xb7\x38\x09\x07\x52\x30\x90\x24\xe0\x28\x8e\x0b\xa8\xb1\x66\x05\xc4\x9c\xd7\x45\x9d\x64\x02\x93\x8e\xed\xe5\x8a\xc6\x45\x3c\x0b\x0b\xb4\x8e\xd0\xc2\x65\x1e\x50\x15\x67\xe1\x02\xc9\x98\x50\x88\xab\x85\x2f\xaa\x3a\x29\x6b\x41\x59\xc2\x4a\x1c\x37\x8e\xbc\xe9\xcc\x01\xda\x28\x9a\x55\x88\xb8\x4c\xa3\x05\x32\x1a\x1c\xd5\x08\x6b\x84\x6b\x16\x26\x61\x75\x3c\x44\x83\x08\xd5\x70\xa7\x70\x91\xaf\x97\x8a\x80\x3c\x2d\xd8\xc9\xb0\x2a\xca\x3a\x8c\xf4\x87\x70\xad\x18\x5c\xa2\xe3\xb8\x40\x65\xac\x9a\xf4\x0e\x89\x29\x1f\xf7\x76\x86\x48\x3c\x0b\x4b\x94\xd3\x56\xb8\x90\xc3\xc8\xee\x5b\xbd\xad\x6e\x97\x18\x99\x1a\x4d\x3e\x0b\x75\xc5\x53\x18\x00\x88\x3f\x01\xb9\x4c\xd9\x39\xce\xc3\x93\x8c\x94\x6e\x33\x74\xc4\x75\xd6\x74\x49\xc5\x1c\x47\xb3\xe4\x40\x13\xd7\xc8\x0b\x4a\x4c\xd0\x3e\x58\xe4\xad\xa8\x14\xed\x1b\xa4\x61\x97\x5f\x10\xcd\x6b\x2e\x0a\x05\x48\x23\x69\x14\xc7\xe4\x01\x11\xa0\xc0\x38\xbc\x5a\xa9\x8d\x90\xc9\x6c\x44\xed\x6b\xf8\x29\xb2\x34\xf2\x89\x88\x56\x41\xf5\xaa\x13\x26\xb3\xff\x08\xa5\x21\x3e\x21\xd1\xd7\x75\x2f\x6f\x22\x74\xc1\x65\x49\x36\xb9\x52\xa0\xb4\x4e\x0e\x4b\x9e\xa5\x7b\x5d\xad\xc8\xd3\xa2\x3c\xd7\xf8\xda\x91\xc9\xa5\x80\xd2\x92\xed\xf1\x31\x69\xd9\x84\x9c\xc5\x63\x4f\x8d\xbd\x2e\x8b\x39\xc9\x00\xd0\xd2\x54\x91\x3f\x2d\x4a\xc0\xdf\x9a\x1e\x49\xa6\xc6\x37\x2c\x29\xaf\x68\xb3\xdd\xa8\x8e\x90\x64\x9b\xdd\xfd\xdb\x3a\x86\x00\x95\xfa\x32\x89\xa8\x50\x79\x4c\xf8\x73\x6f\x8f\x6a\x1d\x08\x2e\xcf\x87\x39\x15\xcd\x2d\x60\x77\x91\x3c\x69\xbc\xab\xe6\x00\x4e\xd3\x1f\xe1\x70\xd9\x6e\x87\xda\xf2\x5e\xab\xc4\xbc\x65\xcd\x4b\x2f\x86\x54\x71\xf9\xf5\x3a\xc4\x27\x39\x15\x89\xf1\xef\xf2\xaf\x6b\xb4\xb9\x19\x55\xe8\xd3\xa8\x68\x1a\xa4\x34\xa7\xc0\x3a\xb9\xe8\x79\x10\x6a\xee\xa5\x26\x33\x86\x0f\x0d\xd2\x20\x76\x36\x15\x3f\x8f\xcd\x69\xf0\x6e\x18\x17\x26\x73\xea\x3c\x27\x35\x89\x71\xb7\x5b\x3f\xc4\x67\xeb\xb0\x3e\xc1\xd1\x68\xd8\x44\xc8\xc7\xc9\xd9\x3a\x38\xff\x7e\x95\x87\x56\xa5\x51\xbf\x73\xd5\x9c\x98\x12\x49\x98\x51\xb1\x77\xa3\x2e\x93\x4f\x6f\x45\xf1\x40\x3f\xb3\x94\x8e\xdf\xdb\x57\x5c\x50\x2c\x0f\x71\x5c\x9d\x14\x88\xc4\xf5\xd7\x18\x95\xf1\x2c\xcc\xa5\x82\x5a\x9e\xcc\xf2\xbe\x54\x9d\x17\x65\xa4\x5e\x37\x92\xaa\x73\x5d\xd4\x54\xb7\x4d\x89\xba\x12\x30\xae\x9c\x5a\x98\xe5\xc6\x1e\xa9\x3e\xbe\x76\xa6\x4c\x3f\xd3\x3d\x6b\xef\xae\xbc\xc1\x04\x68\x0b\x2f\xb9\x36\xc6\x52\x1c\x33\xb5\xf5\x05\xa9\x18\x82\x4a\xc9\xd0\xc1\x77\xaf\x10\xab\xee\x0f\x5b\x65\xe4\xa1\x3c\x07\x9d\xab\x88\x6e\x77\xe0\xcb\x24\x94\x3e\xbc\x9a\x87\x98\xd2\xd3\xb6\x9d\xe3\xd9\x8f\xfe\xe3\xc2\xc3\xa3\xfa\x8f\x09\x5d\x50\x32\x19\x58\x63\xb1\xe8\x29\x51\x47\x5f\xe7\x3d\xf2\x75\x4e\x79\x3b\x83\x87\x39\x80\xa8\x55\xb1\x34\x3c\xc1\x67\x6d\x84\x63\x84\xdd\x7d\x42\xbc\xf0\xb7\x93\x3c\xba\x9d\x49\xf4\x75\x8e\x0a\xc5\xf7\x50\xc6\xa5\x60\xc4\x86\xf5\xf7\x23\xc9\x32\x63\x73\xb7\xcb\x54\x6c\x8e\xc7\x1e\x5d\x13\x5c\x0e\x80\x1e\xc4\xa7\x6e\xd2\x8b\xf2\x5f\x87\x90\x14\x5d\x86\x43\xa4\x4d\xa0\xcb\x31\x4e\xab\xb7\x86\x64\xe9\xb9\x2a\xb0\xe5\x1a\x6b\xaa\xa8\x9c\x29\xe4\x77\x1f\x99\x57\x83\x36\xb4\x00\x8a\xbc\x7b\xf4\x33\x70\x40\x6b\x06\x02\x4c\x0e\x30\x01\x75\xba\x02\x5c\x59\xa0\x19\x4a\xd0\x1a\xa5\x68\x8e\x56\xec\x51\x51\xd9\x7d\xf5\x18\xd4\x72\x38\x0d\xa2\x6e\xd7\x4d\x67\xec\x01\x13\x34\xd7\xed\x67\x52\xea\xdb\xc9\x88\xd8\xfb\x90\xcd\x4e\x28\x75\x50\xe2\xfc\x7e\x55\xaa\xdb\x4c\x53\x92\xb7\x29\x48\x18\x75\xbb\x95\xbe\x8a\xb3\x16\xa6\x3b\x89\x67\x3d\x82\xca\x98\xa0\x3c\xc6\xf2\x71\x88\xb8\x3c\xce\x11\xdd\x25\x2b\x65\x9f\xba\x7a\x38\x88\xa8\x40\xb8\xf0\x73\xd6\x68\x1e\x0f\xc6\xab\x87\xf3\xf1\xbc\xd7\x43\x8b\x5e\x2f\x92\x2a\x06\xb1\xbc\xe1\x82\x37\xb6\x04\xc0\x30\xf3\xf5\x9a\x61\xce\xcf\x03\x3f\x33\xbe\x1d\x6f\x3d\x6b\xe1\xad\xbd\xa9\xbd\x15\x0a\xe9\xa0\xd6\x9a\x37\xc3\x3a\xea\x76\x0b\x1d\xc3\x39\xaa\xb8\x47\x47\x1b\xd1\x3b\xe0\xb4\x37\x51\x9e\xc4\xf8\xeb\x5a\x98\x5a\xb4\xab\xcb\x10\xe9\x76\xf3\x6e\x37\xef\xcf\xaa\x4a\x72\x21\xc4\x64\x73\x4b\x9c\xb7\x80\x25\x58\x01\x86\xcb\x4b\x26\xc9\x2f\x6d\xa2\xb6\x83\x77\xa2\x12\x2d\x36\xc4\xb5\x2b\x5c\x0b\x9d\x9b\x81\x7f\x24\x16\xd5\xc4\x90\x1c\x1c\x5b\xc4\xf9\x7e\xc1\x8e\x32\x07\x6b\xb4\xa0\x5b\x64\x16\x2e\x50\xde\x23\xec\xb2\x64\x9c\x3e\x2c\xc6\x05\xf8\x3b\x4e\x8a\xdf\x09\xa7\xa3\x76\x36\x39\xac\x18\x91\xf5\x82\xdb\x1a\xd9\x57\x1d\x80\x8a\x59\x76\x36\x5b\x5b\xed\x96\x99\xe9\x57\x74\x60\x94\xfd\x66\x37\xd4\x0e\xb9\xff\x33\xa4\x2b\x7a\xec\xca\x28\x39\x2a\xc7\xc6\x2e\xf6\xdf\xef\x85\x61\xfd\xb0\x4d\x16\xde\x6e\xb9\x23\xa9\xbd\x19\xa2\x6e\x37\xcc\xe3\x01\x5a\xaa\xf6\x77\xd2\x19\xfd\x74\x2d\xdb\x7a\xeb\xe5\x7b\x97\x07\xa3\x32\x42\x79\xaf\xc7\xe5\x17\xf3\x7c\x61\xd1\xf5\x19\x35\x6d\x5d\x2a\xae\x46\x3b\x6b\x51\xaa\xf3\xdb\x4e\x27\x5d\x5d\xaa\x40\xbf\xc2\x6b\x6f\xdf\x9d\xb5\xd7\xd6\x48\xbb\xa5\x36\x55\xe5\xce\x75\xb5\x76\x55\x3d\xab\xaa\xd1\x46\x1a\x08\x05\x25\xce\x12\x76\x27\x88\x8a\x8f\xb8\x9c\x67\xc5\xf5\x28\x48\xd6\x75\x11\xa0\xe0\xf8\x9a\x5d\x30\x1e\x8b\x8c\x63\xd8\xb2\xf4\x80\x19\x05\x75\xb1\x9e\xd1\x63\x74\x47\x66\x63\xdf\x14\xfa\xae\x17\x6d\x43\xac\x0b\x57\x53\x27\x24\xe5\x18\xdb\x2c\xff\x98\x74\xbb\x21\xd1\x18\x76\x7a\xc4\xda\x6a\x6b\xbf\x85\x23\xf2\x35\x07\x6b\x06\x82\x2b\x70\xe3\x74\x37\x01\x9f\x15\x9a\xf2\x82\x61\x73\x52\x73\x10\x18\xbb\xca\x7d\x89\x42\x12\x31\x2d\x3a\xe4\x04\x46\x65\xae\x25\xe6\x27\x76\x1b\x9c\xe3\xda\x05\x51\xb6\x5e\x47\xfd\x62\x3e\x6f\x6d\x1e\x7e\xb8\xb6\x5e\x52\xd8\xc1\xfd\x9a\x3d\x31\xaa\x26\x4f\xd6\xb2\xe6\xde\x85\xc1\x92\x9b\x6a\x33\x45\xea\xfc\x18\xc3\xa3\x09\x20\x87\xb0\x7c\x6d\xe6\x21\x6d\xe2\x95\x7f\xad\x28\x83\x68\x4a\x3e\x2d\x05\xdd\x39\x6f\x21\x6d\x42\x88\x77\x19\x9c\xb3\x20\x18\x61\xbf\xb4\xb5\xfb\x60\x65\x07\xea\x86\xab\xc1\xeb\xc6\xe7\x0c\x6a\xda\x28\xd4\x60\x98\xbb\xae\xf0\x8f\x0b\x8c\x33\x7e\xfb\x50\xb2\x17\x67\x1f\xc3\x63\x20\x96\x35\x1d\x5c\x85\x25\x69\xca\xde\x94\x15\x17\x9f\xe1\x1a\xd5\x7d\x76\x38\x32\x4b\x2f\x4f\x81\x80\xf5\x72\x4d\x7b\x09\x50\xdd\x67\x3f\x68\x59\xfd\x22\x98\x37\x0e\x4c\xff\xee\xf6\x7d\x65\xf6\x77\xc1\x90\x96\xbf\xf6\xeb\x40\x98\x22\xdc\xa7\x8d\xa2\xa3\x41\x84\xda\x0a\x2d\x11\xee\xe3\x3c\xdd\x59\x66\x8e\xa8\x94\x91\xcf\x68\xef\x03\xe3\xda\x59\xf5\xee\x83\xdf\x07\x80\xaf\x9c\x07\x06\x5f\xb1\x36\x30\x2a\xe3\xf2\x5c\xb7\xc8\xa9\x39\xf7\x4a\x79\x31\xfd\xbe\x59\x49\x9d\x60\xb7\x92\x5f\xe1\xf4\x1d\xa5\xc7\xb8\x9a\x0c\xa6\x4c\x4f\x07\x3b\x5f\x08\xa3\x79\xb7\xcb\x8d\x9b\xf3\x7e\x9d\x5c\xb1\xe7\x8d\xcf\x42\xd7\x14\xe5\x23\xd3\x0e\xbe\xa0\xcb\xf6\x04\x5e\xd0\x8f\x50\xdd\x27\x39\xa9\x55\x5a\x18\xcc\x32\x32\xfb\x10\xa0\xa3\x01\xfd\x1f\xf7\x3f\x12\x7c\x8d\x86\x88\xd1\x68\x8c\xf3\x7f\x93\xbf\x7e\xa2\x07\x6e\x46\x70\x5e\xff\x9b\xfc\xf5\x13\x9d\x84\xba\xcc\xfe\x8c\x6f\x28\x56\x66\x35\xfc\x60\xb7\xd2\xf0\x73\x89\xeb\x84\xfe\x1a\xa0\x7c\x9d\x65\x11\xca\xfb\x29\xa9\x56\x49\x3d\x5b\x40\xf7\x75\x24\x4f\x54\x76\x77\xad\x09\x52\x4b\x2a\x4a\xc5\x27\x24\x5f\xad\xeb\x6d\x8d\x3f\xd5\x49\x89\x93\x6d\x85\x33\x3c\xab\x4f\x08\xba\x8a\x83\x22\x67\xe7\x16\xc3\xdc\x80\xe4\xfc\x99\xea\xed\x96\x2f\xdb\x63\x3e\x1f\x6c\x32\xbb\x5d\x31\x3d\xba\xce\xc3\x57\x72\x7c\x75\x16\xae\xe3\x40\x6b\x1a\x65\x1e\x83\x45\xdc\xaf\xd5\x22\x11\x16\xc8\x4a\xac\x13\x91\x0b\x44\xe4\x02\x6d\xb7\x21\xdc\x07\x70\xfa\x8d\x4b\x36\x01\x7f\x4a\xf2\x34\xc3\xa5\x88\xd2\x4f\x0f\x99\xef\xf1\x15\xc9\xdf\xf2\xe3\x49\x74\x82\x70\xbf\x26\x4b\xfc\xb6\x4e\x96\x2b\x1f\x15\xa1\xc7\x28\x87\x99\xe2\x6a\x80\x16\xb1\x73\x94\x50\x52\x46\xf2\x35\xde\xd9\x76\x83\x96\xbc\x1d\x9c\xa7\x01\x9a\xb9\xcd\x5c\x90\xea\xad\x60\x1d\xb6\x5b\x8a\xbf\xdc\x98\x74\xe7\xc8\x70\x9e\xaa\x7e\xb5\xde\xe6\xbc\x37\xd8\x4b\x01\x4a\x8c\x0e\x3f\xbf\xe1\x68\x44\x17\x91\xd1\xac\xb4\xb8\xce\xed\x35\x24\xf3\x70\x18\xc7\x31\xee\x5f\x2f\xc8\x6c\xa1\xad\x29\xac\x60\x2d\x57\xb0\xfe\x95\x2b\x38\xc1\xd3\xfd\x6b\xc7\x16\x8f\xc1\x7a\xe8\xe2\xd9\xcd\xb2\x65\x63\x2d\xac\x57\xf6\xaa\xfd\xba\xd5\x61\x8d\x16\xeb\xda\x5e\x1a\x7a\x4a\x64\x94\x55\x86\x97\xcf\xb7\xdb\xf0\xb3\xfb\x89\x1a\x19\x9f\x9e\x94\xf5\x3a\xc9\x28\x95\x7d\xab\x37\x53\x1d\x64\x98\x6f\x44\xee\x68\xb5\x87\x40\xc1\x25\x11\x60\x88\xe6\x03\xcd\x8a\xc2\x65\xf4\x44\xbd\x75\xde\x5e\xd3\x3b\xea\x78\xc3\x08\x88\x78\x99\x21\x8b\x10\x5d\x5f\xf1\xb9\x88\x10\xce\x53\xf1\x35\x63\x11\xac\x67\x38\x13\x09\x49\x84\xd8\x21\x2b\xbe\x45\xf8\x76\xdd\x22\x80\x75\x2a\xd8\x51\x2b\x66\x78\x91\xe3\x1f\x93\x9b\x50\xb1\x81\xfd\x12\x27\xe9\xab\x3c\xa3\xb2\x8c\x3b\x10\x57\x77\x5c\x4b\x0b\x07\xa3\x1f\xa5\x77\xf2\x8e\x79\x5c\xc3\x11\x87\x7c\xb3\x75\x9b\x4e\xea\x5d\x9d\x00\x3b\x83\x4a\xef\x6b\x4c\x26\x17\x26\x2f\xed\xc6\x38\xc6\xe0\x0c\x44\x07\x10\x62\xdd\xee\x81\x7d\x4a\xad\x73\x09\xdf\x26\x77\x88\x25\x28\x54\xaa\x7b\x4c\x96\x38\xaf\x48\x91\x57\x21\x6d\x9c\x50\xe9\x14\xdb\x77\xb2\xb8\x54\xc5\x24\x33\xcd\x8d\xe3\xeb\x38\x94\x46\x58\x52\x6a\x8c\x1c\xb1\x51\xdb\x11\x9f\x23\x3d\xee\xd9\x56\x68\xa3\x53\xf3\xd1\xd1\x10\x5d\x28\x7e\x15\x9c\x51\x0e\x10\x3f\x17\x24\x4d\x71\x1e\x34\x87\xd8\x29\x55\xb8\x5e\xaf\x04\x10\x46\xe2\xeb\x35\x15\x4e\xde\xe0\x79\x89\xab\x45\xa8\x4c\x30\x70\x09\x66\x53\x07\xcb\xa6\x9a\x45\x29\x32\xba\xf3\x09\x6c\x20\x9a\xc8\xa5\x65\x1e\x77\x12\x3c\x4d\xb3\x42\xa2\x8d\x26\x69\x48\x0b\xe9\x7e\xa6\xeb\xfb\xa4\xff\x4b\x58\xf7\x75\xe8\x63\x82\x6a\x57\xda\x22\x94\x1d\x33\x47\x15\xfa\x1b\x44\x03\x74\xcc\x6c\xa5\x37\x52\x68\xff\x37\xba\x58\xf2\xeb\xbc\x58\xae\x32\x6c\x06\xbe\xaf\x6d\x6c\x24\xf9\x15\x45\x42\x5e\x34\xa0\x1b\x07\x69\x85\x18\xb5\x24\x35\x49\x32\xf2\x77\x2c\xa6\x80\xe2\x3d\x13\x0b\xdd\x25\x72\x16\x7a\xa5\xe7\x4a\x8d\xbb\x34\x63\x24\x8c\x14\xbf\xb6\x0b\x29\xa3\xb2\x59\x4d\x3e\x4a\x91\x0f\x97\x16\x3e\x50\x84\x68\x69\x62\x3f\x24\x7e\x95\xff\x0e\xa8\x39\x50\xd0\xe1\xa3\x3a\x1c\x20\x7f\x61\xe1\x2b\x40\x73\xc7\xfe\x22\x2d\x47\xd1\x4e\x19\xda\x27\x3f\x1b\xf7\x2c\x36\xda\x48\x2a\xaa\x84\xfe\x01\x3a\x1e\x7e\x8d\x5d\x78\x84\xc4\x0d\xcf\x37\xec\x9c\xf5\x51\x9b\x09\x73\xee\x19\x26\x73\x87\x48\xc0\x5e\x9d\x49\x4f\xb9\xc2\x2d\xd1\x8b\xd1\x7a\x10\x99\x8e\x8a\xfb\x1b\x1d\x1a\x8d\xa6\x78\x6f\xb3\x86\xf9\x73\xd8\x36\x9a\xa3\x7c\xbb\xcd\xc5\x0b\x13\xda\x6d\x8d\x9b\xca\xee\x6a\x28\x23\xa8\xce\x82\x39\xc9\x49\xb5\xb0\x90\x15\xb5\x8e\xa5\x84\x04\x66\x3c\x73\x34\x8c\xa2\xe6\xb0\x92\x6c\x3a\x19\x33\x21\xfa\xc0\x74\xfd\xc0\xcb\x43\x21\x9f\x84\xca\x3b\x33\x2d\x08\x0f\x08\x81\xc0\xc8\xfd\x00\x0d\xb8\x76\x70\x6b\x0a\xf0\xc9\x60\xaa\xdf\x2c\x0b\x7d\x8c\xd3\xdb\x99\x73\x75\x2c\x3c\x32\x46\xae\x4e\xdd\x3d\x46\x5f\x62\x2a\x1d\xdf\x42\x2d\xa5\x6c\xde\x29\x03\x25\x6f\x13\xbd\x37\xf4\xd1\x4e\x5d\x24\x03\xcf\x47\x9e\xe5\x8d\xcc\xc3\x4e\x8b\xea\x68\x32\x98\x82\x06\x51\x13\x0d\x2c\xbd\xbd\x23\x5b\xc5\x47\x43\xaf\xa1\x17\x90\x71\xa6\x3e\xb7\x99\xcf\x7e\x5a\x30\x11\x96\x65\x4a\x13\x15\x5d\x70\x68\x33\x68\x1a\x3b\xdd\x9f\x79\x5b\x7e\x51\x7c\x04\x2f\xe4\x91\x08\x16\xa6\x9f\x73\x7e\x68\x64\x1d\x75\xd1\xa3\x55\x21\x47\x71\x9c\x77\xbb\x61\x29\x63\x3a\x71\xc5\x84\x28\x54\xf1\x91\x0a\x45\x2a\x9e\x0c\xa6\x5c\x4e\x8b\xe4\xdc\x94\xea\x42\x53\x9b\xc0\x01\x3d\x35\xa4\xcc\xd1\xa6\x5c\x55\x90\x3e\xc9\x53\xa6\x11\x76\xd5\xaa\x30\x5b\x32\xf8\x04\x53\x30\xd2\x4d\x69\x36\x23\x35\xac\x03\xb6\x9b\x86\x54\x2c\x53\xec\x94\xd7\xce\x40\x99\x4d\xe1\x3e\xa8\xef\x1f\x93\x12\xb3\x72\xcf\xf2\x8f\xb8\xac\x71\xfa\xb4\x2c\x96\x8f\xf1\x47\x32\xc3\x4c\x45\xc4\x84\x82\xc7\x38\xab\x93\x9f\xbe\x0e\xeb\xb3\xfe\xb7\xa3\xe3\xfe\xb7\x72\x6e\x25\x2c\x17\x52\xdf\xbb\xea\x11\x94\x3f\x8c\x07\xdd\x6e\xfe\x9d\x53\x48\x37\x63\x91\x01\xf7\xcd\xf1\x7c\x7f\x13\x0e\x10\x61\x34\x08\xf7\xab\xba\x58\xbd\x2e\x8b\x55\x72\x95\xc0\xb6\x88\xd0\xd1\xb0\x2d\x52\x09\xb0\xeb\x97\x09\x7b\x62\xec\x8a\x54\x35\x2e\x81\x51\x0b\x35\x73\xed\xc0\x71\xde\xa4\x73\xb1\x48\xaa\x05\x1b\x2e\xfd\xf1\xee\x66\x85\xab\xb1\x74\x7d\x8b\xeb\x3e\xa9\xf1\xb2\x42\x22\x98\x16\xff\x24\xb2\x00\x31\x0b\x88\x4f\xd9\xc2\x76\x1b\xaa\xd6\x02\x3a\xe8\x40\xab\x1d\x3c\x7b\xac\x19\x31\xe7\x2c\xbe\x51\x44\xe6\xe1\xc9\x31\x8f\x08\x95\x47\x00\xa8\xc0\x59\xfe\xb6\xf7\x2c\x59\x62\xca\x3c\x85\x79\x34\xae\x27\xe5\x34\xae\x27\xf9\x14\x11\xfa\x8b\xd0\x5f\x02\x5c\xed\x37\x4d\x6f\x0c\x3f\x57\x6d\xce\x16\x6c\xae\x98\x89\x7e\x06\x28\xa1\xae\xbc\x50\x60\x32\xc0\x60\xf6\x49\x57\x21\x58\xe7\xf0\xf4\x78\xaa\x5c\x54\xb2\x62\xc6\x96\x6b\xbb\x0d\x58\x98\x98\x45\x51\xd5\xc1\x51\x1c\x8b\xf4\x3e\x4d\xc8\x93\x25\xee\x76\x83\xe1\xe9\xef\xd9\x73\xdd\x43\x6f\x01\x11\x74\xf3\x79\x41\xf7\x5d\xff\x3a\x29\xf3\x30\xf8\xa9\x58\x77\x92\x12\x77\xca\x75\x9e\x93\xfc\xaa\x93\x74\x56\x65\x91\xae\xe1\x84\x65\x8f\x1d\x76\x84\x81\x51\xa7\xc8\x3b\x12\x04\x66\x95\x7d\x5d\xe4\x77\xeb\x4e\x89\x67\x98\x7c\xc4\x9d\x14\xd7\x09\xc9\x70\xda\x61\xf1\x1a\x3a\x32\x28\x4c\xe7\xd9\xbc\x73\x53\xac\x3b\xd7\x49\x5e\x77\xe6\xeb\x2c\xb3\x0a\x74\x56\x19\x4e\x2a\xdc\x59\xb3\xb0\x47\xb8\x93\x17\xf9\xf1\x92\xe4\x64\x4e\x70\xca\x41\x58\x95\xc5\x47\x92\xe2\x94\x82\x40\x8b\x00\x3c\xd7\xf8\xb2\x22\x35\xee\x07\xd1\xf8\xe4\xeb\xa3\xaf\x3a\x5f\x83\x43\x01\xc1\x9d\x63\xf8\xd5\x81\x65\x90\xba\xdc\x8a\x96\x99\x97\xc5\xb2\x73\x59\xe4\x7f\x2f\x3a\x2c\x88\xcc\xe8\xe4\xe4\x8a\xd4\x8b\xf5\x25\x95\xbf\x4f\x52\x9c\x9e\xb0\x4c\x5a\x54\x6b\x92\x22\x73\xd8\xa1\x2c\x1a\xea\xdc\x5d\xde\x1c\xb3\xe4\xbb\x9d\xa8\x73\xfc\xb0\x53\x97\x6b\x7c\xc2\xde\xd3\xd7\x2b\x24\x69\xaa\x57\xc8\xf1\xb5\xac\xa4\x17\x03\x0d\xb5\x5e\x72\x9d\xd3\x99\xc2\xa9\xb7\x78\x5d\x5c\x5d\x65\xd8\x07\xc9\x57\x9d\xaf\x4f\xbe\xfa\xea\xe4\xeb\x9f\x29\xe3\x51\x77\x2e\xcb\xe2\xba\xc2\xe5\x88\x41\x87\x3a\x55\x5d\x92\x59\x2d\xbe\x18\x9e\xc1\x07\xad\x75\xf2\x35\xbc\x38\xdf\x01\xec\x1b\x75\xd8\x60\x58\x7b\xa1\x52\x84\x73\x95\x6b\x27\xea\x6c\xbe\xfa\xea\x2e\x5d\x2d\x68\xf4\xee\x98\x85\xcd\xf0\xcf\xf8\xc1\xd3\xfd\x95\xe4\xeb\x58\x43\x6f\xf0\x55\xd8\x91\x2e\x3c\xac\xcf\x4e\x47\x68\xd1\xb5\xd7\xe0\xc3\xbf\x6d\xdf\xbf\xaf\x7a\x51\xd0\xe9\x69\xc5\x7b\x9d\x20\xa4\xc9\xdb\x3b\x51\x10\x8d\xbf\x6a\x14\x80\x74\xd3\x75\xaa\xf5\x6a\x55\x94\x75\x67\x5e\x94\x1c\xec\x25\x73\xf7\xa1\x1c\x01\x2d\x99\x64\xf5\xa2\x58\x5f\x2d\x3a\x75\xd1\xb9\xfc\xbf\xc9\x7b\xb6\xed\xb6\x71\x24\x9f\xed\xaf\x80\xb1\xbd\x16\x19\xc1\x92\x9c\x74\xba\x67\x29\xd3\x5e\xe7\xd2\x33\xd9\x5c\x3a\x27\x71\xcf\x3c\xe4\xe4\x01\x26\x61\x99\x6d\x8a\x50\x13\x90\x1d\xad\xad\xbf\xda\x2f\xd8\x2f\xdb\x83\xc2\x85\xe0\x45\xb2\xe4\x24\xd3\xbb\x67\xfb\x9c\x8e\x29\x5c\x0b\x85\x42\x55\xa1\x50\x28\x30\x74\x41\xb3\x92\x00\xdd\xd1\x59\x86\xc4\x3c\xb9\x12\xe8\x9c\x25\x54\xa1\x20\x93\x66\x15\xe8\x97\x6e\xd0\x74\x9e\xcb\x6c\x96\x33\xdd\x2e\x13\x88\x4a\xa4\xf4\x98\x5d\xc5\x74\x2e\xa9\x80\x2d\x0a\x41\x34\x4d\xcd\x97\x9e\x7f\xf8\x31\xde\xdd\xcd\x2e\x50\x80\x7a\x0e\xd2\x9e\x62\x60\xee\x70\xc0\x7e\x18\xdd\xc5\x20\xc5\x36\x8a\x62\x6f\xaa\x34\x79\x24\xa6\x88\xc3\x9c\x4a\x1e\xb8\xd6\xab\x47\x40\x55\xc9\xf1\x2e\x42\x4b\xf5\x8f\x85\x6d\x6d\x83\x8d\x96\x80\xd8\xfd\x46\xbc\x61\x6d\xd3\x8e\x5d\x0d\x55\x53\xcb\x5d\x70\x20\xda\x76\xa4\x1e\x11\xa1\x50\xb3\x7e\xaf\x2f\x4d\x53\xdb\x8d\x18\xa6\x66\xcf\xc2\xe0\xe7\xdb\x12\xa8\xd9\x43\xdc\x4c\xe8\xa3\x1e\xea\x29\x4a\x1d\x43\x85\xe5\xc3\xb1\xd5\xd9\xfe\xa0\x64\xb3\x9c\x26\x2c\xa8\x0f\x9f\x40\xaf\x15\x42\xab\xa5\xa6\xb9\x49\x6b\x40\xaa\x33\x45\xaf\x17\x05\x8a\x51\xd7\x88\x4f\x6a\x10\x47\x0e\x81\xaa\x8b\x0b\x1f\x6e\xe8\x4e\x35\x65\x39\x73\x0c\x8d\x0f\x87\x5a\x10\x28\xb1\x24\xbc\x99\x8d\xaa\x25\xe2\x4d\x4b\xd5\x3e\xa9\xe3\x2a\xf2\x7f\xa8\x3c\x6f\x3c\x91\xff\x83\xe8\x3e\xc5\xa5\x5a\xf5\x5e\xa7\xad\xfe\xba\xba\x5a\xd1\x4b\xad\x83\xdd\xa5\x66\x82\x70\x2b\x59\xf1\x16\xbd\x92\x8d\x0c\xd7\x6c\x15\xc5\x71\x8c\x7a\x16\xf7\x3d\xb4\xbf\x6f\x32\x06\x74\x9a\x1a\xac\x0f\x87\xe8\xf4\xed\x8b\x5d\x64\x72\x02\x87\x37\x85\x49\xe4\x56\xc2\x70\x68\xf9\x3b\xd2\x9c\x7b\x17\xd9\x03\xb1\x0a\xd1\xe6\x0b\xa6\x60\x19\x56\xec\x7b\xbc\x3b\x7c\xf4\x48\xc9\x14\xb8\xab\x9b\x69\x2d\xe1\x97\x2f\x83\xdf\x05\xba\x3e\x54\xfa\x83\xca\x53\xbc\x3a\x1a\x0e\x6f\x6e\x6e\x06\x09\x4f\x4b\x3e\x53\xba\xcc\x74\x17\x41\xc5\x37\x59\xc2\x0a\xc1\x52\x90\x23\x25\x70\xc6\xb7\xaf\xce\x50\xae\x93\x07\x8d\xfa\x7c\xc6\x0a\xc1\xe7\x65\xc2\x06\xbc\x9c\x0c\x4d\x29\x31\x9c\x66\xf2\xc0\x56\x99\x5d\xce\x4c\xdb\x2e\xfa\x12\x7a\x3c\x3a\xfc\x91\xa0\xe7\xba\xf7\xb5\x30\x0d\x77\xc7\xab\xe4\xd4\x4e\x43\x50\xed\x28\x62\x4c\x79\xa2\x78\x28\x8a\x2d\xd2\x56\xb1\x58\xb2\xbb\xb3\xa3\xe4\x41\x91\xe9\x37\xa5\x10\x2b\x52\x04\x47\x40\x40\x45\xbb\x3b\x3b\x2a\xeb\x65\xa1\x0f\xba\xcd\x9a\xc4\x7a\x33\x70\x6a\x2b\xbd\x2c\x52\xac\x7a\x56\x58\xdf\x41\x8f\x90\xb6\xf9\x22\x7e\xfe\xbb\x83\x59\xa5\x0f\x77\x77\x2a\xd3\x86\x36\x0b\x23\x4a\xd0\x39\x8c\x63\x67\x47\xe9\xb4\xb0\x28\xaf\xd8\x42\x49\x05\x9b\xbe\x93\x5d\x04\xe8\xbc\x79\x4d\x0f\x4a\x85\xb6\xc8\x0e\xfd\x74\xc5\x16\x9f\x51\x8c\xce\xe1\x63\xac\x12\x97\xbb\xfa\x7f\xc3\x30\xe9\x78\x77\x67\xe9\x41\xf9\xae\x46\x1c\x2b\x21\xad\x17\x0b\x90\x89\xc7\x65\x7a\xd6\x27\x33\x26\x29\x76\xc3\xba\x5d\x92\x5a\x18\x5d\x45\x93\x3b\x3b\x36\xd7\xcf\x21\xa8\x56\xc4\x9a\x23\x33\x19\x84\xeb\xe1\x35\xd5\x0c\xb8\xf5\x4c\x7d\xbd\x59\xad\x4d\x0f\xb6\x5b\x3d\xd5\xc6\x08\xa7\x24\x3f\x9c\x2f\x1a\x8d\xb4\xaa\x8e\x6e\xb2\x3c\x57\x5a\x01\x9d\xc1\x73\x69\xa9\xae\x97\xea\x23\x41\xa1\x2a\xaa\x2a\x8e\xa2\xce\x79\xba\xd8\xdd\xd9\xb9\x29\x55\xf9\x12\x45\xf5\x1c\x43\x60\xaa\x86\x51\x87\x77\x77\x76\xcc\x17\x8a\x50\x6f\xc1\xf7\x7a\xa6\x4c\x4e\x17\x7c\x2e\x81\xa5\x44\x68\x52\xf2\x9b\xfc\x8e\x4a\x49\x93\x4b\x96\xde\x9d\xd3\xf2\x8e\xcb\x4b\x56\xee\xee\xec\x98\x72\x11\xea\x41\x21\x5b\x5d\xdf\xa0\x14\xa0\xf3\xa8\xee\xc4\x8c\x25\x5a\xc5\xd6\x15\x22\x5d\x4c\x65\x43\x3d\x9b\x8c\x44\x42\x73\x76\x27\xf2\x2c\x65\x77\x13\x56\x64\xec\xee\x77\x96\xe7\x8b\xaa\xb8\x85\xc2\xd5\xb8\xc8\xb3\xd9\xdd\x39\x9f\x17\xc9\x42\x7d\x56\x25\x01\x44\x57\xec\x9c\x7f\x11\x33\x08\x3d\x74\x97\xf0\xb2\x60\x25\xfb\x32\xa3\x45\x7a\x97\x73\x9a\x66\xc5\x24\xc9\xca\x24\x67\x77\xf2\x72\x3e\x3d\x87\xde\x4b\xdd\xd0\x60\x30\x50\xc4\x02\xc3\x51\xa3\x84\x3c\x3b\x4a\x35\x53\x09\x23\x48\x6d\x6e\xb2\x62\x42\xf4\x56\x83\x28\xa5\x2d\x61\x42\xe8\x42\x30\x83\x34\x4d\x8d\xee\x57\x88\x03\x85\xd4\x03\x57\xc7\x26\xe8\x6d\x0a\x2f\x5d\x42\xd5\x8a\xfa\xa9\x3a\x87\x22\xb6\xf3\xec\x02\x30\x3b\x57\x6c\x39\xe5\x4c\x14\xff\xfd\x5f\x12\x25\x39\x77\xfb\x1a\x8f\x8a\xe4\x25\x2b\xd0\x0d\x33\xa2\x05\x65\xd2\x70\x9a\x0b\x69\x18\xea\x05\xcf\x73\x7e\xa3\xb6\x64\x32\x03\x4e\x23\x65\x8e\x22\xf4\xd3\x68\x34\x32\xdd\xa9\x0d\xe5\x39\x4d\xae\x14\x3c\xbc\x78\x0e\xfd\x44\x15\x1b\x0c\xd1\xad\x55\x86\x40\x9d\x1f\xa3\x25\x81\x92\xbf\xce\x58\x71\x4f\xc1\xdd\x9d\xa5\xcf\xb1\xd4\x82\xab\x71\x00\x48\xd1\xc7\x0d\x3a\x02\x9e\x22\x00\x24\xf8\x94\x29\x16\x75\xef\xaa\x83\x15\xec\x2b\x3a\xa1\x5d\x7e\xda\xce\x8f\xfe\x76\xf6\xf6\x0d\xd2\x61\xee\xe7\x25\xb3\x0b\xbf\x90\x17\x28\x46\x2b\xc2\xb6\xa0\x5e\x9a\x5d\xf7\x3c\x36\x51\xc8\x8b\x9a\xaa\xd4\x2b\xc4\xc1\x39\xff\xa2\x26\x53\xa9\x60\x3e\x97\x19\x98\x35\xa3\xd4\xb3\x42\x1c\x68\xda\x6a\x97\x32\x34\x67\x4a\x01\x45\xb4\xca\xa8\x54\x05\x02\x84\xa3\x91\x25\x90\xb7\xea\xdc\xbf\xef\xae\x01\x39\x80\x3c\x7c\xdc\x53\xc5\x5d\xd1\x7e\xdc\xf9\x86\x46\xb3\x4c\x4f\xdf\x81\x6f\xd5\xed\x1d\x89\x19\x2d\xbc\x8e\x80\xfc\xf0\xf1\xd1\x50\xa5\x1f\x7b\xb5\x1c\x8e\x5c\xf0\x2f\x14\x3b\x88\xd5\xe4\x03\x39\x02\x8f\x83\x6d\x10\x4f\x17\xc8\xb0\x0e\xcb\x23\x2b\x16\x92\x15\xc8\xbd\xa8\xa5\x19\x5d\x83\xf9\xdb\x64\x73\x2c\xa3\xc3\xad\x19\x56\x5f\xc8\x8b\xba\x38\x70\x85\x2f\xb2\x52\x48\xb0\x64\xab\x79\x35\x8c\x36\x13\xd3\x4c\x08\xb3\x52\x3e\x39\xbc\xcb\xfc\xf3\x54\x58\xc4\xb3\x5c\x51\x0a\x18\xd7\x2d\x20\xa6\x9e\x5a\x45\x31\x12\x4c\x9e\x65\x53\xc6\xe7\x32\x68\x12\x21\xc8\x53\xd5\x80\x36\xc4\x33\x27\x43\x21\xcd\xb4\x02\xd2\xc7\x88\xd0\x06\xec\xaa\x03\x07\x2c\xd0\x39\xe8\x0b\xa2\x26\xbd\xf4\x11\xae\x96\x61\xad\x85\x66\xcb\x6f\xb0\x86\x74\x3b\xed\x95\xd4\x81\x04\x0f\x75\x3e\x23\xf2\x29\xe1\x8f\x39\x2b\x17\x1f\xc1\x4b\x4b\x29\x1b\xbd\x81\xa5\x9f\x1e\x0a\xdb\xde\x7c\x6a\x9b\x9a\x25\x57\x3d\x52\xe7\x24\x0d\x34\xa1\x25\x6a\x8d\x52\x5c\xf2\x9b\x16\x47\xbc\x6f\xbc\x50\xa9\x35\x50\x80\xdd\x4c\x54\x0c\xf6\x0c\x35\xd6\xa6\x6d\xa5\x22\x33\xc5\x04\x2e\x95\xbc\xd0\x8c\xa2\x66\xab\xa9\x97\x52\xfd\xf9\xec\xa4\x8a\x3b\xaf\xf8\x67\x7b\xea\x2c\x72\xb7\x1d\x97\xad\xb7\xc9\x1c\xd6\x47\xab\x99\x35\x8c\x82\xd1\xd2\xd1\x73\x93\xda\xc3\xfb\x31\xe2\x8d\x75\xdd\xca\xa8\x61\x0b\xe6\xb9\x8d\x53\x55\xce\x93\x4d\xbb\x76\xe1\x54\xe8\x03\x41\xa5\x17\xd0\x92\xa0\xc7\x4f\xab\xd5\xa2\x97\x74\x4d\xd9\x16\x56\x40\x2a\xde\x0f\xa6\x24\x85\xdf\x17\xbf\xbe\x35\x08\x02\xed\xda\x69\xda\xbf\x14\xf5\xdd\xf3\xb5\xaf\x23\xb3\x6b\x73\xf4\x80\xf6\xe2\xd8\x81\x8f\xc2\xba\xec\x53\xa5\x01\x39\x5d\x9e\xa3\xa8\xa9\xed\x93\x36\x00\x9a\x33\xd4\xc6\x6c\xd9\x99\xd9\x46\x2a\x7e\xa6\x67\x40\x17\x06\x32\xaa\x56\x61\x7b\xa1\x6d\xd8\x6b\x8d\x1c\x95\x7a\x23\xb9\xd9\x1d\xea\x2d\xef\x8c\x26\xcc\x50\xa3\xd9\xf6\x34\x74\xe6\xb8\xa1\x44\x8f\x77\x77\x97\xa8\xb6\x71\x34\xf5\x4e\x67\x33\x1b\x62\x68\x36\xcb\x4d\x79\xe7\xdb\x55\x72\xee\xce\xe0\xf0\xbf\xd0\xd9\x0c\x93\x64\x5e\x96\xac\x90\xef\xa9\xbc\x8c\x30\x76\x3e\x63\x7e\xed\x4a\xa3\x28\x83\x5b\x05\x6f\x84\x05\x93\x32\x2b\x26\x02\x93\x2a\xd3\x73\x97\x27\xe0\xca\x06\x07\xae\x55\xc9\xd3\xd9\x6c\xf0\xd1\xfc\x72\x41\xff\xbc\xe0\xe3\x2a\x7f\xe2\x57\xd1\x2f\x13\xe1\x70\x7f\x5f\x65\x89\x8e\x2c\x82\xb5\xc3\x85\xca\xff\xc0\xe7\x92\x95\x83\x29\x9d\x05\xcd\xe3\xc5\x92\xe9\x4d\x6e\x80\xd3\x04\x93\xdb\x19\x8c\x75\x18\xa5\x09\x5e\xb6\x02\x49\x54\x65\x05\x2b\xaf\xb3\x04\x5e\x81\x33\x35\x5c\x4a\x47\x35\xd5\x7b\x80\xd5\x72\xad\xca\x3f\x52\xc8\xc2\xcb\x70\xe9\x42\x50\xdb\xb6\x0b\x9e\xfa\x0d\xeb\x9f\x1b\xb6\x1a\xad\x6c\xf5\xea\xba\x2a\x75\x75\xbd\xba\xbd\x4c\x47\x30\xb0\x45\xb1\x6b\xa9\x73\x10\x57\x6c\xd1\x2c\xc1\xd2\x4c\xd6\x4b\x0c\x21\xa9\x0b\x28\x9a\xe4\xde\x48\xe1\xd7\xa6\x03\xcd\x52\xbf\x45\x5d\x44\x35\x90\x66\x70\x90\x9e\xd6\x9b\x75\xa9\x8d\x1a\xf3\x82\xce\xe5\x25\x2f\xb3\xff\xf4\x6b\xd4\x52\xdb\x50\x57\x64\x5b\x4d\xbe\x49\x69\x81\xd4\x46\xe7\x32\x1c\x6b\x6a\x07\x7a\xa9\xc5\xbc\x74\xaf\x04\x5c\x50\x08\x62\xf1\xfc\x92\x25\x57\xa2\x11\x1c\xa9\xfe\xde\x06\x2c\x0a\x5d\xee\x79\x99\xc9\x2c\xa1\x39\x76\x41\xbd\x57\x97\xe8\x37\xb3\xfe\xa1\x77\x51\xd8\x77\xaf\xf1\xf3\xbd\x5b\xec\x83\x8b\x2c\x97\xac\x7c\xb6\x08\xf0\x47\x49\xe5\x5c\x60\x82\x13\xd7\xb2\xae\x64\xaf\x27\xf6\x3b\x4b\xdf\xd8\xce\xea\x85\x97\x2e\x88\x7a\xd5\x2b\x99\x29\xe1\xd5\x85\x0a\x3f\x70\x79\x17\x3a\xde\xeb\x8a\xd8\xbc\x3e\xdb\x95\x13\xb5\x47\xd9\x05\xee\xcc\x96\xdf\x00\x5c\x78\xee\xef\x9e\x37\xee\x74\x60\x2b\x2a\x7e\xf1\x67\x59\xc7\xca\x3f\xf4\x80\xad\x8d\x1c\x87\x7d\x8c\x2c\x20\x1e\xdc\x17\xf5\x36\xfa\x18\x99\x14\xdc\x09\x1e\x30\x93\xb5\x70\xbd\x03\x76\x53\x1b\x9c\x49\x22\x4d\x90\x9b\xfe\xaf\x93\x16\x3c\x64\x14\x12\x8d\xd0\xd7\x6c\xd1\x2c\x4e\xf3\x8c\x8a\x00\x2b\xd1\x08\xa1\x55\xd5\xaa\x50\x5d\x6d\xb9\x24\x56\xd0\x3a\x78\xdf\xa6\xf3\x84\x05\x6d\x07\x8c\xb2\xba\x35\x18\x48\x62\x27\xda\x52\x78\x45\xcc\x71\x1c\x97\x77\x77\x8e\x5c\xd5\xcf\x13\xd6\x3f\x8c\xd8\x92\x8c\x1e\x46\xad\xff\xef\x08\xee\x61\x34\x53\xcc\xa7\x86\x3f\xb6\x2a\x18\xaa\xb1\xd9\xd5\x45\x68\xb1\x59\x05\xbc\x01\x45\xf2\xb4\xa2\xc8\xd7\x6c\xd1\x49\x90\xed\xe7\x54\xcc\xed\xd1\xeb\x2a\x29\xba\x55\x9d\xdc\xce\xcc\x2b\x3d\xd1\xde\x68\xb9\x24\x57\x6c\x01\xb5\x9a\x9d\x43\x98\x81\x00\x9b\x57\x13\x5e\xb3\x05\x0e\xc9\x35\xcd\xe7\x6c\x83\xd2\xf0\xc8\x22\x0e\x55\xdb\xff\xd0\x4f\x63\xeb\x38\x9b\x6b\x09\x02\xba\x70\x67\x4f\x3e\x19\xa8\xaa\x1a\x00\x5c\xa7\x3a\x9d\x98\x89\x5f\x78\xde\x08\x5a\x5d\xe3\xc6\xb5\xd7\x62\xa0\xce\xc9\xde\xa1\x92\x7e\xed\x0c\xe3\x8b\x76\x70\xd8\xd9\xcf\x1b\x9e\x5c\xb1\x74\xed\x28\x3e\x32\x01\x2f\x50\x87\x27\x7b\xa3\x68\xef\xd0\x6f\xc5\x65\x91\x3c\x2b\xae\xce\x38\x68\x81\xed\xc6\xee\x81\xeb\x04\x5f\x5d\xc3\x36\x16\x47\xea\x4b\xeb\x32\x2d\x58\x61\xa6\x5e\xb0\x84\xa7\x3e\xbc\xfe\xcd\xb4\x56\x98\x9c\x43\x73\x33\x1a\x94\x57\x3d\x83\x44\x86\x44\x86\xe0\x06\x5e\x03\xc9\xcc\xef\x09\xc6\x51\xf0\x8c\x0a\xf6\xd3\x8f\x86\x0c\xed\x43\x92\x1d\x89\xd6\xcd\xd7\x6f\x60\xa0\xf6\x62\xba\x6c\x10\xd6\x30\xee\x51\xd0\x7b\x5a\xae\xbf\x37\x00\x23\x1e\x7b\xc8\x63\x15\xb6\x20\x90\x10\x1b\x88\xf9\xb9\x0e\xda\x1a\x8c\x88\x0d\x56\x71\x70\x18\x82\x3f\x93\x7e\x36\x78\xd8\x45\x59\x8e\xf4\xd6\x75\x6f\x41\xc4\xe1\x40\x72\xfd\x18\xa1\xa7\x9c\xcc\xf8\x2c\x50\xdd\xe8\xf8\xf2\x43\xc5\xa1\x86\x1d\xf3\x35\x29\x69\x91\xbe\xff\x76\xdd\x6d\xd6\xad\xe1\x29\xa7\x49\xde\x2d\xe4\x32\xf1\x8e\xcb\xd3\x82\x17\x1d\x54\x4a\x0b\x5e\x2c\xa6\x7c\x2e\xea\xd4\xfa\xea\x85\x5e\x5d\x7b\x23\xbf\x37\x95\x6a\x3a\xb3\xdb\xaa\xee\x1e\xe7\xc5\x55\xc1\xab\x13\xa8\x9a\xcb\x9c\x8d\x47\xcc\x13\x9a\x7f\x94\xbc\xa4\x13\xf6\x89\x7d\x06\xcf\xf4\xdf\x56\x56\xf3\x28\xde\xbe\x82\xf3\x8e\x17\x2c\x90\xe1\x89\xf1\xc0\x6a\xb4\x17\x35\x7e\xdb\x28\x7c\x3a\x24\xb1\xed\xc1\x84\x49\x65\x21\x91\x4b\x02\x96\x93\x96\xa3\xe8\x39\x9b\x64\x45\xbd\xbc\x08\x2a\xaf\x32\x16\x8f\x88\x8c\xfd\xce\xdc\xe3\x9b\xc7\x6c\xcc\x6c\x1c\x14\xb5\x1a\x6b\x85\xae\xd8\x22\x60\x61\x38\xae\x25\x02\x04\x41\x75\xc7\xaa\xd5\xed\x72\x19\x8e\xdd\x69\x5b\x9a\xe9\xfb\x8f\xe6\x46\x70\xcc\x06\xcf\x39\x2f\x53\x22\x63\xa9\xbf\x2a\xd7\xb7\x78\x44\x78\x3c\x1a\xf3\x23\x36\xf8\x3b\x4b\x2c\x84\xdc\x86\x4a\x2f\x63\x48\xff\xc4\x3f\x1f\x48\xf3\x31\x2e\xfa\x71\xf9\xa8\x5c\xea\x48\xea\x70\xc3\x45\xfc\x01\xf1\x2c\xfa\x6c\xa0\xdd\x6c\xfb\xd2\x7c\x90\x2c\x16\x7d\x36\x38\x4d\x7f\x9f\x0b\xa9\x98\x51\x5f\x7a\x3f\x5c\x34\xd0\xe3\x11\x3c\xd6\x97\x85\x04\x9a\x2b\xf9\xbc\x48\x83\x43\xf6\xf4\x91\x08\x87\x87\xa3\x51\xe5\xed\x7d\xc1\xcb\x29\x95\xbf\x95\x39\x04\xec\x2e\xdc\xcc\x6b\x06\x56\x40\xe0\x0a\x0c\x37\x79\x6c\xb4\x2a\x7c\x82\xc3\xe3\xd1\x89\x62\x12\x7d\xbc\x9f\x26\x31\xee\x4b\xa2\x7f\xc0\xb6\x3d\xc6\xfd\x22\x8c\x74\xf6\xc9\x8a\x6c\xc2\x96\x8a\xb0\x15\x1f\x03\x96\x6e\xdf\xfc\x50\xdf\xd5\x43\x6b\x9c\xc3\xca\xc6\x98\x24\xbc\x48\xe1\xe0\x1b\xae\x2e\xec\x1d\x12\xb0\x98\xbe\xa7\x25\x9d\x8a\xe8\x56\x6b\x03\xd1\xad\x11\x84\x5a\x48\x4f\x98\x91\xa0\xa7\x45\xfa\x57\xc5\x2a\x66\x0d\x79\xca\x6a\x6f\x41\x99\xce\xac\x4b\xa8\xfd\xc9\x63\x9f\xdd\x59\xf4\x72\x2f\x4e\x5a\xc0\x0d\xe7\x90\x31\xaf\xf3\x8e\x90\xb8\x72\x87\x5e\xb9\xa2\x5d\xee\xd6\xc0\x26\x7d\xa6\x16\x15\x24\x13\x1f\x38\x97\x56\xec\x2e\x97\x44\x1b\xb2\x5e\xcc\xb5\xf5\xa6\xf1\x96\x79\xed\xa1\x23\x1b\x74\xba\xd2\x9d\x0b\xc2\xc3\xdb\xc2\xe3\xff\xe0\x93\xeb\x02\x03\x71\x72\xa8\xf8\x0d\x5b\x12\x9a\x18\xd5\x47\xcb\xdc\x1a\x73\x65\xe1\xad\x96\x17\x27\xc6\xcd\xda\x7f\xf8\xc4\x4a\x59\xa5\x73\x18\xa0\x3d\xb9\x72\x77\xe7\x1c\xdc\x0d\x76\xd7\xb6\xc1\xcc\xde\xae\x95\xad\xad\x13\x0c\x9e\x9b\x02\xf6\x08\xb1\x4e\x34\x19\xd5\x88\xca\x11\x12\xbc\xf3\xb5\xf2\xf1\xf6\x1f\x14\x4a\xfe\xe3\xe3\xaf\xef\x82\x84\x17\x62\x9e\xff\x8d\x0b\xd9\xc7\xc3\xeb\xc3\x61\x42\x25\xcd\xf9\x64\x98\x52\x49\x13\x56\x48\x08\xa7\x3e\x90\x97\xcc\xbb\x16\x51\x31\x59\xb6\x0c\x97\x04\x2c\xa9\x6f\xeb\xfd\xb1\xf0\x56\xdf\x9b\xad\x6d\x05\x4c\xf0\x94\xfa\xf0\x2a\xa3\x14\xfb\x34\xfa\xec\x8c\x5f\x2f\x92\x2d\x86\xe7\xe8\x7a\xa5\xc5\xad\xfe\x48\xcc\x87\x8f\x7f\x7f\x0f\x1e\xc3\xc1\x6d\x9a\x44\x6c\x90\x26\x24\x4d\xac\x0e\xbe\x25\x72\xcc\xee\xb4\x59\xb7\x62\x32\xcd\x56\x32\x55\xb1\xa0\xf9\x70\x9e\x19\x33\x19\x01\x08\x64\xd8\x81\x68\xfb\xea\x4d\x25\xbb\x6b\xe6\x40\x88\x51\x02\x81\xaa\xed\x3e\xd4\xda\x21\x19\x5c\x97\x95\x10\xef\x91\x97\x69\x56\x50\xb9\x15\x94\x55\xad\xfb\x81\xf4\xa8\xc1\x5e\x01\xab\x9e\xf4\x68\x2c\x56\xe6\xbd\x87\x02\x57\x66\x07\x69\x02\x0a\x96\x4a\x35\x3d\xc9\x01\x7c\xb8\xe4\x34\x11\xba\x60\x95\xe4\x0d\x0a\x83\xbf\xb6\xfb\xe9\x8a\x64\xe2\x45\xc9\x67\x29\xbf\x29\xcc\xc3\x2a\x70\x93\xc6\xd2\xd7\xeb\xeb\x7b\xd7\x90\x0e\x98\xf7\xb6\xb9\x92\xd6\xad\x60\x7f\xa9\x7b\x5d\x7d\xbc\xe4\x37\x0f\x21\x67\x90\xe3\x96\x3f\x43\xa1\x5f\x78\x09\x36\xdf\x50\x4d\x06\x7f\x00\xbd\x5f\xb1\x45\x24\x95\xc2\xbc\x0d\x31\x5c\x5d\x0f\x21\x6c\xf7\x89\xaa\xb7\x2f\xd8\x8c\x95\x54\xf2\x32\x1e\x62\xa2\x58\xec\xd7\xd2\xed\x6b\xe6\xde\xcc\x81\xbd\x27\x5b\x5a\xe2\xbd\x9f\x9e\xcc\xd5\x26\x40\x14\x77\x1a\x66\x97\x18\x04\x77\x7b\x78\xf9\x3b\xf6\x0e\x5d\x6a\x82\x25\xd0\xf9\x04\xfe\x78\xb4\xe6\x68\x55\xe5\xba\xf4\x6a\xcb\x49\xf8\x40\xff\x70\x79\x75\x4d\x5d\x15\xf0\x52\x3c\x12\x55\xc2\x4e\xe5\xea\xaf\x6a\x21\xb0\x1b\xa8\xd6\xc0\x4e\xe8\x0a\x18\x1a\x5b\x49\x71\x2f\xd3\x4c\x7e\x17\x8a\x5b\x8b\x61\x19\x92\xf2\x61\x3c\xb8\x20\x50\x28\x2a\x15\x69\x6e\x4d\x99\xa4\x20\xe5\x1a\xc6\xd4\xc4\xa2\x42\xa1\xd1\x7d\x33\x26\x02\x2d\x77\x42\xbd\x28\xd4\x3f\xef\x4b\x3e\xcd\x04\x8b\xb7\x04\xc3\x12\xc1\x8a\x75\xd2\x09\xe1\x37\x5c\x27\x2b\xe4\xb0\x6b\xf8\x8a\x2d\xec\x35\x45\x6d\xa1\xc0\xe1\xc9\xe6\x23\x14\xda\x2c\x31\xcc\x8a\x0b\x3e\xc4\x7d\xdd\x9c\xb1\x55\x68\xd1\xc0\xf4\x3c\xb7\x46\xe9\x6b\x68\xa6\x95\x58\x7e\x1a\x7d\x26\x6c\x19\x46\xec\x5b\xae\x6f\x4f\xd1\xdb\x78\xa9\xb7\x56\x6e\x7d\xb5\xff\x33\x16\xbb\x12\x4e\xfa\x64\xa6\xc1\x60\xba\x17\xb9\xab\x66\x0c\x45\x44\x5a\xb4\xba\xf5\x6f\xcd\x86\x5b\x69\x88\x9e\x09\xa1\xbd\xf0\x37\x56\xad\xb6\xd5\x80\x3c\xf5\xef\x1b\x68\x40\x66\xe0\x2d\x25\x68\x43\xad\xa4\x02\x46\xb6\x70\xf9\x50\x19\xbe\x02\xa1\xc5\xb7\x44\xe8\x25\xa3\xb9\xbc\xb4\xb8\x84\xe5\x59\xd0\xa9\xde\xdd\x7e\x17\xa5\x72\xb3\x55\xfb\xe9\xf3\x58\xb6\x9a\x36\x8f\x92\x31\x37\x57\x67\x74\x22\x60\xcf\x5d\x0c\x12\x5e\x24\x54\x06\xf5\x3c\xe8\x53\xe5\xea\x3d\x6f\x17\x83\x77\xc7\x69\xcc\x14\x9d\x17\xd9\x1f\x81\x7d\x91\x9a\x20\xdc\xb1\xba\x5d\x92\xa4\x6a\xe9\x55\x8b\x07\x0e\x8e\xbe\xe1\x6c\xaf\x9b\x6a\xc2\xe3\x7f\xb3\xff\x91\x32\x3e\xa8\x7e\x88\x78\x44\x32\x8d\x41\x4f\xb9\xed\xd8\xe2\x2a\xe2\x55\x93\x1d\xc7\x05\x80\x0e\x51\x25\xd6\x56\xd1\x71\x8d\x74\xe9\xbd\x98\xc1\x5f\x0b\xbf\x33\xfa\x14\x84\x85\xe3\x4c\x93\xc1\xad\x52\xc7\x23\x5d\x90\xd8\x12\x91\xda\x5b\x88\x7e\x2c\x09\x3f\x96\x6a\xaf\x1f\xcb\x90\xc8\xe3\x12\xee\xe8\xea\xe5\x93\xe9\x18\xa5\x2b\x76\xeb\xb6\xa1\x03\xe9\x3e\x41\x9e\xc1\x59\x2e\x25\x49\x9c\xd9\xc0\xaf\xfe\xe3\x53\x41\x32\x7c\xec\x56\x48\x72\x3c\x3a\xa1\x71\xf2\xaf\x8f\x4f\xb2\x4f\xf3\xcf\xae\x99\x28\xc8\x3e\xcd\x0f\x0e\xab\x84\x7e\x2d\x3b\x1c\x3e\x8e\x02\xaa\x6d\x56\xa4\x8c\x47\xd6\x43\xa4\xae\x91\x48\x60\x7b\xa0\x94\x28\xe5\x64\xca\x27\x25\x9d\x5d\x2e\xa2\x5b\xdb\x8c\x88\x32\x52\x44\x0e\xc8\x69\x56\x44\x33\x5a\x0a\xf6\xaa\x90\xc1\xe1\x68\xf4\x88\x83\xd9\x89\x4c\x59\x9a\xd1\x46\x16\x35\x59\xf4\x4b\x3d\xbd\xd4\x96\x2a\xd8\x52\x7e\xc5\x8e\xd2\x63\x00\xc0\x6a\xee\x51\x8d\xea\x2b\x7c\xf9\xf5\x3b\xda\xaf\xec\xff\x7e\x65\x66\x7b\xb5\xa5\x02\x4b\x75\x06\x84\xbc\xad\xd2\x22\x62\x49\xd8\x43\x36\xb8\xaa\xcb\xa6\xd4\x16\x9e\xd8\xae\x04\x7e\x45\x66\x2a\xbb\xfa\xb5\x6a\x83\x5c\x63\x59\xff\x07\x84\xbd\xb5\x24\x7c\x2f\x5b\xc7\x86\x73\x63\xb1\xe8\xf0\x77\x9a\xe4\xff\x5b\xd1\x47\x93\x7c\xa8\xaf\xbf\x3f\x18\x6b\xf5\x43\x18\x36\x78\xf5\xe2\x44\xda\x47\x01\x03\x33\x7c\x0f\x95\x91\x87\xe5\x7a\x8e\x45\xb2\xb3\x96\xc2\x41\x6e\xe7\x6e\x63\x7f\xff\xc7\x91\xb6\x00\x0a\xf0\x0f\xe8\xb2\x7b\xa6\xc9\xa0\xe6\xe5\x14\x46\x50\xed\x89\x57\xad\xd3\x62\x98\x26\x83\x9a\xaf\x53\x48\xc0\xfa\xbd\xd1\xd4\x6b\xdf\xad\xda\x46\xfb\x34\xc9\x31\x69\x0c\x36\xac\x91\xc6\x9f\xa5\xfa\x35\x04\x12\xa1\x49\xbe\x05\x57\x56\x94\xe3\x76\x6b\x59\xba\x4a\x19\xf4\x18\xb1\x3f\xdb\x7a\x4f\xfc\x10\x76\x47\x93\xdc\x53\x9e\xf5\xf8\x1e\x62\xaa\x6e\x21\x09\x3c\x23\xc1\x0d\xcd\xf3\xe5\xac\x00\xab\x1d\x15\x56\xc9\xd5\xa1\xa1\x7e\xb7\xc8\xf3\x0e\xf5\xfa\x74\xfe\x98\x9e\xf7\x28\xf6\x8e\xa2\xfd\xe4\x30\x5c\xda\x60\x32\xa2\x91\xe3\x8c\xd7\x2d\xb0\x3a\x00\x82\x07\x2e\xa2\x4f\x98\x56\xa3\xc1\x9f\x49\xcb\x6c\x19\xed\x1d\x92\xca\xe2\xbc\xc2\xfb\xa3\x7a\x36\x03\x02\xd5\x68\xaf\x14\xe3\xc3\xb2\xd6\x13\x41\xf3\xc2\x15\x6e\x47\x76\x35\xf7\x65\xa7\x1b\x4d\xd3\xa1\xc8\xb4\xe5\x83\x60\xbc\xd6\xbe\x1d\x08\x0d\x77\x9f\x55\x20\xac\x72\x30\x6a\x9e\x93\xb7\xb1\x85\xfd\x27\x09\x6a\x05\x9c\x07\xde\x78\x43\x37\xa5\xd1\x09\xf3\x3c\x8d\x22\xe9\xf9\x26\xad\x84\x59\xbb\x53\x3d\xc0\x27\x6a\x74\x82\x5d\x4f\x78\x5d\x37\x9b\x38\x37\x75\xa0\x85\x8c\xc2\x8a\xf1\x9b\x5b\xc9\x2d\xab\x38\x24\xbb\x8b\xa1\x1d\x26\xf8\x70\x49\x2e\xb3\x94\xa9\xe4\x56\xed\xb5\x56\xfb\x65\x48\x5e\x5f\x2b\xe6\xb1\xf9\x82\x77\x76\xa2\xd7\x6c\xb1\xc2\x8b\xa6\xc2\x6a\x85\x5e\x63\xa7\x09\x4f\x9c\xfd\x25\xf2\xbd\x8b\x96\xc4\x97\x46\xef\x18\x2d\x99\x68\x39\x2e\xd5\x44\x00\x11\xb1\xb4\x4f\x80\x72\xe3\xa2\x54\xd8\x24\x10\x0a\xfa\xcb\xad\x71\xd8\x17\xae\x96\x11\x56\x04\xd0\xdf\xe9\x97\xe0\x76\x5e\xe6\xd1\x3d\x86\x49\x66\x2c\x92\xda\x5a\x4f\xe0\x56\x27\xfe\xeb\xcb\x33\xbc\x6c\xca\x03\x1d\x0e\xb0\x1a\xde\x07\xed\x0f\xec\x9d\x50\x2e\xc3\x81\x22\xb3\x9a\x08\xf9\x71\xf4\x63\x5d\x66\xaf\x6d\x43\x80\x1e\x61\x67\xfb\x8d\xbe\x80\xd9\x38\x9b\x51\x12\xd7\x9b\xe8\xe6\xcc\xdf\xeb\xce\x66\x59\x6b\x9a\xe0\xcf\x24\x4d\xd6\x30\x4d\x13\x3c\x6a\x00\x3b\x75\x07\x8e\xe2\xb9\x8e\xd8\xb5\x48\x6c\x38\xdc\xf8\x14\x5b\x8d\x61\xe4\x7b\x22\x13\x69\x0f\x40\x8d\x39\x1f\x5e\x6c\x6f\xbb\xab\x15\x71\x60\x52\x1b\x86\x44\xa5\xa5\xac\x21\x92\xf5\x54\xe2\x6c\x22\x62\x7f\x1f\x0f\xb1\xfe\x30\x68\x07\xa3\xa2\xb0\x2c\x55\x1b\x4c\xc9\xd6\x64\xe5\x57\xf7\x29\xeb\xfd\x6f\x67\x18\x24\x56\x24\x6b\x7e\x5c\x9d\xd4\x66\x96\x9c\xf6\xcd\x73\x6c\x73\x2d\x01\xd5\xc0\x8e\x56\x95\xd5\x67\xe6\xf5\x21\xb2\x4e\xaa\x6b\x52\x74\xa5\xd5\x80\x7e\x6b\xa4\x08\x26\xf8\x83\x0e\x3e\x64\x83\x0e\xdd\x5c\x66\x39\x43\xb3\x92\x27\x4c\x0b\x39\xa4\x70\xa2\x17\xc1\x19\xfb\x02\xb1\x13\x4d\x00\xa7\xb6\xeb\xe1\x56\xf4\xb3\x82\x49\x38\x6a\x6a\xd1\xcd\x3a\x15\xd3\xc6\x6e\xe0\xc5\x45\x56\x4e\x03\x7c\x5a\x32\x08\x99\x24\xe6\xe6\x03\x62\x27\x49\x8e\x6c\x1c\xaa\xcb\x4c\xa0\x0b\x18\xc0\x09\x0e\xed\x2b\x79\xdb\xb0\x9f\x16\xc9\xf7\xf1\x49\xc9\x92\x79\x29\x18\x06\xb5\xd4\x10\xce\x8b\x97\x6f\x5e\x9e\xbd\xec\xe2\x4a\xf5\x49\xae\x31\xdd\x40\x7c\xdf\x19\xac\x9f\xa9\x6d\xc0\x94\x6e\x6b\x5c\xe4\x81\x9c\xc8\x31\x1f\xad\xb5\x6e\xcf\x7c\xd6\x12\x8e\xaf\xe0\x80\xfa\x0d\xc4\x04\x34\xb7\x8e\x72\xbe\x8e\x43\xb0\x6a\xa2\x5b\x1c\xc2\x77\x44\xed\x64\x14\x1d\xc3\xed\x58\xb9\xcc\x15\xdc\x7e\xde\x59\x73\xe5\xea\x30\xdb\x6a\xd2\x37\x41\x3d\x69\x6d\x54\x5b\x6c\xab\x76\x76\x65\x75\x92\x20\xac\x82\x1b\xb7\xc6\x67\xb8\xc7\xd7\x88\x9e\xfb\x58\x87\x9d\xfe\x42\x27\x34\x81\xfb\xb6\x8a\x88\xef\x8a\x4b\x64\x25\x31\x1e\xb6\xf0\x8b\xef\xbf\xf0\x5f\x49\x36\xed\x54\x3a\xc1\xa5\x76\xcd\x9e\x2e\x4d\x30\x69\x6c\xec\x7c\xff\xbd\x4f\x58\x1f\x66\x60\x82\x85\xbb\x8d\x64\x1d\xfe\xb6\x62\x14\xae\x56\xb4\x37\x52\xaa\xfd\x4b\x88\x6b\xa1\x7f\xea\x3e\xd4\x78\x22\xfc\x0b\x7c\xa3\xf3\x05\xdc\xcf\xc4\x26\x2f\xc2\x98\x68\x00\x22\x4c\x8b\x05\xb2\xc0\xe8\xbf\x0c\x76\xa7\x5e\xb2\xdb\x57\x10\xb7\xd7\x50\x1b\x56\xa5\xad\x65\xc5\x44\x21\x6b\xdd\x5e\xcb\x87\x9d\xfa\x77\x39\xfd\x1d\xb4\xf5\xd0\x4e\x13\x6d\xe3\xd4\x8b\x47\xa9\x97\x77\x77\x2a\xd1\x1e\xd1\x55\xe9\xfe\x1e\x67\xa3\x2e\xcc\xd8\x59\x6a\x62\x6c\xaf\x83\xd9\x4c\x53\x9d\x65\x1a\x74\x58\x9e\x69\x74\x18\xc9\xa6\xd5\xcd\x98\x2e\x4b\xb2\xf4\x9b\xd4\xfe\xfa\x92\xbf\xe1\x37\xac\x7c\x4e\x05\x0b\xc2\xc1\x94\xca\xe4\x12\x1e\xdc\xf0\x52\xc3\x65\x38\x16\x37\x99\xca\x91\xe1\x6d\x42\x05\x73\xb3\x10\xd9\x67\x47\xbd\xeb\x38\xad\xcd\xa1\x62\x24\x63\xa8\xe6\xb6\x87\x9b\x55\x1b\x85\x63\x13\x68\xc6\x55\x58\xfa\xb8\x6e\x53\x30\xa0\x60\xf0\xef\x8c\x26\x97\xb8\xb5\x59\x7c\xee\x08\xf5\xbe\x5d\x63\xb5\x10\x2a\xe9\xeb\x0e\xe5\x36\xdf\xfe\xd5\x96\xa2\xde\xfc\x3e\x48\x02\x67\x85\xb9\x1c\xc3\x8c\xbb\x43\x47\x80\xd8\x15\xcc\xb8\xb9\xff\xab\x98\xed\xc3\x77\x7f\x1b\xab\x6f\x15\xdc\x5a\x85\x33\xa7\x0d\x5b\xeb\x70\xf6\x08\xc5\xbc\x70\xa7\x14\xba\xa6\xb6\xdf\xc1\xb8\xbf\xf6\xa4\x46\xe8\x43\x9a\x15\xee\x65\xb2\x79\x98\xa2\xcf\x8d\xda\xea\x80\xfc\x56\xea\x40\x8d\x10\x3d\x22\x6c\x4b\x88\x4a\x0f\x54\xcb\x61\x05\xb9\x19\x63\x4c\xc3\xc7\xe0\xeb\xdb\x75\x1e\x0c\xde\xad\x0d\xf1\xdd\xa4\xd7\xe7\x35\x22\x06\xf1\x12\xbd\x7a\x81\x89\x60\xb4\x4c\x2e\x9f\xd1\x52\x49\x24\x6d\x6e\x7f\x36\x97\x92\x17\xea\xb7\x22\x21\xd5\x5e\x15\x12\x53\x09\x42\x78\x34\x6a\xbb\x8d\xfb\x1a\x94\x80\xc9\x3f\xf4\x04\xde\x77\x13\x58\xaa\xa7\x3f\x53\x2e\xad\x11\x41\xfa\x9e\x85\xe1\x3a\xfa\xf2\xea\x46\xc2\x67\xec\xdd\x8d\xd8\x8b\x63\x71\x22\xac\xca\xfe\xea\xc5\xe6\xf2\xcb\x0a\xc0\x4e\xf1\xb1\x42\x6a\x68\xab\xcb\x69\xd2\xf6\xbd\xdd\xc2\xea\x72\x9a\xe4\xbe\xb2\xbb\x82\xdd\x7e\xab\x3d\x0f\x4d\xf2\xa1\x06\x1b\x13\xd1\xb5\xdb\x51\x2c\x70\xa0\xaf\x98\x65\x17\x8b\x40\xb6\x77\x3a\xb2\xa9\xf2\x7e\xa8\x82\x04\x38\xf3\xc7\xab\x17\x95\xb5\x66\x9b\x13\x44\xd1\x71\x02\xe4\x68\xa3\xd3\x59\x47\xac\x39\x0a\xb4\xc6\x14\x20\x3a\x6d\xd5\xdb\xd8\xbe\xa2\xaf\x49\x05\xdd\x8c\x18\x7a\xc9\x8a\x09\x3a\x7d\xfe\xa6\xa9\x98\x93\xbf\xb0\x27\x2b\xfb\x59\x36\x0f\xed\x1e\xa8\x2c\x00\xc7\x78\xb0\xdd\x70\x3d\x4f\x73\xf4\x2d\xd8\x46\xfb\xca\xf1\x6d\x17\x69\x1b\x45\x62\xbc\x96\xae\x97\xd9\x45\xb0\xb1\xb6\xa0\x03\x62\x67\x02\x01\xe1\x43\x04\xbd\x05\x9f\x97\x9e\xd6\x10\xde\xde\xae\x8c\x5a\x02\x34\xb9\xec\xa4\xdc\x4a\x22\xad\xdc\xe7\x12\x4b\x0e\xef\xf8\x0d\x9a\x0b\x88\x43\x07\x8e\x37\x30\xf9\xaf\x5e\x90\x27\xec\x49\xb8\x5c\x92\x24\xe7\x45\xfb\xd0\x61\x53\x76\x50\x19\x3a\x1e\xce\x0d\xee\x1b\xe1\xd6\xdc\x42\x8d\x68\x68\x46\xd9\x60\x19\x0f\xe7\x0d\x9d\xcb\xc3\x21\xf9\xa3\x0e\x2c\x78\x31\xcf\xf3\x05\x02\x00\x52\x64\xa6\xf1\x47\x85\xe7\xef\xb6\xa7\x5e\xb9\x6c\x09\xd6\x76\x0e\xfc\xa7\xce\xed\x83\xec\xa2\x50\x79\x6b\x95\x5a\x4d\x7d\xa5\x4e\x6f\x34\xf9\xf6\xad\x84\x6f\xc2\xf1\xf9\xf9\xef\x8a\xe1\x93\x36\xc3\xef\xf0\x15\x51\x85\xd7\xb9\x8b\x40\xfe\x3a\x31\xd1\xd6\xa5\x40\x23\xf3\x1d\x32\x54\x1b\x5d\x66\xbf\x95\xf4\x8e\xef\xa3\xf2\xd3\xe7\x6f\xcc\x44\xa5\x36\x20\x27\x50\x3c\xd6\xcc\xe4\x4f\x21\x73\x6d\xcb\xfd\x1a\x95\xe6\x5b\xd0\xf9\xb6\x84\xaa\xa1\x7e\xb0\x46\xe3\xd0\xba\x66\xa2\x74\x17\xdd\x13\xb5\xa5\xf2\x00\x4d\x7d\x95\xf2\x60\x7d\x56\x36\x57\x1e\x9c\x4c\x2f\xd9\xa6\x52\xdd\x7b\x0e\x6c\x05\xdf\x29\xdb\x8c\x07\x9a\xb7\x62\x59\x03\x09\xac\x27\xe8\xbc\xe5\xdd\xf4\xcc\x59\x11\xad\x6c\x5d\x24\xb2\x4a\x66\x98\x3c\x0d\x82\x9e\x9a\x95\xe2\x1c\x50\x39\xd6\x7e\x30\xde\x63\x84\xfe\x1b\x84\xb7\x92\x4d\x67\x39\x95\xec\x1d\x04\x5f\x53\x5a\x97\x0b\x9f\x2a\x22\x9c\x1a\x17\x00\xa1\x92\xb3\xe4\xaa\x66\x71\xf9\xc1\xbd\x71\x1e\x0e\x32\x11\xe0\x41\x55\x3a\xdc\xdf\xff\x21\xc0\xf3\xdc\x25\x1d\x4c\x59\x31\xc7\xe1\xe0\x32\x4b\x59\xe0\xce\x97\xd5\xbe\x6f\x33\xc0\x94\x72\x8b\x1b\x9b\xf4\xcd\x6a\x56\x91\xd5\xda\xd7\x08\xb6\x6a\xa1\xd9\x80\xc1\xf4\xe6\xf0\x0f\x4d\x8c\x63\xec\x5b\x30\x36\xab\x6e\xa2\xb8\x35\x4c\x70\x9b\xd7\xad\x55\xfd\x6a\xc0\x5f\x5f\x37\x9e\xb7\x5c\x53\xff\xea\x1a\xbb\xbd\x80\x22\x9c\x67\xb4\xdc\xac\xa2\x5e\xcb\xe7\xb4\xac\xea\xe7\x9b\xd6\xcc\x05\x6e\x6c\x40\x36\xae\x89\x1b\xcc\x67\x53\x12\x71\x11\xdc\xaa\xb8\x0d\x66\xcd\x32\x42\xed\x53\x54\x7b\x71\x6c\x98\x8c\x1f\x2c\x54\xec\xef\x77\xa5\x7a\xf7\xfc\x7f\x08\xba\x0a\x84\x03\x56\xbf\x4e\xa0\x3a\xa2\x55\x18\x56\xe3\xc1\x2f\xe0\x8d\xcc\x46\xc8\xf6\x5b\x13\x62\x38\xc2\x47\xb3\x63\x70\x4c\x39\x1a\xce\x8e\x31\x31\x61\xba\x31\x44\x03\xc7\x44\x07\x3f\x8e\x30\x84\xdb\xc6\x46\xe8\xe8\x70\xdb\x98\x48\x99\x47\x74\x19\x8e\xb5\xce\x1b\xb8\xe7\xd7\x6b\x40\x2a\xed\xa6\x73\x74\xa0\xa8\x08\xff\x49\x41\xe7\x65\x0d\xcf\x9d\xff\x7a\xcd\x4a\xeb\xbe\x43\xb5\x94\x3d\x95\xb2\xcc\xce\x41\xf5\x50\x32\xef\x00\x28\x3b\xec\x63\x74\x80\xcc\xe1\x76\xb3\x84\xbd\x22\xa0\x4a\x4d\x05\x1e\xbb\x30\xd2\x13\x66\xa3\x55\x3e\x5b\xbc\x4a\x7d\x87\x6f\x68\xf5\x20\x2b\x2e\x38\x0e\xab\x30\xc9\x31\x5d\xae\x78\xee\x29\xc0\x33\x5a\xb0\xfc\x19\x2d\xdb\x0f\x63\x51\x6b\x70\xa1\xb1\x3b\x2b\x88\x63\x76\x82\xcf\x27\x07\x93\x92\xb1\x02\x47\xea\x93\x97\xf0\xce\x2c\x51\xf3\xe4\xb5\xff\x91\x5e\x30\x13\x8c\xa7\x16\x49\x1a\xfa\x3b\x38\xa7\x25\xea\xf5\x69\xbf\x87\x6d\x80\xe7\xea\x59\xe6\x0e\x20\x95\x1a\xfa\x4f\x84\x11\x1e\xd4\x3b\xa7\xe5\x01\xf8\x06\xf3\x42\xd2\x7c\x1b\x68\xcd\x66\xf7\x9d\x3e\x21\x5b\x03\xb1\x56\x8e\x55\xb9\x13\x0c\x51\xb0\x8f\x71\xdf\x6b\xef\x37\x99\xe5\x62\xc0\x44\x42\x67\xec\xe5\x97\x59\xa9\x9b\x0d\x94\x3a\x1d\x2a\x92\xd7\x35\xa2\xad\xaa\xc2\xe3\xe2\xae\x32\x3a\x12\x53\x9a\xe7\x5b\x76\xab\xab\xac\x41\x26\xdd\x04\x3d\x6f\x99\xa4\x1d\xe8\x89\x6b\x33\x31\x65\x92\xaa\xb5\x80\x8f\x7b\x1b\x81\xf8\x8c\x5d\xd2\xeb\x8c\x97\x6a\x5d\x9d\x9b\x6f\x3d\x65\xd8\x5a\x58\x31\x5c\x1b\x3b\x3b\x7b\xb3\xbf\x1f\xd0\x98\xf6\x57\xf4\x47\xd0\x66\x3d\x9e\x9d\xbd\x51\x9d\x9d\x9d\xbd\x31\xfd\x84\x0f\x46\x0c\x4d\xf2\x26\xcd\x28\xa6\x68\xe1\x56\xc4\x72\x42\xa3\xd5\xad\x6f\x00\x6e\xd8\xef\x99\x39\x77\xeb\x71\x9e\xe7\x07\xfa\xf5\x92\x82\x1f\xc0\x09\xdf\x46\xb8\xa6\x3e\x2d\xac\x1d\x96\xde\x17\x7c\x98\xe7\x4c\xd4\xe7\xbb\x36\x30\xfc\x8e\xa3\x52\x95\x41\xf6\x3d\xb9\x88\xad\xa7\x22\x50\x64\xce\xe8\xc4\xed\xb1\x3a\xfc\xd1\x4d\x34\x31\xdd\x3c\x5c\xd1\x8b\xb4\x30\x5b\xd7\x74\xc5\x4e\xff\xaa\xfe\x6d\xce\x87\x16\x4b\xd5\x25\xbb\x71\x75\x09\xad\xfb\x9a\x5c\x95\x7f\x2c\x20\xb8\x50\x95\x60\xc5\x5c\x11\xd3\xe1\xe3\x83\xbf\x90\x32\xee\xe9\x67\x99\x8e\xc4\xf5\x04\xc1\xf3\xa1\x31\xd6\xac\x07\xe9\x47\x44\xed\xcf\x63\x64\xfe\x3b\x9a\xd8\xa9\xf4\xee\xfd\xe8\x57\x7d\x14\xe6\x63\x0c\x9f\x4a\xda\x07\xbd\x3e\x1d\x3e\xee\x63\x82\x30\x7c\xf4\xc2\xaa\x15\xd5\x8e\xf7\x03\xa1\x23\xfd\x98\x85\x6d\xfb\x9c\x26\x57\x13\x08\x86\x84\x51\xa9\x60\x28\xfa\x3d\x3c\x5c\x57\x83\x7e\xc9\x84\x29\x3b\x78\xfc\xf4\xd1\x56\xe5\xb7\x2c\xfe\xf3\x06\xe5\xcf\x79\x99\xb2\x72\x05\xf0\x47\xc3\x49\x0d\x13\x95\x20\x28\x98\xc0\xc7\x3d\xd8\x3a\xbb\x49\x26\x59\x2c\x6d\x74\xaa\xec\x22\x60\x83\xe2\xf8\xc9\x4f\x23\x4d\x18\x79\xfc\xe4\xa7\xd1\x90\x0d\x8a\xb1\x8c\x65\xfb\xae\x69\xb5\x9e\xd1\x28\x8e\xe9\xdd\x1d\x8d\xe3\xec\xe0\xf0\xee\x4e\x07\x9b\xa2\x45\xca\xa7\x41\x78\x94\x2f\x43\xaf\x93\xa5\x3b\xf9\x6f\x53\x17\x34\xd8\xb7\x54\x63\xe0\x57\x60\xfb\x14\x50\x72\xa9\xa7\xff\xc9\x4f\xa3\x47\x74\x98\xa9\x99\x47\x8b\xc7\x0a\x13\x07\xc5\xa3\xa0\x1a\xda\x50\x84\x8a\xd2\x9c\x7e\xa2\x4a\xe8\xcb\x6e\x2e\xd9\x16\xd5\x59\xee\x6a\x64\x0f\x23\x5e\xc0\xf3\xa3\xfc\x9a\x95\x3e\x2d\x56\xfa\x90\xda\xe9\x85\x63\x3c\x3c\xee\x2d\x43\x52\x07\x7a\xe5\x04\xd0\x73\x96\x0b\xbc\x6e\x62\x67\x3c\x2b\x24\xcc\xeb\xd3\x26\x05\x54\x2b\x23\x4b\xae\x56\xac\x89\x91\x62\xf4\xc5\xa3\x83\xc1\xe3\xa7\x8d\x05\x51\xa1\xf2\xcb\xe3\x18\xff\x3c\x6a\xb4\x8e\xd0\x91\x64\x5f\x24\xfa\x12\xe3\x9f\x9f\x62\xb4\x88\xf1\x08\xa3\x74\x11\xe3\xc1\x93\xc7\x6c\xaa\x98\x68\x20\x8e\x47\x27\xee\x66\xe6\x63\x1b\x42\x2c\x1a\x85\xfd\xde\x54\x1c\x0d\x55\xf5\x3a\xc0\xc3\xc9\x57\x0c\xe0\x3b\xc3\xff\x74\xf4\x9d\xe1\xff\xf9\x3b\x0f\xe0\xe7\xef\x39\x01\x07\x87\x8a\x05\x7d\x4f\xf0\x0f\x47\xfe\x04\xe0\x0d\xe0\xf7\x7f\x55\xdf\x47\x43\x71\x3d\x59\xab\xbe\x95\x4a\x2a\xfd\x4f\x00\x00\x00\xff\xff\x18\xf6\x5b\x79\x33\xc0\x0b\x00") func web_uiStaticApplicationMinJsBytes() ([]byte, error) { return bindataRead( @@ -111,12 +111,12 @@ func web_uiStaticApplicationMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web_ui/static/application.min.js", size: 770434, mode: os.FileMode(420), modTime: time.Unix(1471050089, 0)} + info := bindataFileInfo{name: "web_ui/static/application.min.js", size: 770099, mode: os.FileMode(420), modTime: time.Unix(1485366992, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticBaseCss = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\x5d\x59\x8f\xe3\xb8\x73\x7f\xef\x4f\xa1\xcc\x60\xb1\x33\x83\x96\x56\xa7\x65\x79\xb0\xc1\x66\xff\x98\x0d\x02\x24\x2f\x39\x9e\x82\x04\xa0\x25\xba\x2d\xb4\x2c\x09\x92\xdc\xc7\x2c\xf2\xdd\xc3\x53\x22\xa9\xc3\x94\x2d\x0f\x82\xac\xdc\x3b\xdb\x36\x45\xfe\xea\x60\xb1\x58\x3c\xda\xb5\x2f\x92\x77\xe3\xcf\x07\xc3\x30\x5f\xe1\xfe\x39\x6d\xcc\x43\x91\x37\x66\x7d\x2a\x8a\xe6\x98\xe6\x4f\x3b\x03\xe4\x4d\x0a\xb2\x14\xd4\x30\xf9\x8a\xaa\xd1\xc7\xe9\x77\xb8\x33\x9c\x4d\xf9\x86\x8b\xe2\x22\x2b\xaa\x9d\xf1\x31\x08\x82\xaf\xc6\xff\x3c\x3c\x00\x82\xc7\x4b\x23\xb8\xf5\xe3\xa0\x6d\xfa\x0a\xd3\xa7\x63\xb3\x33\x36\xb6\xfd\x55\xa0\xda\x54\x20\xaf\xd3\x26\x2d\xf2\x1d\x6d\x69\xd8\x96\x5b\x1b\x10\x91\x35\xd3\xdc\x2c\xce\x0d\xa9\x7d\x2a\xbe\x6b\x57\xad\x75\x6b\x16\x9a\x15\x35\x6a\x21\xf1\x0d\x03\xec\x8e\xc5\x0b\xac\x88\x16\x50\x2b\xf8\xd6\x98\x09\x8c\x8b\x0a\xd0\xa6\x79\x91\xc3\xaf\xe4\x11\x57\xd1\xd6\xdd\xb8\x7b\x9f\x35\xb6\xea\xf3\xbe\xc9\x20\x6b\xcd\xaa\xa4\xf9\x11\x56\x29\xc3\xef\x2a\x49\x84\x7a\x2a\xc7\x7d\x11\x17\x09\x94\xba\x63\x13\xf9\x51\x04\x30\xfd\x3d\x88\x9f\x9f\xaa\xe2\x9c\x27\x26\x7f\xf8\x6d\x83\x7f\x48\x43\xeb\x08\xb3\xd2\xdc\x67\x45\xfc\x4c\xda\x8b\xfd\xee\xcb\xfd\x1e\x79\xf8\x87\xb4\xaa\x4f\x20\xcb\x24\x7a\x61\x18\x92\x27\x47\xe7\xd1\x38\xba\xe8\x9f\x87\xfe\xf9\xe8\x5f\x20\x55\xe3\xb6\xc3\x8a\x89\xd2\x88\xbe\x0f\x45\x75\xda\x19\xe7\xb2\x84\x55\x8c\x14\xdd\xb3\xa3\x90\xda\xd1\x00\x2f\x47\xdf\xda\x57\x10\x24\x71\x75\x3e\xed\x6b\x02\x5b\x82\x24\x41\x46\x6d\xee\x8b\xa6\x29\x10\x6c\x40\x05\x19\xa7\x46\xf4\xad\x00\x01\xb9\x6b\x44\x92\x65\x45\x95\x3d\xa0\x5a\xac\x87\x8e\xcf\xd7\x63\xda\x8c\xca\x22\xaa\xda\x45\x1c\x92\xee\xd8\x17\x59\xd2\x75\x84\xd8\x82\x3c\xce\xf0\xe7\x41\xc5\x5b\x25\xc8\x21\xed\x93\x7d\x51\x25\xb0\x32\x5f\xd3\xa4\x39\xee\x0c\x97\x0a\xcf\x0a\x15\x13\x18\x19\x9a\xaa\x60\x68\x04\x78\x97\x47\xa9\x66\xab\xfa\x8a\x46\xc5\xfc\x36\xf3\x1a\x10\x0b\x60\x3a\xa4\xbf\xcc\x23\xb2\x05\x64\x45\xcc\x0c\x98\x4d\xa1\xbe\xb2\xcb\x37\x23\xa4\x4a\x1d\x32\x01\x42\xb7\x04\x15\xcc\x1b\x56\x65\xa8\x3b\xc6\x3a\x44\xe4\x03\x19\x24\xe5\xa4\x49\x3b\x4f\xd1\xf2\x81\x46\x27\xe5\x05\xbf\x69\x51\x05\xa3\x72\x6d\x5e\xa8\x98\xb0\x54\x86\x47\xa4\xc8\x4f\x85\x84\x3e\xd7\x3b\xc3\xe3\x8d\x8b\x12\xc4\x69\xf3\xbe\x43\x3a\xdb\x72\xc7\x34\xcc\x60\xe7\x15\x14\x4e\xb8\x27\x69\xfd\xe4\xd8\x90\x6f\xdb\x29\x43\x05\xbf\x4e\xa0\x7a\x42\x9d\x95\xc1\x43\xd3\x8e\x68\x41\x21\x66\x53\x94\x54\xbb\x93\x3c\x5a\x79\x61\x62\x6a\x2d\x9b\x2a\x3f\xc4\x6d\x4f\x43\xd0\x0f\x79\xd1\x74\x28\x8c\x39\xc2\x83\xc0\xdb\x21\x2b\x00\xe2\xb6\xc2\xc2\x0c\xca\xb7\xe9\xe4\x1b\xea\xa4\xbe\x16\x25\xfb\xf0\x2e\xd9\x07\x37\x0f\xfb\x2e\xe6\xa1\x68\xc9\x9b\x6f\x0c\xbd\x3e\x9d\x84\xfc\x3f\xa3\x78\xc6\x48\x1b\x53\x09\x5a\x67\xce\x81\xff\x56\x04\x12\x1b\x96\x97\x94\xa3\xcc\x99\x23\x30\x6c\x26\x55\x71\xfa\x03\x41\x6a\xe4\x5b\xf1\x11\xb2\x29\x5f\x6d\xba\x99\x6a\xca\xde\xe2\xb1\xd2\x36\x56\xa7\x5b\x27\x18\xd1\x17\xe0\x31\x0c\xf3\x85\x8e\x6d\xff\x44\xa5\x3d\xb2\x6e\xe9\x8c\x52\x73\x5a\x72\x6a\x23\x4b\x73\x08\x2a\xd6\x4a\x63\x4e\xea\x35\xb9\x38\x21\xa9\x2d\x2e\xce\x46\x4a\x03\xed\xda\x82\xd2\x98\xce\xd0\x03\xde\x4b\x6c\x04\x52\x2d\x8b\xd3\xc9\x50\xab\xba\x31\xce\x7c\xf8\xd1\x31\x82\x6c\x53\xee\x56\xa5\x6e\x96\x2a\x83\x0a\x37\x60\x05\x94\x74\x8b\xd0\xeb\x56\xf3\x58\x54\xe9\x77\x64\x43\x20\x93\x7b\xb8\xeb\x4f\x36\x22\xf1\x50\x97\xbb\x3c\x68\xab\xb0\xb1\x5c\xd1\x72\xa7\x2d\x4f\xd2\xba\xcc\x00\x9a\x81\x48\x98\x3a\x20\x6e\x8d\xc8\x37\x53\x5a\xb2\x47\xb4\x94\x3f\x4b\xa1\x75\x7c\xae\x6a\x3c\xe4\xca\x22\xcd\x1b\x58\x8d\xcd\xf0\x1f\x0f\x00\xff\x48\x88\x20\x6e\xd2\x17\xee\x96\x06\x6d\x57\x98\xee\x75\xec\xf6\x42\xf5\x7a\x4e\xed\x62\x46\x65\xfd\x9a\x4a\x00\xd3\xad\x46\x04\x13\x63\x6a\xf9\xfb\xe1\x98\x6a\x16\x46\xcf\x89\x5c\xeb\x23\xae\xf2\x12\xd7\xf8\x89\x2b\x3c\xc5\x0c\x5f\xc1\x35\xd8\x37\x4f\x61\x5d\x68\xa1\x89\xd1\xdc\x23\x48\xba\xa8\x10\x67\x4b\x3e\x34\x3b\x00\x29\x76\x35\xce\x55\xf6\xe9\x43\x5c\xe4\xf5\x19\x8d\x94\xe2\xa9\xb0\xca\xfc\xe9\xc3\x67\xc3\x46\x11\x92\x59\xc1\x12\x82\x46\x59\x5d\xd2\xe9\xc3\xc3\x33\x9f\xc7\xb0\xd9\xf0\xe3\x1f\xf9\x90\xf7\x6c\xbe\xdc\x41\x9c\xf0\x0e\x6d\xa7\x50\x5e\x5b\x0a\xec\x1c\xa5\xb0\x9d\x6b\x58\x39\x93\x8c\x17\x73\xe1\x4e\xa8\x8c\x53\x8d\x02\x69\x25\xd4\x22\x20\x7e\x3f\x42\x88\x22\x96\x22\x4b\x13\x36\xa8\x19\x5f\xd6\xbe\xc9\x25\x27\x2a\xab\x8e\xe2\x77\x93\x59\xeb\x65\x84\xe6\x66\x52\x15\x65\x52\xbc\xe6\xb2\x63\x04\xe7\xa6\x90\x2b\x9f\x33\x8b\x57\x35\x4f\x30\x3f\x63\x87\x0c\xc4\xcd\x85\xf1\xa0\x79\x38\xb2\x51\xc3\x01\x29\xae\x63\xeb\xd4\x39\x63\x48\x59\x5f\x69\x0f\xa3\x81\x76\x3a\x23\xa9\xdf\x4c\x67\x30\xf5\x5a\xcd\x6b\xc2\x3d\xcf\x54\x9f\x8c\xec\xc6\x04\x10\xff\x4c\x0c\xcb\x83\x87\x7f\xd8\x32\x9f\xd9\x95\xfe\x06\xc8\x66\x78\xd3\xe0\x61\x64\x7d\xa9\xf4\xb3\x66\x2f\x6b\x6c\xc5\x69\xb6\xba\xd8\xc3\x17\x37\xe8\xb4\xda\xcc\x27\x72\x79\x6a\xd6\x51\xc2\xe5\x16\x93\x13\xf4\x65\xe1\x2f\xd5\x9f\x07\xfe\xff\x6b\xf7\x15\xd5\x42\xbf\xf0\x34\xd8\xed\xb2\xb2\x02\x53\xdd\x78\x23\x6f\x4c\x34\xa7\xc5\xa4\xf2\x6b\x05\x4a\x52\x1d\x8d\x60\x14\x91\xbe\xee\x8c\x63\x9a\x24\x30\xff\xca\xc7\x62\xf7\x00\x66\x59\x5a\xd6\x69\xcd\xbc\x34\x1a\xb1\x72\xac\x38\x30\xec\x27\x07\x3d\xc3\x38\x14\xf1\xb9\x66\x18\x3d\x29\xc6\xe5\x18\xac\xbc\x2f\xde\x50\xec\x0b\x12\xcc\x6e\xb7\x6f\x81\xc9\xc8\xf1\xe8\x52\xa0\x78\x3a\x2b\xab\x14\x4d\x85\xef\x8a\x16\xba\xed\xe6\x19\x5b\x62\xc4\x59\xd1\x69\xb7\x17\xfa\x29\xe4\x14\x9f\x3b\xa4\xe8\x10\x29\x3a\x52\xd7\xce\xe2\x96\x7b\x8b\xf9\x0a\xaa\xbc\x0b\x42\x79\xd5\x3f\xfe\xf8\x87\xbf\x05\xdf\x6e\x11\x81\x21\xa8\x22\x30\x72\x1a\x22\x1c\x0e\xdb\x83\xab\x8a\x70\x38\x44\xae\xbb\x57\x44\xa8\xcf\x71\x0c\xeb\x5a\x11\x61\xbb\xf9\xdd\x0f\xc2\x5b\x44\x60\x08\xaa\x08\x8c\x9c\x86\x08\xdb\x43\xd2\x17\x61\x13\x47\x81\xef\x29\x22\x24\x20\x7f\xea\x8d\xa6\x24\xf1\x61\xb0\xbd\x45\x02\x86\xa0\x4a\x40\xa9\x69\x08\x10\x1f\x9c\x83\xa3\x0a\x90\xd8\xee\xd6\xf3\xc7\x86\xd7\x5d\x07\x01\xa5\xb4\x84\xfd\x4b\x80\x44\x29\x79\x21\xc9\xd1\x3b\x86\x1a\xa5\xa6\x56\xe8\x4b\x12\xc7\xb1\xd2\xdf\x28\x54\xe6\x3b\x0c\x62\x10\xd3\x86\xd2\x6d\xfc\xbf\x6d\xc3\x68\xde\x94\x6c\x51\xe8\x34\xf5\x10\x03\x01\x5e\x7f\xd0\xdf\x43\xdb\x0a\x81\xb2\xff\xae\x6c\x68\x3e\x88\xb1\xbb\x95\xa2\xf5\x0f\x5d\x38\x75\x71\x7e\xa0\x2e\x66\x3c\x69\x65\x82\x22\x35\xbc\xfd\xd7\x5f\x08\x50\xb0\xfa\x85\xfb\x9d\xfe\x96\xd7\x21\xcd\xb2\x1d\xde\x84\xc0\x36\xf2\x37\xac\x69\x7e\xe8\x53\x37\x26\xee\x80\xd2\x44\x8e\xfb\x24\xaf\x96\xec\xd1\x10\x70\x74\xbf\xe8\xa1\x27\xbc\x3b\xb8\x88\x72\x02\xa9\x98\xae\xc3\x58\xd9\x7a\x6a\xd4\x9d\x1a\xa9\xfd\xa3\x16\xf0\x5d\x8f\xc7\xb1\xaa\x69\x8e\x27\x61\x65\xb7\x8e\x9c\xed\x60\x75\x77\xef\x14\x6b\xb7\x99\xb5\xb3\xdf\x93\xdc\x48\x24\xf8\x22\x9a\xee\xbb\xf7\xce\x01\xda\xb5\xa1\x38\xd8\xbc\x0b\x04\xfa\xe2\x0e\x6d\xc8\x49\x3e\x02\x2d\xba\x65\xc2\xe2\x4e\xb7\x36\x15\x8b\xbd\x31\xf1\x49\xb6\xe0\x23\xef\x75\x04\x30\xcc\x98\xee\xde\xf6\x20\x06\xfd\xbc\xcc\x76\xe4\x20\x34\xf2\x3c\x28\xc8\xad\x61\xf2\xe3\x88\xf4\x8d\x5d\xa9\x25\x9b\x47\xff\x5c\xba\xe7\x8e\x7c\xc5\xa1\x13\x7f\xd4\x16\x72\x2d\xfb\xf2\x59\x97\x72\x82\x3e\x64\x5a\x43\xdc\x5b\x49\x71\xde\x67\x10\xbf\x87\x17\x25\x11\x2b\xb7\xe6\xd7\x6e\x6f\xfb\xc2\x71\x8a\x06\x65\xc3\xca\xc1\xe9\x32\x4d\x5a\x6d\xf0\xfc\x66\xec\x6c\x54\x38\xd7\x99\xc3\x8a\x81\x82\x96\x5c\x97\x1f\x5c\xb7\x65\x6a\x74\xf5\x45\x5f\x43\x6b\x30\xfa\x1a\x5b\x89\xb5\x15\x4e\xe0\x8d\x4f\x68\x5e\xf0\x53\x57\xde\x3b\x64\xc0\xaf\xf6\xf8\x80\xfa\x40\x7a\xd9\xa5\x7b\xcc\x75\xc4\xe2\x03\xff\x5a\x2d\xe1\xf3\x4e\x6d\x35\x49\x87\xa3\x73\x59\xdc\x76\x1d\x3c\x70\xfc\xdd\x29\x63\x68\xff\x6f\xc0\xdb\xcd\x32\xce\x13\x6c\x40\x02\x1a\xa0\x21\x29\xaf\xda\xca\xa9\x9c\xe3\x0c\x98\xae\xdb\x3b\xc1\x15\xbb\xf2\x06\xbe\xcf\x19\xbe\x4a\x75\x99\x69\x5a\x6f\xfc\x20\x6c\x84\xd9\xe1\xf9\xa3\xb3\xe0\x6e\xb7\x77\x26\xc7\x46\x96\x6a\x33\x2d\x1c\xe0\x49\xf1\xe1\x35\x74\x77\x3b\x1e\xe0\xd5\x71\x55\x64\x19\x9a\xde\x74\xf9\x18\x68\x3a\x64\xe9\xdd\x86\x03\x7e\xf1\x26\xa0\x2c\x21\x40\x21\x58\x0c\xa5\xcd\x87\xd1\x39\xf7\x96\x83\xc7\x6e\x86\x1e\x38\x78\x1c\x9e\xe7\xd6\x53\x3e\x65\x85\x3a\xa2\xa0\xb6\x7f\x06\x8c\x46\xad\xd2\xef\xc2\xf5\x60\x8f\x28\x7e\xfa\x60\x0f\x9f\x17\x50\xb5\x1a\xf4\x3d\x1a\x87\x0d\x1a\x6f\xd2\x25\xdf\xbf\xfc\x2e\x77\xb7\x99\xa9\x2b\xf2\x85\xfa\xaa\xc0\xd3\xd5\x55\x71\x27\x6b\xcf\x01\xfe\xcb\xf5\x2f\xf5\xc7\x63\x46\x2f\x7d\x18\xdb\x69\x62\x57\x65\x04\x10\xeb\x05\xe0\x85\x68\x7f\xfc\x28\x4e\xef\xf7\xdf\xff\xb0\xb7\x01\xdd\x37\xe9\x36\xc7\x6d\xf4\x83\x97\xdf\xfc\xb1\x8c\x6d\x58\x69\x5e\x9e\xb9\xe7\x43\xb3\x31\xdb\x49\x9a\xbe\x8e\x8d\x23\x5f\x50\x41\xd0\x67\xa9\x9d\xb5\xba\xc3\xf3\xbc\x46\x6b\xa3\x37\xba\x1d\x54\x70\x35\x1e\xd2\x37\x7a\x83\x5f\x3c\xd7\xff\xb8\x21\x2f\x69\x9b\x8a\xcf\x90\x24\xe0\x6c\xd1\x2d\x1f\x97\x7d\x47\x6a\x4f\xe0\x1b\x99\x23\x49\xec\x23\xec\x7f\xf9\x36\x3f\x8a\xa7\x2b\x46\x13\xbe\xc0\xbc\xa9\xbb\x19\x9d\x89\x55\x3d\xed\xc1\x27\x37\xb0\x1f\x0d\x37\x70\xf0\xff\x82\x47\xd4\xad\x51\xf0\x19\xd7\xb9\x74\x1f\x9a\xad\x61\xd4\xbb\xa7\x5c\x66\xfc\xab\x3e\xa2\xc1\xf1\xe7\x00\x1f\x3c\xd8\x6a\x15\x24\xfd\xa1\x82\xb0\x75\x29\xa0\x87\x83\x4c\x49\x20\x74\xd5\xfc\x28\x14\x74\x47\x39\x2d\x92\x23\xb5\x29\x85\x4b\x17\x2c\x12\x53\x25\x78\x14\x0b\x5e\xd2\x3a\xdd\xb3\x9b\x9c\x93\x52\xc5\x59\xc1\xae\xb0\x2a\xe1\x8e\xba\xa9\xd8\xd9\x05\xd8\xd7\x45\x76\xa6\xe7\x3e\xc2\x52\x07\x0f\x42\x61\x1d\x3d\x7a\x2e\x86\xed\x21\x17\x82\xa6\x81\x6d\x03\xee\x94\xb0\xe1\x1d\xd0\x8a\x8f\x8a\x93\x66\x44\x31\x1d\xdc\xd4\x63\x49\x3e\x51\xe1\xb4\x40\x50\xb8\x74\x6e\x25\x37\xdb\xed\x21\x1a\x3d\x50\x6c\xb8\x03\x87\x86\xed\x78\xe0\x31\x45\x24\xf9\xf9\xe7\x71\x05\xf1\xb5\xa5\xac\xd4\x0d\x15\x9d\xde\x35\xa5\xef\xd9\xcd\x55\xfa\x41\x1c\x71\xf4\x8c\x6d\x40\x9e\x21\xf6\xd8\x83\x8e\x49\x69\xec\x1e\x0e\x87\x61\x09\xfb\x53\x3d\xbd\x44\x40\xde\x66\xa0\x81\x9f\x4c\xc4\xd9\xa3\x81\xff\xff\xd9\xa8\x8a\x06\x17\xf9\x41\x02\x9f\x3e\xb7\xce\x57\xbf\x85\xc2\x42\xc7\xec\x5c\x0e\xcc\xf9\x2c\x98\x02\x0f\xbf\x7c\x31\xfe\xb1\x2a\x5e\x33\xb3\x6e\xde\xd1\x58\xc9\x8b\x26\x3d\xa4\x31\xf9\xa3\x9b\xda\xf8\xf2\x0b\xe1\xf1\x09\x57\xa0\x17\x2c\x70\x67\xf1\x1b\x45\xb4\xb7\xbc\xf6\xca\x50\xb7\x89\xc0\x7d\x9a\xb2\x2f\x1e\x08\xae\x96\x62\xaa\x43\xba\xef\x40\xe9\x0d\x8f\xff\x8c\x33\x50\xd7\xff\xfd\xeb\x07\xd4\x12\x1e\x0e\x30\x6e\xcc\x0f\xff\xd5\xc2\xe0\x37\xc8\xe4\x91\x11\xd0\x7a\x5f\x7e\xfd\x60\x4c\x56\x94\x14\x0d\xf2\xf4\x44\xe4\x35\x93\xb4\x42\x0d\x88\xf9\x56\xc8\x51\x54\xf4\xde\xc8\xe4\x73\xa6\xc2\x7f\xcb\x30\x2a\x53\x17\xa3\x5b\x67\x9c\x52\xa7\x35\x2e\xbd\x54\x65\xd2\xa4\xa7\x6b\x6a\xd8\xb8\x08\x20\x39\xfa\xbe\xfc\x78\x33\x65\x47\xe4\x25\xf2\x7c\x43\xba\x6c\xd2\x58\xd6\xc1\x78\x9d\x01\x7d\x9e\xf9\x5f\x6f\x39\xb5\xa2\x49\xe5\x49\xbf\x6d\x93\x9e\xf0\x3e\xcc\xe1\x9c\x33\x8d\x77\xe1\xfc\xe5\x4a\x58\xf6\xdf\x38\xe6\x33\x7c\x3f\x54\x88\xeb\xba\xc7\x35\x51\x83\xfd\xd3\xd0\x02\x94\x8e\x22\x44\xa6\x4a\xdf\xbc\xe4\x13\x9a\x71\x6d\xe1\xbf\xc1\x8f\x26\x9e\xdd\xdb\xa2\xcf\xc2\xca\x70\x01\x30\x12\xb0\x39\x16\x89\x3b\x42\x2d\x8e\xad\xc8\x8d\x3c\x4f\x87\x54\xe8\x45\x96\xbb\xd9\xda\x81\x16\xf3\xb7\xe1\x12\x39\x3c\xcb\x23\x2f\x4d\x39\x36\xd1\x36\xd2\xa1\x17\xb8\x8e\xb5\x75\x03\x5f\x57\x8e\x5b\x70\x89\x1c\x81\x9e\x00\xa1\x1d\xd9\x5a\x7d\xee\xf9\x58\x61\x8e\xa3\x29\xc0\x4d\xb8\x44\x80\xcd\x2c\x83\xf2\x5d\x2f\xd0\x21\xe7\x3a\x5b\xcb\x73\xbd\xad\x9e\x14\x37\xa0\x12\x19\xb6\xb3\x8c\xc9\x75\xec\x8d\x16\x39\xc7\xf5\x2c\x37\xda\xfa\x9a\x52\xdc\x84\x4b\x07\xb7\x9e\x23\xb2\xec\xad\xb3\x09\xb5\xcc\x36\xb4\x82\xc8\x0d\x3d\x3d\x01\x6e\x81\xa5\xfc\xcf\xf3\x4e\xb6\xa3\xa9\x2f\xdf\x0a\x5d\x2f\x74\x34\xa5\xb8\x1e\x95\x0a\x31\xc7\x35\xa1\xe5\x57\x64\x07\x3a\x4a\x43\xba\x71\xdc\x30\xf2\x75\x84\xb8\x09\x95\x0a\xa1\xe5\x97\x10\x9d\xad\x1f\x6e\x35\xe8\xb8\xbe\xb5\xdd\x78\x5e\xa4\xc9\xfd\xf5\xa8\x94\xfb\x39\x4e\x09\x93\x0b\x1d\x1d\x2f\xee\xd9\x96\x6f\x07\xb6\xd6\x68\xb8\x09\x95\x0a\x31\xc7\x2b\xe1\x1e\x77\x36\x7a\xd4\xc2\xc0\x0d\xb5\xa6\x87\x5b\x40\x89\x08\xae\x96\x3f\xc2\x64\x02\x5f\x67\x16\x72\xb7\x96\x63\x3b\xbe\xd6\x40\xbe\x09\x95\x72\x3f\xc7\x1b\x61\x72\x61\xa4\xe3\x38\x90\xf3\x8e\xb6\xae\x9e\x37\xba\x09\x95\x0a\x31\xd7\x1b\x45\x9e\x4e\x8f\x3b\x11\x32\x5a\xd4\xe7\xba\x42\x5c\x8d\x4a\x85\xd0\x8b\x92\x74\x28\xf8\xd8\x2c\x02\xbd\x19\xf9\x3a\x3c\xca\xf1\xbc\xb0\x08\x05\xea\xae\x16\x39\x3c\xc9\x06\x7a\xa3\xf7\x26\x54\x2a\xc4\xbc\xb8\x08\x93\x73\x35\xc8\x85\x38\x12\xb6\x43\x7d\x19\xae\x03\xa5\xcb\x04\xdd\x88\xc8\xb6\xb5\x3c\x5d\x60\xa1\x29\xdf\xd3\xe7\xfd\x4a\x50\xca\xfb\xcc\x68\xc8\xd6\x8a\xe4\x51\xe8\x18\x7a\x5b\xad\x89\xf8\x06\x4c\x2a\xc0\xbc\x45\x1a\x22\x66\xeb\xb8\x3a\xb4\x92\xf2\xb7\x91\x6e\x4c\x7a\x35\x28\x15\x41\x73\x7d\x86\xc9\xe8\x98\xa9\x8d\x03\x96\x8d\x56\x10\x77\x0b\x28\xe5\x7d\x96\x0f\xd2\xa2\xe3\xba\x76\xa8\x67\x3a\x57\xc1\x51\xb6\x67\x79\x1d\x0d\x3a\xa6\x6d\x39\x9b\xcd\x56\x6f\xd0\x5e\x87\x47\x18\xf7\x97\xdb\x06\xb2\x2d\x2f\x74\xb7\x7a\x66\x72\x1d\x1e\xe5\x78\x96\x87\xd1\x23\xe4\x07\x81\xde\x22\xe5\x4a\x3c\xca\xf8\x2c\xcf\xa2\x49\x68\xe3\x74\xde\x7a\x09\xc6\x15\x3c\xca\xf8\x62\x91\x0c\xa6\xe0\x3a\x8b\x6a\x5a\x86\xa3\xfc\x2e\xed\x43\xb0\x29\x06\xd1\x46\xcf\x7b\x5f\x87\x47\x19\xbf\x83\x17\x71\x23\x47\x6f\xf1\x77\x25\x1e\xdd\x10\x5c\xd2\x8b\xb8\xae\xbf\xa8\xdf\x53\xf1\x28\xc7\x77\xf0\x22\xc8\xc1\xba\x4b\xda\xb6\x8a\x47\x19\xbf\x83\x17\x71\x9c\xd0\x5b\x94\x71\x05\x8f\x32\xbe\xa4\x17\xb1\xc3\x6d\xb0\x24\xc7\x2a\x1e\xe5\xf8\x0e\x7e\xc4\xf6\x23\x7b\xb1\x60\x64\x00\x8f\x32\x7e\x07\x3f\x62\xbb\xa1\xe6\x96\xea\x75\x78\x74\x5f\x7e\x49\x3f\x62\x3b\x6e\xa4\xb7\xe8\xbc\x0e\x8f\x72\x7c\x07\x3f\x62\xdb\x9e\xe7\x2c\xc9\xb8\x82\x47\x19\x5f\xda\x8f\x60\x3a\xee\x62\xfa\xee\xa1\x51\xa6\x17\xf3\x21\x18\x1f\x05\x69\x4b\xb2\x2b\xc3\x51\x7e\x97\x5f\xcd\xd8\xf6\x66\xb9\x18\xbb\x0f\x47\xd9\x5e\xda\x7f\x10\x3a\x91\xd6\xc6\xdb\x75\x70\x84\xed\x70\x31\xef\x41\x08\x78\xcb\xf2\xeb\xf5\xf9\x5d\xda\x77\x10\x2b\xd4\x3b\xaf\xb8\x0e\x8e\xb2\x7d\x0f\xcf\xe1\x7b\x8b\x2d\x63\xfa\x70\x94\xed\x45\x7d\x87\xa7\xb9\x9f\x76\x15\x1c\xe5\xf7\x1e\xbe\xc3\xf5\x17\xb5\x0e\x19\x8e\xb2\x7d\x0f\xdf\xe1\x84\x8b\x5a\x87\x0c\x47\x4f\xd3\x17\xf5\x1d\x8e\xb3\xd8\x66\x7d\x1f\x8e\xf2\x7b\x0f\xdf\x61\x87\x8b\xce\x2c\x32\x1c\x65\xfb\x1e\xbe\xc3\xf6\x17\xf5\xd4\x32\x1c\x65\x7b\x51\xdf\x61\x3b\x8b\x0e\x42\x19\x8e\xf2\x7b\x0f\xdf\x61\x6b\x5e\x94\xba\x0a\x8e\xb2\x7d\x8f\x75\x0b\xee\xd0\xa5\xf8\x1e\xc0\x23\x8c\x47\x8b\xae\x5b\xd0\x6b\x31\xf7\x31\x80\x47\x39\xbe\xcb\xba\xc5\x5e\x76\xd9\x62\xf7\x56\x2d\xd1\x1d\x76\x3f\x7e\x04\xdb\x8b\xee\x7d\xa0\xd7\xa2\x5b\x08\x0a\x1e\xe5\xf8\x1e\x7b\x1f\x3f\xc4\xb0\xef\xe4\x43\x96\xdc\x91\x54\xf1\xd8\x3d\xb8\xe5\x42\x90\xa5\x78\xb5\x25\x26\x11\x9b\xbf\xad\x97\x8a\x2f\x90\x5a\x2f\x15\xcf\xc7\x5d\x2f\x15\x8f\x93\x5b\x2f\x15\xcf\xc4\x5d\x2f\x15\x4f\xe8\x6b\xbd\x54\x3c\x03\x75\xbd\x54\x3c\x46\x6e\xbd\x54\xac\x0f\xba\x5e\x2a\x1e\x25\xb7\x5e\x2a\x9e\x81\xba\x5e\x2a\x96\xc8\xad\x97\x8a\xb5\x41\xd7\x4b\xc5\xc3\xbe\x7a\xbd\x54\xac\x07\xba\x5e\x2a\xee\xd3\x59\x2f\x15\x0f\xe3\xad\x97\x8a\x5b\x42\xeb\xa5\xe2\x11\xbc\xf5\x52\x31\x37\xc5\xf5\x52\xf1\x30\xde\x7a\xa9\x58\x74\xb0\xeb\xa5\xe2\xf5\x52\xf1\x34\xa1\xf5\x52\xf1\x30\xde\x7a\xa9\xb8\x23\xb4\x5e\x2a\x5e\x2f\x15\x8f\xd3\x59\x2f\x15\xaf\x97\x8a\x27\xac\x70\xbd\x54\xbc\x5e\x2a\x1e\x77\xa9\xeb\xa5\xe2\xf5\x52\xf1\x28\x9d\xf5\x52\xf1\x7a\xa9\x78\x82\xce\x7a\xa9\x78\xbd\x54\x7c\x81\xd0\xb2\xcb\x96\xf5\x52\xf1\x58\x7f\xae\x97\x8a\xd7\x4b\xc5\xe3\x24\xec\xa5\x78\xb5\x25\x26\x11\x9b\x43\xdf\xd6\x3c\xf1\x6d\xd5\xca\x37\x31\x63\x66\x26\x1f\x4e\x7d\x3f\xb3\x6d\xb9\xc1\xe8\x57\x34\xd3\x87\x97\xbe\x53\xf9\xe2\xbd\x67\xf2\x16\x7f\x25\x39\xd2\x8f\x89\xbf\x0d\x9b\xca\xff\x59\x7e\x80\x7b\x8a\x3d\xd0\xe9\x3a\xb1\xad\xdd\xb5\x1b\xb9\xa2\x7d\x07\x1e\x55\x13\xf8\x71\x52\x4e\x51\x96\x55\x71\x6c\x4e\xd9\xa3\xb1\x2f\x12\x9a\x67\x5a\xca\xd8\x84\xbb\xd5\xc2\x99\xe4\x78\xb2\x47\x9c\x9b\x42\xcd\xe9\xc4\x3f\xe3\xac\x09\xc6\xdf\xa5\xa7\xb2\xa8\x1a\x40\x13\xef\xfe\xf2\xc5\xf8\xf7\x63\x4a\xb3\xed\x20\x45\x27\x46\x73\x84\x46\x0e\xdf\x1a\x56\x52\x91\xef\x94\x47\x25\x38\xe3\x31\xce\x74\x7d\xce\x33\x9c\x6a\xf9\xbd\x38\xa3\x42\x98\x18\xff\xf4\x6d\x63\xd4\xe7\x12\x43\xe2\x2f\x50\xef\x27\x94\x6a\xbf\x1d\x9e\x92\x37\x37\xec\xcb\xe5\x11\x65\x4c\x8b\xe6\x33\x64\xb5\x0c\xc4\x09\x65\xe0\x09\x90\xbc\x48\x2f\x20\x3b\x43\xa3\x38\x90\xd2\x43\x51\x34\xb0\xfa\xb9\x66\x24\x10\x39\x83\xe6\xfe\xc1\xc5\x8f\x86\x55\x9e\xeb\xa3\xa4\x21\x81\x14\x7d\x78\x3a\xd7\x8d\xb1\x87\x04\xad\xc6\xa9\xe7\x18\x12\xa8\x0d\x06\xc3\x40\x7f\x3b\xc1\x24\x05\xc6\x27\x21\xd3\x87\xe3\xe0\x34\x12\x9f\x09\x01\x0b\xe7\x4d\x00\x48\x41\x6a\x9a\x4b\xc7\xa6\x5f\x13\x8f\x0d\x78\x00\xc2\xb5\x2f\x43\xb8\xd3\x10\xbe\xb7\xbd\x08\xe1\x77\x10\xc0\xd8\x9f\x91\x82\xf3\x9d\x90\xac\x6b\x20\x5d\xc4\xfe\x8c\x1c\x57\x65\x76\x99\xf8\xda\x84\x8d\xfc\x6b\xef\x07\x78\x89\x22\xa7\x65\x85\xa5\x0a\xc0\x39\x05\x18\x33\x42\x09\x62\x09\x67\x86\xa1\x99\x5d\x68\xbe\x53\x3a\x6c\x94\x86\x16\x4e\xc7\x02\x13\x93\x96\x31\x1c\x35\x41\xab\xd7\xca\xc6\xab\x93\x04\x1e\xe6\x29\x4d\x12\x9e\x2d\x44\xce\x10\x28\x7c\x75\x7f\x61\x32\x43\xfb\xf3\xa1\x97\x8a\xe4\x05\x56\x4d\x1a\x83\xcc\x8c\x61\xce\xbf\x96\x5f\x4c\xae\xc9\x3b\x06\x55\xad\x8a\x57\x8b\x64\x50\x61\x89\x3b\xc7\x33\x50\x53\xed\x12\x79\x78\x5d\x51\x2f\x42\xfe\x57\x21\xef\x8d\xb5\x7f\x32\xcb\x73\x55\x32\x71\x2e\xe4\xbe\x42\x95\x33\xa2\x81\xe9\x26\x12\x43\x4f\x66\x51\xe1\x1c\xe0\x63\x95\xbb\xe4\xed\xa4\xf2\x53\x05\xe1\x68\xc2\x9e\x2e\xe1\x0f\xa9\x9b\x80\xea\x79\xba\x41\x97\x56\x9d\x34\x98\x50\x62\x97\xbe\x9c\xb1\x01\xde\x47\x35\xd2\xa6\x41\x14\x34\x32\xd5\x40\xd4\x37\x20\xf9\x07\xda\xb4\xb5\xa2\x0f\xe5\x09\xae\xa5\xcc\x92\x8e\x52\xd8\xe6\x88\x6e\x2d\x04\x9e\xf6\xb8\x93\x71\x56\xb7\x97\x14\xd2\x8c\x0d\x4a\x06\xc4\x07\x31\xdf\x4a\x05\x33\xe2\xf1\x3a\x8f\xd9\x82\x7a\x43\xa0\x24\xe9\x6f\x8b\x3c\x99\xb7\xa5\x9b\x27\x68\x0a\x42\xc0\x93\xea\xf4\xf9\xe1\x42\x6f\x6d\x7b\x30\x07\xb6\xc0\x4a\x96\x96\x6d\x52\x52\x82\xd6\xcf\x67\x39\x94\x3e\x67\x24\x07\xea\x58\x8e\x53\x42\x2b\x29\xcc\xac\x78\x2a\x28\xcf\x5d\x96\xa2\xcd\x57\x65\x80\x9a\x42\xd6\xf2\x53\x81\xfa\xbe\x3c\xbe\x23\x07\xd3\x76\x3d\x01\xa0\x69\xc5\xa5\xde\x17\x6b\x83\xb7\xb4\x16\xea\xf1\x2c\x4e\x75\x53\x15\xcf\x50\xca\x69\x49\x8b\x90\xb9\xd7\x47\x50\x55\x58\x70\xdf\xf0\x07\xc8\x77\xbe\x6c\x04\x92\xe5\x79\x96\x9b\x91\x4c\x42\xa4\x95\x54\xaf\x13\x40\x1c\x75\x62\x43\xec\xd9\xd9\x74\x2e\xb5\x16\x87\xd2\x70\x7d\x21\x11\xb2\x4a\x93\xc9\x2a\x64\x4d\xef\xe1\x20\xd7\xf9\x3c\x40\x56\x1c\x96\xbd\xea\xb8\xd7\xa9\x66\x94\xdc\xd2\xdc\x22\x40\x1e\x1f\xf1\x60\xad\x1b\x50\x91\xac\x67\x0f\xbf\x7c\xf9\x88\x1c\xe6\xb9\x8a\xe1\xbf\xa0\x98\x07\x8d\xbd\xff\xf8\xd7\x7f\xfe\x75\x0f\x6a\x68\xc5\x75\x6d\x9d\x40\x89\x83\x90\xff\x0d\x00\x00\xff\xff\x91\x23\xfa\x9b\xdf\x9b\x00\x00") +var _web_uiStaticBaseCss = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\x5d\xeb\x8f\xa3\xb8\x96\xff\x5e\x7f\x85\xb7\x5b\xa3\xe9\x6e\x15\xb4\x79\x25\x21\xa5\x59\xcd\xce\xd5\xcc\x6a\xa5\xdd\x2f\xfb\xf8\xb4\xda\x95\x1c\x30\x09\x2a\x82\x11\x90\xaa\xd4\x5c\xcd\xff\xbe\xf2\x03\xb0\x0d\x24\x26\x21\xa3\xd5\xbd\x54\x8d\xa6\x12\x63\xff\xce\xc3\xf6\xb1\x7d\x7c\x9a\xb3\x23\xf1\x07\xf8\xeb\x13\x00\xd6\x3b\xde\xbd\xa6\xb5\x95\x90\xbc\xb6\xaa\x23\x21\xf5\x21\xcd\xf7\x5b\x80\xf2\x3a\x45\x59\x8a\x2a\x1c\xbf\x3c\x01\xc0\x1f\xa7\xbf\xe3\x2d\x70\x56\xc5\x99\x16\x45\x24\x23\xe5\x16\x7c\x0e\x82\xe0\x05\xfc\xf1\xf4\x84\x18\x5e\x53\x1a\xe2\x8d\x1f\x05\x6d\xd3\x77\x9c\xee\x0f\xf5\x16\xac\x20\x7c\x91\xa8\xd6\x25\xca\xab\xb4\x4e\x49\xbe\xe5\x2d\x01\xb4\xdd\x0a\x60\x54\x61\x2b\xcd\x2d\x72\xaa\x59\xed\x23\xf9\xdd\xb8\x6a\x65\x5a\x93\x18\x56\x34\xa8\x05\xfe\x78\x02\x00\x6d\x0f\xe4\x0d\x97\x4c\x0b\x00\xd4\xf8\x5c\x5b\x31\x8e\x48\x89\x78\xd3\x9c\xe4\xf8\x85\x3d\x6a\x54\xb4\x71\x57\xee\xce\x17\x8d\xed\xea\xb4\xab\x33\x2c\x5a\x8b\x2a\x69\x7e\xc0\x65\x2a\xf0\xbb\x4a\x0a\xa1\x9e\xca\x69\x5f\x44\x24\xc6\x4a\x77\xac\x42\x3f\x0c\x11\xa5\xbf\x43\xd1\xeb\xbe\x24\xa7\x3c\xb6\x9a\x87\xbf\xae\xe8\x2f\x6b\x68\x1f\x70\x56\x58\xbb\x8c\x44\xaf\xac\xbd\xdc\xef\xbe\xda\xef\xa1\x47\x7f\x59\xab\xea\x88\xb2\x4c\xa1\xb7\x5e\xaf\xd9\x93\x83\xf3\x0c\x0e\xee\x33\x38\x78\xcf\xe0\xe0\x3f\x83\x43\xa0\x54\x6b\xc6\x8e\x28\x66\x4a\x63\xfa\x4e\x48\x79\xdc\x82\x53\x51\xe0\x32\x42\x15\xee\x8d\xa3\x35\x1f\x47\x03\xbc\x1c\x7c\x7b\x57\x62\x14\x47\xe5\xe9\xb8\xab\x18\x6c\x81\xe2\x38\xcd\xf7\xd6\x8e\xd4\x35\x39\x6e\x41\xc0\x05\x19\xa7\xc6\xf4\xad\x01\x21\xb5\x6b\x64\x92\x45\xc9\x95\x3d\xa0\x5a\xaa\x87\x8e\xcf\xf7\x43\x5a\x8f\xca\x22\xab\xda\x2d\xce\xbc\x3b\x76\x24\x8b\xbb\x8e\x90\x5b\xb0\xc7\x19\xfd\x3e\xa8\x78\xbb\x40\x39\xe6\x7d\xb2\x23\x65\x8c\x4b\xeb\x3d\x8d\xeb\xc3\x16\xb8\x5c\x78\x51\xa8\x0d\x81\x91\xa9\xa9\x0b\x06\xa0\xed\x5d\x9f\xa5\x86\xad\xaa\x1b\x1a\x91\xe9\x6d\xa6\x35\x60\x23\x40\xe8\x90\xff\xb1\x0e\x18\xd1\x51\x24\x86\x81\x18\x53\x5b\xe0\xc0\xe2\x0c\xd6\x5c\xa9\x43\x43\x80\xd1\x2d\x50\x89\xf3\x5a\x54\x19\xea\x8e\xb1\x0e\x91\xf9\x38\xf8\x82\x93\x3a\xed\x2c\x45\xcb\x87\x5f\x9c\x39\x2f\xf4\x43\x8b\x2a\x0d\x2a\x17\x36\x85\xda\x10\x56\xca\xe8\x8c\x94\xf9\x29\x51\x9c\x9e\xaa\x2d\xf0\x9a\xc6\xa4\x40\x51\x5a\x7f\x6c\x01\xb4\x37\x8d\x61\x1a\x66\xb0\xb3\x0a\x1a\x27\x8d\x25\x69\xed\xe4\xd8\x94\x6f\xdb\x69\x53\x85\xfe\x1c\x51\xb9\x4f\x73\x2b\xc3\x49\xdd\xce\x68\x49\x21\x56\x4d\x0a\xae\xdd\x8b\x3c\xda\x39\xb1\x28\xb5\x96\x4d\x9d\x1f\x66\xb6\x2f\x43\xf0\x2f\x39\xa9\x3b\x14\xc1\x1c\xe3\x41\xe2\x2d\xc9\x08\xaa\xb7\xa0\xa4\xc2\x0c\xca\xb7\xea\xe4\x1b\xea\xa4\xbe\x16\x95\xf1\xe1\x5d\x1b\x1f\xcd\xf0\x80\x0f\x19\x1e\x9a\x96\xbc\xe9\x83\xa1\xd7\xa7\x17\x21\xff\xdf\x28\x5e\x30\xd2\xee\xa9\x24\xad\x0b\xe3\xd0\xfc\xd5\x04\x92\x1b\x16\xd7\x94\xa3\xad\x99\x23\x30\x62\x25\xd5\x71\xfa\x13\x41\x69\xe4\xdb\xd1\x01\x8b\x25\x5f\x6f\xba\xba\xd4\x54\x7c\xa4\x73\xa5\x6d\xac\x2f\xb7\x4e\x30\xa2\x2f\xd4\xec\x61\x84\x2d\x74\x20\xfc\x81\x4b\x7b\x10\xdd\xd2\x0d\x4a\xc3\x65\xc9\xa9\x40\x96\xe6\x18\x95\xa2\x95\xc1\x9a\xd4\x6b\x72\x75\x41\xd2\x5b\x5c\x5d\x8d\xb4\x06\xc6\xb5\x25\xa5\x09\x9d\x65\x69\xde\xf4\x92\x98\x81\x5c\xcb\xf2\x72\x32\xd4\xaa\xaa\xc1\xa9\x99\x7e\x7c\x8e\x6c\x01\x54\xbb\x55\xab\x9b\xa5\xda\xa4\xa2\x0d\x44\x01\x27\xdd\x22\xf4\xba\xd5\x3a\x90\x32\xfd\x9d\xe4\x35\xca\xd4\x1e\xee\xfa\x53\xcc\x48\x3a\xd5\xd5\x2e\x0f\xda\x2a\x62\x2e\x97\xbc\xdc\x69\xcb\xe3\xb4\x2a\x32\xf4\xb1\x05\x6c\x9b\x3a\x20\x6e\x75\x20\x65\x7d\x49\x4b\x70\x44\x4b\xf9\xab\xb2\xb5\x8e\x4e\x65\x45\xa7\x5c\x41\xd2\xbc\xc6\xe5\xd8\x0a\xff\x39\x41\xf4\x57\x41\x44\x51\x9d\xbe\x35\x66\x69\x70\xec\x4a\xcb\xbd\xc9\xb8\xbd\x52\xbd\x9a\x52\x9b\x4c\xa8\x6c\x5e\x53\xdb\xc0\x74\xa7\x11\x69\x88\x09\xb5\xfc\xe3\xf0\x9e\x6a\x12\x46\xcf\x88\xdc\x6a\x23\x6e\xb2\x12\xb7\xd8\x89\x1b\x2c\xc5\x04\x5b\xd1\x68\xb0\x3f\x3c\xa5\x73\xa1\x5d\x93\xc2\xda\x95\x28\xe7\x87\x0a\x79\xb5\x6c\xa6\x66\x07\xa0\xec\x5d\xc1\xa9\xcc\xbe\x7c\x8a\x48\x5e\x9d\x32\x2b\x23\x7b\x62\x17\xf9\xfe\xd3\x57\x00\x41\x4e\xac\x12\x17\x18\xd5\xda\xe9\x92\x2f\x1f\x1e\x5d\xf9\x3c\x81\x2d\xa6\x5f\xf3\xb5\x99\xf2\x1e\x6c\x8e\x3b\x35\x29\x9a\x0e\x6d\x97\xd0\xa6\xb6\xb2\xb1\x73\xb4\xc2\x76\xad\x11\xe5\x42\xb2\xa6\xb8\x11\xee\x98\xe6\x56\x43\x35\x0c\x94\x93\x50\x8b\x50\x9c\xc1\x67\x8c\x31\xa8\x48\x96\xc6\x62\x52\x0b\xbe\xec\x5d\x9d\x2b\x46\x54\x55\x1d\xc7\xef\x16\xb3\xd6\xca\x48\xcd\xad\xb8\x24\x45\x4c\xde\x73\xd5\x30\xa2\x53\x4d\xd4\xca\xa7\xcc\x6e\xaa\x5a\x47\x9c\x9f\xa8\x41\x46\xb2\x73\x61\x7c\xd3\x3c\xbc\xb3\xd1\xb7\x03\xca\xbe\x4e\x9c\x53\xa7\xcc\x21\xed\x7c\x65\x3c\x8d\x06\xda\x99\xcc\xa4\x7e\x33\x93\xc9\xd4\x6b\x35\xad\x49\x63\x79\x2e\xf5\xc9\x88\x37\x26\xc0\xf4\xf7\xc2\xb4\x4c\x3c\xfa\x2b\x8e\xf9\x62\x5c\x99\x3b\x40\x56\xc3\x4e\x83\xb1\xe3\xbe\xd6\xcf\x86\xbd\x6c\xe0\x8a\x33\x6c\x75\xb5\x87\xaf\x3a\xe8\x8c\xda\x4c\x27\x72\x7d\x69\x36\x51\xc2\xf5\x16\x17\x17\xe8\xeb\xc2\x5f\xab\x3f\x0d\xfc\x6f\xcb\xfb\xfa\x04\x00\x39\xd5\x74\x19\xec\xbc\xac\xa2\xc0\xd2\x1d\x6f\xec\x83\x55\x15\x28\x62\x95\xdf\x4b\x54\xb0\xea\x6f\xb8\x4c\x32\xf2\xbe\x05\x87\x34\x8e\x71\xde\xba\x07\xbb\x07\x38\xcb\xd2\xa2\x4a\x2b\x61\xa5\x77\x75\xae\xee\x15\x07\xa6\xfd\xc5\x49\x2f\x30\x12\x12\x9d\x2a\x81\xd1\x93\x62\x5c\x8e\xc1\xca\x3b\x72\xb6\xaa\x03\x8a\x29\xbb\x9d\xdf\x82\x92\x51\xf7\xa3\x73\x81\xd2\xe5\xac\x28\xd3\x23\x2a\x3f\x34\x2d\x74\xee\xe6\x09\x2e\x31\x66\xac\xf8\xb2\xdb\xdb\xfa\x69\xe4\x34\x9b\x3b\xa4\xe8\x75\xe2\x25\xa1\x7e\x76\x96\x5d\xee\x2d\xe6\x3b\x2a\xf3\x6e\x13\xda\x54\xfd\xed\xb7\x7f\xfa\x4b\xf0\xeb\x3d\x22\x08\x04\x5d\x04\x41\xce\x40\x84\x24\xd9\x24\xae\x2e\x42\x92\x84\xae\xbb\xd3\x44\xa8\x4e\x51\x84\xab\x4a\x13\x61\xb3\xfa\xc5\x0f\xd6\xf7\x88\x20\x10\x74\x11\x04\x39\x03\x11\x36\x49\xdc\x17\x61\x15\x85\x81\xef\x69\x22\xc4\x28\xdf\xf7\x66\x53\x1c\xfb\x38\xd8\xdc\x23\x81\x40\xd0\x25\xe0\xd4\x0c\x04\x88\x12\x27\x71\x74\x01\x62\xe8\x6e\x3c\x7f\x6c\x7a\x3d\x74\x12\x70\x4a\x73\x8c\x7f\x05\x90\x29\x25\x27\x8a\x1c\xbd\x6b\xa8\x51\x6a\x7a\x85\xbe\x24\x51\x14\x69\xfd\x7d\x4c\xf3\xc6\xc3\x20\x6f\x62\xda\xad\x74\xbb\xff\xdf\xb4\xdb\xe8\xa6\x29\x73\x51\x98\x34\xf5\x8a\x33\x08\xe8\xf9\x83\xff\x1d\x72\x2b\x04\x9a\xff\x5d\x73\x68\x3e\xc9\x7b\x77\x3b\x8d\x08\xdf\xa7\x49\xfb\xfc\x40\x3f\xcc\x78\xca\xc9\x64\x0b\x56\xc5\xb9\x75\x94\xf4\xc0\xaa\xb7\xc6\xee\xf4\x5d\x5e\x49\x9a\x65\x5b\x10\x9d\x4a\x3a\x46\xfe\x42\x35\xdd\x5c\xfa\x54\xb5\x45\x3b\xa0\xb0\xd2\x1a\x1f\xd5\xd3\x12\x1c\xdd\x02\x8e\xfa\x8b\x9e\x7a\xc2\xbb\x83\x87\x28\x27\x50\x8a\xf9\x39\x4c\x94\x2d\xb7\x46\xdd\xad\x91\xde\x3f\x7a\x41\xe3\xf5\x78\x1e\xab\x9a\xe6\x74\x11\xd6\xbc\x75\xec\x6e\x87\xaa\xbb\xfb\xf4\xd2\xf7\x35\x07\xc2\xd7\xdc\xb9\x5c\x0d\x48\x34\x87\x68\xee\x77\xef\xdd\x03\xb4\x67\x43\x79\xb2\x79\x57\x08\xf4\xc5\x1d\x72\xc8\x29\x36\x02\x63\xdc\xbf\x6c\x68\x4c\x95\x31\x15\x5b\x7c\xb0\x0e\x38\x2b\x24\x1b\xf9\xa8\x2b\x80\x61\xc6\x4c\x7d\xdb\x83\x18\xfc\xfb\x3c\xee\xc8\x41\xe8\x88\xe4\x31\xce\x2b\x1c\xff\x79\x44\xfa\x83\x5d\xab\xa5\x0e\x8f\xfe\xbd\x74\xcf\x1c\xf9\x9a\x41\x67\xf6\xa8\x2d\x6c\xb4\xec\xab\x77\x5d\xda\x0d\xfa\xd0\xd0\x1a\xe2\xde\x8e\xc9\x69\x97\x61\xfa\x19\x5f\x95\x44\xae\xdc\x0e\xbf\xd6\xbd\xed\x4b\xd7\x29\x06\x94\x81\x9d\xa3\xe3\x75\x9a\xbc\xda\xe0\xfd\xcd\xd8\xdd\xa8\x74\xaf\x33\x85\x15\x50\x15\x28\x37\xe5\x87\xd6\x6d\x99\x1a\x3d\x7d\xf1\x9f\xa1\x33\x18\xff\x19\x3b\x89\xb5\x15\x8e\xe8\xdc\x2c\x68\x5e\xf0\x43\x57\xde\xbb\x64\x00\xf2\xf5\x01\xb7\x81\x3c\xd8\xa5\x7b\xdc\xe8\x48\xec\x0f\xfc\x5b\xb5\x74\x44\x59\x66\xac\x26\xe5\x72\x74\x2a\x8b\x9b\xae\x83\x07\xae\xbf\x3b\x65\x0c\xf9\xff\x06\xac\xdd\xa4\xc1\x79\xc4\x35\x8a\x51\x8d\x0c\x24\x6d\xaa\xb6\x72\x6a\xf7\x38\x03\x43\xd7\xed\xdd\xe0\xca\x5d\x79\x07\xdf\xa7\xcc\xae\x4e\xbb\xeb\x4c\xf3\x7a\xe3\x17\x61\x23\xcc\x0e\xaf\x1f\xdd\x08\xee\xbc\xbd\x13\x39\x06\x59\x6a\xcc\xb4\x74\x81\xa7\xec\x0f\x6f\xa1\xbb\xdd\x36\x1b\xbc\x2a\x2a\x49\x96\xed\x50\x69\xca\xc7\x40\xd3\xa1\x91\xde\x39\x1c\x80\xe4\x85\x46\x45\x81\x51\x89\xf2\x08\x2b\xce\x87\xd1\x35\xf7\x9e\x8b\xc7\x6e\x85\x1e\xb8\x78\x1c\x5e\xe7\x96\x5b\x3e\xed\x84\x3a\xa2\xa0\xb6\x7f\x06\x06\x8d\x5e\xa5\xdf\x85\xcb\xc5\x1e\xb8\x7e\xb1\x97\x90\xf2\xc8\xd5\x0a\xf8\xe7\x88\xe4\x75\x49\x32\x25\xc8\xf7\xef\xde\xcb\xdd\x39\x33\x4d\x45\xbe\x52\x5f\x17\xf8\x72\x75\x5d\xdc\x8b\xb5\xa7\x00\xff\xdd\xf5\x2f\xb7\xc7\x63\x83\x5e\xf9\x32\xe6\x69\x12\xa1\x32\x12\x88\xfd\x86\xe8\x41\xb4\x3f\x7f\x34\xa3\xf7\xcb\x2f\xbf\xc1\x4d\xc0\xfd\x26\x9d\x73\x1c\x02\xc8\x8e\xdf\xcd\x63\x15\x1b\xd8\x69\x5e\x9c\x1a\xcb\x87\xe2\x58\x78\x92\x2e\x87\x63\xd3\x9d\x2f\x2a\x31\xea\xb3\xd4\xae\x5a\xdd\xe5\x79\x5e\x59\x3b\x72\xe6\xee\x20\xd2\xa8\x31\x49\xcf\x3c\x82\x5f\xbe\xd7\xff\xbc\x62\x3f\x8a\x9b\xaa\x59\x21\xd9\x86\xb3\x45\xb7\x7d\x5a\xf6\xbb\x95\xe6\x31\x3e\xb3\x35\x92\xed\x7d\x24\xff\x97\x0f\x9b\xab\x78\x7e\x62\xb4\xf0\x1b\xce\xeb\xaa\x5b\xd1\x85\x58\xe5\x7e\x87\xbe\xb8\x01\x7c\x06\x6e\xe0\xd0\xff\x05\xcf\x00\xda\x61\xf0\xf5\xc5\x20\x1e\x5a\x9c\x61\xf4\xd8\xd3\x46\x66\xfa\xa7\x3a\x90\x77\x21\xbb\xca\x47\xb3\xd9\x6a\x15\xa4\xfc\x43\x05\xc9\x75\x29\xa1\xaf\x07\x99\x52\x40\xf8\xa9\xf9\x59\x2a\xe8\xae\x72\x5a\x24\x47\x69\x53\x48\x41\x17\x62\x27\xa6\x4b\xf0\x2c\x17\xbc\xa5\x55\xba\x13\x91\x9c\x17\xa5\x8a\x32\x22\x42\x58\xb5\xed\x8e\xee\x54\xec\xc6\x05\xda\x55\x24\x3b\xf1\x7b\x1f\xe9\xa8\x43\x27\xa1\x74\x8e\x1e\xbd\x17\xa3\xe3\x21\x97\x36\x4d\x03\x6e\x83\xc6\x28\xd1\x81\x97\xa0\x08\x73\x71\xd2\x8c\x29\xa6\x83\xbb\xf4\x58\x91\x4f\x56\x38\x2f\x90\x14\xae\xdc\x5b\xa9\xcd\xb6\x3b\x9c\x90\x12\xcb\x0d\xb7\x28\xa9\x85\xc7\x83\xce\x29\x26\xc9\x8f\x3f\x8e\x2b\xa8\x39\x5b\xaa\x4a\x5d\x71\xd1\x79\xac\x29\xff\x2c\x22\x57\xf9\x17\x79\xc6\xf1\x3b\xb6\x01\x79\x86\xd8\x13\x0f\x3a\x26\x95\xb9\x9b\x24\xc9\xb0\x84\xfd\xa5\x9e\x07\x11\xb0\x8f\x19\xaa\xf1\x17\x2b\x80\x3f\x3c\x03\xfa\xff\xaf\xa0\x24\x35\x2d\xf2\x83\x18\xef\xbf\xb6\xc6\xd7\xbc\x85\xc6\x42\xc7\xec\x54\x0e\xac\xe9\x2c\x58\x12\x0f\xdf\xbf\x81\x7f\x2e\xc9\x7b\x66\x55\xf5\x47\x86\x41\x4e\xea\x34\x49\x23\xf6\x8f\x6e\x2a\xf0\xed\x3b\xe3\x71\x4f\x2b\xf0\x00\x0b\xda\x59\x4d\x44\x11\xef\x2d\xaf\x0d\x19\xea\x9c\x08\x8d\x4d\xd3\xfc\xe2\x81\x64\x6a\x39\xa6\x3e\xa5\xfb\x06\x94\x47\x78\xfc\x77\x94\xa1\xaa\xfa\xdf\x9f\x3e\xe5\x95\x85\x93\x04\x47\xb5\xf5\xe9\x7f\x5a\x18\xfa\xe1\x90\xc6\xf8\x59\xd4\xfb\xf6\xd3\x27\x70\xb1\xa2\xa2\x68\x94\xa7\x47\x26\xaf\x15\xa7\x25\x8e\xf8\xf0\x2d\xf1\x1b\x2e\x79\xdc\xc8\xc5\xe7\x42\x85\xff\x91\x51\x54\xa1\x2e\x41\xb7\xca\x1a\x4a\x9d\xd6\x1a\xe9\x95\x2a\x17\x87\xf4\xe5\x9a\x06\x63\x5c\x06\x50\x0c\x7d\x5f\xfe\x1c\x1d\xf1\x96\xc9\xcb\xe4\xf9\x35\x43\x55\x9d\x46\xaa\x0e\xc6\xeb\x0c\xe8\xf3\xd4\xfc\xeb\x2d\xa7\xd2\x34\xa9\x3d\xe9\xb7\xad\xd3\x63\x9a\xef\xad\xe4\x94\x0b\x8d\x77\xdb\xf9\xeb\x95\xa8\xec\x3f\x37\x98\xaf\xf8\x23\x29\xd1\x11\x57\x3d\xae\x99\x1a\xe0\x0f\x43\x07\x50\x3e\x8b\x8e\xa8\x2e\xd3\xb3\x17\x7f\x71\x9e\x01\x94\xfe\x1b\xfc\x6a\xd1\xd5\xbd\x2d\xfa\x2a\x9d\x0c\x67\x00\x63\x1b\x36\xc7\x66\xfb\x8e\xb5\x11\xc7\x76\xe8\x86\x9e\x67\x42\x6a\xed\x85\xb6\xbb\xda\xc0\xc0\x88\xf9\xfb\x70\x99\x1c\x9e\xed\xb1\x1f\x43\x39\x56\xe1\x26\x34\xa1\x17\xb8\x8e\xbd\x71\x03\xdf\x54\x8e\x7b\x70\x99\x1c\x81\x99\x00\x6b\x18\x42\xa3\x3e\xf7\x7c\xaa\x30\xc7\x31\x14\xe0\x2e\x5c\x26\xc0\x6a\xd2\x80\xf2\x5d\x2f\x30\x21\xe7\x3a\x1b\xdb\x73\xbd\x8d\x99\x14\x77\xa0\x32\x19\x36\x93\x06\x93\xeb\xc0\x95\x11\x39\xc7\xf5\x6c\x37\xdc\xf8\x86\x52\xdc\x85\xcb\x27\xb7\x99\x21\xb2\xe1\xc6\x59\xad\x8d\x86\xed\xda\x0e\x42\x77\xed\x99\x09\x70\x0f\x2c\xe7\x7f\x9a\x75\x82\x8e\xa1\xbe\x7c\x7b\xed\x7a\x6b\xc7\x50\x8a\xdb\x51\xb9\x10\x53\x4c\x13\xb4\xc3\x10\x06\x26\x4a\x73\x1c\xdb\x71\xd7\xa1\x6f\x22\xc4\x5d\xa8\x5c\x08\x23\xbb\x04\xed\x70\xe3\xaf\x37\x06\x74\x5c\xdf\xde\xac\x3c\x2f\x34\xe4\xfe\x76\x54\xce\xfd\x14\xa3\x44\xc9\xad\x1d\x13\x2b\xee\x41\xdb\x87\x01\x34\x9a\x0d\x77\xa1\x72\x21\xa6\x58\x25\xda\xe3\xce\xca\x8c\xda\x3a\x70\xd7\x46\xcb\xc3\x3d\xa0\x4c\x04\xd7\xc8\x1e\x51\x32\x81\x6f\xb2\x0a\xb9\x1b\xdb\x81\x8e\x6f\x34\x91\xef\x42\xe5\xdc\x4f\xb1\x46\x94\xdc\x3a\x34\x31\x1c\xae\x67\x87\x1b\xd7\xcc\x1a\xdd\x85\xca\x85\x98\x6a\x8d\x42\xcf\xa4\xc7\x9d\xd0\xf6\xe1\x3a\x70\x4d\x85\xb8\x19\x95\x0b\x61\xb6\x4b\x32\xa1\xe0\xd3\x61\x11\x98\xad\xc8\xb7\xe1\x71\x8e\xa7\x6d\x8b\x20\x84\xae\x11\x39\xba\xc8\x06\x66\xb3\xf7\x2e\x54\x2e\xc4\xb4\x7d\x11\x25\xe7\x1a\x90\x5b\xd3\x9d\x30\x5c\x9b\xcb\x70\x1b\x28\x3f\x26\x98\xee\x88\x20\x34\xb2\x74\x81\xed\x7a\x6b\xcf\x9c\xf7\x1b\x41\x39\xef\x13\x77\x43\xd0\x68\x27\xef\xd9\xee\xda\xdb\x18\x2d\xc4\x77\x60\x72\x01\xa6\x1d\xd2\x20\x84\xd0\xc4\xd4\x39\xf6\xc6\xdf\x84\xa6\x7b\xd2\x9b\x41\xb9\x08\x86\xe7\x33\x4a\xc6\x64\x98\x42\xba\x61\x59\x19\x6d\xe2\xee\x01\xe5\xbc\x4f\xb2\x41\x46\x74\x5c\x17\xae\xcd\x86\xce\x4d\x70\x9c\xed\x49\x56\xc7\x80\x8e\x05\x6d\x67\xb5\xda\x98\x4d\xda\xdb\xf0\x18\xe3\xfe\x7c\x6e\x20\x68\x7b\x6b\x77\x63\x36\x4c\x6e\xc3\xe3\x1c\x4f\xb2\x30\x66\x84\xfc\x20\x30\x3b\xa4\xdc\x88\xc7\x19\x9f\x64\x59\x0c\x09\xad\x9c\xce\x5a\xcf\xc1\xb8\x86\xc7\x19\x9f\x6d\x27\x43\x29\xb8\xce\xac\x9a\x56\xe1\x38\xbf\x73\xdb\x10\x3a\x14\x83\x70\x65\x66\xbd\x6f\xc3\xe3\x8c\x3f\xc0\x8a\xb8\xa1\x63\x76\xf8\xbb\x11\x8f\x3b\x04\xe7\xb4\x22\xae\xeb\xcf\x6a\xf7\x74\x3c\xce\xf1\x03\xac\x88\xb3\x5a\xb9\x73\x8e\x6d\x1d\x8f\x33\xfe\x00\x2b\xe2\x38\x6b\x6f\x56\xc6\x35\x3c\xce\xf8\x9c\x56\x04\xae\x37\xc1\x9c\x1c\xeb\x78\x9c\xe3\x07\xd8\x11\xe8\x87\x70\xb6\xcd\xc8\x00\x1e\x67\xfc\x01\x76\x04\xba\x6b\x43\x97\xea\x6d\x78\xdc\x2f\x3f\xa7\x1d\x81\x8e\x1b\x9a\x1d\x3a\x6f\xc3\xe3\x1c\x3f\xc0\x8e\x40\xe8\x79\xce\x9c\x8c\x6b\x78\x9c\xf1\xb9\xed\x08\xa5\xe3\xce\xa6\xef\x1e\x1a\x67\x7a\x36\x1b\x42\xf1\x83\x60\xc6\x63\x81\x0e\xc7\xf9\x9d\xff\x34\x03\xe1\x6a\xbe\x3d\x76\x1f\x8e\xb3\x3d\xb7\xfd\x60\x74\x42\x23\xc7\xdb\x6d\x70\x8c\xed\xf5\x6c\xd6\x83\x11\xf0\xe6\xe5\xd7\xeb\xf3\x3b\xb7\xed\x60\xa3\xd0\xec\xbe\xe2\x36\x38\xce\xf6\x23\x2c\x87\xef\xcd\x76\x8c\xe9\xc3\x71\xb6\x67\xb5\x1d\x9e\xa1\x3f\xed\x26\x38\xce\xef\x23\x6c\x87\xeb\xcf\x3a\x3a\x54\x38\xce\xf6\x23\x6c\x87\xb3\x9e\x75\x74\xa8\x70\xfc\x36\x7d\x56\xdb\xe1\x38\xb3\x39\xeb\xfb\x70\x9c\xdf\x47\xd8\x0e\xb8\x9e\x75\x65\x51\xe1\x38\xdb\x8f\xb0\x1d\xd0\x9f\xd5\x52\xab\x70\x9c\xed\x59\x6d\x07\x74\x66\x9d\x84\x2a\x1c\xe7\xf7\x11\xb6\x03\x1a\x06\x4a\xdd\x04\xc7\xd9\x7e\xc4\xb9\x85\x76\xe8\x5c\x7c\x0f\xe0\x31\xc6\xc3\x59\xcf\x2d\x10\xc2\xd9\xcc\xc7\x00\x1e\xe7\xf8\x21\xe7\x16\x38\xef\xb1\x05\xf6\x4e\x2d\xe1\x03\xbc\x1f\x7f\x06\xdb\xb3\xfa\x3e\x20\x9c\xd7\x85\xa0\xe1\x71\x8e\x1f\xe1\xfb\xf8\x53\x06\xf6\x83\x6c\xc8\x9c\x1e\x49\x1d\x4f\xc4\xc1\xcd\xb7\x05\x99\x8b\x57\xa8\x30\x09\xfe\x78\xfa\x79\x09\x2a\xbe\x42\x6a\x09\x2a\x9e\x8e\xbb\x04\x15\x8f\x93\x5b\x82\x8a\x27\xe2\x2e\x41\xc5\x17\xf4\xb5\x04\x15\x4f\x40\x5d\x82\x8a\xc7\xc8\x2d\x41\xc5\xe6\xa0\x4b\x50\xf1\x28\xb9\x25\xa8\x78\x02\xea\x12\x54\xac\x99\xeb\x25\xa8\xd8\x10\x74\x09\x2a\x1e\xb6\xd5\x4b\x50\xb1\x19\xe8\x12\x54\xdc\xa7\xb3\x04\x15\x2f\x41\xc5\x57\x08\x2d\x41\xc5\x23\x78\x4b\x50\x31\x58\x82\x8a\x2f\xe2\x2d\x41\xc5\xb2\x81\x5d\x82\x8a\x97\xa0\xe2\xcb\x84\x96\xa0\xe2\x25\xa8\xf8\x1a\xa1\x25\xa8\x78\x09\x2a\x1e\xa7\xb3\x04\x15\x2f\x41\xc5\x17\x46\xe1\x12\x54\xbc\x04\x15\x8f\x9b\xd4\x25\xa8\x78\x09\x2a\x1e\xa5\xb3\x04\x15\x2f\x41\xc5\x17\xe8\x2c\x41\xc5\x4b\x50\xf1\x15\x42\xf3\x1e\x5b\x96\xa0\xe2\xb1\xfe\x5c\x82\x8a\x97\xa0\xe2\x71\x12\x70\x2e\x5e\xa1\xc2\x24\xf8\x63\xf0\x6d\xcd\x17\xde\x56\xad\xbd\x89\xf9\xe2\x6b\x9a\xaf\xbd\x9f\x19\xda\x6e\x30\xfa\x8a\x66\xfe\xf0\xda\x3b\x95\xaf\xc6\x3d\xb3\x8f\x19\xaa\xb1\x17\x7f\xb1\x3c\x58\x9c\xb9\xfc\x5f\xd5\x07\xb4\xa7\xc4\x03\x93\xae\x93\xdb\xc2\xae\xdd\x48\x88\xf6\x03\x78\xd4\x87\xc0\x9f\x27\xe5\x25\xca\xaa\x2a\x0e\xf5\x31\x7b\x06\x3b\x12\xf3\x3c\xd3\x4a\xc6\x26\xf6\x9a\xf0\xf7\x12\x15\x4d\xb2\xc7\x63\x9a\x5b\x7a\x4e\xa7\xe6\x3b\x3a\xd5\x04\xfc\x43\x7a\x2c\x48\x59\x23\x9e\x78\xf7\xfb\x37\xf0\x9f\x87\x94\x67\xdb\x01\x28\x8f\x41\x7d\xc0\x20\xc7\xe7\x5a\x94\x94\xec\x9d\xf2\x20\xc7\x11\xae\x2a\x54\x7e\x80\x53\x9e\xe1\xaa\x02\x1f\xe4\x04\x72\x8c\x63\xf0\x2f\xbf\xae\x40\x75\x2a\x28\x24\xf8\xf6\x5d\x67\x4f\x7e\x3b\x3c\x27\x6f\xad\xc4\xcb\xe5\xbf\x7f\x63\xb4\x78\x3e\x43\x51\x0b\xa4\x95\x60\x60\x8f\x58\x5e\xa4\x37\x94\x9d\x30\x20\x09\x2b\x4d\x08\xa9\x71\xf9\x63\x25\x48\x80\x6f\xdf\x45\xee\x1f\x5a\xfc\x0c\xec\xe2\x54\x1d\x14\x0d\x49\xa4\xf8\xc3\xe3\xa9\xaa\xc1\x0e\x33\xb4\x0a\x1d\x71\x83\x84\x2a\x20\x60\x04\xe8\xcf\x47\x1c\xa7\x08\x7c\x91\x32\x7d\x38\x8e\x0b\x8b\xf3\x57\x46\xc0\x8e\x48\x5e\xa3\x34\xc7\x7a\x9a\x4b\x07\xf2\xd7\xc4\xd3\x01\x3c\x00\xe1\xc2\xeb\x10\xee\x65\x08\xdf\xdb\x5c\x85\xf0\x3b\x08\x04\x76\xa7\xba\x26\xf9\x56\x4a\xd6\x35\x90\x2e\x62\x77\x4a\x12\x5c\x5a\x5d\x26\xbe\x36\x61\x63\xf3\xda\xfb\x01\x5e\xc2\xd0\x69\x59\x11\xa9\x02\x32\x9c\x34\xb9\x89\xa5\x92\x2d\x70\x8a\x73\x93\xd9\x85\xe7\x3b\x7d\x69\x72\x66\xc9\x0d\xed\x02\xc5\x31\x8e\x2d\x5e\x26\x70\xf4\x04\xad\x5e\x2b\x5b\x53\x9d\x25\xf0\xb0\x8e\x69\x1c\x37\xd9\x42\xd4\x0c\x81\xd2\xab\xfb\x89\x25\x06\xda\x5f\xfb\xa9\x48\xde\x70\x59\xa7\x11\xca\xac\x08\xe7\xcd\x6b\xf9\xe5\xe4\x9a\x4d\xc7\x3c\x3d\xd9\x25\x79\xb7\x59\x06\x15\x91\xb8\x73\x3c\x03\x35\xd7\x2e\x93\xa7\xa9\x2b\xeb\x45\xca\xff\x2a\xe5\xbd\xb1\x77\x7b\xab\x38\x95\x85\x10\xe7\x4a\xee\xab\xdd\xde\xca\x98\x06\x2e\x37\x51\x18\xda\x5b\xa4\x44\xf9\x7e\xb4\x72\x97\xbc\x9d\x55\xde\x97\x18\x8f\x26\xec\xe9\x12\xfe\xb0\xba\x31\x2a\x5f\x2f\x37\xe8\xd2\xaa\xb3\x06\x17\x94\xd8\xa5\x2f\x17\x6c\xa0\x8f\x51\x8d\xb4\x69\x10\x25\x8d\x5c\x6a\x20\xeb\x1b\xb1\xfc\x03\x6d\xda\x5a\xd9\x86\x36\x09\xae\x95\xcc\x92\x8e\x56\xd8\xe6\x88\x6e\x47\x08\x3e\xee\x68\x27\xa7\x55\x6d\xbd\xa5\x98\x67\x6c\xd0\x32\x20\x2a\xf9\x56\x4a\x9c\x31\x8b\xf7\xd2\x4f\x3c\xed\x0d\x81\xb2\xa4\xbf\x2d\xf2\xc5\xbc\x2d\xdd\x3a\xc1\x53\x10\xa2\x26\xa9\x4e\x9f\x9f\x46\xe8\x0d\x84\x83\x39\xb0\x25\x56\xb2\xb4\x68\x93\x92\x32\xb4\x7e\x3e\xcb\xa1\xf4\x39\x23\x39\x50\xc7\x72\x9c\x32\x5a\x31\xb1\x32\xb2\x27\x9c\xe7\x2e\x4b\xd1\xea\x45\x9b\xa0\x96\x94\xb5\xfc\x48\xf6\x25\x2a\x0e\x1f\xc0\xee\xba\x9e\x01\xf0\xb4\xe2\x4a\xef\xcb\xb5\xd1\x39\xad\xa4\x7a\x4d\x16\xa7\xaa\x2e\xc9\x2b\x56\x72\x5a\xf2\x22\x2b\x46\xd5\x01\x95\x25\x15\xdc\x07\xfe\x00\xf9\xce\x96\x8d\x40\x8a\x3c\xcf\x6a\x33\x96\x49\x88\xb5\x52\xea\x75\x02\xc8\xb3\x4e\x6e\x48\x2d\xbb\x58\xce\x95\xd6\xf2\x54\x1a\xae\x2f\x25\x42\xd6\x69\x0a\x59\xa5\xac\xe9\x3d\x9c\x3a\x8d\x5e\x07\xc8\xca\xd3\xb2\x57\x9d\xf6\x3a\xd7\x8c\x96\x5b\xba\x19\x11\x28\x8f\x0e\x74\xb2\x56\x35\x2a\x59\xd6\xb3\xa7\xef\xdf\x3e\x83\x8a\x9c\xca\x08\xff\x1b\x2a\x8a\x34\xdf\xff\xd7\xbf\xff\xeb\x4f\x3b\x54\x61\x3b\xaa\x2a\xfb\x88\x0a\xba\x09\xf9\xbf\x00\x00\x00\xff\xff\x91\x23\xfa\x9b\xdf\x9b\x00\x00") func web_uiStaticBaseCssBytes() ([]byte, error) { return bindataRead( @@ -131,12 +131,12 @@ func web_uiStaticBaseCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web_ui/static/base.css", size: 39903, mode: os.FileMode(420), modTime: time.Unix(1471050089, 0)} + info := bindataFileInfo{name: "web_ui/static/base.css", size: 39903, mode: os.FileMode(420), modTime: time.Unix(1485366992, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticBaseCssMap = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\x3c\xd9\x52\x23\xbb\x92\xef\xfd\x15\x13\xbc\xe2\x38\x66\x6b\x96\xe1\x49\x52\xa9\x16\x97\x0b\xa8\x3e\xbd\xd1\x13\x13\x13\x06\x0c\xb6\xf1\x86\x57\xcc\xc4\xfd\xf7\xab\xd4\x9a\x55\x25\x37\xe6\x74\xdf\x13\xdc\x1b\xee\x07\xa2\x9d\x4a\x49\xb9\x29\xb7\x52\xd5\xff\x7f\xd8\x59\xb4\x27\xd3\xee\x68\xb8\xf3\xdf\xff\x75\x58\xfb\xb0\x33\x68\x8d\xc7\xdd\xe1\xc3\x54\xfc\xdc\x21\xe2\x5f\x2d\x21\x24\x3d\xe7\x84\x05\xb5\x29\x25\x64\x4a\x6b\x9c\x10\x56\xfb\x46\xc8\x37\x80\xf6\x59\xed\x4f\x42\xfe\x04\x20\x07\xd4\x04\x80\xf7\xb5\x54\x4c\xaa\x71\x36\xa5\x03\xaa\xa0\xe7\x24\x18\xd2\x0e\xab\x31\x81\x07\x28\xdc\xa0\xe4\x02\xe3\x92\x90\x3d\x7a\xce\x83\xab\x7e\x20\x17\x56\xab\x45\x84\x44\xe7\x9c\x5f\xf5\x69\xed\x51\xec\xfc\x28\x76\x0e\xf3\x44\x52\xf1\x44\x61\xe0\x99\xd5\xda\x84\xb4\x05\xf8\x12\x81\x2f\x16\xac\x76\x4b\xc8\xad\x00\x67\x08\xdc\x9c\xb1\x5a\x8b\x90\x96\x00\xa7\x08\xdc\x18\xb2\xda\x17\x42\xbe\x08\x70\xe2\xc0\x84\xbf\x30\xa0\x2a\x3f\x4f\x08\x6b\xe8\x5d\x2c\x87\x02\x36\xa1\x9a\x7e\x00\x0a\xc4\x11\x4c\x8a\xea\xb4\x96\x0b\x61\x00\x42\xb3\x38\x7e\x29\x60\xfc\x0e\xe8\xca\xcf\x33\x58\x52\x73\xdf\xfc\xa6\x99\x17\xf2\xf9\x32\x0b\x90\xb0\x35\xc2\x0f\x25\x9e\x4b\x21\x9d\x96\x58\xfe\x41\x10\xf8\x20\x04\xc1\xc6\x34\x57\x70\x31\x71\x4e\x87\x52\x21\xd7\x30\xf3\xd3\xcf\xf4\xb1\x4f\xcd\x72\x62\xda\x31\x4c\x13\x03\x19\xa0\x84\x06\xa5\x8e\x55\xf6\xc8\x84\xca\x40\xf8\x03\x5a\x58\x67\xcc\x10\xd2\x1c\x90\xb8\x54\x16\x61\x46\xf6\xb0\x3d\x10\x02\xb0\x17\x5a\xd1\x2a\x61\x1d\x23\x41\xf6\xcc\x10\x51\x07\x6c\x28\x97\x68\x03\xce\x77\xb4\x98\x99\x37\xa4\xfe\x1d\x40\x32\x1c\x24\x6f\x2d\xab\xce\xda\x76\xd9\x41\x20\x96\x8d\xb4\x38\x88\x13\xe3\x24\xc8\xb5\x94\x82\x69\xf0\x11\x2b\x35\xd5\x9a\xf8\xe1\xa7\xbd\x24\xe4\x73\x31\x32\xa4\x48\x9a\xa5\x49\x30\x3e\xa6\xb5\x4c\x6a\x92\xb0\xd8\xd0\xd8\xe1\x4e\x90\xbc\x29\xe4\xe8\x30\xae\x85\x42\x8b\xdb\xf6\xa8\x06\x86\xe9\xb5\x36\x0a\x76\xd1\x63\xf6\x74\x30\x9e\xd4\xba\xe2\x80\x3d\x30\xc1\x4e\x30\x0c\xb4\xdd\x32\x86\xc0\x44\x1c\x31\x25\x3f\x46\x10\x98\xf5\x02\x7d\x3a\x58\x80\xc0\xfc\xcc\x9c\x0e\x16\x3a\x30\xe1\xe3\xa0\xf6\x44\x41\x49\x09\x28\x09\x48\x51\x94\xe6\xfa\xc8\xf4\x9c\xa5\x02\x58\x3a\x0b\x01\x3e\xa1\x65\xae\x12\xcc\x55\xa8\x4d\x9a\xf3\x54\x98\xba\x77\x03\xb5\x2a\x40\x5f\x2a\x3a\x48\x9c\x81\x86\x9f\xb5\xea\x13\xfe\xe5\xd0\x68\x35\xfc\xd1\xd6\x88\xbc\xf5\x4c\x35\xbb\x98\x92\x3e\x45\x3b\x69\x20\xff\x51\x3b\xa0\xa0\xd5\x0c\xb4\x5a\xda\x31\x83\x1d\x4b\xd6\x98\xf9\xec\x3d\x93\x36\xb3\x09\x30\x21\x89\xb0\x93\x53\xaa\x97\xba\x42\xcb\x6b\x26\xa3\x19\x95\x9a\xb8\x86\xf1\x4f\x5a\x3d\x78\xd1\xfb\xb2\x15\x67\x1e\x2b\xce\xd0\x09\x0c\xeb\xf4\x9b\x12\x57\xc6\x1f\xd8\xa2\x22\x58\x4e\xd2\xc5\x1a\x7d\xb4\x35\xec\xf9\xa7\xda\x78\x66\x56\x1d\x2b\xe6\xf4\x71\xc8\xac\x42\x8e\x98\x4f\x23\x5c\x68\xe4\x15\xe9\x57\xc4\x07\xc7\xec\x37\x8b\x67\x12\x58\xf1\x4c\x03\x9f\x78\x92\x85\x0a\x51\xd7\xc0\xf5\x27\xbf\x78\x46\xd2\x3f\x65\xe0\x9f\x7c\x7c\x58\x91\x7c\x33\x22\x39\x86\x59\x20\x74\x49\x4d\x25\xcc\x0a\xe9\x0c\x95\x74\xa4\xa1\x34\xfd\xe3\xc7\x62\xbc\x05\xe3\x9f\xcb\x86\x24\xa8\x16\xfe\xae\x4b\xf5\xd1\xbc\x42\x52\x31\xfa\xfb\x0e\xde\x28\xc3\xb0\xa0\x1f\xa2\x68\xcc\x06\xe2\xc4\x1e\x89\x1f\x07\x54\x0d\x59\x8f\xf3\x88\x07\x7a\x61\xcf\xfa\x9c\x2e\x1e\xe8\x84\x1d\xeb\x75\x1e\xf0\x40\x9d\x9f\x58\xbf\xb3\xcb\xed\x80\x88\xb0\xc2\xa9\x75\x25\x4b\x09\xb0\x34\x90\x91\xa9\xe0\x24\x13\x2d\x6a\x79\xa0\x19\x62\x40\x98\x04\x53\xb3\xe6\x4e\xa6\xa5\x61\x29\xa7\x12\x4c\x2c\x29\x82\xfd\x91\x4c\x7d\xb4\x93\xf0\x49\x6a\x13\xe9\x81\x9d\x39\xff\x67\x60\x05\xaf\xa3\xa3\x4e\xa4\xa5\x7c\x0b\x08\x5f\x7d\x7c\x46\x42\x79\x73\x15\x98\xe5\x49\x73\x7b\xe9\x6c\x43\xc0\xb0\x0b\x16\xd0\x63\x23\xc1\x96\xcc\x51\x82\x71\xfc\xdd\xa9\x72\x15\xe7\xb5\xa5\xf8\x31\x07\xf9\x3f\xc7\x67\x26\xb5\x62\x4b\x3c\xb0\x88\x4f\x4c\x80\x67\x73\x3c\x30\x8b\x3f\x9a\xf4\x8a\x4d\xf1\xc0\x24\x7e\xb1\xaa\x7c\x42\x03\x84\x1d\x32\xe3\xf7\x3f\x46\xb9\xce\x82\x12\x3e\x8f\xc4\xd6\xa7\xca\xcb\x67\x4e\x60\xe1\x73\x94\x58\x9c\x53\xc0\x59\x4a\xcb\xcd\x82\x8f\x71\x0f\x59\xe4\x71\x6c\xad\x05\x86\x9c\x45\x1e\xe1\x81\xc3\xd8\x59\xe4\x01\x1e\xd8\x8f\x9d\x45\xee\xe1\x81\x97\xd8\x59\xe4\x0a\x0d\x48\x36\x8c\x9c\xc3\x4e\x4c\x6c\x3a\x17\xdd\x89\x74\xee\x8b\xce\x92\xaf\x90\x1f\x32\x49\x99\xf0\x2f\x0e\x78\x2a\x6c\xed\x14\x8c\x8d\xed\x07\x28\xdd\x34\xf9\xcd\x7e\xc5\xe8\xb8\xc7\xc0\x44\x92\x91\x74\xa8\xca\x5b\x39\x24\x99\xce\xae\xcc\x9c\x1b\xe4\xe8\x0c\xac\x47\xab\xbe\x41\xe4\x97\xc8\x1d\x1b\xe0\x90\xfa\xf9\x70\x98\xb0\x10\x24\x08\x2a\xd2\xa7\xa0\xe7\xa0\x3c\x27\x29\x25\x50\xc6\xe6\xc7\xca\xdd\x69\x9b\xaf\xf0\x9b\x5d\x49\x6f\xa6\x73\xbc\x52\xd4\x4d\x7c\x51\xb7\xbc\x51\x39\x2e\xc5\x27\xf4\x52\x03\x59\xe3\xcc\x59\x11\x7f\x64\x0f\xd4\x64\x3b\x49\xd8\x63\x75\xa3\x13\xde\x2d\x8c\x74\xd8\x99\xb1\x23\x11\x38\xf1\x48\x9d\x9e\x18\x43\xe2\xbb\x14\x8f\x9c\xd1\x7d\x23\x11\x7e\x8a\x47\x64\x56\x35\x60\xa5\x0a\x41\x9f\xdd\x47\xaa\x13\x8b\xea\x99\x3e\x27\x6c\xc1\x86\x1c\x95\x0e\x9b\x67\xe0\xbe\x52\xc1\x9b\x77\x2a\x62\x1a\xc4\x64\xab\xbc\x20\xb0\x28\x75\xc9\x61\xdc\xb0\x89\x67\x94\x20\x70\x6c\x13\xcf\x28\x42\xe0\xd0\x26\x9e\x11\xca\x5e\xe3\xc0\x26\x9e\x11\xca\x5e\xe3\xa6\x38\x53\x76\x53\x51\xdd\x81\x41\x1c\x51\x18\xa8\x1b\x87\x05\xb4\x58\x70\xe3\xcc\xb8\x2b\xa0\xc5\x82\xe1\x30\xeb\x4d\x23\x04\x0e\xf7\xed\xa6\x1c\x81\x2f\xfa\x68\x53\x54\x69\xc6\x17\xb6\x00\x8d\x50\xa5\x19\x37\x6d\x01\x1a\xa1\x4a\x33\x6e\xd8\x02\x34\x42\x95\x66\x1c\xdb\x02\x14\x68\xb1\x05\x28\x53\x05\x68\xe5\xf8\xba\xa3\x66\x0a\x94\x31\xd6\x6d\xa6\x0b\x90\xa1\xac\x44\xf3\x22\xb0\x70\x52\x73\xe5\x25\xf8\x42\x9e\x69\x5d\xe8\x96\x6d\x2e\x59\x63\x73\x2a\x8e\xb8\x79\x25\x4a\x13\x0f\xa5\x89\xa4\xd4\x87\x58\x71\x29\x91\x62\x49\xd7\xd1\xbf\xb6\xce\x43\xd9\xa3\x34\xc6\xd4\x24\xa3\xc9\x13\x3d\x5c\x5b\xa8\x38\xdf\x0a\x09\x47\x17\x64\xc1\x85\x2c\x40\x41\xfa\x80\x9a\x89\x8d\x05\x25\x3a\x3f\x4c\x96\x74\xe1\xeb\x0c\x24\x43\xe6\xa1\x64\xe1\x28\x59\x6e\x4c\x89\x0c\x9e\xbc\xee\xa5\x44\x6f\xa9\x02\xd3\x09\x2b\x12\x02\x1d\x16\x92\xbe\xf8\x08\x99\xd9\xfc\x3c\x99\xb3\x4d\x09\x79\x92\x84\x9c\xfc\x8c\x90\x3d\x49\xc8\xc7\x12\x21\x4b\x29\x91\x85\x3c\x3b\x3a\x91\xd3\x74\x74\x02\x49\x87\xd0\x67\xd2\x0d\x9e\x37\xa4\x03\x58\xe1\x33\x15\x3b\xfc\x64\x28\xe7\x39\x2e\x91\xd1\x95\xf2\xe8\x30\x64\x6a\x9a\x8c\x3e\xb7\xe2\x18\xf0\x37\x5b\x48\xd7\x63\x21\x13\x6e\x2d\x64\xca\x3d\x16\x92\xc8\xde\xd1\x52\x56\x58\x59\x31\x9d\x54\xd3\x08\xbb\x2b\x73\x75\xa9\x23\x82\x23\x43\x07\xdf\xf4\x4c\x9e\x73\x9d\xd6\xfb\xc2\x5f\xa9\xca\x15\x27\xa5\xb3\xf9\x14\x54\xd3\x78\x8b\xf9\x52\x15\x27\x92\x92\xec\x59\x49\xe5\xcb\xfa\xfe\x54\x29\x93\x91\x7d\x97\x4a\x56\x2c\x64\x00\x4a\x96\x14\x85\xde\xec\x1a\xfe\xa7\x60\x40\x1a\x84\xc6\x59\xac\xed\x48\xaa\x5b\x78\x09\xb7\xaa\x4e\xef\xc5\x31\xf0\x86\x3c\x4f\xd2\xed\x29\x52\xb9\x4c\xe0\x37\x4a\x95\x1a\x4d\x54\x3b\x25\x99\x0b\x6b\x8d\xa6\x0d\x99\x09\x8a\xa4\x8d\x86\x0d\x99\x09\x8a\xa4\x8d\xd8\x86\xcc\x04\x45\xd2\x46\x68\x43\x66\xc2\x4b\xbd\x9a\xa5\xa0\x62\x2e\xab\x9f\x21\xae\x79\x06\xb6\x7e\x38\xa4\x65\x05\xab\x0a\xe3\xd8\xd5\x5a\x5e\x5d\x2b\x33\x6d\x7e\x37\x75\x7c\x7a\x5d\x6d\x04\x70\xd9\x19\x5b\x09\x7a\x56\x54\xb7\x4e\x4b\xf9\xa2\x3a\x4e\x7a\xad\x3e\xb5\x8b\x8d\xa8\x58\x6d\x15\xb8\x5a\xe0\x8d\x85\x7b\x73\x62\xfb\x1a\xe9\x94\xae\x2b\xdc\xf7\xa4\x65\x0a\x1a\x2e\x36\x29\xe2\xd4\x59\x79\x60\x26\x3c\xde\xbd\xa9\xf2\xda\x63\x32\xa7\x50\xa7\xe7\x2d\x13\x9f\x04\x64\x29\x35\x38\x36\x65\x53\xf3\x85\xe9\x7e\x59\x92\xee\x81\x06\xbd\x0d\xad\x52\xff\x43\xb8\xa8\xca\x61\x4b\x48\x56\x11\x63\x42\x1a\x82\xcd\xe3\x10\xd4\x93\xc1\x11\xa9\xcc\x49\xc5\x78\x37\x7c\x4b\x6f\x26\x23\x5c\xcc\x39\x08\x41\x75\x39\xe4\xa9\xa5\xb4\x25\xf7\xa5\x2d\xb9\x2f\x6d\x11\xc0\x82\x36\xe5\xf2\x39\x28\xa3\xa4\xc1\x1c\x77\xab\x94\xe0\x00\x36\xae\x08\x2b\x93\x6d\xb5\xe3\x50\x6f\x19\xa2\xe3\x60\x26\x4d\x2a\x93\x72\x29\xe1\x12\x97\xb9\x2f\xb1\xce\x5d\xd1\xd1\x7c\xe1\x97\x46\x6d\xc7\x10\x5d\x56\x21\xd8\x5f\x06\xf6\x57\xf2\x78\xd2\xeb\xaf\x6f\x16\x61\x98\x89\x18\xcd\x5e\xf8\xcd\xac\x3e\x0a\xc5\xea\x83\x50\x45\x8a\x34\xf6\x36\x3b\xd6\xaf\xde\x3c\x0c\xed\xe1\x39\x0a\x17\x58\x31\x1a\xf5\xea\x4e\xd2\x2e\x59\x66\x65\xbf\x9a\x91\x5c\x0c\xc7\x32\x4d\xc8\xa5\xaf\x28\xa5\x6c\x39\x38\x63\xe3\x0d\xd1\xf1\x4a\x85\x81\x3f\x31\x9d\x5e\x38\x1f\xf3\x5b\xba\x2d\xe2\xc0\xcf\x54\xdb\x44\x04\xfc\x46\x1f\xf5\x3f\x92\x01\xea\x4d\x88\x11\xdb\xff\x48\x1e\xf1\x40\xcf\xf5\x3f\x92\x2e\x1e\xe8\xb8\xfe\x47\xf2\x80\x07\xea\x91\xed\x7f\x24\xbb\x91\xb7\xff\xd1\x9c\xb9\xfe\x47\xba\x84\xde\xc6\x2e\x97\xce\x3b\x6b\xcc\xe2\x99\x6b\xef\x27\xf3\xf8\xda\x36\x1e\x60\xc8\x06\x8d\x29\x1e\x98\xc4\x13\x1b\x36\x9e\xf0\xc0\x38\x1e\xdb\xc0\x31\xc2\x03\x43\x88\x28\x9a\xc6\x01\x1a\x20\xac\xee\x9a\x1b\xcd\xfd\xc8\x35\x37\xb2\x3b\x11\x9a\x56\x32\xf9\xe2\x4d\xd2\x71\x61\x2d\x15\x3e\xc9\x14\x4e\x4d\x62\xc3\x5a\x4a\x10\x98\xd9\xb0\x96\x06\x08\xcc\x6d\x58\x4b\x43\x04\x8e\x6c\x58\x4b\x63\x04\x0e\x50\x25\x98\xf2\x5c\x36\x42\xf7\xe4\x40\xcf\x6e\xca\x10\x98\x74\xec\xa6\x04\x81\x81\x43\xbd\x69\x80\xc0\xfc\xa3\xdd\x34\x44\xe0\x70\x8c\x36\x8d\x10\x35\xa1\xe3\x94\x63\x22\x1d\xa7\x05\xb9\x38\x4e\x0b\x72\x71\x9c\x22\xb9\x08\xa7\x19\xd4\x0e\x98\x4e\x13\x3d\xbe\x45\x1c\x05\xe1\x36\x77\x95\x32\x5c\x36\x73\x91\x26\xfa\x69\x4a\xd6\x58\xe0\x38\xd0\x96\x4b\x89\x99\xcf\xaa\xd1\x66\x1e\xed\x19\x45\x5f\xfc\x48\xcc\x63\xb3\xec\x01\x1e\x11\x3e\xa9\xde\xa7\xca\x74\xdc\x29\x93\x2e\xea\x1c\x22\x59\x0f\xf7\x9c\x9c\x9b\x30\x59\xdb\x3d\xda\xfc\xd2\xec\x57\xaf\x38\x84\x52\x77\x0a\x75\x29\x7c\x88\x95\xf6\x11\x20\x7a\xdb\x58\xce\x57\xac\x2c\x23\x27\x6f\xe8\x87\x94\x92\x65\x78\x92\x27\x30\xdb\x32\x2b\x91\x79\x6a\x69\x57\x40\x50\x59\x90\xcc\x77\x2f\xca\xb9\xbc\xcc\x63\x2b\x19\x78\x35\x93\x51\x8f\x0c\xcf\xdb\x84\x99\x8d\x4a\x2e\x16\x10\xee\xd0\x3e\x25\xff\x0e\xc3\x37\xe7\xc2\x5c\x99\xd1\xf0\xe6\x84\xae\x6d\x31\x4a\x3a\x9c\x8a\x75\x13\xa1\xd8\x14\x37\x1c\x7d\x95\xff\x2b\xc2\x3e\xf9\xdb\x12\xde\xa6\x64\x29\x3f\x92\x2c\x1c\x48\xd7\x54\xea\x75\xb0\x42\xae\x2e\xc1\xc0\x5b\x7d\x8d\xf0\x2c\xf3\x3d\x7a\x2e\x8c\x9e\x55\x2b\x03\xf8\xa3\xd8\xdf\x98\x55\x47\xac\x81\x7d\xf7\xb2\xef\x2a\x14\x03\xfb\x8c\x8e\x87\x3e\x53\x24\x9a\xd0\x73\x51\x56\xb3\x39\xf5\xd7\x12\xfa\x71\x72\x57\xfa\x22\x65\x51\xaa\x06\xd5\x89\x3d\xa4\xa7\xb2\xb6\x11\xa1\xc0\xd9\xb4\x06\x4b\xd6\x83\x42\x51\x84\x27\x8f\x04\xd6\x40\x4e\x9e\xe1\xc9\x1a\x2c\xeb\xb9\x7e\x80\xac\xc6\x71\x69\x74\xf7\x19\x71\x69\x60\x5f\xfd\x27\xb6\x5a\x2c\x42\x1e\xe6\xee\x32\x54\x1e\xc6\x88\xc5\xfd\xe7\x64\xce\x08\x5b\x4a\x0c\x91\x40\x60\x33\x31\xc6\x33\x2e\x9a\x89\x72\x71\xe0\x3d\x3b\xac\x20\x8b\x12\x3f\xea\x18\x15\x56\xf7\x2b\x03\x22\xfb\x4a\xae\x31\xa1\xe8\xaa\x8c\x7d\x66\x0d\xe5\x23\xbe\x1d\xe1\xc0\x82\x80\x3d\x19\x62\x8a\xd6\x87\x1a\xac\x18\xac\x1f\xff\x76\x59\xf1\x14\x88\x34\x63\x25\x29\x28\x9d\x82\x09\x03\xbd\x9f\x06\x40\xfc\x49\x20\x39\x83\xf4\xde\x76\x2d\x14\xfa\x91\xa8\xb2\x8e\x02\x05\x77\x8a\xd2\x50\x70\x98\x0d\xa5\xf1\xca\xc4\x39\x94\x96\xbc\x3c\x51\x43\xe1\xc9\x45\xf3\xaf\x4f\xf4\x93\xfa\xda\xc4\xe1\xba\x1d\xa1\x86\x7a\xaa\x4c\xd4\x50\x10\xec\x2f\x90\x1a\xa9\x94\xb3\x34\x71\x2a\xfe\x4e\x2b\x13\x35\x14\x7c\x49\x53\x3d\x21\x7a\x33\xa9\x8b\x5f\x98\xe8\x27\xf5\xb5\x89\x9d\xdf\x4e\xea\x48\xfc\x1d\x55\x26\x6a\x28\x9c\xa2\xf7\x43\xea\x5f\x96\xea\xae\x38\x40\xbb\x95\x63\xa5\xa1\xe0\x4c\xd2\x77\x23\xd5\xd7\x26\x9e\xad\x23\x75\x20\xfe\x0e\x2a\x13\x35\x54\x9d\xc7\xf7\x42\xea\xa9\x10\xfc\x69\x45\x1d\x1a\x0a\x3e\x74\xdd\xc4\xd7\xf4\x78\x98\xfe\x6e\x03\xd8\x60\xc7\xdf\x4c\xea\x6b\xc2\xe9\xbf\x1f\x52\xff\x8d\xa4\xba\x25\xf5\x27\xa4\x1e\x0b\x94\xe3\xca\x44\x0d\x05\x2f\xf7\xdb\x6d\xf5\x2f\x7b\x80\x0d\x26\x6e\x49\xdd\x92\xfa\x2e\x48\xfd\xfb\x3d\xc0\xdf\x2f\xd5\x77\xe9\x57\x13\x75\x41\xa1\x34\x71\x29\x50\x96\x95\x89\x1a\x2a\x4a\x9c\xc3\x06\xd4\xab\xdb\x0a\x6d\x5b\xa1\x6d\x2b\xb4\xbf\x5d\xaa\xdb\x0a\x6d\x5b\xa1\xbd\xbf\x40\xb2\xad\xd0\xb6\xa4\xbe\x0b\x52\xb7\x15\xda\x96\xd4\x2d\xa9\xff\x01\xd1\x6a\x5b\xa1\xfd\x5a\x85\xb6\xf6\xe9\x1e\xe0\x03\xb8\xb7\xe6\xcd\x67\xfc\x64\xcf\x3c\xf8\x44\xef\xec\x5a\x30\xec\x73\x22\x5f\x34\x8b\xa0\x10\x0c\xd7\xd5\x81\x5d\xf0\xbd\xea\xd9\x2e\x5f\xc3\xce\x48\xae\x2d\x2f\x2a\x04\xf0\x63\xa3\x05\x4b\xcc\xbb\x6d\xea\xf1\xcf\xb7\x29\x27\x79\x7a\x73\x56\xbf\xaa\x73\xfb\x02\xd4\x67\xcf\xbb\x4a\xd1\x9d\x7a\x5b\x9e\xaf\x7d\x3f\xca\xcd\x69\xc3\x9d\x54\x19\x70\xa8\xf7\x4a\x82\x83\xa9\x8b\xbf\xfa\x41\xb2\x79\x91\xfc\xa6\xb2\xbd\xda\x1f\x94\x73\x40\xb5\xa6\xb4\x51\xd9\xeb\xe8\x80\x2c\x1f\xa3\x8a\x09\x3d\xfa\x2f\xc1\x4d\x6f\x80\x33\x7d\x6f\xa7\x7a\x43\x21\x51\x77\x0e\x6f\xcb\x3c\x22\x09\xae\xa8\xbe\xd9\xaf\xef\x63\xcb\xdb\xba\xdf\xd1\x33\xf2\xae\x42\x48\xe0\x2d\x21\xf9\x5c\xfc\x16\xbf\x57\x67\x57\x23\xf6\xcd\xc9\x27\x73\xe7\xa0\x74\xa9\x59\x5d\x4b\x40\xaf\xb4\xf9\xee\x9b\x14\x9e\xa4\x57\xef\x35\x24\xea\x65\x6f\x7d\x73\xc0\xdc\x38\xfa\x74\x18\xd8\x2b\x47\xf9\x2e\xbc\xa9\xff\xa7\xc5\xa9\x30\x02\xab\x1c\x32\x44\x86\x5d\x65\xc6\x73\x7b\x41\x2d\x5f\xf1\x59\xf1\x8a\x83\x45\x7b\xe1\xf6\xcb\x09\xf9\x11\x1f\x7a\x97\x5a\x20\x9c\x3d\x5e\x20\xc8\xe2\xd4\x11\xce\x63\x58\xf8\x6a\x81\xc5\xe9\x87\x0e\xe7\x09\x70\xdc\x3d\x29\x8b\x33\x51\x38\x20\xe0\x7c\x19\x76\x98\x3d\x14\x4d\x44\x4f\x84\xe8\x89\xfc\x7b\xed\x23\x9c\xe3\x08\x7d\x11\xe2\xab\xff\x70\x6d\xf2\x22\xa0\x3e\x46\x4e\x8e\xf7\xe5\x6b\xa0\x1c\xee\x9e\x78\x6f\xc9\xf8\xcd\xc7\x5d\x26\x1b\xd3\xd7\x6e\xd7\xd8\x79\x37\x88\x17\xdf\xfe\xa5\x4b\x69\xbc\xf8\xfa\x11\xde\xde\x39\x04\xdf\xdb\x05\xaf\xdc\x4d\x42\x2f\x57\x95\x2e\x24\xc3\xea\x2f\x14\xb9\x33\xdf\xfd\x2e\xcf\xb5\x91\xbe\xba\x8d\xba\x34\x02\x49\xe4\xbd\x99\x4f\xbd\xc6\xc8\x7e\x11\x23\x1f\xc0\x27\x4a\xba\xd4\xdd\xf4\x49\x3c\x97\x6b\x94\x04\x3e\xcd\x1a\x8f\xe6\x73\x21\xf9\xbc\x51\x2f\xbe\xba\x62\x6e\xcb\xc0\x4b\x2a\x70\x13\x66\x44\x35\x87\x3f\x59\xf0\x04\x16\xd4\xe4\xe6\xbb\x8d\xd2\xd7\x40\x34\x52\x27\x35\x48\x3c\xef\xa6\x1f\x2d\x1b\x43\xcc\xc6\x13\xb0\x51\x60\x56\xcf\x1e\x6b\x9a\xe5\x16\x53\xd8\x02\xae\x3e\x9e\x4a\xac\x7d\x8b\xb5\x40\x7b\x2c\x61\x8f\xd2\xfb\x08\xc0\x97\x8e\xcc\xf6\xd2\x94\x9e\xfa\x92\x3e\x3a\x32\x0e\x52\x41\x46\x01\xcb\x85\xae\xc4\xde\xf9\x73\x3a\x07\xe3\xd8\xa9\x7d\xd8\x99\x8e\xe6\x93\xdb\x36\x7c\x15\xe7\x7f\x76\xfe\xf8\xa3\x3e\x9d\xad\xfa\xed\x69\xfd\xff\x66\xab\x71\xfb\x8f\xe9\xed\x74\xba\x53\xc3\xe0\x45\x6b\xd2\x6d\xdd\x88\xff\x7a\xc6\x06\xdd\xe7\xee\xd0\x37\x30\x6e\x0d\xdb\x7d\xdf\xc0\xb0\xb5\xf0\x40\x6f\xe6\xb3\xd9\xc8\xbb\x50\xbf\x3b\x9d\xf9\xe0\xf7\xa3\xc9\xc0\xbb\xfe\x68\xd6\xbd\xef\xde\xb6\x66\x5d\xef\x7a\x37\xad\xa9\xe6\xf1\x7f\x85\x20\x86\xad\x81\x12\x03\xfc\xb8\xef\xf6\xdb\xf0\xa1\x20\x89\x02\x18\x1f\xfe\xf1\xe1\x9f\x01\x00\x00\xff\xff\x47\x1e\x9a\x71\x52\x48\x00\x00") +var _web_uiStaticBaseCssMap = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\x3c\x49\x73\xe2\x4a\x93\xf7\xfe\x15\x1d\xbe\x5a\xf1\xf0\xbe\x34\xa7\xac\x52\x49\x2a\x84\x6c\xab\x77\xf7\xc4\xc4\x04\xb6\xb1\x01\x83\xc0\x80\xc1\x78\x62\xfe\xfb\x44\xed\x29\xa9\x68\xd3\xef\xf5\x7c\xd1\xdf\x04\x37\x3b\x6b\xcb\xad\x72\x53\x16\xff\xfd\x6e\x67\xd1\x9d\xce\xfa\xe3\x62\xe7\xc3\xfb\xc3\xe0\xdd\xce\xa8\x33\x99\xf4\x8b\x87\xd9\xce\x87\xf7\x3b\x00\x00\x01\x07\x48\x9b\x0c\x68\x18\xcc\x08\xc0\x8c\x04\x0c\x80\x06\xdf\x00\xbe\x09\xe8\x90\x06\x9f\x00\x3e\x09\x20\x13\x53\xb9\x00\xde\x07\x29\x40\x1a\x30\x3a\x23\x23\xa2\xa0\x4d\x08\x0b\xd2\xa3\x01\x05\x60\x62\x0a\x33\x53\xf2\x11\x09\x2e\x01\xf6\x48\x93\x85\x57\xc3\x50\x6e\xac\x76\x8b\x01\xe2\x26\x63\x57\x43\x12\x3c\x12\x80\x47\x12\xb0\x28\xe7\x12\x8b\x27\x22\x06\x5e\x68\xd0\x05\xe8\x06\x2c\xba\x44\xe0\x8b\x05\x0d\x6e\x01\x6e\x03\x16\x65\x08\xdc\x9e\xd3\xa0\x03\xd0\x09\x58\x94\x22\x70\xab\xa0\xc1\x17\x80\x2f\x01\x8b\xb8\x03\x03\x7b\xa5\x02\xab\xbc\xc9\x81\xb6\xf4\x29\x96\x42\x0e\x74\x4a\x34\xfe\x02\x78\x09\x30\x16\x8b\xe2\x06\x09\x72\x80\x4f\x62\x42\xbb\x3c\x7e\xd9\xe4\xc0\xee\x04\x5e\x79\x33\x13\x5b\x6a\xea\xdb\xdf\x34\xf1\x4d\x08\xbf\xcc\x43\xc4\x6c\x3d\xe1\x87\x62\xcf\x65\x93\x85\x9d\x06\x09\x1e\x08\xc0\x03\x09\x18\x9d\x90\x5c\xc1\x9b\x10\x3e\x93\x42\x0a\xe4\x5a\xac\xfc\xf8\x33\x79\xec\x13\xb3\x5d\x13\xc2\x13\xb1\x2c\x05\xc8\xc4\x94\xc8\x4c\x69\x60\x91\x3d\xd2\x1e\x95\xcc\x1f\x91\xd2\x3e\x13\x8a\x26\x3d\x8b\x49\x4c\x0a\x0b\xa8\xe1\xbd\x38\x5e\x20\x22\x60\xaf\xa4\x26\x55\xa0\x3d\xc3\x41\xfa\x42\x11\x52\x07\xb4\x90\x5b\x74\xc5\x9c\xef\x68\x33\xb3\xae\x20\xfe\x13\x04\x67\x98\xe0\xbc\xd5\xac\x06\xed\xda\x6d\x47\x61\x41\xc5\x16\x92\x1d\xe0\xd8\x38\x0d\x73\xcd\xa5\x70\x16\x1e\x63\xa1\xa6\x5a\x12\x3f\xfc\xb8\x57\x98\xdc\x04\x88\x0b\x82\xb8\x59\x59\x24\xc6\x27\x24\xc8\xa4\x24\x81\x26\x06\xc7\x1e\x73\x8c\x64\xed\x1e\x45\x33\xae\x01\xae\xcb\xc7\x0e\x88\x06\x46\xe9\xb5\x56\x0a\x7a\x31\xa0\xf6\x76\x50\xc6\x83\x3e\x05\x78\xa0\x4d\x16\x86\x45\xa8\xf5\x96\x52\x04\x86\x61\xa8\xf9\x47\x01\x81\xe9\x20\xd4\xb7\x83\x86\x08\xcc\xce\xcd\xed\xa0\x91\x03\x03\x9b\x84\xc1\x13\x11\x42\xe2\x42\x48\x02\x15\x85\x69\xae\xaf\xcc\xc0\x69\xaa\x00\x4b\x63\xc1\x81\x9e\x92\x2a\x55\x1c\x53\x15\x69\x95\x66\x2c\x6d\x10\xff\x01\x6a\x57\x01\x7d\xad\xc9\x80\x3b\x05\x8d\x3e\x6b\xd1\x73\xf6\xe5\xd0\x48\x35\xfa\xd1\xd5\x13\x59\xe7\x85\x68\x72\x31\x26\x43\x82\x4e\xd2\x40\xf6\x23\x38\x20\x42\xaa\x99\x90\x6a\xe5\xc4\x4c\x9c\x58\xd1\xc6\xcc\xa7\xef\x99\xd4\x99\x4d\x80\x1c\xf8\x84\x04\x67\x44\x6f\x75\x85\xb6\xd7\x44\xc6\x73\x22\x25\x71\x2d\xc6\x3f\x6a\xf1\xe0\x4d\xef\xab\x5a\x9c\x79\xb4\x38\x43\x37\x30\x6a\x90\x6f\x8a\x5d\x19\x7b\xa0\x8b\x1a\x63\x19\xa4\x8b\x35\xf2\xe8\x6a\xd8\xcb\x4f\xa5\xf1\x42\xad\x38\x56\xd4\xc9\xe3\x90\x5a\x81\x1c\x51\x9f\x44\xd8\x90\xbc\xc5\xfd\x1a\xfb\xc4\x35\xfb\xcd\xec\x99\x86\x96\x3d\xb3\xd0\xc7\x1e\xbe\x50\x2e\xea\x5a\x50\xfd\xd1\xcf\x9e\xb1\xb4\x4f\x99\xb0\x4f\x3e\x3a\x2c\x4b\xbe\x19\x96\x9c\x88\x55\x82\xe9\x12\x9b\x9a\x9b\xe5\xc0\x0a\xc5\x1d\xa9\x28\x6d\xff\xf8\x09\x01\xe8\x88\xf1\xcf\x55\x45\x62\xc0\x8f\x49\xd0\x27\xfa\x6a\x5e\x21\xae\x18\xf9\x7d\x17\xd6\x28\xc3\xb0\x70\x18\x21\x6f\x4c\x47\x51\x1e\x1c\x11\x80\x03\xa2\x86\xac\xc5\x79\xc4\x03\x83\x68\x60\x6d\x4e\x1f\x0f\xf4\xa2\x9e\xb5\x3a\x0f\x78\xa0\xc1\x4e\xad\xdd\xd9\x65\x76\x80\x41\x5c\x84\x12\xe5\x8e\x40\xef\x73\x30\x92\x9e\xa9\x64\x24\xb9\x66\xb5\xbc\xd0\x14\x11\x40\x01\xa8\x5a\xf5\xec\x78\x5a\x19\x96\x7c\xaa\xc0\x18\xf0\x29\x91\x18\xcc\x88\x36\x12\x3e\x4e\x6d\xc2\x3d\xa1\x67\xce\xfe\x19\x58\xc9\xea\x68\xaf\x13\x6b\x2e\xdf\x8a\x09\x5f\x7d\x74\xc6\xc7\x44\x12\x32\x22\xea\xa6\xb9\xb3\x74\xb4\x41\xef\x4b\x26\xf8\x12\xe0\xc4\x70\xb0\x23\x63\x94\x70\x92\x7c\x77\xa2\x5c\x25\x79\xb0\x24\x00\xcf\x82\xff\x2f\xc9\xb9\x09\xad\xe8\x12\x0f\x2c\x92\x53\xe3\xe0\xe9\x33\x1e\x98\x27\xc7\x26\xbc\xa2\x33\x3c\x30\x4d\x5e\xad\x28\x9f\xd0\x00\xd0\x43\x6a\xec\xfe\x71\x9c\xeb\x28\x88\xb3\xe7\xf8\x9c\x4a\xf3\xf7\x40\xd4\xc5\xd4\x73\x5e\x62\x6e\xe7\x9c\x89\x39\x4b\xa9\xb9\x59\x78\x9c\x0c\x90\x46\x9e\x24\x56\x5b\xc4\x90\xd3\xc8\x23\x3c\x70\x98\x38\x8d\x3c\xc0\x03\xfb\x89\xd3\xc8\x3d\x3c\xf0\x9a\x38\x8d\x5c\xa1\x01\x49\x86\xe1\x73\xd4\x4b\xc0\x86\x73\xf1\xdd\x3c\x14\x2b\x64\x94\x7c\x85\xec\x90\x09\xca\x7a\x04\x01\xcf\x28\xc0\x99\x50\x36\xba\x1f\xa2\x70\xd3\xc4\x37\xfb\x35\xa5\x63\x1e\x05\x6b\x02\xf0\x1e\x51\x71\x2b\x13\x41\xa6\xd3\x2b\xb3\xe6\x06\x19\x3a\x03\x1b\x90\xba\x6d\xa0\x13\x6c\x8e\x0d\xb0\x20\x7e\x3a\xdc\x4c\xb1\x91\x08\x10\x94\xa7\x4f\x85\x9c\xc3\xea\x1a\x5e\x09\xa0\x8c\xce\x4f\x94\xb9\xd3\x3a\x5f\xa3\x37\xbb\x92\xd6\x4c\xc7\x78\x15\xaf\xcb\x7d\x5e\xb7\x7a\x50\xd5\x2f\x25\xa7\xe4\x52\x03\x69\xeb\xdc\x69\x11\x7b\xa4\x0f\xc4\x44\x3b\x3c\x1a\xd0\x86\x91\x09\xeb\x97\x46\x7a\xf4\xdc\xe8\x11\x7b\x28\x8d\x34\xc8\xa9\x51\x24\xb6\x4b\xf0\xc8\x39\xd9\x37\x1c\x61\x67\x78\x44\x46\x55\x23\x5a\xc9\x10\xf4\xdd\x7d\x24\x3a\xb0\xa8\xdf\xe9\x26\xd0\x05\x2d\x18\x4a\x1d\x36\x8f\xc0\x7d\xa9\x82\x37\xee\x54\xc8\xb4\xc0\x44\xab\xac\xc4\xb0\x38\x75\xc1\x61\xd2\xb2\x81\x67\xcc\x11\x38\xb1\x81\x67\x1c\x23\x70\x64\x03\xcf\x18\x45\xaf\x49\x68\x03\xcf\x18\x45\xaf\x49\x7b\x1e\xba\x43\x33\x2e\x15\xe2\x88\x88\x81\x86\x31\x58\x02\x17\x0b\x6e\x9d\x1b\x73\x25\x70\xb1\x60\x71\x99\xf5\xa1\x31\x02\x47\xfb\xf6\x50\x86\xc0\x17\x43\x74\x28\xca\x34\x93\x0b\x9b\x80\xc6\x28\xd3\x4c\xda\x36\x01\x8d\x51\xa6\x99\xb4\x6c\x02\x1a\xa3\x4c\x33\x49\x6c\x02\x2a\x70\xb1\x09\x28\x55\x09\x68\xed\xfa\xba\xab\x66\x12\x94\x09\x96\x6d\xa6\x13\x90\x42\x66\xa2\x79\x19\x58\xba\xa9\xb9\xb2\x12\x6c\x21\xef\xb4\x4e\x74\xab\x3a\xc7\xd7\xe8\x9c\xf2\x23\x6e\x5d\x05\x53\xee\xc1\x94\x4b\x4c\x7d\x13\x6b\x26\x25\x56\x24\xe9\x3c\xfa\x9f\xed\xf3\x50\xb5\x28\xad\x09\x31\xc1\x28\x7f\x22\x87\x6b\x13\x15\x67\x5b\x45\xc0\xd1\x17\xbc\x60\xaf\x44\x0a\x48\x5f\x50\xb3\xb0\xb5\x20\xa0\xe3\x43\xbe\x24\x0b\x5f\x65\x80\x17\xd4\x83\xc9\xc2\x61\xb2\xdc\x18\x13\xe9\x3c\x59\xc3\x8b\x89\x3e\x52\x39\xa6\x53\x5a\x46\x64\x4f\x20\x92\xbe\xfa\x10\x99\xdb\xf8\x9c\x3f\xd3\x4d\x11\x79\x92\x88\x9c\xfe\x0c\x91\x3d\x89\xc8\x71\x05\x91\xa5\xe4\xc8\x42\xde\x1d\x1d\xc8\x69\x3c\x7a\xa1\xc4\x83\x37\x39\xef\x87\x2f\x1b\xe2\x21\x48\x61\x73\xe5\x3b\xfc\x68\x28\xe3\x39\xa9\xa0\xd1\x97\xfc\xe8\x51\xa4\x6a\x1a\x8d\x21\xb3\xec\x18\xb1\x5f\xd6\x90\xbe\x47\x43\xa6\xcc\x6a\xc8\x8c\x79\x34\x84\xcb\xda\xd1\x52\x66\x58\x59\x39\x9c\x54\xcb\x80\xde\x55\xa9\xba\xd4\x1e\xc1\xa1\xa1\x9d\x6f\x7a\x2e\xef\xb9\x0e\xeb\x7d\xee\xaf\x92\xe5\x32\x88\x7b\x9b\x2f\x41\x39\x8d\x37\x99\xaf\x64\x71\x4d\x80\xec\x45\x71\xe5\xcb\xfa\xfa\x54\x25\x92\x91\x75\x97\x5a\x54\x4c\xef\xa4\x90\x25\x46\x91\x37\xba\x16\x7f\x29\x98\x40\x4d\xb8\xc6\x79\xa2\xf5\x48\x8a\x9b\xde\xa0\x5d\x75\x78\x4f\xbf\xfa\x5d\x9e\x27\xe8\xf6\x24\xa9\x4c\x06\xf0\x1b\x85\x4a\xad\x36\xca\x9d\x78\xe6\xdc\x5a\xab\x6d\x5d\x26\x47\x9e\xb4\xd5\xb2\x2e\x93\x23\x4f\xda\x4a\xac\xcb\xe4\xc8\x93\xb6\x22\xeb\x32\x39\xab\xd4\x6a\x96\x0c\xe0\x59\x66\x3f\x05\xce\x79\x46\x36\x7f\x38\x24\x55\x01\xab\x0c\xe3\xc4\xe5\x5a\x5e\x59\x2b\x35\x6d\x7f\x37\x79\x7c\x7a\x5d\x2f\x04\x30\x59\x19\x5b\x51\x80\x15\xd1\xa5\xd3\x4a\xbc\xa8\xae\x93\xde\x6b\x48\xec\x66\x63\xf2\x42\x82\x55\xe8\x72\x81\x5f\x4c\xdc\xdb\x53\x5b\xd7\x48\x67\x64\x5d\xe2\xbe\x27\x35\x93\x03\xbd\xd8\x24\x89\x53\x77\xe5\x81\x1a\xf7\x78\xf7\x4b\x99\xd7\x1e\x95\x31\x85\xba\x3d\xbf\xb2\xf0\x89\x01\x2c\xa5\x04\x27\x26\x6d\x6a\xbf\x52\x5d\x2f\xe3\xe9\x9e\x90\xa0\xb7\xa0\x55\xa9\x7f\x70\x60\xb5\xcb\xc6\x21\xab\xb1\x91\x43\xab\x47\x82\x93\x48\x88\x27\x13\x57\xa4\xb6\x26\xed\x91\xa0\x1f\xfd\x4a\x6d\x26\x03\xd6\x23\xc1\x41\x24\x44\x97\x8b\x38\xb5\x12\xb6\xe4\xbe\xb0\x25\xf7\x85\x2d\x39\x94\xab\x54\x72\xfb\x5c\x08\xa3\x22\xc1\x1c\x57\xab\x14\xe3\x04\x6c\x52\x63\x56\x26\xcb\x6a\x27\x91\x3e\x32\x42\xd7\xc1\x2c\x9a\xd6\x16\xe5\x92\xc3\x15\x2a\x73\x5f\x60\x9d\xbb\xa4\xa3\xfd\xca\x2e\x8d\xd8\x4e\x84\x77\x59\x45\x42\xff\x32\xa1\x7f\x15\x8b\x27\xad\xfe\xfa\x62\x11\x86\x19\x8f\xd1\x1e\x44\xdf\xcc\xee\xe3\xe8\x90\x04\xa3\x48\x79\x8a\x34\xf1\x16\x3b\xd6\xef\xde\x3e\x8c\xec\xe5\x39\x8a\x16\x58\x30\x7a\xea\xd5\x9d\xc4\x5d\x92\x4c\xab\x76\x35\x83\xfc\x2e\x58\x25\x32\x4c\xc8\xa5\xad\xa8\x84\x6c\xb9\x30\xc6\xc6\x1a\xa2\xeb\x95\x4e\x68\xf0\x44\x75\x78\xe1\x6c\xcc\x6f\xa9\xb6\x30\xe0\x73\x55\x36\xf9\xd4\xe4\xad\x21\xaa\x7f\xf0\x11\xaa\x4d\xb4\x86\xae\xfe\xc1\x1f\xf1\xc0\xc0\xd5\x3f\x78\x1f\x0f\xf4\x5c\xfd\x83\x3f\xe0\x81\x46\x6c\xeb\x1f\x7c\x37\xf6\xd6\x3f\xda\x73\x57\xff\x48\x97\xf1\x39\x0d\x76\x99\x34\xde\x59\x6b\x9e\xcc\x5d\x79\x9f\x3f\x27\xd7\xb6\xf0\x20\x86\xac\xd3\x98\xe1\x81\x69\x32\xb5\x6e\xe3\x09\x0f\x4c\x92\x89\x75\x1c\x63\x3c\x50\x08\x8f\xa2\x71\x1c\xa1\x01\xa0\x0d\x57\xdc\x68\xef\xc7\xae\xb8\x91\xdd\x0d\xc3\x60\x25\x83\x2f\xd6\x86\x9e\x73\x6b\x29\xcd\x6d\xe2\xd4\x06\xeb\xd6\x52\x40\x60\x6a\xdd\x5a\x1a\x22\x30\xb3\x6e\x2d\x8d\x10\x38\xb6\x6e\x2d\x4d\x10\x38\x44\x99\x60\xca\x72\x59\x08\xdd\x93\x03\x03\x7b\x28\x45\x60\xe8\xd9\x43\x01\x81\x05\x85\xfa\xd0\x10\x81\xd9\xb1\x3d\x34\x42\xe0\x68\x82\x0e\x8d\x11\x36\x91\xa3\x94\x61\x24\x1d\xa5\x25\xbe\x38\x4a\x4b\x7c\x71\x94\x22\xbe\x00\xeb\x85\xc1\x01\xd5\x61\xa2\xc7\xb6\x00\xa4\x05\x09\x76\x95\x30\x5c\x34\x73\x91\x72\xfd\x35\x25\x6b\x2d\xb0\x1f\xe8\xca\xad\x00\xf8\x8b\x2a\xb4\x99\x4f\x7b\x46\xd0\x17\x3f\xb8\xf9\x6c\x96\x3d\x90\x82\xca\x98\x6b\x46\x74\xa4\xe3\x6e\x99\x34\x51\x4d\xe1\xc9\x06\xb8\xe6\xe4\xcc\x84\x89\xda\xee\xd1\xe1\x97\xe6\xbc\x46\xcd\x20\x54\xaa\x53\xa8\x4a\xe1\x9b\x58\x2b\x1f\x89\x89\xde\x32\x96\xb3\x15\x2b\x4b\xc8\xe9\x2f\xd4\x43\x2a\xc1\x72\x13\x64\x04\xd0\x95\x51\x89\x8c\x53\x2b\xa7\x8a\x09\x2a\x0a\x92\xf1\xee\x45\x35\x96\x97\x71\x6c\x2d\x02\xaf\x47\x32\xea\x93\x61\xb3\x0b\xd4\x1c\x54\x31\xb1\x62\xc2\x1d\x3a\xa7\x62\xdf\xc5\xf0\x4d\xf3\x91\x00\x35\x12\xde\x1c\xd1\xb5\x25\x46\x89\x87\x13\xb1\x2e\x22\x94\x8b\xe2\x86\xa2\xaf\xf2\xaf\x32\xec\xa3\xbf\x2c\xe1\x2d\x4a\x56\xe2\x23\x49\xc2\x81\x34\x4d\x95\x5a\x07\x2d\xc5\xea\x12\x2c\x68\x6b\xac\x61\x9e\x25\x7e\x40\x9a\x0f\x04\x68\x3d\x33\x60\xba\x49\xe1\xfb\xe6\xa4\x3a\x64\x0d\xec\xbb\x97\x7c\x97\xa1\x18\xd8\x67\x74\x3d\xf4\x9d\x82\x78\x4a\x9a\x33\x02\xf4\x99\xf8\x73\x09\xfd\x39\xb9\x2f\x6d\x91\xd2\x28\x95\x83\xea\xc0\x5e\x84\xa7\x32\xb7\x99\x86\x48\xa7\x35\x58\x92\x1e\x96\x92\x22\xbc\x78\x4c\x01\x46\x72\xf1\x1c\x2f\xd6\x60\x99\xcf\x0d\x43\xa4\x35\x8e\x4a\x23\xbb\xcf\x88\x4a\x03\xfb\xea\xbf\xb1\xf5\x64\x51\xc4\x61\xae\x97\xa1\xf6\x31\x86\x7e\x5e\x73\x4f\x9e\x29\xd0\xa5\x9c\x31\xa1\x25\x35\x31\xca\x33\x29\xab\x89\x32\x71\xc2\x7a\xf6\x68\x89\x17\x15\x7a\xd4\x35\x2a\xed\xee\x17\x86\xf0\xec\x2b\xb9\xc7\x94\xa0\x56\x19\xfb\xcd\x5a\xa4\x8f\xb8\x3b\xc2\x81\x7b\x54\x26\x21\x7b\xa4\xac\x7d\xa8\xc0\x8a\xc1\xfa\xf3\x6f\x9f\x96\x6f\xc1\x2b\x95\xf6\x6d\x55\xbd\x05\x53\x2a\xe4\x7e\x16\x0a\xe4\x4f\x43\x49\x99\x08\xef\x6d\xd5\x42\x4d\x3f\x0a\x01\x8e\x42\x05\x77\x82\xd2\x50\x61\x30\x5b\x4a\xe2\xb5\x85\xcf\x22\xb5\x64\xd5\x85\x1a\xca\x80\xee\xb7\xff\xfe\x42\x3f\xaa\x6f\x2d\x2c\xd6\x9d\x28\x72\xa8\xa7\xda\x42\x0d\x15\x8c\xfd\x07\xa8\xc6\x2a\xe4\xac\x2c\x9c\x31\x80\x59\x6d\xa1\x86\x0a\x5b\xd2\x56\x5f\x88\x7e\x19\xd5\xc5\x3f\x58\xe8\x47\xf5\xad\x85\xbd\xdf\x8e\xea\x98\x01\x8c\x6b\x0b\x35\x54\xdc\xa2\x3f\x07\xd5\xbf\xcd\xd5\xdd\x10\x60\xb7\x76\xad\x34\x54\x18\x93\xf4\x8f\xe1\xea\x5b\x0b\xcf\xd7\xa1\x3a\x62\x00\xa3\xda\x42\x0d\x55\xf7\xf1\x4f\x41\xf5\x2c\x04\x38\xab\x89\x43\x43\x85\x0d\x5d\xb7\xf0\x2d\x39\x1e\xa6\xbf\x5b\x01\x36\x38\xf1\x37\xa3\xfa\x16\x73\x86\x7f\x0e\xaa\xff\x46\x5c\xdd\xa2\xfa\x13\x54\x4f\x42\x80\x93\xda\x42\x0d\x15\x56\xee\xb7\xeb\xea\xdf\xb6\x00\x1b\x2c\xdc\xa2\xba\x45\xf5\x8f\x40\xf5\x5f\x6f\x01\xfe\xf5\x5c\xfd\x23\xed\x2a\x57\x0d\x0a\x95\x85\xcb\x10\x60\x59\x5b\xa8\xa1\x00\xf1\x61\x4b\xe4\xab\xdb\x0c\x6d\x9b\xa1\x6d\x33\xb4\x6d\x86\xb6\xcd\xd0\xfe\x4d\x7c\xde\x36\x43\xfb\xff\xc1\xd5\x2d\xaa\xdb\x0c\x6d\x8b\xea\x16\xd5\x6d\x86\xb6\xcd\xd0\xd6\x67\x68\x6b\xbf\xee\x7d\xd2\x4f\x2c\x06\x6b\x5e\x3e\xe3\x2f\x7b\xe6\xc3\x27\x7a\xb3\x0b\xf8\xab\xef\xa9\x7c\x68\x16\x8b\x44\x30\x5a\x97\x07\xf6\x85\xed\x55\xdf\x76\xd9\x1a\x72\xc6\xea\xb3\x30\x40\xdc\x0b\xc5\x3f\x1b\x6d\x58\x21\xde\x1d\xd3\x48\x7e\x7e\x4c\x35\xc8\xd3\x87\xd3\xc6\x55\x83\xd9\x07\x50\x9f\x3d\x6f\x95\xe2\x3b\xf5\x5a\x7e\xfd\xfb\x28\xb7\x46\xf6\xa4\x4a\x87\x43\xbc\x2d\x09\x0e\xa6\x1a\x7f\xf5\x87\x64\xf3\x90\xfc\xa6\x76\xbc\x3a\x7f\xcf\x3c\x2c\x14\x92\xd2\x4a\x65\xdb\xd1\xc1\x7c\x46\x05\xe0\x03\xf2\x7f\x32\x37\xbd\x11\x94\xe9\xbe\x9d\x7a\x87\x02\x57\x3d\x87\xb7\x55\x1a\x11\x07\x57\xba\x37\xc9\xf4\x63\x77\x54\x33\x9c\xfb\x46\xde\x57\x13\x38\xd0\x85\xfa\x2e\x7e\x8b\xdf\xd5\x81\xeb\x22\x32\x2f\x27\x9f\x4c\xcf\x41\xa5\xa9\x59\xb5\x25\xa0\x27\x6d\xbe\x7e\x93\xd2\x97\xf4\x7a\x5f\x03\x57\x8f\xbd\x75\xe7\x80\xe9\x38\xfa\x78\x18\xda\x96\xa3\x7c\x37\x2c\x68\xe0\xba\x0b\x6a\x84\x88\x5d\x0e\x29\x42\xc3\xee\x32\x67\xb9\x6d\x50\xcb\x57\x6c\x5e\x6e\x71\xb0\xd3\x5e\x99\xfd\xe5\x84\xfc\x88\x15\xde\xad\x16\x68\xce\x1e\x2b\x21\x64\xe7\x34\xd0\x9c\xc7\xa8\xf4\xab\x05\x76\xce\x30\x72\x73\x9e\xc4\x1c\xd7\x27\x65\xe7\x4c\xd5\x1c\xc1\xe0\x7c\x19\xf5\xa8\xbd\x14\x6d\x84\x4f\x8c\xf0\x89\xfd\x67\xed\xa3\x39\x27\x31\xfa\x45\x88\xaf\xfe\xcb\xb5\xc9\x43\x40\x7d\x8d\x1c\x1f\xef\xab\x6d\xa0\xb2\xf7\xc4\xdb\x25\xe3\x57\x1f\xd7\x4c\x36\x21\x6f\x75\xd7\xb8\xfe\x0b\x44\x8b\xef\xfc\x4a\x53\x5a\xe5\xa1\x14\x3e\xde\x19\x04\xdf\xeb\x82\x37\x7a\x93\xd0\xe3\xaa\x4a\x43\xb2\xd8\xfd\x95\x20\x73\xe6\xeb\xef\xf2\xb4\x8d\x0c\x55\x37\xea\xd2\x30\x44\xf5\xcd\x7c\x1c\xb4\xc6\xf6\x17\x31\xf2\x51\xab\xa0\x52\xf9\x4d\xa7\x8f\xaf\xb9\x46\x71\xe0\xe3\xbc\xf5\x68\x7e\x2e\x24\x7f\x6e\x35\xca\x4f\x57\x4c\xb7\x0c\x7b\x55\x8f\x1b\xc6\x44\x53\xf8\x93\x0d\x4f\xc5\x86\x1a\xdd\x7c\xb7\x55\xf9\x35\x10\x3d\xa9\x97\x9a\x49\x2c\xef\xa7\xc7\x96\x8c\x02\x93\xf1\x24\xc8\x28\x11\xab\x57\x4f\x34\xce\xf2\x88\x99\x38\xe2\x84\x00\x9c\xc9\x59\xfb\x76\xd6\x02\x9d\xb1\x14\x67\x54\xde\x23\x08\xba\xb4\x67\xb6\x4d\x53\x7a\xe9\x6b\xfa\xe8\xd0\x38\x48\x0b\x5a\x9e\xf5\xc9\xd3\xf3\xe7\x64\x2e\x94\x63\x27\x78\xb7\x33\x1b\x3f\x4f\x6f\xbb\xb3\x9d\x0f\xef\xff\x63\xe7\xaf\xbf\x1a\xb3\xf9\x6a\xd8\x9d\x35\xfe\x6b\xbe\x9a\x74\xff\x9a\xdd\xce\x66\x3b\x01\x06\x2f\x3a\xd3\x7e\xe7\x66\xd8\x9d\x79\xc6\x46\xfd\x97\x7e\xe1\x1b\x98\x74\x8a\xee\xd0\x37\x50\x74\x16\x1e\xe8\xcd\xf3\x7c\x3e\xf6\x6e\x34\xec\xcf\xe6\x3e\xf8\xfd\x78\x3a\xf2\xee\x3f\x9e\xf7\xef\xfb\xb7\x9d\x79\xdf\xbb\xdf\x4d\x67\xa6\x69\xfc\xcf\xe0\xdd\x4e\xd1\x19\x29\x36\x88\x7f\xee\xfb\xc3\xee\xce\x87\xf7\x3b\x72\x8a\x98\xf1\xee\x7f\xde\xfd\x6f\x00\x00\x00\xff\xff\x47\x1e\x9a\x71\x52\x48\x00\x00") func web_uiStaticBaseCssMapBytes() ([]byte, error) { return bindataRead( @@ -151,12 +151,12 @@ func web_uiStaticBaseCssMap() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web_ui/static/base.css.map", size: 18514, mode: os.FileMode(420), modTime: time.Unix(1471050089, 0)} + info := bindataFileInfo{name: "web_ui/static/base.css.map", size: 18514, mode: os.FileMode(420), modTime: time.Unix(1485366992, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticBootstrapMinCss = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\xbd\x6d\x93\xe3\xb8\x91\x20\xfc\xdd\xbf\x42\xee\x89\x89\x99\x76\x4b\x1a\x52\xef\x2a\xc5\xd4\xe3\x7d\xbc\x1b\xbb\x8e\x58\xef\x97\xf3\x87\x8d\x18\xcf\x5d\x50\x24\x55\xa2\x87\x12\x65\x92\xea\x97\xa9\xd3\x7f\x3f\xbc\x23\x91\x48\x90\x94\xba\x7b\xe2\x2e\xc2\xae\xf0\x74\x15\x90\x48\x24\x32\x13\xc8\x44\x12\x48\xfc\xf0\x87\xdf\xff\x6e\xf4\x87\xd1\xff\x5f\x55\x6d\xd3\xd6\xc9\x65\xf4\x7e\x3e\x8d\xa7\xf1\xe8\xfb\x63\xdb\x5e\x9e\x7e\xf8\xe1\x25\x6f\xf7\xba\x6e\x9a\x56\xa7\xb7\x1c\xfa\x4f\xd5\xe5\x53\x5d\xbc\x1c\xdb\xd1\x2c\x8a\xe3\x09\xfb\xcf\x62\xf4\xd7\x0f\x45\xdb\xe6\xf5\x78\xf4\xe7\x73\x3a\xe5\x40\xff\x59\xa4\xf9\xb9\xc9\xb3\xd1\xf5\x9c\xe5\xf5\xe8\x2f\x7f\xfe\xab\x44\xda\x70\xac\x45\x7b\xbc\xee\x39\xbe\x1f\xda\x0f\xfb\xe6\x07\xd3\xc5\x0f\xfb\xb2\xda\xff\x70\x4a\x1a\x86\xea\x87\xff\xfc\xf3\x9f\xfe\xed\xbf\xfe\xc7\xbf\xf1\x2e\x7f\xf8\xdd\xef\x18\xa5\xa3\x73\x55\x9f\x92\xb2\xf8\x35\x9f\xa6\x4d\xc3\x49\x8d\xa6\xd1\xe8\x7f\x0b\xdc\xaa\x3b\xf6\x17\x43\x3e\x2d\xaa\x1f\x0c\x2c\x6b\x7d\x6c\x4f\xe5\xeb\xa1\x3a\xb7\x93\x43\x72\x2a\xca\x4f\x4f\x4d\x72\x6e\x26\x4d\x5e\x17\x87\xdd\xe4\xd4\x4c\xda\xfc\x63\x3b\x69\x18\xec\x24\xc9\xfe\x7e\x6d\xda\xa7\x38\x8a\xbe\xdd\x4d\x3e\xe4\xfb\x5f\x8a\x96\xae\xbd\xed\xab\xec\xd3\xeb\x29\xa9\x5f\x8a\xf3\x53\x74\x4b\xea\xb6\x48\xcb\x7c\x9c\x34\x45\x96\x8f\xb3\xbc\x4d\x8a\xb2\x19\x1f\x8a\x97\x34\xb9\xb4\x45\x75\xe6\xbf\x5e\xeb\x7c\x7c\x60\x23\x65\x5c\x3a\xe6\x49\xc6\xff\x79\xa9\xab\xeb\x65\x7c\x4a\x8a\xf3\xf8\x9c\xbc\x1f\x37\x79\x2a\x80\x9b\xeb\x89\x61\xfe\xf4\x9a\x15\xcd\xa5\x4c\x3e\x3d\x31\xae\xa4\xbf\xdc\x92\x6b\x56\x54\xe3\x34\x39\xbf\x4f\x9a\xf1\xa5\xae\x5e\xea\xbc\x69\xc6\xef\x59\x87\x95\x81\x2c\xce\x65\x71\xce\x27\xa2\xc1\xee\x7d\xce\xa9\x4a\xca\x09\xe3\xc3\xcb\xf9\x69\x9f\x34\x39\xaf\x95\x88\x9e\xce\x55\xfb\xfd\x4f\x29\x63\x4a\x5d\x95\xcd\xcf\x6f\x0d\x8a\x73\x75\xce\x77\xc7\x9c\xcb\x97\x0d\xec\xa7\x63\x91\x65\xf9\xf9\xe7\x71\x9b\x9f\x58\x75\x9b\x3b\x70\xb7\xe4\x75\x9f\xa4\xbf\xf0\x61\x9c\xb3\xa7\x68\xc4\x18\xf1\x94\xb0\x31\xbc\x67\x9c\x78\x3a\x56\x8c\x80\xd7\xea\xda\xf2\x4e\x39\x8f\xf6\xfb\xfa\xa7\xb6\x68\xcb\xfc\xe7\xd7\x7d\x55\x33\x06\x4c\xf6\x55\xdb\x56\xa7\xa7\xf8\xf2\x71\x94\xb1\x5f\xf3\xec\xb6\x1f\x33\x45\xa8\xce\x2f\x52\x5c\x1f\x24\x19\xeb\x28\xba\x65\x87\xb3\x2c\x6b\xda\x4f\x65\xfe\x54\xb4\x6c\x50\xe9\xed\x18\xab\x42\x26\x9e\xa7\x59\x7e\xda\x29\x89\x4c\x57\xeb\xfc\xc4\xc8\x61\x7f\xfe\x02\x49\xfc\xe6\x70\x88\x76\x69\x55\x56\xf5\xd3\x37\x11\xc3\xda\x30\x1d\x29\x01\x8a\x0d\x93\x6c\x73\x65\x44\x5c\x2f\xa0\x74\xbd\xfc\x76\x27\xf8\xaa\xd9\xb2\xbb\x54\x4d\xc1\x45\xf5\x54\xe7\x8c\x29\x6c\xbc\x41\x66\x73\x4c\x6d\x75\x79\x9a\x4c\x97\xf9\x89\xe3\x7e\x55\x83\x9e\x4c\x67\xbc\xa4\x38\xbd\x28\x6e\x30\x16\x35\xef\x5f\x84\x5c\x9e\x6a\xa6\x27\x6f\x5f\x39\x03\x0f\x65\xf5\xe1\x49\x0a\xe1\x26\x95\x48\x6b\x5d\xcc\x46\xb8\x88\x2e\x1f\x6f\xc7\xfa\x75\x72\xaa\x7e\x65\xdc\xfc\xc8\xe9\x2d\xce\x2f\x4f\x5c\xae\x39\x23\x9f\x15\xed\x02\xc5\x46\xc4\x17\x86\xd2\xf4\x94\x5c\xdb\xea\x96\x56\x4c\x89\x7f\xd9\x67\x4c\xcb\xf2\x71\x93\x9c\x2e\xce\xe4\x39\x55\xe7\xaa\xb9\x24\x69\x3e\x36\xbf\xed\x2c\xaf\x18\x55\xb7\xfd\x95\x8d\xf0\x3c\x2e\xce\x97\x6b\x3b\xae\x2e\xad\x54\x73\xc6\x10\xa6\xdf\x63\x3e\x9d\x92\x3a\x4f\x5e\xa5\x18\x8a\xf3\x91\xcd\xc3\x56\x60\x30\x7f\x98\x79\x25\x31\x59\xf2\xde\x17\x4d\xb1\x2f\x73\xdd\x83\x44\xf9\x2a\x66\x28\x5b\x3f\xce\xcd\x81\xcd\x7a\xa9\x99\x0a\x82\x4f\xfd\x91\x20\xe4\xa7\xf6\xd3\x25\xff\x51\x16\xff\x3c\x06\x45\x6c\x1a\xe5\xad\x53\xc2\xa4\x74\x2a\xda\x9f\x5f\xf5\x0a\x90\x5c\x2e\x79\xc2\xd0\xa7\xf9\x93\x6c\xbf\x4b\xaf\x75\xc3\x88\xbf\x54\x05\x63\x68\xad\x3a\xfb\x89\x4d\x8d\x84\x51\x97\xfd\x0c\xbb\x35\x85\xaf\xaa\x51\x96\x1f\x92\x6b\xd9\xaa\x46\x4f\x4f\x42\x76\x87\x2a\xbd\x36\x93\xe2\x7c\x66\xcb\x82\x68\xe7\x97\x1b\x35\xd9\x5d\x92\x2c\xe3\xe2\x8c\x6e\x02\xf4\x15\xea\xa6\x5c\xf7\x6e\x60\x34\xe9\x31\x4f\x7f\x61\x12\x77\x07\x9d\xb0\x35\x80\xcf\x43\xa3\x1b\x66\x4a\x7e\xc4\xf8\x65\x8b\xf3\xf5\xb4\xcf\xeb\x9f\x19\x5d\x8a\x2b\x82\xa8\x49\x73\x29\xce\x13\x28\xf0\x00\x34\x5b\x07\x5c\xe8\x57\x45\xb0\xd0\x38\xc8\x7c\xc6\xea\xf4\x48\x32\x9f\xcb\xf9\x50\xe4\x65\xb6\xeb\xd2\x77\xdd\xf0\xae\xe9\x40\x50\x60\x69\x97\x05\x93\x94\x13\x51\x12\x83\x0d\x35\xc8\xf2\xb4\xaa\x13\xbe\x4e\x50\xa3\x11\x6a\x2a\x86\xc3\xf4\x4f\x0b\x97\x2f\x85\x4d\x55\x16\xd9\xa8\x29\x4a\xa6\xf5\x66\x2a\x8c\x66\x17\x2b\x98\xe9\x9c\x2d\x1d\xa3\xe9\x6a\x26\xfe\x59\xf3\x75\xa4\xcc\x5f\xf2\x73\x46\xe9\x88\x99\x70\xee\x24\xd7\xf3\xd2\x5b\x69\x5b\xae\xae\x7a\x85\x66\x93\xb4\x4c\x2e\x4d\xfe\xa4\x7f\xd9\xa9\x0a\x3e\xef\x15\xfe\x6c\xdc\x1e\x5f\x6d\x7f\x7f\x3c\xe5\x59\x91\x8c\x2e\x35\x9b\x1b\xaf\x7f\x90\x93\xb3\x39\x26\x19\xeb\x98\x0f\xf9\xf7\xc5\xe9\x52\xd5\x6d\x72\x6e\xc1\x42\x0c\x0a\xc1\x6a\x2d\xa6\xf4\x85\xd1\x7e\x6e\x21\x00\x17\x20\x85\xef\x96\x30\xab\xc3\x57\x08\x66\x48\x64\xb7\x56\x00\x4f\xc2\x0d\x91\xe6\xef\xa7\x63\x9d\x1f\x7e\x7e\x4a\x0e\x4c\x23\x5f\x95\x0e\x3c\xbd\x19\x7d\xff\x66\x94\xb4\x6d\xfd\x3d\xaf\x7d\x3b\x7a\xf3\xf6\x0d\xb4\x58\x41\x68\x51\xad\xc0\x05\xe2\xff\xf9\xe3\x9b\xbf\x27\xcc\x44\xa7\x75\x71\x61\x80\xaa\xe5\xd8\x54\x7e\xf3\xc6\x43\xf6\x86\xaf\xc1\x63\x61\xb4\xff\x71\x65\x0e\x82\xaf\x0c\xdf\x6c\xb7\x5b\x26\xd2\x17\x66\xda\x99\x24\x7f\x61\x73\x8f\x3b\x1a\x4f\xc9\xfb\xaa\xc8\x6e\x2d\x77\x27\x8c\x5d\x16\xe2\x9b\x48\x0f\x63\x22\x24\x7c\x6b\xd9\x9a\xc2\xcc\x4c\xa8\x3d\xaf\x3b\x25\x1f\x27\x1f\x8a\xac\x3d\x0a\xef\x06\xf0\xf4\x32\x3e\xce\xc6\xc7\xf9\x6b\x55\x5f\x8e\x4c\x1a\x4f\xf3\x1d\x03\xab\x3e\xb0\x5f\x6e\xb2\x02\x60\x15\xc3\x52\x48\xd5\xd2\xec\xda\xde\x03\x40\x3c\x65\x1e\xcf\x3e\xa9\x5d\x7f\x62\x2a\xa8\x1f\x31\x95\xd2\xbf\x1d\x01\x8a\x89\x52\x18\x84\x68\xdf\x9e\x9f\xa7\x29\x53\x93\x76\x3c\xcd\xea\xea\x72\xbd\x3c\x83\x32\xad\xc9\xcc\x08\x4f\x28\x85\xbb\x4d\xcb\x64\x9f\x97\x04\xcf\xb9\x83\x30\xed\x9e\x0d\x10\x8d\x64\xbc\x84\x64\x7e\x6f\x7b\x1c\x7b\x45\x19\xd1\x4b\x96\x65\x00\xcb\xed\x0f\xaf\xc4\xfa\x05\xd6\x66\xbc\xf2\x81\x2a\xb2\xf4\xf6\xb4\xcf\x99\x55\xcc\xc7\x4a\xe9\xbe\x30\x76\xeb\x5a\x0b\xeb\xbf\x9a\x4d\x97\xc0\x73\x4e\x2e\x93\x23\x5b\x57\x4a\xbe\xb6\x28\xe6\xd7\x2f\xfb\xe4\xfb\x68\x2c\x7e\xde\x4a\x2f\x1a\x3a\x17\x6f\xfe\x23\x67\xcb\x1e\xf7\xa4\x46\xff\x95\x5f\xf3\x37\x63\xf3\xf7\xf8\x5f\xea\x22\x29\xc7\xc0\x75\x07\x4e\xc7\x82\x2d\x8e\xd0\x0a\xc6\xd3\xc5\x6c\xb3\x5c\xc7\x8b\xb9\x5e\x64\xe6\xf3\xf9\x8e\xd4\x24\xb9\xf2\x8f\x1d\x8f\xc2\x3a\x29\x90\x36\xe8\xaa\xc8\x7e\x75\x09\xec\x5a\x95\xdd\xb4\x83\xf3\x0d\xa3\x64\x9f\x26\x3b\xbc\x20\x49\xff\x59\x7a\xc9\x6c\xdd\x12\x86\x5e\x37\x99\x25\xab\xc5\x76\xe5\x35\x01\x6b\x98\x82\xd7\xde\x75\x7b\x2c\xce\xca\x85\xde\xe9\xb2\x25\xd3\x31\xbe\xd2\x8f\xb4\x38\xa4\x2f\xc1\x96\xe5\x17\x39\x7c\x0d\x39\xa9\x0e\x07\x66\x82\x9e\x26\xcc\xc4\x20\x1f\x33\x12\x8b\x03\xf2\x6d\x4f\xcc\x1b\x65\x3e\xd8\x94\x55\x4d\x98\xf3\x74\xa9\xd8\x62\xc2\x3c\xfe\x29\xdb\xd4\x9d\xf6\x67\xb6\xf3\x79\x66\x35\xe0\xcf\x51\x22\x0b\xd8\x74\xac\xae\x8c\xc1\xd2\x73\x78\x9e\xb2\x75\xfa\xd4\x51\x23\x5a\xb9\x7b\xa0\x9d\xbb\x4c\xed\xa0\x0b\x21\xc9\xe1\xc2\xcd\xf5\x34\x9b\x70\x2f\xe7\xda\x3c\xad\xd8\xb8\x44\xb5\x21\xc9\x98\xab\x0e\xc5\x21\xb5\x65\x47\x4e\xe0\x9d\xdb\x1f\x47\x6a\xe6\x00\xb7\x61\x72\xaf\xc0\xb6\x1a\xa3\xe9\xac\x19\xe5\x6c\x6f\xc0\x46\xca\x5d\xa2\x5d\x4f\x35\xb9\xaf\xeb\x63\x42\x5a\xd4\xa9\x5d\xb3\x14\x4d\x4b\xb6\xb3\x61\x1b\x05\x29\x57\xbe\x18\x3e\xcd\xd8\xde\x41\xb9\x17\x7a\x23\x26\x8a\x8c\x0b\x61\x17\x4e\x38\xdc\x3c\x67\xa2\x6f\xea\x49\x75\x2e\x3f\xbd\x9a\x7d\x50\xb2\x67\xd5\xcc\xc5\xdb\x29\xc2\x2e\x66\x83\x11\x9b\x5e\x9e\x26\x31\xf0\x61\xa2\x1d\xda\xde\xec\xd2\xb2\xb8\xb0\x0d\x55\xda\x9a\xf5\xc1\xd0\xc2\x36\x7a\xd2\x0e\x8d\x8f\x8b\xf1\x71\x39\x3e\xae\xc6\x53\x56\x34\x65\x65\x53\x56\x38\x65\xa5\x53\x56\x3c\x3d\xae\xc2\x33\x56\xb9\x38\xcb\x28\x42\x12\x8f\x77\xce\x56\x84\xf5\x35\x12\xfb\x42\xd6\xa3\xfe\x65\xae\x7f\x59\xe8\x5f\x96\xfa\x97\x95\xfa\x65\x6a\x9a\x4d\x4d\xbb\xa9\x69\x38\x35\x2d\xa7\xa6\xe9\xd4\xb4\x65\x4d\xa7\xa6\xcb\xa9\xe9\x73\x6a\x3a\x9d\x9a\x5e\xa7\xa6\xdb\xa9\xed\x77\x6a\x3b\x9e\xda\x9e\xa7\xb6\xeb\xa9\xed\x7b\x6a\x3b\x9f\x82\xed\xaf\xe2\xce\x02\x73\x47\xaf\x9f\xcc\x01\xb9\x09\x8e\x0b\x41\x4c\xa5\x30\x58\x2f\x3d\x1a\x15\x8b\x0d\x6a\xec\xf1\x08\xb0\xc8\x63\xb2\xe5\x1a\x1c\x1a\xc1\xa2\x29\xc5\x2d\x3b\x72\x68\x97\x96\x4c\xfb\x17\x42\x4f\x84\x9a\x28\x0d\x5a\x41\xea\xe3\x10\xf5\x0b\x4f\x86\x40\x84\x84\x1e\xac\x46\x58\x6e\x53\x4a\x84\x53\x5a\x9a\x2b\x9f\xfa\x35\xa7\x5e\xf0\x1e\x14\xce\xf9\xaa\x26\x45\x01\x4b\x05\xc5\x52\x32\x20\x32\xb2\x10\xe3\xe0\x74\x80\xd2\x78\xc3\x4b\x05\x3b\x5e\x5d\x5b\x7a\x53\xdc\x01\xa5\xdc\x36\x5c\x8c\x59\x18\x45\x23\xc1\x9b\x69\xc9\x5d\x4f\x62\x11\x01\x2d\x57\xfa\x4f\xa5\x62\x33\x6f\x02\x2e\xf4\x9e\xe1\xfb\x13\x43\x23\x57\x90\xf5\x8a\x51\xf7\xf6\x55\x76\x00\x46\xc2\x96\x90\xdb\x4d\xf1\xca\x8b\xde\x30\x3e\xa5\xcc\x76\xc0\x40\x91\xda\x0f\x4f\x85\x2d\x2d\xf3\x83\x8a\x16\x48\x4b\xc6\xff\x56\x55\x22\xa0\x09\xeb\x44\x81\xaa\x4c\x73\xbe\xcd\x87\xb5\xb2\x44\x55\xf3\xa8\x60\x71\xf8\x04\xeb\x55\x91\x02\x38\x5d\xf9\x96\x04\xcc\x24\x59\xcc\xb6\x48\x22\xce\xe7\x38\x0a\xb7\xc4\xa9\x54\x61\x34\xed\xc5\x44\xeb\x38\xd1\xcd\x9b\x6b\x9a\xe6\x8d\x71\x1a\xe6\xe9\x7a\x35\xcf\x74\x73\x55\xe9\x36\x9f\xed\x97\x8b\x59\xaa\x9a\x17\xe7\x43\x65\xda\xc6\xeb\x68\x73\xd0\x6d\x79\x0d\x6a\xb8\x58\xce\x56\xba\xdf\x0f\x49\x7d\x66\x2b\xb8\xae\xdb\x24\xab\x6c\xbe\xd7\x6d\x55\xa5\xdb\x7c\xb5\x5a\xc6\xa6\xdf\x2c\x39\xbf\xd8\xaa\x64\xbb\x58\x2c\x66\xba\xb5\xac\x73\x1b\x6f\x16\xf3\xe5\x7c\xc1\xdc\xfc\x17\xcc\x30\x61\x8f\x3d\x2b\x6d\xd8\x68\x1b\x28\x84\x3e\xac\xe6\x27\x03\xd5\xdc\xf4\x81\xb2\xc3\x21\xca\x36\x12\xa1\xcb\x56\x1f\x36\x8d\xf3\xd9\x7e\x2e\x10\x0a\xfe\x12\xd8\xb6\x79\x76\x58\x4b\x6c\x80\xd1\x3e\x60\x72\x60\xa0\xb9\x40\xa5\x39\x4e\xb8\x24\xe9\x61\x93\xcf\x25\x36\x97\xf5\x04\xec\x3a\x4f\xf7\x4b\x81\x50\xc9\x80\x80\x99\x31\xf7\x29\x97\xf8\x1c\x61\xf8\xa0\xf9\x62\xbf\xdd\x33\xde\x89\x0d\xa0\xdc\x6f\x6a\xb7\x4a\x2f\x05\x5b\x6b\xfb\x79\xa4\x92\xad\x1a\xc0\xc3\x80\xd1\x5f\xe0\x5b\x5c\xcb\x71\x55\xc2\x75\x39\xa2\x16\xe5\x6b\x39\x12\x80\xfc\xbf\xec\xf7\x4a\xfc\x6e\xdb\x29\x50\xb6\x7f\x2b\x8b\xa6\x9d\x5c\xcf\x62\x31\xc8\x0c\x7d\x7c\xe2\x3f\xf1\x65\xa8\xb1\xeb\x04\xdf\x7e\x8a\x02\xe9\x6c\xf5\xc0\x6a\xa2\x44\xed\x64\x29\xd6\x42\xdb\xf8\xb9\x2c\xe8\x98\xbc\x83\x74\x69\xdd\x21\xb9\xfe\xf0\x92\x5b\xd6\x39\x7a\xce\xc0\x5b\xd6\x8e\xb3\xec\x95\xf6\x5b\x59\xa5\x1f\x3c\x37\x6b\xb4\x1c\x4c\xc7\x7a\x9b\x95\x93\x63\x55\x17\xbf\x32\x0c\x49\x39\xe2\xb8\xca\x2a\x69\xc5\x4a\xa9\x7d\xbb\x15\x97\x21\xf3\x30\x93\x5a\x16\xe3\x45\xd3\x73\xec\x04\x80\x29\xcc\x4b\xe6\xe7\x35\x45\xb3\xfb\x70\x64\x6b\xb5\x08\x24\x71\x96\x7e\xa8\x93\xcb\x0d\x77\xef\xd2\x1d\x6f\xf8\xe0\x61\x58\x66\x2c\x7e\xcf\x92\x36\x99\xb0\x56\x0c\x90\x6d\x52\xd4\x27\x06\x15\x6d\x3d\xe6\xe5\x85\x50\x38\xb9\x57\x1a\xc9\xc5\xb8\x38\x33\x27\x96\x0d\xa0\x39\x01\x63\xb2\x65\xae\x35\x0a\x2c\x5f\x2f\x97\xbc\x4e\x99\x7b\x7e\x03\xb1\x1a\xed\xcf\x72\xb5\x1c\x01\x0f\x48\x18\x49\x6c\x0b\xd7\xd3\xa5\xd5\x7f\xad\x03\x50\xfb\x2d\xe2\xd1\xe5\xa9\x4c\x98\x42\xa5\xc7\xa2\xcc\x40\x70\x88\x69\x7c\xa0\xa2\x82\x15\xde\x4c\x00\x80\xea\x2b\x14\x28\x91\x06\x15\x14\x28\xdb\xea\xee\xbe\x9c\xef\x24\x3d\xfb\x6d\xce\x58\xaf\x4b\x1d\x8b\xc0\x3d\x13\xe5\x53\x58\x61\x42\x65\xdf\xfd\x4d\x7c\x6d\xfc\x5b\x14\xfd\x4b\xf4\x1d\x5b\xc9\x0c\x3c\xdb\x88\x32\xfd\x6a\x20\x8a\xe9\xe5\x5a\x96\xca\xae\xbb\xb3\x2c\x86\x13\x4f\x4d\x6f\xbd\x5b\xd2\xd3\x10\x08\xc5\x91\x57\xe4\xa9\x3b\x45\x46\x70\xbc\x80\x28\x04\x43\x61\x09\x30\x07\x22\x71\x40\x28\x1c\xd3\x01\x48\x02\xcc\x26\x39\xac\xc9\x96\x61\xcd\xce\x91\x49\x90\xf0\xc0\xba\x50\x40\x88\x8e\x61\x75\xa1\x80\x20\x40\x83\xb8\xee\x8c\x84\x1e\x7d\x07\x34\xd4\x67\x90\x1f\xa5\x65\x1a\xc3\xbf\xb9\x86\xfd\x5d\xe0\x71\x06\xa6\x47\xcf\xb7\xb5\xbf\xe4\xe7\xb2\x1a\xff\xa5\x3a\x27\x69\x35\xfe\x53\x75\x66\x4a\x98\x34\xe3\x37\x7f\xaa\xae\x75\x91\xd7\xa3\xff\xca\x3f\xbc\xb1\x5f\xdd\x04\x2e\xb3\xfe\x30\x07\x7d\xb4\x70\x56\x1b\xbe\x82\x69\xb7\x64\x3d\x5b\x2e\x72\x2a\xa4\xb1\x3d\xcc\x0e\x0b\x62\x29\xf6\x43\x1a\x37\x46\xf5\xb0\xde\x68\xbf\x4c\x44\xe0\x1c\xa4\xf3\xcb\x47\x18\xcd\x2f\xce\x4d\xde\xb2\x45\x93\x87\x09\xd8\x3f\x20\x52\x38\x9d\x2d\xdf\x8a\xef\x94\xee\x7a\xa4\x89\xd9\x8a\x55\x15\xed\x4d\xe0\xb2\x3b\x0f\x47\x79\x3e\x30\x8a\x64\xf8\xfa\x49\x05\xb1\xcb\x52\x16\x72\x2e\xa8\x32\xfe\x77\x4f\x20\x71\xc9\x7f\x88\xe8\x50\x9a\xa6\x04\x2b\xd9\x58\x46\x8e\xf4\x22\x22\xaa\xe8\x7e\x20\x85\x22\x62\xcd\x27\x52\x48\x98\x10\xf0\xc9\x04\x75\xcb\x7c\x21\xde\xac\x49\x6b\x1e\xbb\xe6\x41\x6d\x1e\x47\x52\x0c\x99\x73\xf7\xcc\xd8\xed\xc9\xa7\x27\x09\x76\x9b\x72\xed\x4f\x0a\xfe\xf5\x51\x29\x7d\x6d\x82\x4d\x8e\x07\x24\x0a\x9c\x25\x35\xf6\xbd\x1b\x5e\xd4\xe1\x7a\xd8\xbe\x54\xf9\x52\x98\x7b\xbf\xc1\x76\x3b\x23\x1b\x6c\xd7\x81\x06\x31\xdb\x73\x92\x2d\xe2\x58\x36\xb1\x15\x93\x43\x79\x2d\xb2\x2f\x36\xda\x69\x5d\x7d\x70\x7c\x98\x49\x6c\x75\x55\x01\x4e\x24\x24\x13\xe0\xe4\x63\x33\x61\xfb\x7c\xfe\x5b\x73\xd2\xbf\x9d\x32\xfd\x5b\xf9\xa2\x7f\x63\x70\x33\x03\x37\x33\x70\x33\x03\x37\x33\x70\x73\x03\x37\x37\x70\x73\x03\x37\x37\x70\x0b\x03\xb7\x30\x70\x0b\x03\xb7\x30\x70\x4b\x03\xb7\x34\x70\x4b\x03\xb7\x34\x70\x2b\x03\xb7\x32\x70\x2b\x03\xb7\x32\x70\x6b\x03\xb7\x36\x70\x6b\x03\xb7\x36\x70\x1b\x03\xb7\x31\x70\x1b\x03\xb7\x31\x70\x5b\x03\xb7\x35\x70\x5b\x03\xb7\x35\x70\x71\x64\x19\x1d\x59\x4e\x47\x96\xd5\x91\x85\x05\x42\x01\x52\x01\x62\xb1\x72\x89\xad\x60\x62\x2b\x99\xd8\x8a\x26\x9e\xbd\xfa\xc7\x47\xb8\xae\x82\x80\xe9\x30\xdd\x72\x35\xc6\xea\x84\x95\xba\x95\xab\x95\x9c\x95\x8d\xe5\xbe\xe5\xaf\xe5\x20\xe0\x11\x60\x81\x18\x21\xd8\x14\xdc\x40\xa9\x0d\x4a\xdb\xd2\x58\xcf\xcd\x78\xba\x92\xff\x5b\x83\xda\x48\xd5\x6e\xe6\xd3\xb9\xfa\x9f\xad\xdd\x9a\x75\xc0\x96\x6d\x54\xd9\x6a\x45\xa0\x5b\xab\xca\xe5\x86\xc0\xb6\xd2\x95\x80\xba\xa5\x2a\x5b\x50\xc4\x2d\x54\xe5\x9c\xa2\x6d\xae\x2a\x67\x80\x36\xc3\x00\x8a\x36\xcd\x07\x8a\x34\xe1\xb3\x30\xfe\x29\xd9\x42\xfe\xc9\xaa\x58\x55\x91\x4c\x94\x20\x91\x02\x21\x39\x29\x40\xb6\x0a\x02\xb2\x53\x54\x6c\x54\x05\xc9\x53\x01\xb1\x56\x10\x24\x63\x05\xc4\x4a\x43\x60\xda\x97\xaa\x82\x64\xb1\x80\x58\x28\x08\x92\xcf\x02\x62\xae\x20\x66\x98\x72\xc3\xb2\x20\xe5\x9a\x73\x41\xc2\x35\xdf\x22\x50\xdc\x1c\xb9\x34\xe4\xdc\x73\x85\xc1\x6b\x62\x59\x13\x90\x05\x87\x88\x24\x44\x40\x14\x0c\x62\x2b\x01\x5c\x49\xb0\xf2\x8d\x2c\x0f\x08\x82\x01\xac\x25\x40\x40\x0e\x0c\x60\xa5\x00\x30\xd5\x4b\x59\x1e\x90\x02\x03\x58\x48\x80\x80\x10\x18\xc0\x5c\x02\xcc\x30\xcd\x9a\x51\x41\x9a\x15\xbf\x82\x24\x2b\x6e\x59\x01\xc8\xcf\x91\x5c\x04\xce\xe6\x1f\x4a\x42\x83\xc4\x0e\x08\x29\x12\x0d\x1a\x39\xa0\xa4\x6c\x14\xe8\xd6\x81\x84\x42\x52\x00\x1b\x07\x80\x94\x96\x82\x5c\x3b\x90\xa4\xd8\x14\xe4\xca\x85\xf4\xc7\xba\x74\x00\x48\x41\x2a\xc8\x85\x03\x49\x4a\x54\x41\xce\x1d\xc8\x99\x3f\x52\x24\x82\x8e\x91\xba\x92\xe8\x18\x68\x34\x38\x14\xe5\xba\x41\xd6\xd1\xb1\xae\x8c\x75\x56\xac\x3b\x62\x1d\x0e\xeb\x52\x58\xa7\xc1\xba\x05\xc0\xee\x03\xb3\x2e\xac\xb6\x67\xde\x64\x29\x36\x6f\xa2\x59\xd0\xbc\x09\xfc\x41\xf3\xc6\xe9\xc0\xe6\x8d\x53\x19\x34\x6f\x7c\x30\x41\xf3\xc6\xc7\x8c\xcd\x1b\xe7\x48\xd0\xbc\x71\xc6\x05\xcd\x1b\xe7\x2f\x36\x6f\x9c\xfb\x41\xf3\xc6\x87\x1a\x32\x6f\xac\x2e\x64\xde\x4c\x55\xd8\xbc\x19\x90\xb0\x79\xd3\x20\x9e\x79\xd3\x15\x61\xf3\xa6\x21\xc2\xe6\x4d\x43\x78\xe6\x4d\x57\x84\xcd\x9b\x86\x08\x9b\x37\x0d\xe1\x99\x37\x5d\x11\x36\x6f\x86\x2f\x21\xf3\xa6\x01\x90\x79\x13\xc5\xa4\x79\x33\x35\x41\xf3\x66\x20\x82\xe6\x4d\x43\x60\xf3\xa6\xcb\x83\xe6\x4d\x03\x04\xcd\x9b\x06\xc0\xe6\x4d\x97\x07\xcd\x9b\x06\x08\x9a\x37\x0d\x80\xcd\x9b\x2e\x0f\x9a\x37\xc3\x8e\x80\x79\xd3\xf5\xae\x79\x63\xa5\x7d\xe6\x0d\x80\xf4\x99\x37\x00\xda\x67\xde\x2c\x68\xc0\xbc\x59\x80\x3e\xf3\x66\x21\xfb\xcc\x9b\x85\x0c\x98\x37\x0b\xd0\x67\xde\x2c\x64\x9f\x79\xb3\x90\x01\xf3\x66\x01\xfa\xcc\x1b\xe0\x6f\xb7\x79\xb3\x80\xd8\xbc\x75\x86\x2f\xe0\xe6\xde\x6e\xdf\xed\x06\xdd\x6e\xc1\xed\x26\xdb\x6e\xa3\xed\x46\xd9\x6e\x85\xed\x66\x17\x6c\x66\xc1\x5e\x55\x6c\x45\x3d\xfb\x26\x4b\xb1\x7d\x13\xcd\x82\xf6\x4d\xe0\x0f\xda\x37\x4e\x07\xb6\x6f\x9c\xca\xa0\x7d\xe3\x83\x09\xda\x37\x3e\x66\x6c\xdf\x38\x47\x82\xf6\x8d\x33\x2e\x68\xdf\x38\x7f\xb1\x7d\xe3\xdc\x0f\xda\x37\x3e\xd4\x90\x7d\x63\x75\x21\xfb\x66\xaa\xc2\xf6\xcd\x80\x84\xed\x9b\x06\xf1\xec\x9b\xae\x08\xdb\x37\x0d\x11\xb6\x6f\x1a\xc2\xb3\x6f\xba\x22\x6c\xdf\x34\x44\xd8\xbe\x69\x08\xcf\xbe\xe9\x8a\xb0\x7d\x33\x7c\x09\xd9\x37\x0d\x80\xec\x9b\x28\x26\xed\x9b\xa9\x09\xda\x37\x03\x11\xb4\x6f\x1a\x02\xdb\x37\x5d\x1e\xb4\x6f\x1a\x20\x68\xdf\x34\x00\xb6\x6f\xba\x3c\x68\xdf\x34\x40\xd0\xbe\x69\x00\x6c\xdf\x74\x79\xd0\xbe\x19\x76\x04\xec\x9b\xae\x77\xed\x1b\x2b\xed\xb3\x6f\x00\xa4\xcf\xbe\x01\xd0\x3e\xfb\x66\x41\x03\xf6\xcd\x02\xf4\xd9\x37\x0b\xd9\x67\xdf\x2c\x64\xc0\xbe\x59\x80\x3e\xfb\x66\x21\xfb\xec\x9b\x85\x0c\xd8\x37\x0b\xd0\x67\xdf\x00\x7f\xbb\xed\x9b\x05\x1c\x60\xdf\x40\xb4\x1d\xc6\xac\x6d\x54\xda\xc6\x9d\x6d\x64\xd9\xc6\x8e\x6d\x74\xd8\xc6\x7f\x6d\x84\xd7\xc6\x70\x41\x88\x16\x44\x60\x65\x80\x15\x1b\x38\x59\x8a\x0d\x9c\x68\x16\x34\x70\x02\x7f\xd0\xc0\x71\x3a\xb0\x81\xe3\x54\x06\x0d\x1c\x1f\x4c\xd0\xc0\xf1\x31\x63\x03\xc7\x39\x12\x34\x70\x9c\x71\x41\x03\xc7\xf9\x8b\x0d\x1c\xe7\x7e\xd0\xc0\xf1\xa1\x86\x0c\x1c\xab\x0b\x19\x38\x53\x15\x36\x70\x06\x24\x6c\xe0\x34\x88\x67\xe0\x74\x45\xd8\xc0\x69\x88\xb0\x81\xd3\x10\x9e\x81\xd3\x15\x61\x03\xa7\x21\xc2\x06\x4e\x43\x78\x06\x4e\x57\x84\x0d\x9c\xe1\x4b\xc8\xc0\x69\x00\x64\xe0\x44\x31\x69\xe0\x4c\x4d\xd0\xc0\x19\x88\xa0\x81\xd3\x10\xd8\xc0\xe9\xf2\xa0\x81\xd3\x00\x41\x03\xa7\x01\xb0\x81\xd3\xe5\x41\x03\xa7\x01\x82\x06\x4e\x03\x60\x03\xa7\xcb\x83\x06\xce\xb0\x23\x60\xe0\x74\xbd\x6b\xe0\x58\x69\x9f\x81\x03\x20\x7d\x06\x0e\x80\xf6\x19\x38\x0b\x1a\x30\x70\x16\xa0\xcf\xc0\x59\xc8\x3e\x03\x67\x21\x03\x06\xce\x02\xf4\x19\x38\x0b\xd9\x67\xe0\x2c\x64\xc0\xc0\x59\x80\x3e\x03\x07\xf8\xdb\x6d\xe0\x2c\xa0\x67\xe0\x5a\xf3\xb1\x1c\x5c\xba\xe8\xfa\xf0\x7e\x6b\x8f\xc4\x21\x63\x81\x05\x60\x20\x8e\xf5\x49\xa0\x67\x71\x9f\xef\xb9\xad\x9f\xcd\x15\xb2\xe7\x96\x5f\x94\x42\x45\xfc\x90\x0d\x2a\x32\x0d\x33\xbf\x61\xe6\x37\xb4\xc7\x39\x36\xe1\x03\x12\xe8\xf2\x4f\x5b\x5d\x02\x17\x43\xb2\x2c\x23\x46\x80\x2f\x0f\xc9\xf1\xa2\x13\x79\x33\x12\x8b\xca\x9d\xf0\x4e\x63\x7b\x3a\x14\xb5\x3e\xde\x06\x46\xcd\xf8\x2f\xae\x39\xf6\xc1\x89\x6a\xb7\x2e\x88\xb2\xb3\xe7\x6c\x60\xcf\xd9\xf0\x9e\x33\x70\x4b\xf1\x29\xba\x41\xe1\xbd\x13\xff\x85\xf5\x24\xb7\x46\xfa\xa6\x22\x79\xc7\x4d\xdd\x44\x4c\xab\x73\x26\xb2\x72\x10\x3a\x06\x2b\x3d\x6d\x83\x95\x9e\xde\x91\x68\xb3\x2e\xb4\x54\x25\xa1\x95\x4b\x33\x27\xcc\x1d\x4a\xfa\x02\x25\x86\xa2\x86\x67\xeb\xfc\xd1\xd9\x3a\x7f\x70\x04\xce\xac\x03\x27\x51\x07\x46\xf6\x05\xa8\xb7\x54\xb8\x59\x34\xd4\xea\x34\xb3\x3c\x6b\xda\xba\xb8\x00\xe2\x9e\xce\xed\x51\x2a\xdc\xf7\x55\x96\xbd\x05\xb4\xf6\x42\x92\xb7\x70\xb7\xfc\x47\x77\x26\x4e\x89\x5b\x04\xea\x4f\xd3\x03\x5d\x4d\xa2\x15\x27\xa9\xe4\xaa\x3b\x62\x65\x3f\xa5\x65\xd2\x34\x7f\xf8\x91\xaf\xd2\x3f\xdb\x93\x13\x4d\x9b\xb0\x65\x65\x27\x1d\x7d\x71\x20\xdb\xbd\x00\xcd\xc0\xaf\xa7\xf3\x4d\xdf\x27\x76\xb0\x8c\xf5\xdd\xe2\x47\x71\xe7\xfc\x68\x94\xb7\xe6\x4e\x55\xea\x13\x7f\xe9\xc5\x35\x56\x23\x70\x8d\x95\x7c\x10\x9b\x57\x63\x75\x36\x80\x4d\x15\x13\x66\x81\xa8\x51\xd8\x88\x1a\x8c\xcd\xb3\x4e\x44\x0d\xc6\xd6\x21\x71\x52\x53\x2c\x8b\xd4\x4d\xd9\x00\xd4\x71\x00\x94\x03\x12\xd4\x4d\x04\x45\x11\x9c\x6f\xf8\x0f\xa5\x01\xea\x7a\x08\xa5\x02\xb8\x0a\xe8\x00\xae\x02\x4a\x10\x44\xe8\x57\x01\x35\x08\x20\xd4\xe5\x94\x22\x10\x55\x5a\x76\x44\x95\x87\xd0\xd7\x05\xa2\xca\x43\x48\x31\x57\xdd\xb6\x09\x6a\x83\x73\x03\x27\xac\x0e\x03\xc0\x5c\x98\xb0\x42\x20\x30\x92\xe8\x28\xdf\xa6\x2b\x4a\x23\xf8\x15\x1f\x4a\x1d\x9c\x72\xa0\x0b\x4e\x39\x50\x04\x1a\xcf\x31\x80\xe7\x48\xe2\x11\x85\x94\xf0\x71\xb9\x16\x14\x2e\x77\xf1\xf8\x32\xc7\xe5\x2e\x1e\x92\x71\xf2\x36\x54\x50\xda\xf6\x86\x54\x58\xd4\x7d\x30\x00\x20\x2c\x64\x08\x43\x11\x9a\x2e\xf2\xf9\x61\x4e\x49\x58\x5d\xbb\xa2\x84\x8c\xab\x80\x9c\x71\x15\x10\x75\x10\xa1\x5f\x05\x04\x1e\x40\xa8\xcb\x29\xb1\x13\x55\x5a\x62\x44\x95\x87\xd0\x97\x3f\x51\xe5\x21\x24\x2d\x80\xbc\xc5\x16\xd4\x02\xe7\x66\x5b\x58\x11\x06\x80\xb9\x30\x61\x75\x40\x60\x24\xd1\xc9\x61\x96\xa6\x94\x46\xc8\x8b\x73\x94\x42\xa0\x1a\xa0\x0f\xa8\x06\xa8\x43\x08\x9b\x57\x03\x94\x81\xc6\xa6\x8a\x29\x55\xf0\x6b\xb4\xe0\xfc\x1a\x8c\xcd\xd7\x03\xbf\x06\x63\x23\x19\x2a\xef\x1e\x06\xb5\x00\xde\x47\x0c\x2b\x41\x3f\x94\x03\x12\x56\x01\x17\x8a\xf4\x03\xf6\x29\xfb\x9f\x8d\x80\x9b\x10\xc1\x7a\xb5\x16\x01\x70\x89\xd7\xe6\xc8\x08\xef\xff\xc5\x19\x5f\x70\xfe\x5e\xdd\x9c\x33\x25\x1f\xd5\x89\x7c\x91\xaf\xd0\x94\xca\x0b\x27\xbc\x88\x9f\x48\x67\x6d\xf8\x09\x61\x09\xb8\x4f\xea\x40\xae\x0a\x93\x91\xcb\x60\x11\x0d\xb8\xb6\xb7\xd5\x35\x3d\xde\x3c\xb2\x9f\xa7\x3a\x06\x82\x2e\x57\x06\x00\xa9\x0d\x0c\x01\xe4\xef\xc3\x08\x20\x7f\x43\xd6\xd5\x5d\x36\xa4\xbb\x2e\x20\xb0\x57\xa3\xae\x27\x06\xda\x79\xdb\xd3\x30\x6f\xc8\x5d\x1e\x0c\x06\x04\x89\x23\x77\xb0\xf7\xb6\xb4\xec\xbc\xb7\xa5\xe5\xf1\xc3\xd4\xde\xdd\xd2\x4a\x03\xb6\x7c\x75\xee\xe3\xdd\xc9\x69\x70\x75\xf2\x3e\x46\xdf\xd7\x10\xf0\xf9\xbe\x86\x80\xcd\x0f\x92\x7a\x6f\x43\xc0\x64\x70\x7d\xd4\xb9\x0f\x39\x88\xc9\x7a\x6f\x6f\x91\x74\x4d\x5a\x9f\x80\xfb\x1b\x52\x3d\xde\x33\x64\xb7\x21\x4a\x4a\x1a\xdd\x6c\x72\x3e\x7b\x4b\x4b\x5f\x32\xb3\x59\x72\xec\x77\xcf\x48\x27\xe1\x73\x6f\xa9\x81\x35\x1f\xe3\x09\xa4\xcc\xe0\x49\x2e\xa8\x9c\x52\xce\x15\x34\x94\xa5\x87\xb8\x4c\xbf\xe4\x3f\x37\x99\xdd\x2c\x90\x48\x08\x12\xb1\x44\x79\x3a\xf8\xc5\xf1\x8e\xbc\x8c\x5f\x28\x81\x98\x97\x93\x72\x4c\xa5\xae\xd4\x89\x47\x16\xe2\x66\xa0\x61\x9f\x8e\x40\xff\x6d\xbb\xeb\xce\x81\x79\x28\xf8\x95\x70\x37\x9f\xae\xd3\x33\x33\xf5\x3f\x07\xe5\xa6\x92\xd9\xfd\x74\xba\x96\x6d\x71\xe1\xd7\xce\x55\x01\x97\xd6\xcf\xa1\x44\x96\xa2\x4f\x99\xa7\xcb\xcf\xbc\xe9\x97\x9b\xb1\x7e\xb5\xd4\x5e\xac\x8c\x67\x0b\x25\xef\x50\x0a\x56\xae\xdd\x5b\x93\xfd\x49\xd5\x96\xcb\xe5\x6d\xca\xaf\xc6\x4f\x54\x22\xe1\xb0\xea\x9b\x8b\x86\x20\x05\xd4\x8a\x0d\x83\x27\x96\xb9\xbb\xd3\x50\x6e\x2e\x5b\x5a\x9c\x92\x17\x95\xa8\x61\xe0\x9d\x4c\x37\x6f\xa8\x7b\x23\x95\xb7\xe5\xff\x87\x57\x52\xa3\xf5\xf2\x2d\x75\x7b\x35\x08\x4b\x64\x04\xb3\x69\x05\xab\x1a\xe6\xfd\x1a\x4d\xe3\x65\x33\xb6\xc8\xbd\xba\xdd\x97\x40\xe2\x8a\x4e\xa9\x1d\xc4\xc6\x13\xb7\x24\x87\x7c\x6b\xf4\x2e\x7a\x84\x49\x63\x7e\x23\x77\xa3\x2b\xe2\x68\x36\x8e\xd7\xcb\xf1\x6c\x3e\x1f\x4f\x57\x77\x71\xb0\x13\x11\x1a\x8c\xcc\x9e\xcb\x54\x31\xcd\x8f\x55\x99\xd9\x6c\x32\x3c\x91\x66\xc5\x73\x97\xb6\x9f\x9e\x62\xd4\x88\x3b\xd2\x62\x46\x06\x1a\x7a\x7d\x98\x4c\xb8\x43\xdb\x80\x14\xc1\x6e\x79\xcd\xcc\x3e\xcf\xa8\xf6\xf3\x58\x1b\x1d\x0b\x3a\x72\xa7\x98\x4a\x6c\x71\xae\xf8\x07\x46\xe6\xbf\xb3\x75\x81\xd8\x9a\xe4\x39\x18\xa6\x4e\x67\xe8\x22\xba\x3f\x01\xaf\x48\x92\x02\x40\xb3\xa4\x65\xeb\x1f\x9c\xae\x7c\x7e\xab\x21\xcb\xec\xb2\xfe\x36\xe7\x36\x15\x4b\xe0\x78\xaa\x57\x3c\x9c\xe3\xcf\x5e\x85\x84\x09\xc5\x3a\x52\x74\xb9\xd7\x25\xe5\xa7\x54\xd1\xc7\x48\x18\x3f\xdb\xd3\x88\x32\x86\x3b\x9c\xff\x0c\x25\x77\x56\xa8\x7c\x43\x25\x2b\x54\xc6\x17\xaa\xde\x74\x4b\x66\x63\x36\xd5\x04\x06\x6b\xf8\x40\xfa\x15\xe7\x1a\x31\x18\xe5\x3b\xcc\xd0\x77\x96\xb5\x80\x79\x13\xcb\x7b\xd5\xa3\x47\xc2\x80\x9c\x35\x44\x8e\xb7\x08\x7f\x23\x96\x09\x22\x87\xf1\x55\xf5\xfc\xae\x9b\xb0\x77\x1e\xa5\x54\x8a\x1c\x75\x0e\xe3\x42\x78\x15\x60\xe2\x51\x6c\x86\xf3\x52\x34\xf0\x0a\x54\xbf\xb0\x5c\xb7\xa6\xca\x7c\x70\x62\x5e\xfb\x2a\xd3\x0d\x64\x75\x87\x5a\x24\xa4\x12\x04\x6b\x34\x6b\x29\x00\x8d\xb8\xb3\x52\x73\xde\x5f\x7f\x78\x06\x1d\xbe\x02\x36\x27\xbd\xa6\xcc\xc1\xac\x14\xde\x0a\xce\xc8\x30\xf3\xcc\xfc\xd2\x4f\x0e\xa1\xfc\x2e\x1a\xbb\xb3\xea\x70\x99\x9b\x45\x4e\x83\x8f\xb1\xdb\xe6\x21\x52\x39\x33\x45\x69\xf9\xa2\x4b\x17\x2b\x40\xbc\x48\xeb\x63\x73\xd8\x99\xc4\x79\x88\x7a\x2f\xb7\xc5\x0a\x93\x8f\xf0\xc3\xe6\xbc\x00\x93\x5f\xbe\x84\xc8\xb7\x88\x24\xf9\xc7\xa4\x99\x1c\xf2\x3c\xe3\x46\xc0\xbf\x59\xee\xd6\x23\x53\xe2\x5e\x2a\x5f\xcc\xa6\x62\x89\x08\x37\x20\xfa\x31\x89\x3f\xc5\xc9\x04\xbe\x87\x50\x5b\xc6\x1d\xe5\x0a\x0a\xf7\x0f\xba\x82\xd8\x76\xec\x88\x1c\x7b\x9c\x1e\xf5\x0d\x66\x34\xe5\xf9\x9c\xe4\xba\x34\x76\x2b\x34\x89\x6a\xc9\x77\xea\xd4\xfa\xe8\xc2\x6b\x9d\x27\x40\xcd\x32\x44\xb6\x30\x13\xc1\xc9\xbb\xe7\xc2\x3a\x6c\x76\x7d\x2a\x09\xff\xb5\xdd\xcd\x0e\x7a\x48\x4f\x4f\xa6\x06\x7c\xd8\xbf\xe3\xae\xfc\x37\xab\xf5\x3e\x5e\x6d\xee\x76\xe9\x40\x5b\x44\xb5\x54\x78\xe1\x48\x4c\x98\xaa\x56\x67\x97\xe7\x3b\x92\xb1\xe1\x4f\x8a\x41\x8e\x58\xbd\x26\x64\xaa\x3e\x05\xf8\xaa\x67\x2a\x08\xd5\x33\x75\x40\xf5\x2c\xbc\xa3\x7a\x2e\xa8\xa3\x7a\x5e\x0b\xa4\x7a\x2a\xf5\xa2\x0b\xdb\xa1\x7a\x12\xfe\xb7\x51\x3d\x92\x9e\xc0\x26\x83\x67\x87\xfc\x3c\xd5\x4b\xa3\x24\x5e\xed\x1f\x53\x3d\xd9\x16\x51\x1d\x54\x3d\xc5\x43\x92\xb1\xe1\x2f\x5b\x41\x8e\x78\xaa\x07\x65\x9a\xd7\x35\xdb\xd3\x79\x8a\xa7\x8a\x09\xb5\x53\x35\x40\xe9\x34\xac\xa3\x72\x10\xcc\x51\x38\x04\x8d\xd4\x4d\xe5\xea\x84\x90\x1d\xca\x26\xa1\x7f\x1b\x65\x23\xa8\x21\x55\x4d\xe6\x12\xfd\x4c\x55\xcb\x37\x8b\xcd\xfc\x41\x55\x13\x6d\x1d\x9a\x83\x8a\xa6\xf8\x47\x32\x35\xfc\xf1\x2c\xc0\x0d\x4f\xcd\xb4\x2c\x1d\x20\x79\xf0\xc9\xff\xce\x63\x15\xd0\xcb\xc7\x6e\xbc\xf0\x25\xbd\x35\x53\xdd\xad\xe7\xfc\xa7\xe3\xb2\xbf\xa0\x43\x6d\x84\xe0\xfe\x71\x40\xe0\x32\xb0\xff\xb8\x11\x38\x71\x98\xca\xc1\x2a\x09\x12\xb9\x9d\x86\x20\x04\x82\x7b\x76\xb1\xc3\x7b\x26\x4e\x13\x67\xc6\x62\x36\x0f\xea\x54\xcd\x6c\x17\x2b\xde\x47\x53\xbc\xa2\x72\x89\x46\x38\x09\xe2\x60\x0a\xa8\xdd\x2e\x49\x53\xd7\xa6\xd6\x4b\xa3\x1a\xa1\xae\x86\x38\xa2\xf2\xc0\xac\x6a\x08\x52\x87\xe2\xd5\xd1\xab\x87\x9c\x74\xda\x99\x95\x92\x6e\x62\xd6\xcb\x60\xcb\xae\x2d\xaa\xc7\x79\x15\x77\x25\x06\xd0\x47\xe0\x2b\x0c\x94\xd0\x28\xfc\x38\x4c\x4f\x0e\x32\x1a\x03\x5a\x1e\x30\xe9\x3d\x93\x3a\x28\x14\x3f\xdb\x36\x41\xc0\x60\x1d\xd8\xc1\xcc\x58\xfb\xf6\x3c\x6c\xe5\xc0\x31\x0a\x6f\xfb\x11\x88\x6d\xb8\xb1\x8c\xa1\x91\x67\x98\x9d\x8f\x48\xb9\xf8\x60\x5c\x3c\x1c\xca\xbe\x36\xfc\xa5\x26\xb1\x8d\x94\x14\x89\xa8\x28\x51\xda\xf8\x85\xb8\x40\x30\x55\x7d\xb6\x10\xbf\xaa\x73\x92\xb6\x64\x0a\x4b\xbe\xc2\xf7\x0b\xd1\xab\x3a\xd7\x61\x68\x79\x05\xdf\xc4\xc8\x27\x56\x00\xad\x90\x4a\xfb\x30\x61\x40\x78\x1d\x3e\xc2\x9c\x91\xbf\x44\x76\x3e\x9e\xd1\x7e\x4b\x08\x56\xd0\x35\xd5\x61\x16\x41\x59\x77\xb0\x48\xe8\x34\x11\xfb\x55\x2a\x38\xc9\xdf\x33\xad\x6a\x24\xed\x3a\xf2\x3b\x5d\x2d\x77\x87\xa2\x14\xb9\x58\xcb\xcb\x31\xf9\x5e\x55\xfc\xb8\x02\xdf\x23\xd0\x7b\x5a\xf8\x7d\x2d\x41\xe8\x44\x3d\x5a\x07\xb9\xdd\xf5\x3e\x8a\x39\x35\xc7\x0f\x48\x81\xf6\x40\x7c\xa6\xc8\x2a\x90\x29\x02\xe2\xd2\x65\xe6\x68\x73\x75\xc9\xcf\x23\xf1\xce\x13\xa3\x90\xaf\xae\x2f\x2f\x65\x3e\x9c\xc6\x7c\xcf\x7f\xb0\x57\x95\xf1\x9f\xdb\x17\xa4\x81\xd4\x29\xa7\x03\x57\xf6\xba\xb4\x5f\x07\x34\xe4\x98\x44\x46\x30\xd8\xb6\x57\x95\x3d\x88\x09\x14\x16\xbd\x2f\x2c\x80\x5e\x56\xf6\xa1\xf7\x51\x58\xf4\x04\xd3\x01\x7e\x55\xdb\xd7\x01\x25\x39\x0d\x3a\xed\xec\x61\x3a\xac\x07\xbd\x84\x3c\x32\x03\x18\xa2\x24\x7b\xc9\xbb\x9f\x30\x60\xaa\x2b\x1b\xdd\xf1\xe0\x01\x0e\x86\x2c\xd7\xf9\x3e\x73\xb0\x40\xc1\xea\x22\x20\x0c\x5d\x04\x39\xa4\xca\x06\x28\xfe\x20\x4a\xe7\xb3\xf5\x6a\x1f\x23\x4a\x99\x19\xcb\x37\xf9\xed\x0b\xd2\xd0\x31\xf9\x34\x32\x77\xf2\xa9\xd2\x01\x93\x4f\x41\x8e\x49\x64\x04\x83\x07\x4f\xbe\xb0\x8c\xc8\xc9\xe7\xa3\xef\x9e\x7c\x61\x79\xd3\x93\xcf\xc7\xdf\x33\x35\xba\x24\x47\x4e\x3e\xaf\x87\xbe\xc9\xe7\xea\x01\x31\xf9\x86\xce\x03\x34\x05\x75\x33\xfa\xe2\x1c\x6f\x87\x1e\x5a\xa1\x75\x7b\x99\xee\x37\xcb\x14\xf5\xbe\x48\x93\x7c\x91\x3a\x58\xa0\x84\x75\x11\x90\x8a\x2e\x82\xac\x52\x65\x03\x66\xc0\x20\x4a\x17\xeb\x64\xb1\x58\x63\x3e\x6d\x37\x8b\xf9\xf6\xf6\x05\x69\xe8\x98\x85\x1a\x99\x3b\x0b\x55\xe9\x80\x59\x68\xee\xb7\x50\xc8\x08\x06\x0f\x9e\x85\x61\x19\x91\xb3\xd0\x47\xdf\x3d\x0b\xc3\xf2\xa6\x67\xa1\x8f\xbf\x67\x8e\x74\x49\x8e\x9c\x85\x5e\x0f\x7d\xb3\xd0\xd5\x03\x62\x16\x0e\x9d\x07\x68\x16\xea\x66\xe1\x59\x08\xdf\x2b\x0a\x4c\xc1\x7d\x1a\x65\x39\xee\x7a\xb5\xdf\x64\x89\x45\x01\x65\x2b\xfe\x06\xc2\x10\x7f\x43\xf6\xf0\x82\x01\x2a\xdf\x4f\xda\x7c\xbb\x9f\x67\x78\xce\xcd\x56\xdb\x64\x9f\xde\x3e\xbf\xeb\x8e\xa9\x26\xd0\xb8\xf3\x8c\x17\x0d\x98\x64\xf2\x06\x91\x87\x03\xf3\x6f\xf0\xdc\xa2\x98\x4f\xce\x2a\x84\xb5\x7b\x4a\x51\x22\xa4\x27\x13\x42\xdb\xa3\xe7\xb4\x3c\xc8\x39\xe4\x22\xee\x9b\x40\x40\xae\xd4\xec\x19\xa2\xc2\x78\xea\xa8\x36\xe1\xa9\x83\x5e\xec\xa2\x55\xf4\x10\x25\xd9\x02\x77\x9d\xe7\xc9\x6c\xbe\x72\xb0\x40\x19\xea\x22\x20\x00\x5d\x04\x39\xa4\xca\x06\xa8\xf3\x20\x4a\xf3\x6c\x9b\xce\x36\x88\xd2\x6c\xb9\x59\xc6\xb3\xdb\x17\xa4\xa1\x63\x56\x69\x64\xee\xc4\x52\xa5\x03\xe6\x96\xb9\xac\x45\x21\x23\x18\x3c\x78\x92\x85\x65\x44\x4e\x35\x1f\x7d\xf7\x6c\x0b\xcb\x9b\x9e\x73\x3e\xfe\x9e\xd9\xd1\x25\x39\x72\xf2\x79\x3d\xf4\xcd\x3f\x57\x0f\xa8\x3d\xdc\xc0\x79\x80\x77\x72\xaa\x59\x78\x16\xba\x0f\xdf\xd1\xaa\x9d\x6d\x97\xf3\x05\xde\x43\x66\x8b\xf9\x61\x9e\x40\x24\xce\x1e\x5d\x96\xc0\x6d\xb5\x2c\x71\xb6\xba\xa2\x68\x48\x00\x63\x08\x91\xb3\xf9\x6c\x86\xbf\xbe\x27\xe9\x6c\x3b\x5b\xde\xbe\x14\x01\x5d\x01\x14\x89\x0a\xc5\x4f\x44\xe1\x90\xf0\x89\xba\x1a\x47\x60\xf2\xb9\x3a\x3c\x76\x12\x10\x0b\x1d\x39\xc1\xb8\x7b\x02\x27\x01\x01\x07\xc2\x26\x18\x79\x5f\x4c\x23\x28\x2b\x3a\x66\x82\xd0\xf7\x86\x4c\xa0\xdc\xc9\x0b\xc0\x83\x14\x1e\x4d\x36\xdd\x2a\x3c\xd9\xca\xe2\xfc\x0b\xda\xe1\x75\x9f\x47\xf4\x9f\xcb\xd1\x68\xc6\xe6\x37\x87\x4b\xbc\x60\x80\xbe\x09\x42\x3a\xdf\xe9\xb9\x2b\x10\x8b\x08\x02\x0a\x27\xfe\x06\x4a\x02\x08\x76\xbf\x82\xc3\x54\x45\x3d\x98\x86\x3e\x48\xde\x9d\x0f\x89\x60\x57\xcf\x74\xa2\x28\x1a\x3c\x5f\x7c\xf2\xf9\xa1\xef\xe0\xc7\x01\x7e\xd4\x4e\xfc\x2b\xbf\xc1\x97\x2f\xcf\xfc\xaf\xd7\x2f\x71\x00\x50\xee\x77\x4e\x10\x7d\x73\x72\xd1\x3f\x7e\x38\x52\x20\xfd\xd8\x40\xe4\x1f\x1b\x44\xbb\xfc\xf8\xf0\x20\x6e\xea\x83\xbf\x7f\x99\x49\x7f\x3b\x76\xcf\x12\x46\x00\xc5\x3b\x80\xcd\x3d\x30\xe0\x1c\x3b\xbf\xee\x4f\x45\xfb\xb3\x85\x75\x2e\xcd\xe4\x4c\xce\x81\x3a\xf9\x72\x3f\xa8\x74\xbf\xbf\x27\x59\xfe\xaa\xbf\x87\x44\xd4\x25\x0c\x55\x29\xae\x44\x8c\x38\x6b\x92\x7a\xd7\x5d\x2d\xb1\x4e\x8b\xf3\x2b\xb8\x49\x90\xf2\x67\xb5\x2e\x8d\x3d\x43\x2d\x15\x4c\x17\x73\x68\xf7\xfe\x91\xae\xe2\xae\xa6\xff\x20\x90\x12\x8f\xff\x4a\x3a\x31\x02\x09\x3b\x9a\xce\x97\xf2\xf5\xf8\x5d\x47\xdd\xed\x8f\xea\xbd\xb9\x34\x77\x5e\x9e\xfb\xee\xdf\xcb\x4f\x97\x63\x91\x56\xe7\x66\xf4\x1f\x49\x79\xe0\xf7\x81\x9b\xef\x76\x4d\x9d\x3e\x5d\xeb\xf2\xfb\xe9\xf4\x07\x0e\xdd\xfc\xf0\x62\xc0\x26\x47\x0d\x36\xa9\xf3\x97\x6b\x99\xd4\xd3\xbc\x6a\xdf\xde\xdf\xe4\xff\xfb\xa6\xc8\x0f\xc5\xc7\xb7\x23\xfe\x75\x37\x69\xbf\xff\x2e\x3f\xed\x73\x36\xd6\x6c\xc2\xbd\x04\x2e\xe3\xef\xde\x8e\x87\x63\xfc\x50\x1d\x0e\x16\x17\xff\xeb\xae\xe6\x6d\x0b\x5a\xb7\xf5\x35\xbf\x9b\x80\xe6\xfd\xcb\x37\x16\xe0\x7f\x19\x00\x55\x6f\xb1\x33\xc0\xef\xde\xde\xa6\x06\x96\x50\x03\x75\xc3\x6d\x47\x7e\xcc\x1e\x20\x3f\xff\x5d\xc2\xee\xd7\xde\xed\x07\x59\xde\xee\x54\x55\xfc\xf3\x2d\x73\xc7\xcf\xe2\x81\x54\xa6\x3f\x99\xfc\x86\x5c\x35\x1f\x31\xcc\x4b\x9d\x7c\x6a\xd2\x84\x1f\x18\x31\x23\x9a\x24\x0d\x33\xad\x45\xf3\x0b\x7e\x5b\xf2\xcd\xdf\x66\xc9\x1b\x08\x78\x29\xd9\xd2\xe3\x03\xed\x1d\xa0\xfc\x5a\x57\x04\x50\x94\xa4\x0e\xd8\xa9\x38\x93\xc8\x66\xf1\xcc\x81\x4b\xcb\xea\x9a\x11\x70\xab\x28\x76\xbb\x3d\xbf\xcf\x4b\xa6\x8b\x04\xe8\x3a\xda\xba\xc3\xc8\xcf\x69\xe1\xbd\xa4\x29\x00\x0f\x0e\xe0\x0b\xcf\x3c\xe5\xc3\xe5\x11\xea\xfb\x74\x6d\x8a\x94\x84\x73\xc7\x22\x6f\xed\x90\x80\x73\x07\xf0\xc8\x00\x5b\x12\x6e\xe9\x22\x6c\x93\x9a\x04\x5b\x79\x60\x93\xfc\x74\x61\x8b\x20\x05\xbc\x76\x80\xf9\x99\x02\x12\x6c\xe3\x80\x1d\x8a\xf2\x44\x82\xb9\xbc\x6e\x8f\x13\x36\x9d\x5e\x08\xb1\xe4\x51\x1c\x21\x50\x12\x28\xf6\xf0\x15\x0d\xc9\x1b\xa4\x38\x15\xa1\xcf\x0c\xc8\x65\x74\x9d\x9f\xd8\xda\x4d\x02\x2e\x1c\xc0\x5f\xab\x8a\x9f\x79\x22\x21\x97\x3e\x64\x75\xa5\x49\x74\xe5\xc2\x96\x3d\x12\xca\x15\x48\x53\xbc\x9c\x13\x42\x5d\x19\xa0\x2b\x92\xb4\x7a\x21\xa1\x90\x44\xea\xa4\x21\x39\x3d\x73\xc5\x71\xac\x4e\x24\x63\x66\x31\xd6\x03\x1a\xcc\x95\x46\x5b\x04\xb0\x21\x79\x54\x09\x31\xd9\x19\x98\x2b\x0d\xbe\x1f\x2d\x19\xe8\x24\x29\x49\x3e\xcf\x96\x24\x38\x09\xea\x8a\xe4\x7a\x09\x02\xba\x52\x29\xce\xcc\xf5\x27\xe1\x36\x68\xcd\x4c\x3e\x4d\xd2\xa2\x4e\x03\x6c\xda\x22\x7d\xbc\xe4\x09\x39\xa4\x79\x84\x00\x0f\xcc\xdf\x22\xe5\x38\x77\x05\x24\x5e\x3c\x0f\xf0\x69\xee\x0a\x89\x1b\x2c\x12\xcc\x15\xd2\xa1\x4c\x48\x45\x9b\x2f\xf0\x22\x96\x5d\x8e\xcc\xc1\x22\x97\xd0\xb9\x2b\xa2\xf7\x3c\x15\x60\x1e\x9a\x11\xf3\x15\x05\xcc\xc5\x4a\x42\xaf\x29\xe8\xeb\x85\x84\x75\xa5\xf5\x8f\x9a\xbf\xf8\x4a\x02\xba\x82\xda\x27\x41\xc8\x05\x5a\xd6\x68\x66\x2d\x62\x0c\x45\xb2\x69\xe1\x4a\x68\x5f\xd1\xcb\xda\x62\xee\x81\x31\x2f\x9e\x06\x75\xa5\x74\xa9\xd9\xce\x9a\x84\x73\x05\x94\x26\xa7\xbc\x4e\x48\x40\x57\x38\xdc\xe3\x20\xc1\xd6\x88\xc4\x92\x9c\x66\x0b\x57\x20\x45\xcb\x5c\x1a\xd2\xb6\x2e\xd0\xb2\xc6\xb7\x8e\xca\x45\x22\xa0\x97\x91\x0f\x2d\xb7\x20\x14\xb0\x2b\x1b\x71\xa8\x50\x6e\xa1\x28\xe0\x19\x01\x2c\xcf\x25\x92\xe0\x73\x02\xbc\x0e\x92\xbd\x20\xa0\xff\x7e\x6d\xda\xe2\x40\xda\xf2\xe5\xd2\x9b\xfb\x24\xd8\x0a\xad\x65\x6c\xd3\xd2\x86\x47\x88\x57\x3e\x01\x1d\xa6\x19\x39\x0a\x6c\x17\xc3\x57\xff\xc9\xfb\x22\xcb\x09\xcf\x90\x35\x40\xee\x59\x91\xb6\xd7\x9a\x9c\x5a\x2b\x57\x8a\xa7\xe4\x32\xe1\x6a\x4e\x73\x7a\x85\x04\x93\x71\xbe\x91\x80\x73\x64\xaa\x68\x05\x5e\xb9\xb2\xc8\xb3\x82\x06\x43\x2e\xda\x31\x09\x8c\xc5\x95\x81\x38\x31\x4c\xc2\xb9\xdc\x0f\xf9\x2b\xab\x0d\x72\xf9\xf2\xcb\x84\x07\x7c\x3e\x24\x35\x39\xcf\x56\x5b\x24\x25\x66\x25\xba\xe0\xd7\x11\x5a\xff\x3a\x40\x63\xcf\x02\x92\x60\xae\x7c\x2e\x09\xf3\x3c\x49\xb8\x39\x1a\x59\x45\xae\xe4\xeb\x05\x5a\x86\xea\x20\x7d\x4b\x7f\xe8\x5d\xe0\xd8\x99\x66\x9c\xed\x02\x77\xe5\x95\xff\x9d\x1f\xce\xa5\xe0\x36\x58\xfe\xef\xeb\x2a\xbc\xcc\xac\xb7\x24\x78\x70\x16\x6e\x22\x6f\xeb\x26\x3c\x49\x12\x36\xf6\xb7\x66\x61\xe0\x19\xe1\x41\x87\xa1\xe7\xc8\x29\x0f\x43\xba\xf2\xfb\xc7\x35\x6f\xf8\x36\x3b\x0c\xbf\x44\xab\xd2\xa1\x0a\xc3\x22\x11\xa6\x75\x9e\x9f\x9b\x63\x45\x73\x6e\x4d\x0d\x30\xec\xc2\x6d\x36\x78\x88\x1d\xb0\xd8\x8b\x38\x77\x00\x6f\x5d\x11\x26\x75\x5d\x7d\x08\xea\xc7\x36\x26\x80\x83\xda\xb1\x9d\x11\xd0\xb4\x87\xb4\x9d\x13\xa0\x21\xd7\x6b\xbb\xf0\x17\xbf\x90\xf3\xb9\x5d\x22\x3e\xf3\xe0\xe7\xe4\x70\x2d\xc9\xbd\xce\x76\x45\x41\x37\xa7\x24\x00\x8e\x66\xe1\xc7\xb4\x4c\x4e\x49\x97\x42\xc5\x68\x53\xff\x52\x90\x8c\x8e\xd1\x9e\xbe\xcc\x13\xca\x65\x8d\xd1\x8e\xfe\x50\x90\x56\x20\x8e\x90\x51\xf9\x94\x8b\x80\x1a\x09\xba\xf4\x40\xd3\xb2\x22\xd7\xcc\x18\x05\x00\xd4\xd7\xd0\xf0\xd0\xd7\x78\xc5\x3e\xd3\x68\xd1\x9a\x95\x94\xf9\x39\x23\x43\x10\x31\x8a\x03\xd4\xc9\x39\xab\xa8\x80\x41\x8c\xa2\x00\x69\x75\x3a\xe5\xa4\x01\x8e\x51\x28\xe0\x94\xbc\x9c\x73\x1a\x70\x46\xae\x95\xa4\x7e\xc7\x28\x22\xa0\x81\x03\x1a\x1e\xa3\xb8\x40\x9d\xb7\x1f\xf2\x00\x15\xd8\x11\xa8\x2e\x17\x71\x79\x82\x8e\xed\xc4\x31\xf6\xa3\x4b\xf1\x39\x28\x24\x62\x14\x25\x50\xe0\x21\xe5\x41\xa1\x02\x35\x7d\xf4\xbd\x19\xb2\x05\xde\x99\x8a\x16\xf6\xda\x0f\xd5\x06\x87\x10\x32\xca\x42\xc6\x28\x82\xb0\x67\x33\x9e\xa1\x25\xc9\x46\x51\x84\x7d\x4e\xce\xf6\x18\x45\x11\x52\x3e\xac\x03\x1b\x58\x4b\x72\x0e\x05\x13\xda\xe3\xf5\xb4\x6f\x02\xda\x81\x22\x09\x0a\x36\xa4\x1c\x28\x98\x70\x64\x4a\x1f\x5c\x83\x63\x14\x50\x10\xc0\x81\xd5\x3d\x46\x41\x05\x01\x1b\x20\x78\xeb\x43\x86\xc8\x45\x31\x05\x69\x89\x7a\x4c\x47\x8c\xc2\x0b\x4e\xa3\x10\xf9\x28\xce\xe0\xb4\xa1\x87\x81\x42\x0e\x4e\x8b\xe0\x70\x5c\xb9\xbe\x94\xd5\x9e\x94\x3f\x0a\x3d\x7c\xa8\xf3\x33\x19\x95\x8d\x51\xd8\xa1\x4d\x9a\x5f\xa8\x4d\x7a\x8c\x02\x0e\xea\x36\x0f\x05\xe8\x8a\x71\x5f\x17\xf9\x21\x4d\xe8\xf9\x8d\x02\x0e\xdc\x2e\x4a\xbf\x85\x02\x46\x31\x87\x2c\x69\x8e\xfb\x8a\x76\x50\x63\x14\x79\xb8\x24\x97\x9c\x31\xb7\x20\xc5\x80\xc2\x0f\x22\x2e\x1d\x8c\x24\xc7\x28\x0a\x21\xbe\xf1\x52\x60\x28\x02\xc1\x63\x44\x24\x9c\x2b\x27\xfe\xd0\xd3\x85\x0c\xc1\xc6\x28\x04\x71\x6d\xe8\x81\xbb\xdc\x7f\xd9\xd3\x43\x76\xf9\xde\x54\xf4\x6a\x8d\x02\x0a\x1c\x6c\xb2\xff\x34\x11\x57\xb8\xf6\xb4\x41\x40\x61\x05\xdc\x24\xe0\x27\xc5\x28\xc0\xa0\x9b\xc9\x7b\x8b\x14\xfc\x3c\x0c\x1f\xec\x63\x41\x93\xd6\xb6\x75\xb1\xbf\xb6\x64\x08\x2f\x46\xc1\x06\xbf\x51\xb0\x37\x24\xae\xb3\xd8\xfc\xe6\xa4\xd0\x96\xd8\x91\xbb\xb0\x15\x8d\x04\xc4\xc1\x70\xf9\x4d\x37\xb8\x5a\xa0\xa8\x83\x81\xa7\xd7\x23\x14\x79\x28\xab\x17\xfa\x6b\x40\xbc\x8a\x71\xac\x94\x8c\xd2\xc6\x2b\x1c\x7a\x7d\x09\x7c\x34\x88\x51\x78\xe2\x9c\x7f\x98\x7c\x28\xce\xfc\xc4\x09\x05\x8c\xdd\x93\xb4\xa2\x57\x01\x1c\xa6\x48\xc8\xb0\x42\x8c\xa2\x14\x21\xf7\x02\x05\x29\x38\x36\xba\x57\x14\xdd\x3b\x5d\x02\xd3\x0b\x85\x27\x98\xd8\x03\x80\x28\x2e\xd1\xe4\xb4\x76\xac\xb1\x58\x98\x33\xf6\x69\x92\x91\x5f\x3d\x19\xf4\x8c\x82\x0e\x8e\x6a\x8d\xe3\xe3\x02\x3c\xf8\x6d\x29\xc6\xa1\x0a\x8b\x9e\x84\x5e\x52\xd0\x21\x49\xa0\x68\x05\xb3\x18\x59\xd1\x72\x9f\x93\xa6\xdc\x95\x9b\x38\x93\x70\xa0\x97\x15\x1c\xaf\xb8\xb6\x65\x5e\x93\x66\x00\x85\x2a\xf8\x77\x00\x1a\xe5\xc6\x73\xfd\x2f\xcc\xcd\x6c\x68\x26\xa3\x20\x05\xb3\x44\x41\xc3\x81\x42\x14\x02\x2e\xb4\x16\xa1\x00\x45\x5b\x7d\x08\xd0\x8a\x56\xc8\x36\x69\xc9\x45\x11\x85\x25\x9a\x2c\x18\xf7\x8c\x51\x54\xe2\xd8\x05\x8a\xe6\xd7\x75\xdf\x16\x8c\xff\x34\x05\x28\x12\x28\x0e\x7c\xf1\x4f\xfc\x01\xd4\xd8\xde\x5d\x85\xc7\x58\xee\x49\xd9\x6e\xb1\xd9\xe3\xd0\xcb\x49\x4c\xc2\x62\x7b\xc7\x61\x57\x01\x58\x6c\xe4\x38\xec\x3a\x00\x8b\x7c\xc3\xea\xf2\x49\x78\xab\x93\xc0\x27\x8f\x78\x8b\x17\xc5\x97\xa2\x69\xe5\x11\xb3\x70\x1b\xf4\xf9\x83\x1f\x43\xe8\xfa\x90\x18\xa3\x88\x83\x6c\x10\xfc\x9c\x18\x6f\x37\x68\xe6\xe5\xe2\xa5\xb5\x22\x30\xfb\xb6\xf8\x23\x2e\x03\xcf\xf2\xb4\xc8\xae\x15\x75\x8c\x22\x9f\x45\x5c\x50\x6c\xda\xe7\x6d\x57\x22\x95\xc8\x9e\x61\x72\x5e\x71\xbc\x7c\x0c\xe4\x54\x00\x4f\xdc\x2d\x74\xca\x84\x9d\x93\x87\x7c\x41\x66\x52\x80\xe9\xe0\x49\x88\x9b\x39\x68\x4c\xe5\xc7\x43\x87\x90\x51\xfa\x82\x08\x00\x9c\xf2\xf3\x35\x90\xf9\x4e\x9c\x88\x53\x27\xe1\x7e\x15\x9f\x31\x3e\xf2\x32\x9b\x05\x4f\x9c\xe8\x84\xc9\x3c\xed\x73\xc9\x2b\x9c\x2c\xd1\xa4\x19\x9f\xa9\x74\xd7\xe2\x3b\xab\x3e\xc5\xa3\x33\x96\xda\xbc\x10\x5d\xf7\x90\xe9\xbc\xc7\xa0\xd4\x49\x4c\x20\x72\x18\x0c\x48\x8c\x2c\xd3\x19\xf1\xc3\x84\x6e\x7b\x94\xbc\xa9\x13\x0c\x10\xcd\x77\x08\xfa\xfc\x20\x4f\x0a\xee\xb2\x7c\x2a\x1e\xc2\x15\x1a\xa0\x1f\xc3\x95\xac\x96\xf9\x0f\x1d\xd8\xd1\x34\x2b\xf8\x4a\x57\xeb\x1c\x89\xb1\xc9\x74\xf2\xb4\x15\xac\xc5\xe7\xe9\x88\xeb\x25\x32\x71\xba\x8b\xf8\xb9\x2c\x9e\x13\x3a\x77\x36\x3f\x31\x39\x12\x79\x51\xd9\x3e\x92\x47\xac\xaa\xf6\xd8\x7d\xcc\xca\xcb\x69\xcd\x73\x15\x50\xef\x4d\xf8\x24\xe8\x53\xb1\x44\x8d\x54\x5c\xea\x9c\xeb\xce\x5c\x38\xe3\x3f\x94\xbe\xa8\x27\xd8\x5c\xac\xfa\xd5\xb6\x04\x77\x67\x2a\x68\x6a\x6c\xb5\x73\x0a\x97\x2b\x25\x49\x1d\x99\x8a\xc3\x39\xbb\xed\x51\xa6\x8f\xfc\x12\xb4\xd9\xaa\x00\x75\x00\x00\x9f\x12\xee\xe8\x67\x28\x32\x72\x84\x9d\xe7\xbf\xe9\xfc\x23\x6a\xa7\x7f\xa9\xab\x97\x22\x7b\xfa\xd7\xff\xfe\x33\xaf\xfa\xab\x70\xa2\xaa\xfa\x34\xfd\x4b\x91\xd6\x55\x53\x1d\xda\xe9\x0b\x9f\xaa\x0c\xcf\xf7\xf9\x59\x50\xf2\xe3\x21\x29\x9b\xfc\xed\x8e\xca\xd3\xca\x3d\xbb\x67\xb4\xa0\xa1\x53\xa9\x02\x24\x09\xae\x7f\x6a\x1e\x9a\xf9\xb7\x33\xe7\x7d\x5d\x30\x0e\xa0\x1e\x4e\x56\x20\x68\xb6\x4a\xd7\xad\x6f\x46\x75\x9e\x5c\xc6\xb3\xc8\x15\x20\x67\x2b\xff\xc3\xae\xd8\x87\xe2\x63\x9e\xed\x1c\xa2\xf8\xfb\x09\x2a\x15\x90\xcc\x22\xa4\x17\xef\xed\x96\x0d\xc9\x2e\x3c\x98\x69\x81\x75\xe8\x7a\x19\x49\xc3\x38\x9e\x9e\x93\xf7\xfb\xa4\x9e\x88\x3e\x55\xbe\x21\x7b\xe1\x45\x41\x39\xaf\xbe\xa2\x97\x1c\xac\x09\x34\xa6\xf7\x8d\xed\xc4\xa1\xa6\xb7\x33\x97\x76\xde\x9b\x10\x9d\xc9\xd3\xe6\x3f\x47\xd4\x99\xd6\x49\xf5\x56\xcb\x93\xc5\x2e\x72\x42\x31\x3a\xc0\x43\x6a\x72\xb3\x87\xda\xe1\xf9\x76\xed\x37\x10\x07\x65\x49\x47\x24\x90\xcf\xcc\x20\x14\xa7\xe5\xa9\x0e\xd4\x31\x7a\xaf\x17\x6b\xc0\x31\x16\x78\x5b\x81\xc0\xe5\x55\xcb\x52\x70\x5d\x83\x6a\x84\xab\x65\x29\xbc\x84\x42\xb5\xf2\xea\x45\xf1\xb4\xa7\x99\xbe\xa2\xa3\x27\xc0\xcc\x1b\xe1\x10\x62\xe1\xba\x61\x00\xc5\xb5\x8c\x77\x88\xd7\xb6\xd0\x93\xf3\xc8\xfe\x4a\xb6\x02\x55\x64\x76\x33\x7d\x81\xa1\xad\x2a\xfe\x0e\x96\x5b\xbb\x44\xb5\x23\x4c\x82\x29\x07\x09\xfe\x5e\xb1\xe0\x15\x10\x50\x20\x58\x42\xa0\x7b\x76\xd0\x39\x6f\xa9\x6b\x82\x00\xab\xd9\xa2\xfd\x3d\x7c\xf2\xe8\xad\x2c\xb1\xef\xd5\xc8\x02\xec\xbb\xbe\x7d\x25\x2f\x31\x41\x19\x82\x67\x94\x50\xea\xbd\x30\xe4\x9d\x9d\xab\xf7\x88\xe5\xbe\x49\x53\x02\xbc\x7b\x54\xe3\xf5\x6c\x3b\xf2\xf9\xe0\x68\x35\xf6\xdc\x3d\x68\x44\x11\x1f\x29\x49\x90\x53\x81\xe9\x09\x68\x00\x06\x18\x20\x33\xb9\xaa\xf4\x88\x48\x61\x83\xcf\x83\x23\xae\xe0\x99\x4d\xb5\x40\xac\xf9\x42\xa2\x51\x3d\x81\x67\x93\x3c\xa5\xfa\x4c\x8e\x7b\x77\x42\xfd\xd5\x8c\xbe\x3b\x4a\x2e\x3c\xcf\x72\x8d\xc1\xa0\xce\xcd\xa5\x0d\x78\x3f\x42\x5a\xa0\x8d\x3f\x21\x27\xe5\x4b\x0f\x1a\xe1\x9e\xb8\x78\xe2\x99\x83\x28\x40\xf7\x6f\x91\x67\xae\x8b\x00\x7b\x49\xf1\x9e\x7b\x88\xda\x81\x21\xd6\x90\xf2\x05\x79\x37\xd2\x79\x58\x2a\x02\x91\x9f\x63\xde\xce\x32\xae\x4d\x07\x8e\x68\xa4\xb0\xdc\x42\x56\x28\x68\x9e\xc2\xce\xc4\x33\x92\x35\x72\x49\x41\xae\x52\xe7\xf5\x46\xfd\xd6\xa3\xbc\x66\x36\x00\xad\x45\x14\x04\xc7\xd6\x8e\xa8\x1d\x34\x8e\x6e\x3c\x41\xf3\x29\x5e\x09\xb1\x1b\x66\xdf\x32\x20\x8b\xdf\xbf\xe2\x75\x2c\x76\xd8\x7b\xe8\x30\x37\xaf\xa1\x05\x4a\x04\x3f\x06\xac\x6c\xd4\x6a\x14\x26\xa5\xcb\xfe\x74\xac\x6f\x80\x18\x7f\x25\x1d\xb2\xf6\x51\x52\xfa\x02\x56\x85\x44\xdb\xc5\xee\x0e\x7b\xf3\x00\xae\x47\x2c\xd1\x5d\xf2\xf2\x8c\x92\xcf\xb3\xa0\x99\x7a\x50\x50\xf2\x94\x74\x91\xdb\xa7\xfe\xc4\x0b\x83\x70\x81\x90\x4f\x0e\xb2\x2a\xfe\xe5\x4d\x6e\x3c\xed\x25\x6c\xf1\x35\xf0\xa9\xc9\x2f\x49\x9d\xb4\x39\x89\xd9\x5b\xcd\xdc\x1a\xc7\x29\x11\x8b\x93\x43\xc9\x24\xcd\xcb\x52\x93\xf3\x6d\xb8\x03\xe0\x54\xc3\x5b\xb3\x3f\x65\x49\x9b\x28\x81\xa9\xfb\xb5\xcd\xcf\xa2\xc1\xb3\x9f\xf8\x79\x18\xb0\x4d\xfe\xec\xde\x8f\x85\x5e\x71\x78\x57\x27\xd9\x1b\x66\x20\xc0\xf2\x53\xca\x6f\xd6\xfd\xe1\x47\x06\x35\x71\x32\x4d\xf7\xdd\x57\x06\x38\xf0\x33\x29\x1e\x5d\x66\x93\x04\x43\xba\xc1\xc7\x7d\x5d\xe4\xe2\x86\x39\xc4\x3f\xf6\x6a\xbd\x9c\xf0\xdd\x20\x9c\xd5\x42\x84\x5f\xf5\x01\x9b\x00\xf1\x01\x18\x7f\x08\x03\x00\xc9\x81\xf4\xbd\x94\x13\xa0\x2b\x08\xe5\x53\x36\x08\x54\xd3\x16\x7a\x96\xa7\x93\x3d\x1d\xd0\x21\x46\x0d\x6c\x82\x59\x06\x9f\x34\xb2\x19\x07\xc2\xea\xc6\x6b\x7b\xd4\x0d\x83\xe0\x2e\xbf\xc6\x63\x4f\x01\xd2\x03\x30\x83\x94\x6d\xd0\x30\xfa\x5e\x95\x0a\xd0\x15\x84\x1a\xa8\x6c\x21\xda\xba\x75\x21\xc0\x9e\x0e\xe8\x3b\x95\xad\x8f\x65\xbe\xb2\x11\xea\x23\xec\x58\x78\x71\xf5\xed\x16\x81\x71\x80\x1b\xe4\x75\x7a\x6f\x1b\xf4\x7c\xc8\x23\xce\x6d\x3f\x27\xb4\x95\xfd\x96\xca\xff\x1e\x08\x57\xfa\x2f\x84\xf4\x25\x8a\xef\xbe\xe3\x0f\xde\x51\xf5\xd3\xdd\xd3\x4f\x49\x0e\x7c\x43\x95\xa0\xd5\xbe\xb9\xd6\xb7\x42\x10\x59\x48\x42\xd8\xca\x97\xfe\xf4\x2c\x44\x36\x16\x0f\x1d\xf5\x8c\x45\x27\x10\x7e\x90\x58\x46\xee\x3b\x7c\x07\xf7\xc5\x73\x5f\xaf\x83\xd5\xc8\x61\x55\xee\x60\x1f\x04\xd8\x6f\xf6\x00\x23\xb7\xdc\x87\xc6\x41\x9e\x61\x31\xc0\x5e\x3c\x70\x5b\x13\xda\xc4\xdc\x1d\xa5\xea\xe4\xab\xf7\x94\x79\x58\x58\x70\xcf\xe3\xe3\x0c\xd5\x12\xa3\x1c\xc8\x86\x01\xb0\xbd\x72\xf2\x02\x85\x44\xcc\x74\x98\xda\x04\xf6\x4d\x0f\x86\xf4\xba\xf8\x87\x5f\xf0\xc7\x8b\x24\xf1\xe1\xc5\x4c\xee\x88\xfc\x50\x4e\x5a\x29\xe2\xb0\x07\x05\x27\x22\x21\xc4\x27\x04\x0a\x56\x7f\xc7\x21\xeb\xd4\x07\x12\xb2\xce\xff\xba\xf2\xa5\x66\xfb\x2b\x7a\xc8\x85\x20\xfd\x41\xf5\x24\x78\x72\x4e\xde\x7b\xef\x16\xa1\x8d\x15\x3a\xac\x22\xda\x3c\x97\x45\xc7\xee\x4e\x7d\x79\x96\x70\xcf\x49\x1f\x24\xda\xda\x2c\x15\x5d\xce\xf1\x08\xf3\xf7\x3d\x1f\xe5\xb9\xa9\xd3\xa8\xc0\x87\x7d\xe7\x7c\x80\x57\xeb\xf6\xd8\x75\xb8\x80\x3e\xfc\xd0\x79\x34\x80\xfa\x86\xcf\x3a\x1a\xa9\xaf\xf4\x63\xf8\x07\x20\xc4\x14\xa9\x37\xd0\x3a\x6c\x3a\x3e\x67\x21\x5a\xb3\xff\x4c\xbe\xdc\x39\x1a\x2d\x8b\xe7\xe2\xf4\xf2\x6a\x03\xa7\x46\x39\x26\xcc\xf5\x6b\xdc\x55\x06\x7a\x1a\x59\x96\x59\x30\xae\x48\xfe\x93\xc8\xaa\x91\x51\x51\x0d\xca\x64\xe7\x4c\x8e\x8e\x23\x04\x9d\x6f\xf5\x78\x8e\xce\x68\x21\x4f\x66\xa1\xde\xa4\x08\x5e\x71\xea\xd0\x7c\x24\xff\x83\x47\x02\xce\xd7\x50\xa5\x40\xa0\x7e\x9d\xa3\x5c\x1d\x4f\xe2\x7b\x8e\x1b\x23\x02\x85\xd9\x82\x6a\xa7\x9e\xac\xb0\x34\x8b\x5f\x6c\xf0\x0b\x04\x3c\x5c\xe9\x45\xa1\x26\x56\x7c\xae\xf4\x3d\x28\x26\x39\xdf\x37\x75\xa5\xbd\x84\xc2\x46\x08\xfa\xcf\x3e\xd8\x83\x1b\x9d\xe7\x1c\x02\x63\xe8\x0c\xb6\x75\x0d\x0a\x07\x86\x06\x41\xdb\xa3\x2a\x9e\xbf\x1d\x1a\xbf\xaf\x59\x21\x08\xac\x65\x41\x38\xf8\x9e\x22\x9e\x9f\x0f\xf0\x90\x0d\xaf\x6b\xca\x0f\x99\x73\xbf\xf1\xa0\xdd\xf9\x22\x52\x8d\x4a\x5a\x2e\x45\x59\xa2\x95\xc9\xad\xb0\x63\xc5\xb2\xd3\x10\xef\x58\x6b\x74\x4a\xd6\x05\x40\x83\xf3\x8a\xe1\x88\xfc\x4a\xef\x1c\x5e\xf8\xa0\x1d\x47\xd0\xb4\x09\xbf\x33\x43\xcd\x56\x5b\x05\x48\x16\x6f\x3f\xfb\xdf\x8d\x42\xab\xc5\xad\x7f\x51\x78\x74\x2d\xf8\x1a\x4b\xc0\x7d\x33\x7f\xf0\x84\x07\xac\x09\xae\x9e\x8f\x2f\x08\xdd\xf3\x62\xc8\x9c\xf8\x0a\x8b\xc0\x97\x5e\x00\x7e\x83\x41\x92\x93\x9e\xb5\x9c\xa8\x53\x79\xcf\xe2\x8f\x4b\x72\xc6\x89\x3f\x1d\x18\xe5\xfd\xfb\x0e\xaf\x20\x02\x6b\x28\xfe\x1c\xfb\xc8\xc7\x2a\x79\xe8\x8e\x70\xa5\xc1\xab\x91\xcb\xc8\x7b\xb3\x55\x1c\xba\xec\xf2\x85\x7a\x8f\x05\x12\x2b\x5d\xff\x51\x42\x75\x18\x14\xac\x9f\xe6\xd8\xa0\xc9\xab\xca\x3d\x47\xf3\x52\x3c\x27\x53\x7b\xa0\x93\x8f\x4f\xef\x8b\xa6\xe0\x5f\x88\xd0\x01\x8c\x25\x38\x93\x21\x4f\x69\x2c\x1d\x76\x06\xdd\x3d\xf2\x69\xdf\x48\x1e\xae\x98\x2d\x97\x63\xfd\xff\x69\x6c\xdf\xd1\x33\xe4\x34\x69\xcd\x68\xe6\x1b\x94\xb6\xba\xa6\x47\x6f\x24\x22\x71\xac\x06\xfe\x34\x60\x05\x72\xd8\x00\x5e\xa9\x45\xa7\x47\xd1\x29\x0d\xdc\xab\x97\xa0\x56\x68\xe1\xef\xe5\x3d\xb9\x84\x0d\x1b\x04\x75\x41\xa9\x3d\x97\xaf\xb6\x7b\xc6\xf1\x57\x4c\xb7\xb0\x7d\x23\x55\x0d\x6e\xee\x71\x55\x46\xfe\x08\x37\x34\x27\x5a\xe5\x93\xa3\xdd\x30\xee\xa9\x57\xcc\xaf\x9e\xcf\x7e\x37\xf1\x26\x69\xc2\x36\x05\xf5\xb3\xab\x8d\x63\x5b\x33\x39\x94\xd7\x22\x0b\xd7\x3f\xfb\xb4\x85\xda\x02\x75\xc6\xcf\xaf\xee\xbc\x37\x5a\x3b\xd4\xe2\xff\x06\xaa\x23\x64\xf0\x6f\xbe\xd4\x5e\x9d\xcb\x30\xe8\x30\x8f\x98\x56\xfd\xaa\x0f\xb0\xe1\x88\xbb\xaf\x4a\xa4\x56\xe0\x23\xe0\xce\xe9\x6d\x78\x61\x67\x1e\xf5\x93\xd3\xd3\x55\x3f\x89\xaf\xce\x71\x6f\x97\x19\x01\x94\x6a\xea\xe1\xc8\x8b\x83\x22\x06\xd6\x91\xa3\xd8\xf3\xbc\x28\x70\xb3\x6c\xc2\x26\xcb\xee\x8f\xc1\xc2\x06\x00\x13\xe1\x62\x04\x16\xd4\x96\x85\xa3\x2c\xbd\xfc\x7c\xb6\x4a\x37\x72\x90\x8e\x7d\x00\xa9\x95\x2e\x98\xff\xb2\xb1\x65\xb9\x3e\xa8\x17\x38\xc7\x2d\xd4\xc0\x7d\x07\x19\x9a\x0c\x11\xe8\x88\x81\x8d\xe4\x72\xdb\x78\x26\x73\x43\xdd\xc0\xea\xbf\xdf\x71\x5f\xc0\x01\x0d\xc9\x3f\x6c\xed\x54\x8f\xa6\x2a\x05\x14\xbe\x5f\x21\x05\x30\x9b\x59\x01\xfb\x5f\x5e\x62\xaf\x37\x8b\xee\x9d\x45\x0c\x78\xb2\x18\x32\x8b\x95\x2c\x1c\x27\xc9\xf4\x63\xc3\x8a\x4f\xeb\x29\xff\x40\x34\x31\x61\x3d\x55\xad\x22\x83\xe0\xe9\xe9\x18\x7c\x76\x76\x9e\x9c\xc7\xba\x6c\x69\x33\xb1\xa7\xf5\x6a\x0d\x69\x33\x21\x33\xec\x89\x19\xcd\x91\x6b\x90\x7f\x18\x50\xd8\x61\xe7\xa1\xef\x6e\x55\x90\x42\x0f\x5b\xeb\x10\x25\x62\xf8\xe3\x3e\xa8\x91\x77\xbd\xc6\xf9\xe8\xa6\x8f\x60\xce\x10\x6f\xc3\x3d\xbe\x7a\xbc\x1c\xd4\x0c\xad\x11\xdd\xb0\x5e\x8c\x12\xbc\xf7\xd2\xaf\x56\x5c\x73\xbc\x80\x20\x98\x10\x52\x75\xf0\xce\x3c\xac\x54\x4b\x42\xa9\x10\xbb\x9c\x0b\x2d\xf0\xab\x06\xf1\xa2\x7a\xff\x00\xc4\x0d\x18\x4b\x1e\xe1\x4d\xc9\x1b\x57\x60\xc9\x02\x30\xd6\x60\x54\xf5\x69\xd0\x23\xef\x7e\xf4\x7c\x88\x43\x4c\xef\xd3\x7a\x5e\x31\xe9\x77\x9e\xc7\x9d\x9e\xf5\x17\x44\xd5\xb7\x82\x0f\x30\xfb\x8c\xc1\xce\x8b\xfa\xe4\x8d\x23\x6c\xa1\x03\x9f\xf4\x7d\x9c\xf8\x38\x04\x71\xa1\x5a\xac\x35\x43\x10\x82\x8f\x3b\xee\x01\x11\x1c\x83\xb1\x4d\x14\x80\x7a\x98\xff\x91\x51\x88\xef\xe7\x63\x84\x55\x7d\x2e\xef\xe4\x95\x5c\x36\x7b\x3e\x2a\x0d\xa6\x80\xfa\xa4\x4f\xd2\x44\x7f\xd6\x07\x0b\xbc\x1f\xcc\xb2\x48\x8e\x49\x33\x39\xe4\x79\xc6\x57\x2d\x57\x80\xa6\x58\x7a\x79\xb7\x7e\xe3\xe3\x29\x96\x1f\xda\x1a\xa6\x9d\xfe\xd6\x10\x7b\xe8\x3b\xe4\xbe\xc3\x95\x2f\xf2\x77\x7a\x83\x2f\x04\x00\x22\xee\x5a\x1c\xd1\x52\x1c\x0e\x83\x74\x7c\xfd\xef\x8d\x81\xd0\xfb\x43\xba\xcb\xc7\x0f\x27\x6b\x97\xd4\x7e\x49\x0e\xaf\x35\x00\x58\x7c\x6c\x6d\x4e\xb0\x4d\xec\x47\x65\xe2\x88\x68\xf5\xb1\x71\x5a\x2d\xfc\x56\x8e\xdf\xc8\x7c\x73\x07\x7e\xe9\xc3\x77\xef\x38\x21\x22\xff\x13\x9c\x0d\xaf\x78\xfe\xb4\x43\xc3\x30\xfd\x00\xdb\x26\xe2\x45\x7d\x1d\x8b\xdb\xf0\x1f\xfc\x50\xdf\x9a\xff\xe0\xd6\x68\xcb\xa0\x60\xd7\xeb\x1e\x40\xe4\xc7\xd0\x30\xee\x97\x38\xf1\xd1\xb3\xe7\x39\xac\x00\x3a\xc1\xd9\x01\xa4\x19\xc7\xe5\x0e\xd8\x9e\x91\x9c\xdd\xcf\xe5\x20\x2b\xc1\x43\x23\xe1\xe8\xdc\x80\x6c\x2f\xd4\x00\x02\xef\xfa\xf8\xd9\xa3\x07\x02\x1f\x4c\x22\x30\x0c\x6e\x08\x95\xa1\x13\x00\xe2\xc4\xdc\x43\x7a\xe1\x5c\x9c\xd0\x2f\xe0\xa9\x6f\xc9\xe1\x06\x3d\xb4\x3a\x1b\x49\xe2\x5d\xbe\x5e\xfc\x60\x93\xe9\x37\xdf\x6c\x36\xc1\xe6\x5e\x00\x0f\x03\x08\x63\x76\xd7\xb4\x16\x8c\x07\x67\x22\x7a\x60\x86\x88\xb1\xef\x04\x85\x20\x08\x9c\xa5\xec\x37\xf4\x44\x37\x1d\x3b\xaf\x61\x93\x7b\xf0\x1e\xec\xbe\xb6\x5f\x6c\x19\xa0\xfb\x18\xb4\x36\xf4\x34\x7d\x74\x7c\x5f\x78\x15\x09\x74\x32\x6c\x69\xe9\x6d\xfc\xf0\x20\x1f\x5e\x84\x82\x63\x85\x0f\x6a\x76\x29\xa5\x7d\xba\x11\xe8\x8f\x81\x2e\xce\xac\xa2\xa1\x1e\x02\x9d\xcd\x66\xc8\x94\x47\x1b\xfe\x83\x9b\xd2\xa6\x5c\x9f\xcd\x0a\x02\x22\x4e\xd2\x30\xfd\x9f\xc9\x29\xb5\xc7\xb8\xa0\x1d\xef\xa2\x0b\xdb\xf1\x21\xb0\x3d\xc3\xa0\xed\xf8\xc3\x23\xa1\xed\x78\x27\xd4\x00\x02\xef\x3a\x96\xd0\xa3\x04\x21\x3b\xde\x03\x37\x84\xca\xd0\x14\x5a\x2c\x16\x0f\xea\x05\x65\xc7\x89\xc9\xd1\x6d\xc7\x03\x40\x21\x3b\xd5\x8f\xbf\xd3\x8e\x8b\xf7\x74\x03\xcd\x3d\x3b\x8e\x01\x08\x3b\x1e\x47\xfc\xa7\x5b\x9c\xc8\x8e\x77\xc0\x0c\x11\x63\x8f\x1d\x97\xfa\xb5\x03\xc3\xed\xb5\xe3\x44\x37\xa1\x55\x18\x45\x63\xef\x5a\xdf\x42\x68\x6d\x8a\xb3\x47\x66\x4b\xbf\xc7\xd1\xb3\x0c\x0d\xf6\x38\xee\x6b\xfb\xc5\x16\xac\xa1\x1e\xc7\xfd\x4d\x1f\x1d\xdf\x17\x5e\xef\x86\x7b\x1c\x8f\x34\x7e\x78\x90\x0f\x2f\x97\xc1\xb1\x42\x8f\xa3\x4b\x29\x7d\x8f\x43\xbe\x02\x5e\xb3\x49\x97\xd6\xd7\xd3\xde\x7c\x05\xd9\xe8\x88\x37\x71\xe8\x05\xe7\x58\x0c\x25\xc9\xa3\xbe\xcd\xd9\xae\xe0\x11\x31\x18\xec\x44\x30\xef\xca\xc2\x4b\xac\xf9\xc3\xdf\xa2\x28\x89\xde\x98\xf8\xbc\x48\x76\xb1\xb3\x7e\x9b\x83\x42\x9f\x28\x82\xec\xb9\x24\x6c\x4c\xe2\xcb\x2b\x1d\x6f\x45\x21\x55\x9d\x63\x32\x82\x49\x39\xe0\xa8\x2c\x3e\x7f\x54\xa8\x96\x2b\x9d\x5b\xc0\xa4\xdb\x9d\x40\x6b\xe7\x5d\x62\x0b\x9c\xcc\xee\x4a\x68\xa8\x5e\x76\xbf\xe7\xec\xb3\x7f\xa7\xc1\x21\xdc\xb9\x64\x81\x47\xe5\x54\x8a\x11\xba\xe1\xd5\xc1\xc9\x21\x50\x15\xa6\x01\xdc\xc6\xf0\x48\x00\x75\x82\x82\x8e\x90\x65\x57\x46\x0a\xbf\x57\x3b\xf7\x7d\x49\xd2\x35\x89\xbe\xf1\x42\x34\xa0\x9e\x8f\x1f\x72\x0f\x41\xc4\x1d\x00\x3e\xb0\x70\x13\xa5\xbc\x2b\xb2\x82\x1a\x0b\x6c\xd4\x51\x4d\x8d\xca\x69\x2a\x87\x66\x53\x00\x0c\x38\x56\x4b\x5e\xb6\xf0\x8e\xd9\xc3\x0e\xcd\x72\xea\x0f\xd1\xa9\xa2\x06\xe2\x02\x10\xa3\x81\xb6\x82\x2e\xef\x44\x4b\x5c\x6d\xe9\x9a\x81\x40\xb4\xe4\x85\x16\xdb\x07\xbf\xdd\x8e\x17\x13\x55\x26\xd7\x93\x9e\x4b\x9f\x3e\xae\xf0\x74\x26\xea\x89\xf9\x04\x27\xea\x2a\x3c\x87\x57\x64\xdf\xa1\x69\xec\x57\xf7\xcd\xe4\x55\xc7\x4c\xc6\x7d\x37\x27\x9f\x87\xb2\xcc\xe1\x61\xe0\x1a\xae\x8f\xaa\x83\x85\x7e\x7d\x0f\x0b\xe7\x61\x16\xce\xc9\xbe\x83\x2c\xf4\xaa\xfb\x58\x38\xef\x60\xa1\xee\xdb\x1e\x98\xa0\x8d\x24\xf6\x11\xbc\x63\xe9\x0a\xcb\x88\xb6\x97\xa2\x42\x8d\x43\xfe\x2e\x88\xee\x32\xd6\x52\x4c\xf7\x24\x79\xf6\x8f\x4e\xcb\x6f\x30\xb6\x7f\x30\xb7\x75\xc9\xfd\xb7\xe4\x64\xe3\xe9\x99\x35\xb1\x23\x92\x7f\x8a\x41\x81\xe3\x0a\x06\xf8\x52\xe7\xef\x8b\xea\xda\x80\x06\xa6\x08\x34\x92\xa7\x34\x14\x00\x5a\xaa\xdc\x22\x77\x24\xde\x02\xe5\x57\x88\x5e\x7a\x97\x2d\x6a\x91\x92\x1f\xc6\x5d\x51\x19\x21\x4d\x67\xf9\x69\x34\x5d\xf1\xff\xcc\xf3\x13\x98\x51\xeb\xe5\xb7\xce\x65\xfc\x75\xe8\x32\xbe\xc9\x8d\xec\x5c\x72\xe8\xcf\x11\xb0\x4f\x9a\x5c\x90\xe2\x8a\x7c\x3a\x5b\xe6\x27\x45\xf4\x4f\xc7\x3a\x3f\xfc\xac\x59\x05\x8b\x86\x65\x67\x56\xdc\xb8\x54\x85\xd4\x70\x81\xe1\x49\x3c\xd4\x83\x8e\xbc\x8b\xbc\x70\x92\x51\xbe\xe7\xa7\x4f\xb3\x2b\x04\x1d\xdf\xf5\x84\x33\xeb\x00\x11\x43\x40\x55\x81\xed\xfd\x4b\x9d\x7c\xd2\xb8\x2e\x75\xc1\x66\xf3\x27\xa2\x43\x7d\xf5\xc5\x81\xa3\xfa\x74\xab\x82\x21\x97\x68\x1d\x27\x66\x08\xcd\x35\x4d\xf3\x86\x82\x5b\xa6\xfb\xcd\x32\x45\x70\x54\xb7\x6e\x55\xa8\xdb\xc5\x62\x9b\x2d\x16\x1a\x1d\x7f\xb3\x92\xea\x73\x9f\x46\x59\x0e\x81\xa8\x0e\x41\x79\x70\x90\xf1\x3e\xca\x96\x1a\x91\x7a\x04\x90\x0a\x20\x45\x49\xb6\xc8\x11\x1c\xd5\xa7\x5b\x15\xfc\xec\x92\x6e\xd7\xf1\xc1\xa8\x47\x72\x7e\x21\xe3\x20\xd9\x76\x39\x5f\x20\x30\x52\x89\x60\x4d\xa8\xcf\x74\x3b\x8f\x66\x7c\xfb\x95\x64\x2f\x79\xe0\x28\x8b\xcd\xe6\x0f\x93\xe1\xf0\xa4\x8c\x6b\x3f\xd3\x05\x5e\x11\xc0\x0c\x74\x17\x87\xd0\x64\x27\xd6\x85\x21\x99\x3c\xc4\x8a\xe7\x9a\x06\x71\xb0\x40\x0c\x2c\x3c\xa3\xe5\xb8\xbb\x66\xb4\x3c\x8e\xa0\x21\x9d\xd3\x24\xc2\x34\x71\x03\x94\xa8\x6e\x24\xff\xf5\x5f\x0f\x2d\x41\xc9\x54\x18\x62\x79\x7b\x9d\x71\xe2\xa4\xdd\x73\x89\x14\x5e\x82\x33\x4e\xbd\xaa\x7b\x1d\xb0\x71\xc4\x77\xf7\x74\x53\xb8\xd7\x13\x1e\xc3\xdf\xd9\x4e\xbc\x6a\x6b\x90\x90\x65\xee\x9f\xdd\x10\x45\x12\x79\x71\x3e\xe6\x75\xd1\x86\x4c\xaa\x41\x37\x3a\xc6\x63\xf0\xd7\xf4\x18\xbf\x3a\x08\x20\x28\x3e\x2e\x84\x0e\x77\xcf\x62\xa4\x6f\xb3\x28\xba\xc1\x13\xd7\x76\x0c\x44\xc2\x14\x40\x83\x69\xf2\x8a\x52\x5f\xaa\x70\xa9\x7c\x3f\x6e\x94\x9c\x33\xea\xec\x88\xc7\x29\x79\x6e\x78\xe3\x1f\xb6\x5c\x08\x37\x9e\x24\xd0\x71\xcd\xe0\xa3\x19\xea\xd0\xc8\x2a\x72\x69\xf6\xb9\x68\xf9\xb2\x9a\x8b\xf3\x47\xe2\xcd\xc5\x73\x52\x94\x81\x3c\xf4\xfe\xa1\x9a\x19\x3e\x61\x0c\xef\x90\x3f\xec\xa2\xc1\x67\x36\x44\x6c\x4c\x3d\x31\x52\x96\xa3\xe9\xac\x19\xe5\x6c\xe2\xb3\x45\x99\xbf\xe2\xb5\xeb\xae\x06\x43\xe2\xd7\xed\xc7\xf6\xcf\x91\xbe\x7f\x6f\x95\x18\x1e\x5e\x06\xc9\xd7\x13\xdb\xc8\xcc\x56\x5b\x22\x3d\x2b\x50\xa2\x43\x51\x74\x3e\x01\xdb\xff\x34\x4d\x2e\x22\x38\x05\x8e\xd7\xef\xe0\x57\x8a\xa4\x64\xcb\xdd\xab\x73\x4b\xe1\xce\xcb\x69\x54\x14\x4b\x60\x1d\x1d\x17\xee\x71\x32\x34\x9f\x24\x90\xfc\x47\xc6\x1d\xd1\x1a\xad\x40\x9e\x2f\x63\xf5\xcb\xd5\x3b\x25\x69\x40\xde\x39\x09\x55\x97\x86\x08\xfe\x24\xd8\xa9\x68\x84\x2b\xfa\xea\xaa\xee\x9c\x86\x62\x3c\xe3\x4f\xb4\x86\xd6\x5e\x6e\x4b\xd4\x79\x3a\x31\xcf\xa9\x41\x75\xf8\x1f\xd9\xe1\x10\x65\xf8\xfc\x54\xb6\xca\xb7\xe9\xca\xc8\x25\x5d\xaf\xe6\x19\x42\x35\x3a\xd6\x30\x7f\xa6\xb1\x92\xf9\x6c\x3f\xc7\xa0\x90\xa5\x3a\x18\xb4\x5f\x2e\xb8\x39\x95\x35\x01\x3f\x25\xdb\xe6\xd9\x61\x8d\x68\xdb\xa7\xf9\xe6\x60\x5c\xe6\x79\xbc\x8e\x36\x07\x88\x87\x26\x2c\x59\xe5\x71\xee\xf4\x47\x52\xb5\x58\xce\x56\x5b\x0d\xd5\xe1\xcf\xa4\x87\x4d\x3e\x47\x84\x1d\x92\x7c\x9f\xa6\x9a\xb0\x4d\xb2\xca\xe6\x7b\x84\x8a\xa6\xed\xb0\xce\xe3\xfd\x12\x83\x12\xe4\xad\x56\xcb\xd8\x32\x2d\xe8\xf7\x1c\x66\x59\x9e\xe1\x90\x1a\xa7\x2d\x33\x6c\x4b\xb6\x8b\xc5\x62\xe6\x62\xa2\x89\xcb\x17\xfb\x6d\x1a\x21\x48\x82\xb6\xcd\x62\xce\xbc\xad\xdb\x1f\xf5\x02\xf6\x4b\xfe\xe9\x50\x27\xa7\xbc\x19\xf1\xc7\x4b\xf8\xab\x6b\xfc\xe3\x22\xdb\x37\xd7\xc5\x25\x6f\x5e\x0f\x35\xbf\xd2\x64\x49\x37\xca\xbd\x10\x9b\xec\x5b\x5b\x91\xb5\xfc\x6a\xd3\xed\x8f\x5f\x11\xf7\x54\x63\x7c\xc5\xa9\x4d\xe0\xbd\x28\x6a\x45\x1a\xfc\xa5\xa0\xef\x90\xbc\xf7\x50\x52\xf0\x0c\xbc\x0f\x69\xe9\x17\x9f\x72\xbd\xbc\xa4\xe6\x39\x2e\x91\xaf\xa3\x23\x3b\xe3\xcc\x3a\x2c\x81\x6d\x69\x30\xca\xd9\x31\xbc\x09\x38\x9c\xef\xbc\x36\x35\x14\x92\x30\x8f\x62\x60\x6c\xdf\x2d\x2d\xe0\x2e\x58\x03\x58\x23\x15\x25\x1b\xb9\xcc\xf2\x2e\x9f\xe8\xce\x38\x5f\x98\x7a\x99\x27\x76\x16\xcb\x2c\x7f\x19\x13\x37\x0c\x96\x6f\x47\xb3\xe5\xb7\x63\x60\x8b\xbc\xbf\x97\xd1\xb7\x81\x96\xe1\x9a\x35\xc2\x81\xfe\x7e\xeb\xdf\x2d\xfb\x7f\x89\x62\xa1\x7f\x62\x66\x2e\x84\xeb\xa6\x65\xa2\x3c\x0a\x24\x24\x2d\x93\xe4\x5c\xc8\xd7\xf6\x9f\xa8\x25\x60\xc4\xfc\x21\xc9\x83\x11\x5b\xea\x8b\x33\xdb\x1e\xec\xee\x6e\xe1\xce\xa5\x01\x5b\xf8\x6e\xfd\xa2\x10\xfc\x53\xcf\xbe\x2e\xc5\x48\x84\x3d\xe1\x90\x1e\xf9\xe1\xd6\xff\x14\xde\x6f\x2a\xbc\xfe\xe8\x52\x8f\xfc\x08\x04\xff\x14\xe1\x6f\x2a\xc2\xde\x48\x5d\x8f\x04\xfd\xf6\xff\x14\xe0\xd7\x16\xa0\x08\xec\x8c\xe5\x3f\xcc\xa5\xcb\x3e\x79\x8e\xf1\xaf\x15\x8f\x38\xb9\x90\x23\xf9\x0f\xbe\x6b\xa4\x80\xa8\x07\xa8\x54\x0e\x5d\xd9\x4f\xb5\xff\x7b\x9e\xb6\x38\x53\x8e\xac\xe3\xa7\xe8\xf8\x34\xd6\x97\x7c\x47\xd1\xc8\x62\x7e\x96\xaf\xf5\x89\xeb\xb4\xee\x15\xa4\x08\xc3\xc8\x0b\xb5\xce\xc5\x25\x0b\x33\xe1\xb1\x45\xfc\x19\xd0\xcb\x69\x69\x03\x90\xaf\xc4\x8e\xc0\x6d\x7d\xc3\xe1\xca\xfb\x13\x5c\x12\x89\x0e\xef\x89\x36\x79\x14\x0c\x7a\x0b\xa3\xef\xcc\x0a\xc6\xe9\x5f\xe6\xc2\x89\x2a\x7a\x0e\xa9\xd0\xe7\x66\xbc\x8e\x74\x3c\xd6\xf9\xc4\x48\xc3\xbc\x73\x43\xb7\x52\x21\x64\x34\x1a\xcb\x04\xdc\xe4\xf0\x2a\x47\xb8\xc0\xa8\x22\x88\x5f\x79\xad\x4c\xf0\xcc\x63\xfe\x3d\x5f\x5b\xd5\xd3\xac\xa1\x98\xb7\x8f\x5e\x55\x84\x7a\xd7\xd5\x5f\xea\x14\x4b\x90\xb2\x20\xd3\x7a\x48\x7e\xa0\x9d\x18\x4b\x9f\x90\x74\x5c\x6c\x38\xbd\x5c\x42\x77\x13\xdb\xdd\x28\x40\x29\xbc\x32\x90\xc7\x3c\xf4\xe5\x69\xb4\xd9\x44\x38\xa1\x39\x42\x56\x32\xac\xe7\x0f\x93\x46\x10\x86\x7b\x98\x9f\x1a\x41\x48\x03\x4d\xbd\x7b\xcb\x28\x38\x9e\x88\x47\x24\xc3\xdd\x04\x27\x02\x02\xe8\x23\xc7\x9d\x18\x9d\xd3\x41\xd3\xea\x9e\xe4\x57\xb1\x52\x8c\x5e\x6c\x1e\x9c\x98\x25\x35\x48\x11\xef\x24\x06\xe9\xb7\x0e\x00\x3d\x2e\x2e\xde\x3a\xc8\x1c\x51\xe9\x0a\x2a\x34\x86\x74\x91\xcf\x0f\xc4\x3a\x28\x70\x84\xa5\x04\x6a\x3b\xa9\xb8\x47\x3e\x8a\x44\x57\x3e\x2a\x5e\x8c\x71\xeb\xcd\x81\x13\xbd\xa5\x16\x62\x11\xf9\x25\x86\x47\x22\x08\xc3\x3d\x2e\x28\x85\x20\xc8\x25\x5d\xef\x70\x28\x3c\x9e\xe4\x30\x4b\xd3\x70\x37\x61\x89\xb9\x00\x7d\xe4\xdc\x21\x37\x4d\xab\x23\x37\x1d\x4e\xc7\xe8\xd5\x96\xc0\x09\x6b\x53\xc3\x14\x21\x71\x62\x98\x54\xfb\x20\xd8\xe3\x42\x93\xed\x83\x4c\x52\xd5\x0e\x73\x82\x63\xe1\x91\x7c\x52\x64\x12\x4b\x58\x62\x4e\x7d\x0f\x2d\x77\xc8\x4b\x13\xea\xc8\x4b\x7f\x60\x08\x31\xac\x23\xed\xc7\x92\xf0\xf6\x9c\xcc\x05\xc6\xa1\x44\x8f\x57\xf1\xe3\x62\x67\x2f\x71\x49\x28\x3a\x4f\xb9\xc9\x9d\x5f\x11\xa9\xc0\xb6\x8c\xc3\xc7\x28\x0e\x1f\xb9\x31\xed\x20\x90\x22\x58\x6e\xab\xe0\x27\x4f\x5d\xa1\xb9\x15\xcc\xd6\xd3\x99\x8c\xa7\xe3\xa0\x63\xcf\xf9\x4b\xd0\x37\x99\x42\x57\x5d\x62\x43\x9f\x1a\x65\xbb\xb6\x68\xcb\xbc\x4b\xbe\x11\xfc\xee\xb0\xf2\xbf\x58\x02\x34\xe6\x3e\x12\xaa\x3c\x54\x55\x0b\xf2\x5a\x01\xb6\xf4\x7c\x85\x71\xb3\x1b\x11\x69\xd0\x43\x8c\xa2\x8f\xb1\x2a\x7a\x9e\xc3\x3b\xc1\x88\x00\xf1\x96\x91\x57\x3f\x85\xdf\xce\x7b\x56\xc8\x43\x03\xb7\x6f\x1e\xca\xc0\xde\xae\x23\x87\xca\x20\xad\x70\xfa\xb7\x5b\x3d\xbf\x7b\xff\x99\x8f\x21\xdb\xc0\xa1\x0c\xd7\xca\xf9\xae\x8b\xab\xa1\xed\xad\x79\x6b\x56\x8d\x48\x24\x71\x1e\x3b\x7f\x4d\xea\xbc\xb9\x54\xe7\x46\x1c\x27\x12\x25\x41\xb1\x8a\x5a\xf7\x05\x9f\x00\x26\xf7\xe5\x0e\xaf\x5d\x70\x07\x3e\x50\x30\x1e\xc2\xe7\x96\x73\xc9\x2d\xa9\x1d\xa5\x69\xb3\x2f\x41\xf8\xe7\xf5\xe3\xb6\xe3\x2b\xe1\x6f\x41\xf1\xe7\xf4\x73\xe7\xd8\x8f\xbf\x11\x8f\x3b\xfa\xb9\x73\xec\x5f\x88\xe2\xfb\xfa\x79\xfd\x6a\x2a\x0e\x5f\x6c\xfa\x8a\x1a\x1e\xea\xe6\x6e\xc5\xfb\x12\xf4\x7e\x46\x37\x77\xab\xdd\x6f\xc2\xdf\x70\x37\x77\x2b\xdd\x6f\xc2\xdf\x23\x61\x01\x43\x37\x4e\xc0\x58\x86\xd0\x06\x5f\x69\xc2\xad\x06\xde\x7d\xe9\xf1\x66\x30\x56\x35\x5e\x58\x50\x43\xeb\x3f\x74\x55\xee\xa2\xfc\x73\xfa\x70\x5a\x71\xdf\xf0\x6b\x93\xfa\x78\x1f\xf7\x8c\x78\xe0\x3a\xfc\x59\x5c\xed\xb2\x1a\x77\x8c\xf8\x8b\x90\x7a\x4f\x1f\xdd\xd7\xcb\x3e\x47\x93\x3f\x77\x0a\x7e\x46\x17\xf7\xe9\xd8\xe7\x13\xfa\x70\x17\xf7\x69\xd8\x57\xe7\x68\x87\x71\xb8\x4b\xbf\xbe\x3a\x47\x29\xab\x10\x58\xaa\x8d\x0a\xdb\x10\xc1\x3b\xb4\x55\xf1\x6a\x00\x9d\xaf\xc1\x0d\xaf\x3b\x37\x86\x98\xb2\xf1\xbd\x2d\xdc\x1d\xa7\xdb\xe1\x44\x56\xe5\x61\x16\x63\x40\xfd\xd0\x4c\x08\x91\xf4\x1e\x18\x11\xcf\x03\x97\xa1\x07\x11\x58\x70\xce\x80\xcf\xea\x6f\x10\x02\x0b\xce\xb5\xea\xb3\xfa\x1b\x84\x80\x60\xc7\x30\x63\xf9\x20\x02\x82\x1d\x8f\xf6\x37\x08\x01\xc1\x8e\x47\xfb\xa3\x11\x68\xad\xd7\x1f\xfc\xfb\xb5\x75\xc0\x82\xf3\x58\x7b\x52\xd5\x1e\xea\x6d\x48\x7b\x52\xd1\x1e\xea\x6d\x48\x7b\x52\xcd\x3e\x8f\x93\x1d\xed\x49\x25\xfb\x3c\x4e\x0e\xea\x0d\xa8\xd8\xe7\x71\x32\x23\x6c\x8e\x79\x05\xb9\x9b\xb1\xee\x22\xff\x00\x67\xbb\x11\x78\xac\x79\xbc\xbf\x41\x08\x7a\xc8\x3b\x7e\xee\xf8\x30\x82\x1e\xf2\xee\xe9\x8f\x46\xe0\x3f\x19\xd7\xd3\x3f\xf4\x4c\x1e\x61\x6f\x57\x7b\x4f\xf5\x1e\xee\x6d\x48\xfb\x6e\xda\x1e\x61\x6d\x57\xfb\x6e\xda\xee\xe9\x8d\x6c\xdf\x23\x47\xcf\xab\xf3\x3f\xa9\xe8\xb8\x78\xe8\x30\x9a\x53\x3f\x22\xbf\x93\x11\xd9\x9f\xf0\xf3\xbe\x14\x96\x77\x2e\x32\x73\xd9\xcd\x87\x34\x5f\xb3\xe8\xd1\x92\xb0\x0a\xbb\xc9\x32\x38\x82\x5f\xcc\xfa\x5c\x5c\x17\xa3\xfa\x66\x44\x78\xa6\x14\xdc\x90\x8e\x03\xaf\x14\x4b\x40\x93\xd9\x80\x4a\x6c\x04\x00\x9e\x11\x73\xec\x59\xb2\xde\x8f\x59\x43\x71\x0e\x64\x62\x3f\xbe\x7b\x59\x43\x60\x34\xf9\x17\xc8\x7b\xa2\x0e\x4c\x80\x33\xf7\x9f\x4d\xeb\x44\x7b\x27\x73\x3a\x51\x3e\xca\x1f\x17\xa9\xb9\x27\x42\x5c\xc9\x44\x30\x21\xe5\xe9\x3e\x15\x46\x5e\xf6\xec\xc6\x7c\xaf\x0a\x75\xa1\x7c\x58\x8b\x1c\xa4\xf2\x36\x06\x71\x33\x14\x02\x84\xf8\xd3\x7d\x00\x8b\xbc\x70\xda\x81\xf6\x4e\xe6\x84\xf1\x3d\xca\x19\x17\xa3\xb9\xe7\x40\xdc\x4e\x45\x30\x01\xfe\xf4\x9c\x7e\x22\xef\xbd\x76\x63\xbe\x93\x45\x9d\x28\x1f\xe5\x92\x8b\x54\xdf\x25\x20\x2e\xc9\xba\x20\x01\x1e\xf5\x1c\x35\x22\x6f\xdf\x76\x22\xbe\x93\x45\x5d\x18\x1f\xe5\x90\xc6\xf9\x21\x2f\x99\x41\xb7\x4f\xc4\xc2\xe3\xec\x4f\xf1\xf6\xa1\x0b\xb0\xd0\x4c\xe6\x73\xfe\x73\xff\xcd\xd8\x9e\x73\x36\x3d\xa0\x72\x5c\x23\x71\xb8\xfe\x1f\x57\xc6\x21\xdf\x36\xbb\x52\x43\x97\x4f\x65\xfb\x49\x69\x8f\xe3\xcc\x16\xde\xbb\x79\x22\x63\x86\x80\x6b\x4e\x4e\x8e\x03\x17\x4c\x04\xf8\xe4\xb5\x7e\xf8\x0a\x61\x47\xca\x8e\x60\xd2\x28\xfe\xa4\xa6\x38\x45\xee\x9c\x36\x8a\x46\xc2\x50\x56\x97\x24\x2d\xda\x4f\x4f\xd3\xd9\xee\x50\x94\x4c\x29\x9e\x92\xf2\x72\x4c\xbe\x57\xe5\x3f\xce\xa2\xb7\x8a\x0e\x9d\x12\x47\xfe\xe1\x1c\xfb\x32\x3d\x74\x67\x64\xb1\x9d\x2d\xe9\xce\x96\xac\xb3\xfd\x95\x69\xcc\x59\x67\x34\xd0\x49\x4e\x31\x26\xab\x4b\xfc\x7e\xc7\xce\x78\xbd\xe6\xf6\xe7\xe5\x92\x27\x75\x72\x4e\xf5\x4d\x8c\x53\x95\x25\xe5\x84\xa7\xa4\xc5\xd7\x53\x54\x9d\x93\xd2\xc6\xfa\xb5\x22\xf9\x05\x78\x9c\x56\xbe\xda\xbb\x43\x2f\x85\xca\x83\x33\xf6\xbd\x6d\x7d\xfc\x0c\x3f\x1c\xba\x8c\x7a\xdf\x01\xde\x81\xd7\x1a\x05\x61\xd3\x43\x92\xb1\xa9\x29\x07\x90\x15\x49\x59\xbd\xbc\x3a\xb7\x9c\x79\xfe\x6c\x99\x2a\xb7\x4c\xda\x9c\xe9\xe3\x64\xb6\xfc\xf6\xed\x6e\x72\x6a\x3a\xeb\x3b\xdb\xfa\xb7\xa8\xbd\x2e\x47\xd3\xb9\xca\x29\xc2\xf3\x8d\x4c\x4e\xd5\xaf\x0e\xb8\xf9\x9b\x80\xad\x1c\xc8\x2a\x04\x07\x80\x68\x08\xcd\xa1\xe2\x7c\x17\x7f\xa2\x2e\xe6\x44\x21\xce\xf0\x89\xe0\x74\xe2\x5f\xcf\xf1\x1e\x7b\xd4\x37\x86\x44\x33\x95\xc2\x97\x68\x37\xf4\x8e\x8e\xcd\xcc\x04\x4a\xe1\x22\x34\x7b\xeb\xaf\x36\xf4\xa9\x44\x9e\x73\x6a\x8b\x96\x40\x7c\x28\x31\x04\x03\xa8\x2d\x8b\xcb\x93\x4d\xcd\xf3\xd1\x53\xde\x09\x07\xe6\xa7\x02\xf1\xdb\xba\x43\x67\xcc\x82\x78\x2a\x93\xaf\x37\x18\xbf\x98\x25\xaf\x7a\x81\x89\xe8\xf5\xc5\x8a\xd0\x34\xe3\x4f\x4f\x0f\x58\x95\x54\x33\xf4\x5c\x66\xe7\x41\xcb\x6f\xc4\x1b\x4f\x4b\xf8\x92\x7a\xbc\x32\x59\x80\xac\x5a\x48\x9c\x3a\x87\x0b\x7c\xd4\x7d\x66\x81\xe0\x99\x49\xef\x5c\xab\xc6\x69\x06\x27\x4e\x8b\x7a\x5a\x66\x8c\x12\xd0\x49\xb5\xe7\xc5\x2f\x7e\x41\x53\x3e\x12\x59\x2d\x85\x05\x07\x39\x1e\xa4\x39\xa2\x37\xd8\x72\xe0\x6e\x17\x23\x9e\xfd\xeb\xdd\x14\x3c\x7c\x26\x44\xed\x5f\x5a\x8b\x88\x76\x7a\xff\x4d\xa2\x90\xb9\xc5\xfc\x36\xc2\x8c\xbf\xb3\xbf\xba\x49\x98\x3b\x5e\x30\x73\x26\xb9\xac\x5a\x45\x36\xa9\x87\x48\xd5\x35\x12\x29\x90\xd0\xc4\x26\x27\x9a\x79\x52\xb5\x6b\xa6\x05\x80\x74\x07\x8d\x7e\xb4\x6f\xce\xe9\xa0\xde\xf9\xdb\x6e\x67\x80\xf6\x52\xd3\xbd\x95\xf0\xd3\xb6\xaa\xca\xb6\x00\x93\x30\xd9\x33\x59\x5d\xdb\xdc\x79\xd4\x1a\x5d\x2f\x14\xef\xb0\x17\x25\x9f\x1a\xfa\xe1\xfc\x8e\x7c\x20\x4c\x0d\x77\x03\xa6\x9f\xa2\xc4\x99\x77\x5b\x1a\x7c\x0b\xe1\xf9\x83\xd8\x70\x6e\xcc\x81\x96\x2e\x45\xd2\x16\x03\xea\xdf\xdb\x84\xc0\xea\x32\xa8\x06\x56\x6f\x67\x03\xd4\x1d\x98\xe1\xad\x51\xa9\x7b\x61\xcc\x8c\xaf\x6e\x1a\xb4\x59\x84\x73\xfe\x6d\xfa\x32\xa8\x0c\xbc\xfb\x07\xde\x4c\x87\xf7\x21\x35\x21\x49\x5d\x57\x1f\x08\xd1\xa3\x84\x2f\x91\xeb\xdb\x12\xe7\xc4\xe5\xcd\x56\x31\xc9\x1d\xc1\x8c\x50\x57\xee\x6a\xbe\x8c\xbe\x75\xb3\xa9\x83\x45\x53\x92\xa0\x1f\x1c\x76\x8e\x1e\xc3\xa5\x1e\xf4\x25\x70\xf4\x74\xf8\x59\xf8\x85\xf6\x04\x3b\x30\x57\x43\x1f\xec\x81\xc4\x2e\x42\xa2\x8c\x4b\xee\xeb\x9b\x42\xcd\x83\x3d\x39\xbd\xc9\xa3\x01\x54\x7f\x14\xb7\x74\x77\xe8\x75\xfe\x70\x7f\x91\xee\x71\x07\xbe\x5f\x92\xdd\xe9\xd7\x33\xfd\x0e\x07\x2b\x83\xd7\x99\xbb\x03\x25\xba\x23\x55\x02\xf6\xf9\x05\xba\x08\xca\x2d\xa8\x12\x43\x3a\xb9\x54\x17\xf1\x1e\x85\x3f\x37\x01\xf9\xd0\x1b\x8a\xed\x1a\xad\x1e\x9f\x35\xab\xcb\x7a\x05\xed\xb6\x6b\xac\x45\x7e\xa7\x80\x93\xd9\xe1\xcc\xf9\x0e\xa8\x78\x17\xec\xcb\x38\xa0\x3a\xb1\xb8\xdf\x7c\x00\x90\x9b\xd9\xb4\x3e\x25\xa5\x61\xa6\x67\x29\xa4\x0b\xae\x6b\x43\x97\xfa\x75\xbd\x6f\x0f\xdc\x7a\xdf\x04\x38\xf5\xd8\x51\x73\x9e\x14\x59\xb8\x39\x5e\x17\x68\x03\xbf\xc0\x1b\xf8\x0d\x1d\x34\x59\xf3\x9f\x0e\xb7\x73\xcf\x7f\x90\x18\xcc\x92\x31\xb2\x6a\x67\x37\x24\x36\x0a\x31\x92\xaf\xc1\x2a\x88\xe7\xa9\x50\xf4\x31\xfa\xfb\x29\x39\xb4\xa4\xd6\xba\xfe\xc3\xe7\xd9\x17\xb7\x4b\x74\x01\x26\xf6\x89\x54\x44\xb9\x70\x32\x47\x99\x7a\x39\xe5\x8d\xa3\x23\x1a\x31\xbd\x2c\xc5\xb1\x37\x71\xf5\x70\xfc\x15\x1e\x24\xcc\xb5\xa5\x8e\xc6\x0a\x7f\x4f\xe5\x64\x80\xb4\x03\x42\x14\xfd\x86\xda\xd1\x9b\x9d\x95\xed\xce\xd3\xb8\xc1\xc4\x89\x4c\xb5\x8e\xf6\xeb\x91\x3b\x66\x47\x8e\xd8\x99\x37\x31\x5a\xf0\x51\x1f\x8e\xd1\x81\x39\x83\x41\x39\x62\x02\x4d\x08\x31\x72\x39\x31\x45\xff\x8a\x6b\xd1\x1d\xc4\x38\x43\x96\x18\x86\x4b\x1b\x5c\x00\xa2\x57\x6e\x30\x54\xa7\x02\x0b\xdc\x30\x31\x40\x0b\x31\x6c\xb5\x8f\x0a\x4b\xbb\x97\x38\x67\xe8\xbc\x3d\x16\xb6\x7e\x58\xbb\x4b\xda\x92\x99\xa8\x1f\x68\xf3\x01\x0b\x40\x71\x50\xd8\x80\x0e\x62\xd0\x2a\xfd\xca\x1d\xdd\xcb\xe0\x88\x55\x8c\xdb\x34\x4d\xd8\x12\xd9\x50\x09\xe5\x6d\x9d\x72\xc8\xfd\x7d\x31\x4e\x57\x03\x5f\xbf\x77\x1b\x3f\x4f\xc5\x65\x3c\xc7\x04\xfb\xf8\x88\xe0\x99\x4e\x31\xa8\xd2\xef\x8e\x84\x41\xee\xa9\xa7\x3b\x97\xe9\x7a\xc9\x1a\x99\xb9\xd7\xb1\x20\x3e\x0e\x75\xf7\xd7\x2b\xe7\x4f\x32\xf8\xa5\xfc\xdd\x05\x9c\x64\x87\xc6\xf8\xaa\xcf\xb4\xdd\x81\x38\xe4\xf6\x74\x09\x80\xa3\x7b\x55\x76\x9b\xaa\x17\x88\xf5\xc4\x09\x21\x10\x1a\x49\x13\xa5\x1c\x84\xd0\x68\xe4\x60\xa5\x17\xd0\xd5\x8b\x82\x03\xc8\x10\x1c\x9f\x01\x75\x55\xf6\xb9\x7e\x66\xe3\xa1\x78\xb2\xfc\x76\x48\x10\x1d\x7e\x26\xe8\x4d\xd3\xe9\x7f\x1a\xc0\x59\x43\x57\x6f\x7d\xc2\x25\x0b\x06\x27\xda\x12\x0c\x17\x64\x30\x2b\x5f\x5d\xbe\x77\xe3\x1c\xa3\xe8\x6d\xa8\x92\xf9\xc9\xf1\xdb\x11\x67\xde\xdb\x01\xd9\xb1\xda\x6a\x24\x58\x3e\xc6\xf8\xc7\x01\x9c\x10\x65\x9d\x5f\x72\xfe\xa1\x45\xfc\x33\xf9\xa8\xb9\xcb\x13\x8c\x15\xd9\xd3\xbf\xfe\xf7\x9f\x79\x97\x7f\xd5\xb1\xe1\xe9\x5f\x8a\xb4\xae\x9a\xea\xd0\x4e\x4d\xf7\x4d\x9b\xd4\xed\x9f\xf8\x40\x9a\xb6\xfe\xf1\xbb\x6f\x36\x91\xfc\xdf\x77\xe3\x51\x7e\xce\x40\x45\x64\x2b\xfe\x5d\x35\xfe\xeb\xa7\x4b\xfe\x63\x4c\x71\x1a\x28\x91\x08\x2d\x9b\xa0\xe9\x97\x60\xbe\xe4\x45\x98\xff\xcb\xcf\x64\xbe\xc2\x8f\x05\xf2\x1b\x30\x3f\x0a\x31\x7f\x73\x07\xf3\xcd\x47\x2f\x5c\x2e\xbf\x7f\x99\x70\xb7\x37\xc5\x70\xd4\x66\x50\xb0\x0b\xf7\xa2\xde\x5c\xe5\xeb\x92\x4f\x82\xaa\x44\xeb\xab\xa9\x7c\x29\x3f\x5d\x8e\x02\x22\x3d\xe6\xef\xeb\x4a\xba\x13\xc3\x20\xa5\xc6\xd1\x4b\x13\x77\x22\xf4\x86\x74\xb9\xa3\x1f\x31\xbc\x73\x1c\x34\xa9\xc6\x57\x0b\xe2\x1b\x3e\x74\x39\x20\xb5\x53\xef\xc0\xd8\xcb\xe9\x57\x1d\xcb\x63\xab\x2a\x91\xef\xd9\x6c\x38\x09\x17\x4e\xac\xc9\x87\xe4\x54\x94\x9f\x9e\x9a\xbc\x2e\x0e\x9d\x54\xe0\x77\x1f\xbf\xfb\xdb\x2c\x9a\x6f\xbf\xeb\xe4\x05\xd9\x26\xf9\xce\xb1\x4e\x59\x91\x26\x2d\x9b\x09\x84\x74\xf5\x76\x43\x3c\x5d\xa0\xfd\x64\x13\x7b\x58\xee\x74\x28\x1c\x39\xcf\x73\x56\xd0\x9d\x07\x8f\x7a\x00\x8b\x20\xc9\x7f\x0e\x6b\x02\x37\x92\x31\xe0\x39\x60\xb1\x8d\x75\x70\x42\xd9\xa8\x27\xcc\x3b\xa5\x1e\x00\x80\x4f\xcd\x81\x77\x4d\xc2\x5f\x96\x41\xa8\x66\xf4\x37\xe2\x11\x28\xb0\xa4\x39\x93\x17\x8c\x48\x3b\x47\x26\x1e\xa0\x86\x32\x03\x43\x99\x85\xb2\x8f\x40\x59\xeb\x37\x11\x3c\xa1\x49\xdf\x62\xa9\x1d\x7b\xfe\x1b\x3c\x73\x61\x43\x47\x3b\xf8\xa4\x86\x93\x7e\x10\xc2\x7f\x51\x4f\x41\x12\x2d\xbe\xc6\xbc\xc2\xb6\xe2\x8b\xfc\xa0\x07\x41\xbe\xc2\xb2\x16\x9c\xde\x43\xe7\xfe\x1c\xe8\xe1\xdc\x9b\xfb\x4b\x6f\xee\xbb\x2f\xad\xcc\x9d\xfd\x8a\x11\xac\x80\x9d\x99\xfd\xd9\x0c\xcc\x29\xf0\x40\x0c\x3d\x93\xe1\x29\x5e\x7e\x56\x83\x19\xe5\x43\xf1\x51\x2d\x06\x63\x5b\x20\xb6\x5e\x63\xfb\x68\x8a\x85\x30\x25\x18\x64\x72\x28\xaf\xcc\xfc\x7a\x80\xaa\x5c\x81\xf3\x7d\x9d\x06\x31\x7b\xbc\xf1\x94\x1b\xea\xc9\xb1\xaa\x8b\x5f\x79\x33\xc6\x49\x51\x20\x33\x83\x68\xf0\x2e\x18\x85\x86\x7f\xc0\xe3\x71\xd7\x7d\x62\x29\x86\x65\x00\x4c\xa6\xf6\xd0\xcf\x21\x3d\xdb\x32\xa7\x61\x18\x4a\xa1\x3a\x27\xef\x4d\x03\xfe\xbb\x2d\x86\x34\xa8\x3f\x9d\x4a\xf5\x31\x17\xc1\xe8\x52\x17\x54\x9f\xba\xc2\xc0\xa6\x5c\x81\x8b\xc7\xe9\x0c\x90\xfc\xcb\x54\xe9\xe3\x5a\xa0\xde\x14\x29\x20\xf8\x65\xd4\x80\x39\x85\xfe\x9e\x5c\x2f\xc3\xe2\x78\xf9\xad\x43\x85\x02\x0a\x03\x14\x63\x80\x32\x10\x82\x1e\x24\x54\x20\x2e\x57\x44\xa4\x4c\x02\xdc\x77\xb8\xec\xf3\x95\x62\xa2\xe2\x17\x67\xca\x13\x9b\x7c\x47\xc6\x20\xb1\x40\xaa\xef\xcc\x6e\x14\x74\xc0\x4b\x3a\x30\xdd\x2c\x38\xec\xf5\xfb\xe2\x74\xa9\xea\x36\xe1\x0f\x99\xdb\xa4\xb5\xf6\xc5\x06\x58\x7f\x2c\xb2\xdc\x89\x4b\xc0\xca\xe6\x58\x7d\x70\xa9\x82\xb5\xc5\x59\x7d\xdd\x7d\x05\x1f\x7c\xf5\xd1\x28\xb1\x6c\x0b\xe4\x7c\x09\x7b\x8a\x7e\x88\x46\xc9\xce\x0f\xe0\xe2\xd5\xbd\xf3\x29\x6f\x73\x5a\x4b\x90\xcd\xba\x09\x10\xbe\xf3\xe8\x81\x64\x27\x07\xa6\x90\xe8\x54\xc9\xed\x8f\xfc\x5c\xcf\xfb\x22\xff\xc0\xc1\xd4\x7a\x9d\xe5\xef\x8b\x34\x97\x86\xe5\x36\x55\x63\x9d\x7c\x6c\xc6\xe6\xf7\xe6\x64\x7f\x3f\x65\xf6\xf7\xf2\x25\xc4\xd2\xf0\xe3\xff\x16\x7f\x90\xe3\x62\x52\x51\x80\x72\xb6\xb5\x75\xb0\x6e\xc2\x26\x14\x44\x74\x84\xc3\x69\xb3\x70\xbb\x34\x2f\x4b\xd0\x30\x78\xf8\x41\xd9\x61\x33\xaa\xed\x36\x76\x46\xd5\x9c\x06\x8e\x0a\x00\x7a\xa3\xc2\x75\xe1\x51\x31\xc1\x80\x51\x79\xed\xfa\x47\x25\x8f\x45\xe0\x51\xc5\x31\xf7\x10\xc1\xb0\x4e\xd9\xc0\x61\x01\x40\x6f\x58\xb8\x2e\x3c\x2c\xa6\x63\x60\x58\x5e\xbb\xfe\x61\xc5\xe2\x2c\x01\x18\x00\xd0\xd4\xee\x01\x00\x40\x6f\x00\xb8\x2e\x3c\x80\xf2\x05\x0e\xc0\x6b\x17\x1c\x80\x37\x5b\xe4\xb4\x86\xfa\x8a\x26\xda\xdd\x9a\xaa\x30\x36\xa7\x3b\x30\xf6\x68\x89\x42\x09\xe4\xd4\x8f\xd2\x48\x48\x35\x0e\x2f\x25\x76\x49\xba\xd4\x6c\x07\xd2\xb3\xe2\x48\x98\x40\x93\x6e\xd1\xbb\xb0\x9e\xf4\x89\xea\xb0\x02\x08\x60\xa8\x03\x54\xeb\x80\x1a\xa8\x21\x28\xc6\x74\x0e\xfa\xf6\xbb\xff\x13\x00\x00\xff\xff\xdf\xbf\xcf\xa1\x7a\x86\x01\x00") +var _web_uiStaticBootstrapMinCss = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\x7d\x5d\x8f\xe3\x38\x92\xe0\xfb\xfc\x0a\x4d\x35\x0a\xdd\xd5\x65\xa9\xe5\xcf\xf4\x07\x3a\x31\x7b\xb3\x8b\xbb\x01\x76\xf6\xe5\xe6\x61\x81\x9e\x3a\x40\x96\x68\x5b\xd3\xb2\xa4\x95\xe4\xac\xac\xf6\xfa\xbf\x1f\xf8\x1d\x24\x83\x92\xec\xca\x6a\xdc\x01\x33\x89\xe9\xca\x64\x04\x83\xc1\x88\x20\x23\x48\x91\xc1\x9f\x7e\xfc\xe3\x1f\x82\x1f\x83\xff\x51\x55\x5d\xdb\x35\x49\x1d\xbc\xcc\xa3\x69\x34\x0d\x7e\x38\x75\x5d\xbd\xfd\xe9\xa7\x23\xe9\xf6\x12\x16\xa5\xd5\xf9\x03\xc5\xfe\x73\x55\x7f\x69\xf2\xe3\xa9\x0b\x66\xf1\x74\x1a\xce\xe2\xe9\x22\xf8\xdb\xe7\xbc\xeb\x48\x33\x09\xfe\x52\xa6\x11\x45\xfa\xf7\x3c\x25\x65\x4b\xb2\xe0\x52\x66\xa4\x09\xfe\xfa\x97\xbf\x71\xa2\x2d\xa5\x9a\x77\xa7\xcb\x9e\xd2\xfb\xa9\xfb\xbc\x6f\x7f\x52\x4d\xfc\xb4\x2f\xaa\xfd\x4f\xe7\xa4\xed\x48\xf3\xd3\xbf\xff\xe5\xcf\xff\xf6\x1f\xff\xfb\xdf\x68\x93\x3f\xfd\xe1\x0f\x3f\xfd\xf8\xc7\xa0\xac\x9a\x73\x52\xe4\xbf\x91\x28\x6d\x5b\xca\x6a\x1c\xc5\xc1\x7f\x33\xda\xa2\xb9\xe0\xbf\x83\x63\xde\x45\x79\xf5\x93\xc2\x0d\x7e\xfc\xe9\xd4\x9d\x8b\xeb\xa1\x2a\xbb\xf0\x90\x9c\xf3\xe2\xcb\xb6\x4d\xca\x36\x6c\x49\x93\x1f\x76\xe1\xb9\x0d\x3b\xf2\xda\x85\x6d\xfe\x1b\x09\x93\xec\x1f\x97\xb6\xdb\x4e\xe3\xf8\xfd\x2e\xfc\x4c\xf6\xbf\xe6\x1d\x0e\xbd\xed\xab\xec\xcb\xf5\x9c\x34\xc7\xbc\xdc\xc6\xb7\xa4\xe9\xf2\xb4\x20\x93\xa4\xcd\x33\x32\xc9\x48\x97\xe4\x45\x3b\x39\xe4\xc7\x34\xa9\xbb\xbc\x2a\xe9\xaf\x97\x86\x4c\x0e\x55\x45\xa5\x74\x22\x49\x46\xff\x39\x36\xd5\xa5\x9e\x9c\x93\xbc\x9c\x94\xc9\xcb\xa4\x25\x29\x43\x6e\x2f\xe7\x73\xd2\x7c\xb9\x66\x79\x5b\x17\xc9\x97\xed\xbe\xa8\xd2\x5f\x6f\xc9\x25\xcb\xab\x49\x9a\x94\x2f\x49\x3b\xa9\x9b\xea\xd8\x90\xb6\x9d\xbc\xe4\x19\xa9\x14\x66\x5e\x16\x79\x49\x42\x56\x61\xf7\x42\x28\x57\x49\x11\x26\x45\x7e\x2c\xb7\xfb\xa4\x25\x14\xca\x09\x6d\xcb\xaa\xfb\xe1\x97\xb4\x2a\xbb\xa6\x2a\xda\x4f\x1f\x14\x89\xb2\x2a\xc9\xee\x44\xa8\x7e\xb7\xf1\xed\x97\x53\x9e\x65\xa4\xfc\x34\xe9\xc8\xb9\x2e\x92\x8e\x18\x78\xb7\xe4\xba\x4f\xd2\x5f\x69\x37\xca\x6c\x1b\x07\xf1\x2d\xd9\x26\x69\x97\xbf\x90\x49\xb2\x3d\x55\x2f\xa4\xb9\x56\x97\x8e\x36\x4a\x65\xb4\xdf\x37\xbf\x74\x79\x57\x90\x4f\xd7\x7d\xd5\x64\xa4\x09\xf7\x55\xd7\x55\xe7\xed\xb4\x7e\x0d\xb2\xaa\xeb\x48\x76\xdb\x4f\xda\xae\xa9\xca\x23\x57\xd7\x67\xce\xc6\x53\x1c\xdf\xb2\x43\xc9\xcb\xda\xee\x4b\x41\xb6\x79\x97\x14\x79\x7a\x3b\x4d\x45\x61\xfe\x1b\xd9\xce\xc8\x79\x27\x34\x12\xad\x9e\xc8\x39\x88\x6f\xe7\xa4\xf9\x15\xb2\xf8\xdd\xe1\x10\xef\xd2\xaa\xa8\x9a\xed\x77\x71\x1c\xdf\xda\x73\x52\x14\x80\xc4\x3a\x7e\x7f\x6b\x2f\xfb\x49\x7b\xa9\x41\xe9\xd3\xf2\xfd\x8e\xc9\x55\x8a\x65\x57\x57\x6d\x4e\x55\xb5\x6d\x48\x91\xd0\xfe\x7a\x85\x4d\x29\x75\x55\xbd\x0d\xa3\x25\x39\x53\xda\x57\xd1\xe9\x30\x9a\xd1\x92\xfc\x7c\x14\xd2\xd8\xc6\xb7\xf6\xe5\xc8\xf4\xb2\x6d\xaa\xaa\xfb\x70\xa5\x02\x3c\x14\xd5\xe7\x2d\x57\xc2\x8d\x1b\x91\xb4\xba\x29\x39\x07\x8b\xb8\x7e\xbd\x9d\x9a\x6b\x78\xae\x7e\x0b\xf7\xd5\x2b\xe5\x37\x2f\x8f\x5b\xaa\x57\x52\x76\xb4\x68\xe7\x29\x56\x2a\xae\x1b\xa2\x5b\x4a\x2e\x5d\x75\x4b\xab\x8c\x4c\x7e\xdd\x67\x93\xba\x21\x93\x36\x39\xd7\xc6\xe0\x39\x57\x65\xd5\xd6\x49\x4a\x26\xea\xb7\x9d\x96\xd5\x94\x9c\x6f\xfb\x4b\xd7\x55\xe5\x24\x2f\xeb\x4b\x37\xa9\xea\x8e\x9b\x79\x4b\x0a\x92\x76\x13\x3a\x9c\x92\x86\x24\x57\xae\x86\xbc\x3c\x91\x26\xef\x18\x05\xf5\x87\x1a\x57\x9c\x92\x66\xef\x25\x6f\xf3\x7d\x41\x64\x0b\x9c\xe4\x95\x8d\xd0\xae\x49\xca\xf6\x50\x35\x67\x6e\x99\x02\x83\x0e\xfd\x80\x31\xf2\x4b\xf7\xa5\x26\x3f\xf3\xe2\x4f\x13\x50\xd4\x90\x96\x74\x46\x49\x7b\xd9\x9f\xf3\xee\xd3\x55\xce\x00\x49\x5d\x93\xa4\x49\xca\x94\x6c\x79\xfd\x5d\x7a\x69\xda\xaa\xd9\xd6\x55\x5e\x76\xa4\x11\x8d\xfd\x92\xe5\x6d\xb2\x2f\x48\xf6\x09\x36\xab\x0a\xaf\xa2\x52\x46\x0e\xc9\xa5\xe8\x44\xa5\xed\x96\xe9\xee\x50\xa5\x97\x36\xcc\xcb\x92\x34\x9c\x13\xb7\x5c\x99\xc9\xae\x4e\xb2\x8c\xaa\x33\xbe\x31\xd4\x2b\xb4\x4d\x3e\xef\xdd\x40\x6f\xd2\x13\x49\x7f\xdd\x57\xaf\x66\xa7\x93\x2c\xaf\xe8\x38\x54\xb6\xa1\x86\xe4\xab\x4d\x9f\xd7\x28\x2f\xe7\x3d\x69\x3e\x6d\xb7\x52\x2a\x8c\xa9\xb0\xad\xf3\x32\x84\x0a\xf7\x60\x57\x97\xce\xc4\xbe\x0a\x86\x99\xc5\x41\xe1\x93\xa4\x49\x4f\xa8\xf0\xa9\x9e\x0f\x39\x29\xb2\x5d\x9f\xbd\xcb\x8a\x77\x0d\x07\x84\x03\xcd\x3b\x2f\x08\x53\xca\x44\x81\x74\xd6\x57\x21\x23\x69\xd5\x24\x74\x9e\xc0\x7a\xc3\xcc\x94\x75\xa7\x25\x9d\x54\x2e\x9d\x0a\xdb\xaa\xc8\xb3\xa0\xcd\x8b\x17\xd2\xa8\xa1\x10\xcc\x6a\xad\x98\x68\xbe\x24\xe7\x20\x5a\xcd\xd8\x3f\x4f\x74\x1e\x29\xc8\x91\x94\x19\x66\x23\x6a\xc0\x99\x83\x5c\x8e\x4b\x67\xa6\xed\xa8\xb9\xca\x19\x3a\xad\x8a\x22\xa9\x5b\xb2\x95\xbf\xec\x04\x80\x8e\x7b\x41\x3f\x9b\x74\xa7\xab\x6e\xef\x4f\x67\x92\xe5\x49\x50\x37\x79\xd9\x5d\x7f\xe4\x83\xb3\x3d\x25\x59\xf5\x99\x75\xf9\x8f\xf9\xb9\xae\x9a\x2e\x29\x3b\x30\x11\x83\x42\x30\x5b\xb3\x21\x5d\x27\x0d\x29\x3b\x88\x40\x15\x88\xd1\xbb\x25\x93\x84\xcd\x10\x1d\xc9\x78\xb3\x5a\x01\x5b\x16\x86\x70\xf7\xf7\xcb\xa9\x21\x87\x4f\xdb\xe4\xd0\x91\xe6\x2a\x6c\x60\xfb\x2e\xf8\xe1\x5d\x90\x74\x5d\xf3\x03\x85\x7e\x08\xde\x7d\x78\x07\x3d\x96\x17\x9b\x81\x05\x3a\x23\xfc\x7f\x7e\x7e\xf7\x8f\xe4\x25\x69\xd3\x26\xaf\xbb\xed\x3b\x51\x73\xa2\x80\xdf\xbd\x73\x88\xbd\xa3\x73\xf0\x84\x39\xed\xff\xba\x54\x1d\x71\x8d\xe1\xbb\xcd\x66\xb3\xab\x93\x23\x09\xf7\x0d\x49\x7e\x0d\xf3\x92\x06\x1a\xdb\xe4\xa5\xca\xb3\x5b\x47\xc3\x09\xe5\x97\x99\xfa\x42\x1e\x61\x84\x4c\xc3\xb7\xae\x99\x50\x37\xe3\xab\x4f\x61\xe7\xe4\x35\xfc\x9c\x67\xdd\x89\x45\x37\x40\xa6\xf5\xe4\x34\x9b\x9c\xe6\xd7\xaa\xa9\x4f\x49\xd9\x6e\xe7\xbb\xcf\x79\x56\x7d\x6e\xb7\xf3\x1b\x07\x00\xaa\xac\x5b\x82\xa8\x98\x9a\x4d\xdf\x7b\x00\x84\xa3\x32\x79\xd9\x27\x8d\x19\x4f\x44\x8c\xfb\xa0\xcb\x26\xf2\xb7\x13\x20\x11\x0a\x83\xb1\x08\xed\xbb\xf2\x39\x4a\x93\x86\x74\x93\x28\x6b\xaa\xfa\x52\x3f\x83\x32\x69\xc9\x5d\x55\x87\x98\xc1\xdd\xa2\x22\xd9\x93\x02\x91\x39\x0d\x10\xa2\xfe\xd1\x00\xc9\x70\xc1\x73\x4c\x92\x05\xdd\x69\xe2\x14\x65\x48\x2b\x59\x96\x01\x2a\xb7\x1f\xaf\xc8\xfc\x05\xe6\x66\x7b\xe6\x03\x20\xb4\xf4\xb6\xdd\x93\x43\xd5\x90\x89\x30\xba\x37\xa6\xae\x43\x6b\xe6\xfd\x57\xb3\x68\x09\x22\xe7\xa4\x0e\x4f\xf9\xf1\x54\xd0\xb9\x45\x08\xbf\x39\xee\x93\x1f\xe2\x09\xfb\xf9\xc0\xa3\x68\x18\x5c\xbc\xfb\x5f\xa4\x78\x21\x34\x92\x0a\xfe\x83\x5c\xc8\xbb\x89\xfa\x7b\xf2\x2f\x4d\x9e\x14\x13\x10\xba\x83\xa0\x63\x51\xbf\x1a\x11\xda\x34\x5a\xcc\xd6\xcb\xa7\xe9\x62\x2e\x27\x99\xf9\x7c\xbe\x43\x2d\x89\xcf\xfc\x13\x23\xa2\xd0\x41\x0a\xe4\x0d\x86\x2a\xbc\x5d\x59\x02\x9b\x16\x65\x37\x19\xe0\x7c\xb7\x98\xad\xf7\x69\xb2\xb3\x27\x24\x1e\x3f\xf3\x28\x79\x92\x6c\x99\xa3\x97\x55\x66\xc9\x6a\xb1\x59\x39\x55\xc0\x1c\x26\xf0\x65\x74\xdd\x9d\xf2\x52\x84\xd0\x3b\x59\xb6\xac\x5f\x03\x3a\xd3\x07\x52\x1d\x3c\x96\x68\xf2\xf2\xc8\xbb\x2f\x31\xc3\xea\x70\x68\x49\xb7\x0d\x67\xf5\xab\x15\x63\xc6\x6c\x72\xb0\x62\xdb\x73\x9e\x65\x05\xb9\x45\xf9\xf9\x18\x36\xa4\xad\xab\xb2\xa5\x11\x7f\xd4\x9d\x2e\xe7\x7d\x99\xe4\xc5\x73\x7e\x3e\x82\x3f\x83\x84\x17\xa4\x49\x53\x5d\x5a\x52\xf0\xc8\xe1\x39\xca\x3b\x72\xee\x81\xb0\x5a\xe6\x1a\x68\x67\x4e\x53\x3b\x18\x42\x70\x76\xa8\x72\x89\x1c\x66\x21\x8d\x72\x2e\xed\x76\x55\xbf\x72\xb0\x62\x49\xb9\xab\x1e\xc3\x41\xad\x65\x87\x0e\xe0\x9d\xd9\x1e\x25\xaa\xc6\x00\xf5\x61\x7c\xad\x90\x14\x45\x10\xcd\xda\x80\x24\x2d\x09\xf3\x92\x86\x44\xbb\x01\x30\xba\xae\x1b\x12\x42\x9a\x37\xa9\x9e\xb3\x04\x4f\xcb\xf8\x3d\x5d\x28\x70\xbd\xd2\xc9\x70\x3b\x8b\xeb\x57\x11\x5e\xc8\x85\x18\x2b\x52\x21\x84\x9e\x38\x61\x77\x09\x21\xb7\xa8\x6d\xc2\xaa\x2c\xbe\x5c\xd5\x3a\x28\xd9\xb7\x55\x71\xe9\xc8\x4e\x30\x56\xab\x05\xc6\x54\xb5\xb2\x0d\xa7\x20\x86\x89\x77\xd6\xf2\x66\x97\x16\x79\xbd\x6d\x48\xda\xa9\xf9\x41\xf1\x72\x3b\x4d\xb9\x1f\x9a\x9c\x16\x93\xd3\x72\x72\x5a\x4d\xa2\xd3\x74\x12\x9d\x66\x93\xe8\x34\x9f\x44\xa7\xc5\x24\x3a\x2d\x27\xd1\x69\xe5\x1f\xb1\x22\xc4\x59\xc6\xb1\xa5\xf1\xe9\xce\x58\x8a\xdc\x4e\xd3\x80\xad\x0b\x27\xa7\x99\xfc\x65\x2e\x7f\x59\xc8\x5f\x96\xf2\x97\x95\xf8\x25\x52\xd5\x22\x55\x2f\x52\x15\x23\x55\x33\x52\x55\x23\x55\xf7\x34\x0d\x22\xd5\x64\xa4\xda\x8c\x54\xa3\x91\x6a\x35\x52\xcd\x46\xba\xdd\x48\x37\x1c\xe9\x96\x23\xdd\x74\xa4\xdb\x8e\x74\xe3\x11\x58\xfe\x0a\xe9\x2c\x6c\xe9\xc8\xf9\x73\xb3\xd9\xdc\x98\xc4\x99\x22\x22\xae\x8c\xe8\x34\x1f\xb0\xa8\x29\x5b\xa0\x4e\x1d\x19\x01\x11\x39\x42\xd6\x52\x83\x5d\x43\x44\x14\x61\xd2\xd2\x3d\x87\x7e\x69\xf9\xfe\xc6\x6c\x84\x59\x4f\x24\x2d\x68\x05\xb9\x9f\xfa\xb8\x5f\x38\x3a\x04\x2a\x44\xec\x60\x15\xd8\x7a\x8b\x30\x15\x46\xb8\x36\x57\x2e\xf7\x4f\x94\x7b\x26\x7b\x50\x38\xa7\xb3\x1a\x57\x05\x2c\x65\x1c\x73\xcd\x80\x9d\x91\x05\xeb\x07\xe5\x03\x94\x4e\xd7\xb4\x94\x89\xe3\x6a\xfa\xd2\x9b\x90\x0e\x28\xa5\xbe\xa1\x56\x6e\x21\x88\x03\x26\x9b\xa8\xa0\xa1\x27\x32\x89\x80\x9a\x2b\xf9\xa7\x30\xb1\x99\x33\x00\x17\x72\xcd\xf0\xc3\x39\x2f\xc5\xd4\xf6\xb4\x5a\xd7\xaf\x1f\xae\xbc\x01\xd0\x93\x69\xfd\x7a\xbb\x09\x59\x39\xbb\x37\xcb\xf7\xb7\x34\xef\x08\xdc\x28\x12\xeb\xe1\x88\xf9\xd2\x82\x1c\xc4\x6e\x01\xf7\x64\xf4\x6f\x01\x62\x1b\x9a\x10\xc6\x0a\x04\x30\x25\x74\x99\x0f\xa1\xbc\x44\x80\xff\x71\x69\xbb\xfc\xf0\x05\xc2\x45\x91\x40\x38\x5f\xe8\x92\x04\x8c\x24\x5e\x5c\x37\x39\xdb\xe7\x33\x02\x85\x5b\x62\x00\xc5\x36\x9a\x8c\x62\xe2\xa7\x69\x22\xab\xb7\x97\x34\x25\xad\x0a\x1a\xe6\xe9\xd3\x6a\x9e\xc9\xea\x02\x68\x56\x9f\xed\x97\x8b\x59\x2a\xaa\xe7\xe5\xa1\x52\x75\xa7\x4f\xf1\xfa\x20\xeb\x52\x88\x55\x71\xb1\x9c\xad\x64\xbb\x9f\x93\xa6\xcc\xcb\xa3\x84\xad\x93\x55\x36\xdf\xcb\xba\x02\x68\x56\x5f\xad\x96\x53\xd5\x6e\x96\x94\x47\x0d\x4a\x36\x8b\xc5\x62\x26\x6b\x73\x98\x59\x79\xbd\x98\x2f\xe7\x8b\x5b\xb4\x3f\xda\x02\x63\xfe\xd8\xf1\xd2\x4a\x8c\xba\x82\x20\xe8\xe2\x4a\x79\xee\x8f\x4a\x9a\x2e\x52\x76\x38\xc4\xd9\x9a\x13\x34\xc5\xea\xe2\xa6\x53\x32\xdb\xcf\x19\x41\x26\x5f\x84\xda\x86\x64\x87\x27\x4e\x0d\x08\xda\x45\x4c\x0e\xd9\x86\xfa\xda\xfd\x51\x49\x1c\x09\x49\xd2\xc3\x9a\xcc\x39\x35\x53\xf4\x08\xee\x13\x49\xf7\x4b\x46\x50\xe8\x00\xc1\x99\x65\x24\x23\x9c\x9e\xa1\x0c\x17\x95\x2c\xf6\x9b\xfd\xe6\x16\xb1\x05\x20\x5f\x6f\xca\xb0\x4a\x4e\x05\x1b\xed\xfb\x17\x71\xfd\x1a\xc4\x01\x88\x30\xe0\xee\x2f\x88\x2d\x2e\xc5\xa4\x2a\xe0\xbc\x1c\x63\x93\xf2\xa5\x08\x18\x22\xfd\xef\xa5\x08\x2a\xf6\xbb\xae\x27\x50\xe3\x5b\x54\xe4\x6d\x17\x5e\x4a\x36\x19\x64\x8a\x3f\x3a\xf0\xb7\x74\x1a\x6a\xf5\x3c\x41\x97\x9f\xac\x80\x07\x5b\x03\xb8\x92\x29\x06\x0d\x97\x6c\x2e\xd4\x95\x9f\x8b\x1c\xdf\x93\x37\x88\x2e\x75\x38\xc4\xe7\x1f\x5a\x72\xcb\x7a\x7b\x4f\x05\x78\xcb\xba\x49\x96\x5d\xf1\xb8\xf5\x96\x75\xee\xe6\xb9\x9a\xa3\x79\x67\x7a\xe6\xdb\xac\x08\x4f\x55\x93\xff\x56\x95\x5d\x52\x04\x94\x56\x51\x25\x1d\x9b\x29\x65\x6c\xb7\xa2\x3a\x4c\x0b\x92\x34\xbc\xd8\x9e\x34\x9d\xc0\x8e\x21\xa8\x42\x52\x14\x79\xdd\xe6\xed\xee\xf3\x29\xef\x08\xdb\x48\xa2\x22\xfd\xdc\x24\xf5\xcd\x6e\xde\xe4\x7b\xba\xa6\x9d\x87\xdb\x32\x13\xf6\x7b\x96\x74\x49\x58\x35\xf9\x31\x2f\x93\x22\x14\x9f\x18\xc4\x6e\xeb\x89\x14\x35\x62\x70\x7c\xad\x14\xf0\xc9\x38\x2f\xf3\x2e\x4f\x8a\xbc\x3d\x03\x67\xb2\x89\xdf\xef\xac\x8d\xe5\x4b\x5d\x93\x26\x4d\x5a\x72\x03\x7b\x35\x32\x9e\xa5\x66\x19\x80\x08\x88\x39\x49\xdb\x17\x3e\x45\x4b\x6d\xff\xd2\x06\xa0\xf5\x6b\xc2\x41\xbd\x2d\x92\xb6\x0b\xd3\x53\x5e\x64\x60\x73\x28\xb8\x14\x1e\x40\x05\x01\xce\x48\x00\x88\xe2\x2b\x14\x28\xe1\x0e\x15\x14\x08\xdf\x6a\xae\xbe\x8c\xef\x24\x03\xeb\x6d\x2a\x58\xa7\x49\xb9\x17\x61\xb7\x8c\x94\x47\x10\xa0\xb6\xca\xbe\xff\x3b\xfb\xda\xf8\xf7\x38\xfe\x97\xf8\xfb\x5b\xa4\xf1\xc3\x86\xbc\x90\xa6\x85\x24\xa2\xfa\x52\x14\xc2\xaf\x9b\xa3\x6c\x0a\x07\x9e\x18\xde\x72\xb5\x24\x87\x21\x50\x8a\xa1\xaf\xd8\x31\x77\x8c\x0d\x6f\x7f\x01\x53\x16\x0e\x46\xc5\x23\x1c\x48\xc4\x40\xc1\x68\x44\x23\x88\x78\x84\x8d\x4a\x58\xb2\xcd\xb7\x35\x7b\x7b\xc6\x51\xfc\x1d\xeb\x23\x01\x31\x7a\xba\xd5\x47\x02\xa2\x00\x0b\xa2\xb6\x13\x30\x3b\xfa\x1e\x58\xa8\x2b\x20\x77\x97\x36\xc9\xb2\x86\x86\x08\xde\x78\x17\x44\x9c\x9e\xe1\x31\xf0\x6d\xed\xaf\xa4\x2c\xaa\xc9\x5f\xab\x32\x49\xab\xc9\x9f\xab\xb2\xad\x8a\xa4\x9d\xbc\xfb\x73\x75\x69\x72\xd2\x04\xff\x41\x3e\xbf\xd3\x5f\xdd\x18\x2d\x35\xff\xcc\xea\xd7\x60\x61\xcc\x36\x74\x06\x93\x61\xc9\xd3\x6c\xb9\x20\xd8\x96\xc6\xe6\x30\x3b\x2c\x90\xa9\xd8\xdd\xd2\xb8\xfd\xba\xcf\xc6\xb5\x86\xc7\x65\x6c\x07\xce\x20\x3a\xaf\x5f\xe1\x6e\x7e\x5e\xb6\xa4\x0b\xe2\x20\x9c\xb2\x50\x01\xec\x14\x46\xb3\xe5\x07\xf6\x9d\xd2\x9c\x8f\x24\x33\x1b\x36\xab\x5a\x6b\x13\x38\xed\xce\xfd\xbb\x3c\x9f\xab\x26\xe3\xdb\xd7\x5b\xb1\x89\x5d\x14\xbc\x90\x4a\x41\x94\xd1\xbf\x07\x36\x12\x97\xf4\x07\xd9\x1d\x4a\xd3\x14\x11\x65\xdd\x90\xc0\xd0\x5e\x8c\xec\x2a\x9a\x1f\x48\xa1\x8a\xea\x86\x84\x5c\x49\x36\x23\xe0\x93\x89\xd5\x6c\x7c\x8b\x68\xb5\x36\x6d\xaa\xa2\x60\x9b\xda\xe7\xe4\x55\x0a\x64\x4e\xc3\x33\xe5\xb7\xc3\x2f\x5b\x8e\x76\x8b\xa8\xf5\x27\x79\x49\xd4\xce\x51\xa3\x36\x9b\x8c\x08\x88\x15\x18\x53\xea\xd4\x8d\x6e\x68\x51\x4f\xe8\xa1\xdb\x12\xe5\x4b\xe6\xee\xdd\x0a\x9b\xcd\x0c\xad\xb0\x79\xf2\x54\x98\xce\xe2\x18\xad\x31\x9d\xf2\x2a\x1a\x10\x1e\x8a\x4b\x9e\xbd\x59\x6f\xa3\xa6\xfa\x6c\xc4\x30\xe1\x54\xdb\xaa\x40\x0c\x39\x66\x5a\x15\xe1\x6b\x1b\x4e\x27\xec\xb7\xf6\x2c\x7f\x3b\x67\xf2\xb7\xe2\x28\x7f\x7b\x6d\xc3\x99\xc2\x9b\x29\xbc\x99\xc2\x9b\x29\xbc\xb9\xc2\x9b\x2b\xbc\xb9\xc2\x9b\x2b\xbc\x85\xc2\x5b\x28\xbc\x85\xc2\x5b\x28\xbc\xa5\xc2\x5b\x2a\xbc\xa5\xc2\x5b\x2a\xbc\x95\xc2\x5b\x29\xbc\x95\xc2\x5b\x29\xbc\x27\x85\xf7\xa4\xf0\x9e\x14\xde\x93\xc2\x5b\x2b\xbc\xb5\xc2\x5b\x2b\xbc\xb5\xc2\xdb\x28\xbc\x8d\xc2\xdb\x28\xbc\x8d\xc2\x9b\xc6\x5a\xd0\xb1\x96\x74\xac\x45\x1d\x6b\x5c\xa0\x14\xa0\x15\xa0\x16\xad\x97\xa9\x56\xcc\x54\x6b\x66\xaa\x55\x33\x9d\x5d\xdd\xe3\x23\xd4\x56\xc1\x86\xe9\x38\xdb\x32\x2d\x46\xdb\x84\xd6\xba\xd6\xab\xd6\x9c\xd6\x8d\x96\xbe\x96\xaf\x96\x20\x90\x11\x10\x01\xeb\x21\x58\x14\xdc\x40\xa9\xde\x94\xd6\xa5\x53\x39\x36\xa7\xd1\x8a\xff\xef\x09\x40\x63\x01\x5d\xcf\xa3\xb9\xf8\x9f\x86\x6e\xd4\x3c\xa0\xcb\xd6\xa2\x6c\xb5\x42\xc8\x3d\x09\xe0\x72\x8d\x50\x5b\x49\x20\xe0\x6e\x29\xca\x16\x18\x73\x0b\x01\x9c\x63\xbc\xcd\x05\x70\x06\x78\x53\x02\xc0\x78\x93\x72\xc0\x58\x63\x31\xcb\x74\x76\x15\xba\x85\xf2\xe3\xa0\xa9\x00\xa1\x42\xe4\x28\xb1\x40\x41\x25\xc9\x50\x36\x02\x03\x8a\x93\x01\xd6\x02\x80\xca\x94\x61\x3c\x09\x0c\x54\xb0\x0c\x63\x25\x31\x6c\xde\x97\x02\x80\x8a\x98\x61\x2c\x04\x06\x2a\x67\x86\x31\x17\x18\x33\x9b\x73\x25\x32\x2f\xe7\x52\x72\x5e\xc6\xa5\xdc\x62\x50\xdc\x9e\xa8\x36\xf8\xd8\x33\x95\x41\x21\x53\x0e\xf1\xe8\x82\x62\xc4\x1c\xc3\xa3\x8a\xf6\x14\x6e\x38\x82\xa9\x89\xf6\x14\xae\x79\xb9\x47\x11\xed\x29\x7c\xe2\x08\x1e\x3d\xb4\xa7\x70\x25\x10\x6c\xae\x97\xbc\xdc\xa3\x85\xf6\x14\x2e\x38\x82\x47\x09\xed\x29\x9c\x73\x84\x99\xcd\xb3\x14\x94\x97\x67\x21\x2f\x2f\xcb\x42\x5a\x5a\x01\xfc\x73\x24\x55\x81\xb1\xf8\x87\x9a\x90\x28\x53\x03\x05\x55\x89\x44\x8d\x0d\x54\x54\x37\x02\x75\x63\x60\x42\x25\x09\x84\xb5\x81\x80\x6a\x4b\x60\x3e\x19\x98\xa8\xda\x04\xe6\xca\xc4\x74\xfb\xba\x34\x10\x50\x45\x0a\xcc\x85\x81\x89\x6a\x54\x60\xce\x0d\xcc\x99\xdb\x53\x4b\x05\x3d\x3d\x35\x35\xd1\xd3\xd1\x78\xf4\x56\x94\x19\x06\xe9\x40\x47\x87\x32\x3a\x58\xd1\xe1\x88\x0e\x38\x74\x48\xa1\x83\x06\x1d\x16\x00\xbf\x0f\xdc\x3a\xf3\xda\x8e\x7b\xe3\xa5\xb6\x7b\x63\xd5\xbc\xee\x8d\xd1\xf7\xba\x37\xca\x87\xed\xde\x28\x97\x5e\xf7\x46\x3b\xe3\x75\x6f\xb4\xcf\xb6\x7b\xa3\x12\xf1\xba\x37\x2a\x38\xaf\x7b\xa3\xf2\xb5\xdd\x1b\x95\xbe\xd7\xbd\xd1\xae\xfa\xdc\x5b\x7b\xf6\xba\x37\x05\xf2\xbb\x37\x85\xe2\x77\x6f\x12\xc5\x71\x6f\x12\xe0\x77\x6f\x12\xc3\xef\xde\x24\x86\xe3\xde\x24\xc0\xef\xde\x24\x86\xdf\xbd\x49\x0c\xc7\xbd\x49\x80\xdf\xbd\x29\xb9\xf8\xdc\x9b\x44\xb0\xdc\x1b\x2b\x46\xdd\x9b\x82\x78\xdd\x9b\xc2\xf0\xba\x37\x89\x61\xbb\x37\x59\xee\x75\x6f\x12\xc1\xeb\xde\x24\x82\xed\xde\x64\xb9\xd7\xbd\x49\x04\xaf\x7b\x93\x08\xb6\x7b\x93\xe5\x5e\xf7\xa6\xc4\xe1\x71\x6f\x12\x6e\xba\xb7\xf6\x3c\xe8\xde\x00\xca\x90\x7b\x03\xa8\x43\xee\x4d\xa3\x7a\xdc\x9b\x46\x18\x72\x6f\x1a\x73\xc8\xbd\x69\x4c\x8f\x7b\xd3\x08\x43\xee\x4d\x63\x0e\xb9\x37\x8d\xe9\x71\x6f\x1a\x61\xc8\xbd\x01\xf9\xf6\xbb\x37\x8d\x68\xbb\xb7\xde\xed\x0b\xb8\xb8\xd7\xcb\x77\xbd\x40\xd7\x4b\x70\xbd\xc8\xd6\xcb\x68\xbd\x50\xd6\x4b\x61\xbd\xd8\x05\x8b\x59\xb0\x56\x65\x4b\x51\xc7\xbf\xf1\x52\xdb\xbf\xb1\x6a\x5e\xff\xc6\xe8\x7b\xfd\x1b\xe5\xc3\xf6\x6f\x94\x4b\xaf\x7f\xa3\x9d\xf1\xfa\x37\xda\x67\xdb\xbf\x51\x89\x78\xfd\x1b\x15\x9c\xd7\xbf\x51\xf9\xda\xfe\x8d\x4a\xdf\xeb\xdf\x68\x57\x7d\xfe\xed\x9c\x79\xfd\x9b\x02\xf9\xfd\x9b\x42\xf1\xfb\x37\x89\xe2\xf8\x37\x09\xf0\xfb\x37\x89\xe1\xf7\x6f\x12\xc3\xf1\x6f\x12\xe0\xf7\x6f\x12\xc3\xef\xdf\x24\x86\xe3\xdf\x24\xc0\xef\xdf\x94\x5c\x7c\xfe\x4d\x22\x58\xfe\x8d\x15\xa3\xfe\x4d\x41\xbc\xfe\x4d\x61\x78\xfd\x9b\xc4\xb0\xfd\x9b\x2c\xf7\xfa\x37\x89\xe0\xf5\x6f\x12\xc1\xf6\x6f\xb2\xdc\xeb\xdf\x24\x82\xd7\xbf\x49\x04\xdb\xbf\xc9\x72\xaf\x7f\x53\xe2\xf0\xf8\x37\x09\x37\xfd\xdb\x39\x1b\xf4\x6f\x00\x65\xc8\xbf\x01\xd4\x21\xff\xa6\x51\x3d\xfe\x4d\x23\x0c\xf9\x37\x8d\x39\xe4\xdf\x34\xa6\xc7\xbf\x69\x84\x21\xff\xa6\x31\x87\xfc\x9b\xc6\xf4\xf8\x37\x8d\x30\xe4\xdf\x80\x7c\xfb\xfd\x9b\x46\x1c\xe1\xdf\xc0\x6e\x3b\xdc\xb3\xd6\xbb\xd2\x7a\xdf\x59\xef\x2c\xeb\xbd\x63\xbd\x3b\xac\xf7\x7f\xf5\x0e\xaf\xde\xc3\x05\x5b\xb4\x60\x07\x96\x6f\xb0\xda\x0e\x8e\x97\xda\x0e\x8e\x55\xf3\x3a\x38\x46\xdf\xeb\xe0\x28\x1f\xb6\x83\xa3\x5c\x7a\x1d\x1c\xed\x8c\xd7\xc1\xd1\x3e\xdb\x0e\x8e\x4a\xc4\xeb\xe0\xa8\xe0\xbc\x0e\x8e\xca\xd7\x76\x70\x54\xfa\x5e\x07\x47\xbb\xea\x73\x70\xc5\xd1\xeb\xe0\x14\xc8\xef\xe0\x14\x8a\xdf\xc1\x49\x14\xc7\xc1\x49\x80\xdf\xc1\x49\x0c\xbf\x83\x93\x18\x8e\x83\x93\x00\xbf\x83\x93\x18\x7e\x07\x27\x31\x1c\x07\x27\x01\x7e\x07\xa7\xe4\xe2\x73\x70\x12\xc1\x72\x70\xac\x18\x75\x70\x0a\xe2\x75\x70\x0a\xc3\xeb\xe0\x24\x86\xed\xe0\x64\xb9\xd7\xc1\x49\x04\xaf\x83\x93\x08\xb6\x83\x93\xe5\x5e\x07\x27\x11\xbc\x0e\x4e\x22\xd8\x0e\x4e\x96\x7b\x1d\x9c\x12\x87\xc7\xc1\x49\xb8\xe9\xe0\x8a\xe3\xa0\x83\x03\x28\x43\x0e\x0e\xa0\x0e\x39\x38\x8d\xea\x71\x70\x1a\x61\xc8\xc1\x69\xcc\x21\x07\xa7\x31\x3d\x0e\x4e\x23\x0c\x39\x38\x8d\x39\xe4\xe0\x34\xa6\xc7\xc1\x69\x84\x21\x07\x07\xe4\xdb\xef\xe0\x34\xa2\xe3\xe0\x3a\xf5\xb1\x1c\x5c\xba\xe8\xfb\xf0\x7e\xeb\x4e\xc8\x21\x63\x46\x05\x50\x40\x8e\xf5\x71\xa4\x67\x76\x9f\xef\xb9\x6b\x9e\xd5\x15\xb2\xe7\x6e\x5f\x65\x5f\xac\xa2\x43\x55\x75\x56\x91\xaa\x98\xb9\x15\x33\xb7\xa2\x3e\xce\xb1\xf6\x1f\x90\xb0\x2e\xff\x74\x55\xed\xb9\x18\x92\x65\x19\xd2\x03\xfb\xf2\x10\xef\xaf\x75\x22\x6f\x86\x52\x11\xb9\x13\x3e\x4a\x6a\xdb\x43\xde\xc8\xe3\x6d\xa0\xd7\x69\x55\xb0\x6b\x8e\x43\x78\x0c\x6c\xc2\xbc\x24\x7b\x5b\xce\x46\xb6\x9c\x8d\x6f\x39\x03\xb7\x14\xb7\xf1\x0d\x2a\xef\x23\xfb\x2f\x84\xa3\xd2\x0a\xe4\x4d\x45\xf4\x8e\x9b\xb8\x89\x98\x56\x65\xc6\xb2\x72\x20\x36\x06\x81\x8e\xb5\x41\xa0\x63\x77\x28\xd9\xac\x8f\x2c\x06\x44\xac\x72\xa9\xc6\x84\xba\x43\x89\x5f\xa0\xb4\xb1\xb0\xee\x69\x98\xdb\x3b\x0d\x73\x3b\x87\xd0\xcc\x7a\x68\x22\x30\xd0\xb3\x37\xe0\x5e\x73\x61\x66\xd1\x10\xb3\xd3\x4c\xcb\xac\xed\x9a\xbc\x06\xcc\x6d\xcb\xee\xc4\x0d\xee\x87\x2a\xcb\x3e\x00\x5e\x07\x31\xd1\x5b\xb8\x1b\xfa\x23\x1b\x63\xa7\xc4\x35\x01\xf1\xa7\x6a\x01\x07\xa3\x64\xd9\x49\x2a\x3e\xeb\x06\x69\x55\xfc\x92\x16\x49\xdb\xfe\xf8\x33\x9d\xa5\x3f\xe9\x93\x13\x6d\x97\x74\x79\xba\xe3\x81\x3e\x3b\x90\x6d\x5e\x80\x4e\xab\xe2\x72\x2e\x6f\xf2\x3e\xb1\x41\x65\x22\xef\x16\x3f\x4a\x9b\x14\x85\x3b\xd5\x65\x91\x48\x7d\xe2\x4e\xbd\x36\x44\x5b\x84\x0d\xd1\x9a\xf7\x52\x73\x20\xda\x66\x3d\xd4\x44\x31\xe2\x16\x10\x88\xa0\x86\x40\x6c\x6a\x8e\x77\x42\x20\x36\xb5\x1e\x8d\xa3\x96\xa2\x45\x24\x6e\xca\x7a\xb0\x4e\x23\xb0\x0c\x14\xaf\x6d\x5a\x58\x18\xc3\x64\x4d\x7f\x30\x0b\x10\xd7\x43\x30\x13\xb0\x41\xc0\x06\x6c\x10\x30\x02\x2f\x41\x17\x04\xcc\xc0\x43\x50\x96\x63\x86\x80\x80\xa4\xee\x10\x90\x43\xd0\xb5\x05\x04\xe4\x10\xc4\x84\x2b\x6e\xdb\x78\xad\xc1\xb8\x81\xe3\x37\x87\x11\x68\x26\x8e\xdf\x20\x2c\x34\x94\xe9\x98\x6c\xd2\x15\x66\x11\x79\x79\xa8\x30\x73\x30\xca\x81\x2d\x18\xe5\xc0\x10\x70\x3a\x27\x0f\x9d\x13\x4a\x87\x15\x62\xca\xb7\xcb\xa5\xa2\xec\x72\x93\x8e\xab\x73\xbb\xdc\xa4\x83\x0a\x8e\xdf\x86\xf2\x6a\x5b\xdf\x90\xf2\xab\x7a\x08\x07\x20\xf8\x95\x0c\x71\x30\x46\xd3\x05\x99\x1f\xe6\x98\x86\xc5\xb5\x2b\x4c\xc9\x36\x08\xe8\xd9\x06\x01\x55\x7b\x09\xba\x20\xa0\x70\x0f\x41\x59\x8e\xa9\x1d\x01\x49\x8d\x21\x20\x87\xa0\xab\x7f\x04\xe4\x10\x44\x3d\x00\xbf\xc5\xe6\xb5\x02\xe3\x66\x9b\xdf\x10\x46\xa0\x99\x38\x7e\x73\xb0\xd0\x50\xa6\x93\xc3\x2c\x4d\x31\x8b\xe0\x17\xe7\x30\x83\xb0\x20\xc0\x1e\x2c\x08\x30\x07\x1f\x35\x07\x02\x8c\x01\xa7\x26\x8a\x31\x53\x70\x21\x52\x71\x2e\xc4\xa6\xe6\xda\x81\x0b\xb1\xa9\xa1\x02\xe5\x77\x0f\xbd\x56\x00\xef\x23\xfa\x8d\x60\x18\xcb\x40\xf1\x9b\x80\x89\x85\xc6\x01\xfb\x34\x4d\x53\xbd\x03\xae\xb6\x08\x9e\x56\x4f\x6c\x03\x9c\xd3\xd5\x39\x32\xfc\xeb\x7f\x76\xc6\x17\x9c\xbf\x17\x37\xe7\x54\xc9\xab\x38\x91\xcf\xf2\x15\xaa\x52\x7e\xe1\x84\x16\x25\x97\xae\x3a\xe5\xec\x84\x30\x47\xdc\x27\x8d\x27\x57\x85\xca\xc8\xa5\xa8\xb0\x0a\xd4\xda\xbb\xea\x92\x9e\x6e\x0e\xdb\xcf\x91\xdc\x03\xb1\x2e\x57\x7a\x10\xb1\x05\x0c\x82\xe4\xae\xc3\x10\x24\x77\x41\xd6\xd7\x5c\x36\xa6\xb9\x3e\x24\xb0\x56\xc3\xae\x27\x7a\xea\x39\xcb\x53\xbf\x6c\xd0\x55\x1e\xdc\x0c\xf0\x32\x87\xae\x60\xef\xad\xa9\xc5\x79\x6f\x4d\x2d\xe3\x87\xb9\xbd\xbb\xa6\xd6\x06\xac\x79\x35\xee\xe3\xdd\x29\x69\x70\x75\xf2\x3e\x41\xdf\x57\x11\xc8\xf9\xbe\x8a\x40\xcc\x0f\xb2\x7a\x6f\x45\x20\x64\x70\x7d\xd4\xb8\x0f\x39\x4a\xc8\x72\x6d\xaf\x89\xf4\x0d\x5a\x97\x81\xfb\x2b\x62\x2d\xde\xd3\x65\xb3\xa2\x95\x94\x34\xbe\xe9\xe4\x7c\xfa\x96\x96\xbc\x64\xa6\xb3\xe4\xe8\xef\x9e\xb1\x4c\xc2\x67\xde\x52\x03\x73\xbe\x4d\xc7\x93\x32\x63\x36\xb5\xb6\x63\xcd\x1b\x61\xe0\x26\x9d\xbe\xb8\x8a\x5c\xa6\x5f\xd2\x9f\x1b\xcf\x6e\xe6\x49\x24\x04\x99\x58\x5a\x79\x3a\x9e\xe2\xb8\x2f\x2f\xe3\x1b\x25\x10\x73\x72\x52\x4e\xb0\xd4\x95\x32\xf1\xc8\x82\xdd\x0c\x54\xe2\x93\x3b\xd0\x7f\xdf\xec\xfa\x73\x60\x1e\xf2\x82\x7c\xb2\xf2\xe9\x1a\x2d\x97\x47\x1b\x0e\xf4\x26\x92\xd9\xfd\x72\xbe\x14\x5d\x5e\x17\xe4\x93\x48\x13\xf6\x0b\xd5\xd6\x27\x5f\x22\x4b\xd6\x26\xcf\xd3\xe5\x66\xde\x74\xcb\x55\x5f\xbf\x59\x6a\xaf\xea\xd2\xd5\x97\x0e\xbf\x43\xc9\x44\xf9\x64\xde\x9a\x1c\x4e\xaa\xb6\x5c\x2e\x6f\xd1\xa1\x6a\xce\xa1\x48\x24\xec\x37\x7d\x75\xd1\x10\xa4\x80\x5a\xd5\xaf\xc1\x74\xf6\x40\xa3\xbe\xdc\x5c\xba\x34\x3f\x27\x47\x91\xa8\x61\xe4\x9d\x4c\x33\x6f\xa8\x79\x23\x95\xd6\xa5\xff\x87\x57\x52\xe3\xa7\xe5\x07\xec\xf6\xaa\x17\x17\xc9\x08\xa6\xd3\x0a\x56\x0d\xcc\xfb\x15\x44\xd3\x65\x3b\xd1\xc4\x1d\xd8\xee\x2d\x88\x98\xaa\x13\x66\x07\xa9\x6d\xbf\x5b\xad\x92\x03\xd9\x28\xbb\x8b\x1f\x11\xd2\x24\x0e\xe2\x60\x2d\x01\xd3\x78\x36\x99\x3e\x2d\x27\xb3\xf9\x7c\x12\xad\xee\x92\x60\x2f\x21\xab\x33\x3c\x7b\x6e\x5d\x24\x29\x39\x55\x45\xa6\xb3\xc9\x6c\x36\x9b\x5d\x55\x27\x69\xde\x7d\xd9\x4e\xad\x4a\x34\x90\x66\x23\xd2\x53\xd1\x69\x43\x65\xc2\x1d\x5b\x07\xa4\x08\x36\xcb\x1b\x92\x64\x55\x59\x7c\xf9\x34\x91\x4e\x47\xa3\x06\xe6\x10\x13\x89\x2d\xca\xaa\x0b\x93\xa2\xa8\x3e\x93\x0c\x19\x0e\x84\x10\xd0\x4d\x99\xce\xd0\x24\x74\x7f\x02\x5e\x96\x24\x05\xa0\x66\x49\x47\x3e\x19\x79\x48\xe8\xf8\x16\x5d\xe6\xd9\x65\xdd\x65\xce\x2d\x62\x53\xe0\x24\x92\x33\x9e\x9d\xe3\x4f\x5f\x85\x84\x09\xc5\x7a\x52\x74\x99\xd7\x25\xf9\xa7\x54\xd6\x46\xc0\x9c\x9f\x6e\x29\xc0\x9c\xe1\xce\xce\x7f\x66\x25\x77\x16\xa4\x5c\x47\xc5\x01\x22\xe3\x0b\x06\x57\xcd\xa2\xd9\x98\x15\x18\xa1\xa0\x1d\x1f\x48\xbf\x62\x5c\x23\x06\xbd\xfc\x68\x0b\xf4\xa3\x16\x2d\x10\x5e\xa8\x65\x2f\x5a\x74\x58\x18\x91\xb3\x06\xc9\xf1\x16\xdb\xdf\x88\x79\x82\xc8\x71\x72\x15\x2d\x7f\xec\x67\xec\xa3\xc3\x29\x96\x22\x47\x9c\xc3\xa8\x91\xa8\x02\x0c\x3c\x4c\xcc\x70\x5c\xb2\x0a\x4e\x81\x68\x17\x96\xcb\xda\x58\x99\x8b\x8e\x8c\x6b\xd7\x64\xfa\x91\xb4\xed\x60\x93\x04\x37\x02\x2f\x44\x8a\x16\x43\x90\x84\x7b\x81\x52\xf2\xee\xfc\x73\x8b\xf8\x0c\xd8\x9e\xe5\x9c\x32\x07\xa3\x92\x45\x2b\x76\x46\x86\x99\xe3\xe6\x97\x6e\x72\x08\x11\x77\xe1\xd4\x8d\x59\x87\xea\x5c\x4d\x72\x12\x7d\x62\x87\x6d\x0e\x21\x91\x33\x93\x95\x16\x47\x59\xba\x58\x01\xe6\x59\x5a\x1f\x9d\xc3\x4e\x25\xce\xb3\xb8\x77\x72\x5b\xac\x6c\xf6\x2d\xfa\xb0\x3a\x2d\xb0\xd9\x2f\x8e\x3e\xf6\x35\x21\xce\xfe\x29\x69\xc3\x03\x21\x19\x75\x02\xee\xcd\x72\x13\x6e\xb9\x12\xf3\x52\xf9\x62\x16\xb1\x29\xc2\x5f\x01\x69\x47\x25\xfe\x64\x27\x13\xe8\x1a\x42\x2c\x19\x77\x58\x28\xc8\xc2\x3f\x18\x0a\xda\xbe\x63\x87\xe4\xd8\xa3\xfc\x88\x6f\x30\x41\x74\x22\x45\xcd\xe7\xa5\x89\x09\x90\x2c\x8a\x29\xdf\x80\x89\xf9\xd1\xc4\x97\x36\x8f\xa0\xaa\x69\x08\xad\xa1\x06\x82\x91\x77\xcf\xc4\x35\xc4\x6c\xc6\x54\x1c\xff\x5b\x87\x9b\x3d\xfc\xa0\x91\x1e\x4f\x0d\xf8\x70\x7c\x47\x43\xf9\xef\x56\x4f\xfb\xe9\x6a\x7d\x77\x48\x07\xea\x5a\x5c\x73\x83\x67\x81\x44\x98\x64\x59\x55\x9a\x32\xdf\xa1\x82\xf5\x7f\x52\xf4\x4a\x44\xdb\x35\xa2\x53\xf1\x29\xc0\x35\x3d\x05\x40\x4c\x4f\xc1\x80\xe9\x69\x7c\xc3\xf4\x4c\x54\xc3\xf4\x9c\x1a\x96\xe9\x89\xd4\x8b\x26\x6e\x8f\xe9\x71\xfc\xdf\xc7\xf4\x50\x7e\x3c\x8b\x8c\xe5\xf4\x6b\x4d\x2f\x8d\x93\xe9\x6a\xff\x98\xe9\xf1\xba\x16\xd7\x5e\xd3\x13\x32\x44\x05\xeb\xff\xb2\xe5\x95\x88\x63\x7a\x50\xa7\xa4\x69\xaa\xc6\x35\x3c\x51\x8c\x98\x9d\x80\x00\xa3\x93\xb8\x86\xc9\x41\x34\xc3\xe0\x2c\x6c\xcb\xdc\x44\xae\x4e\x88\xd9\x63\x6c\x1c\xfb\xf7\x31\x36\x84\x1b\xd4\xd4\x78\x2e\xd1\xaf\x34\x35\xb2\x5e\xac\xe7\x0f\x9a\x1a\xab\x6b\xf0\xec\x35\x34\x21\x3f\x54\xa8\xfe\x8f\x67\x1e\x69\x38\x66\x26\x75\x69\x20\xf1\x83\x4f\xee\x77\x1e\x6d\x80\x4e\x3e\x76\x15\x85\x2f\xf1\xa5\x99\x68\xee\x69\x4e\x7f\x7a\x2e\xfb\x33\x3e\xc4\x42\x08\xae\x1f\x47\x6c\x5c\x7a\xd6\x1f\x37\x84\xa6\xbd\x4d\x65\x50\xe5\x0c\xb1\xdc\x4e\x63\x08\x02\xc5\x3d\x9b\xd4\xe1\x3d\x13\xa3\x8a\x31\x62\x6d\x31\x8f\x6a\x54\x8c\x6c\x93\xaa\xbd\x8e\xc6\x64\x85\xe5\x12\x8d\xed\x24\x88\xa3\x39\xc0\x56\xbb\x28\x4f\x7d\x8b\x5a\x27\x8d\x6a\x6c\x35\x35\x26\x10\xe5\x07\x66\x45\x45\x90\x3a\xd4\x9e\x1d\x1d\x38\x94\xa4\x51\x4f\xcd\x94\x78\x15\x35\x5f\x7a\x6b\xf6\x2d\x51\x1d\xc9\x8b\x7d\x57\xa4\x03\x43\x0c\x5e\xe1\x46\x09\x4e\xc2\xdd\x87\x19\xc8\x41\x86\x53\xb0\xa6\x07\x9b\xf5\x81\x41\xed\x55\x8a\x9b\x6d\x1b\x61\x60\xb4\x0d\xec\x60\x66\xac\x7d\x57\x8e\x9b\x39\xec\x3d\x0a\x67\xf9\xe1\xd9\xdb\x30\xf7\x32\xc6\xee\x3c\xc3\xec\x7c\x48\xca\xc5\x07\xf7\xc5\xfd\x5b\xd9\x97\x96\x34\x21\x5f\x46\x72\x8e\xd8\xae\x28\x52\xda\xba\x85\x76\x01\x13\xaa\xf8\x6c\xc1\x7e\x15\xe7\x24\x75\x49\x04\x4b\xbe\xc1\xf7\x0b\xd6\xaa\x38\xd7\xa1\x78\xb9\x82\x6f\x62\xe8\x13\x2b\x80\x57\xc8\xa5\x7e\x98\xd0\xa3\xbc\x9e\x18\x61\x5e\xbf\x06\x4b\xcb\xcf\x4f\x67\x78\xdc\xe2\xc3\x65\x7c\x45\x72\x9b\x85\x71\xd6\xbf\x59\xc4\x6c\x1a\xd9\xfb\x15\x26\x18\x92\x17\x52\x76\x2d\xe7\x5d\xee\xfc\x46\xab\xe5\xee\x90\x17\x2c\x17\x6b\x51\x9f\x92\x1f\x04\xe0\xe7\x15\xf8\x1e\x61\xbd\xa7\x65\xbf\xaf\xc5\x18\x0d\xc5\xa3\x75\xd7\xa1\xd7\x74\xac\x70\x25\x4d\x53\xa3\x3e\x50\x9f\x2a\xd2\x06\xa4\x8a\x80\xba\x64\x99\x3a\xda\x5c\xd5\xa4\x0c\xd8\x3b\x4f\x59\xf5\x99\xce\xae\xc7\x63\x41\xc6\xf3\x48\xf6\xf4\xc7\x8e\xaa\x32\xfa\x73\x7b\x43\x1e\x50\x9b\x32\x1a\x30\x75\x2f\x4b\x87\x6d\x40\x62\x4e\x50\x62\x88\x80\x75\x7d\x01\x1c\x20\x8c\x90\xd0\xe4\x5d\x65\x01\xf2\x1c\x38\x44\xde\x25\xa1\xc9\x23\x42\x07\xf4\x05\x74\xa8\x01\x4c\x73\x12\x35\xea\x6d\x21\x1a\xd7\x82\x9c\x42\x1e\x19\x01\x41\xb4\x4f\xb2\x23\xe9\x7f\xc2\x60\x3e\x9f\xf3\x4a\x77\x3c\x78\x60\x6f\x86\x2c\x9f\xc8\x3e\x33\xa8\x40\xc5\xca\x22\xa0\x0c\x59\x04\x25\x24\xca\x46\x18\xfe\x28\x4e\xe7\xb3\xa7\xd5\x7e\x6a\x71\x3a\x5b\x2f\xc9\x9a\xdc\xde\x90\x87\x9e\xc1\x27\x89\x99\x83\x4f\x94\x8e\x18\x7c\x02\x73\x82\x12\x43\x04\x3c\x7a\xf0\xf9\x75\x84\x0e\x3e\x97\x7c\xff\xe0\xf3\xeb\x1b\x1f\x7c\x2e\xfd\x81\xa1\xd1\xa7\x39\x74\xf0\x39\x2d\x0c\x0d\x3e\xd3\x0e\x90\xc1\x37\x76\x1c\x58\x43\x50\x56\xc3\x2f\xce\xd1\x7a\xd6\x43\x2b\xb8\x6d\x2f\xd3\xfd\x7a\x99\x5a\xad\x2f\xd2\x84\x2c\x52\x83\x0a\xd4\xb0\x2c\x02\x5a\x91\x45\x50\x54\xa2\x6c\xc4\x08\x18\xc5\xe9\xe2\x29\x59\x2c\x9e\x6c\x39\x6d\xd6\x8b\xf9\xe6\xf6\x86\x3c\xf4\x8c\x42\x49\xcc\x1c\x85\xa2\x74\xc4\x28\x54\xf7\x5b\x30\x62\x88\x80\x47\x8f\x42\xbf\x8e\xd0\x51\xe8\x92\xef\x1f\x85\x7e\x7d\xe3\xa3\xd0\xa5\x3f\x30\x46\xfa\x34\x87\x8e\x42\xa7\x85\xa1\x51\x68\xda\x01\x32\x0a\xc7\x8e\x03\x6b\x14\xca\x6a\xfe\x51\x08\xdf\x2b\xf2\x0c\xc1\x7d\x1a\x67\xc4\x6e\x7a\xb5\x5f\x67\x89\x26\x01\x75\xcb\xfe\x06\xca\x60\x7f\x43\xf1\xd0\x82\x11\x26\x3f\xcc\xda\x7c\xb3\x9f\x67\xf6\x98\x9b\xad\x36\xc9\x3e\xbd\x7d\x7d\xd3\x3d\x43\x8d\x91\x31\xc7\x19\x2d\x1a\x31\xc8\xf8\x0d\x22\x87\x86\x2d\xbf\xd1\x63\x0b\x13\x3e\x3a\xaa\x2c\xaa\xfd\x43\x0a\x53\x21\x3e\x98\x2c\xb2\x03\x76\x8e\xeb\x03\x1d\x43\x26\xe1\xa1\x01\x04\xf4\x8a\x8d\x9e\x31\x26\x6c\x0f\x1d\x51\xc7\x3f\x74\xac\x17\xbb\x70\x13\x3d\xc4\x49\xb6\xb0\x9b\x26\x24\x99\xcd\x57\x06\x15\xa8\x43\x59\x04\x14\x20\x8b\xa0\x84\x44\xd9\x08\x73\x1e\xc5\x29\xc9\x36\xe9\x6c\x6d\x71\x9a\x2d\xd7\xcb\xe9\xec\xf6\x86\x3c\xf4\x8c\x2a\x49\xcc\x1c\x58\xa2\x74\xc4\xd8\x52\x97\xb5\x30\x62\x88\x80\x47\x0f\x32\xbf\x8e\xd0\xa1\xe6\x92\xef\x1f\x6d\x7e\x7d\xe3\x63\xce\xa5\x3f\x30\x3a\xfa\x34\x87\x0e\x3e\xa7\x85\xa1\xf1\x67\xda\x01\xb6\x86\x1b\x39\x0e\xec\x95\x9c\xa8\xe6\x1f\x85\xe6\xc3\x77\xb8\x69\x67\x9b\xe5\x7c\x61\xaf\x21\xb3\xc5\xfc\x30\x4f\x20\x11\x63\x8d\xce\x4b\xe0\xb2\x9a\x97\x18\x4b\x5d\x56\x34\x66\x03\x63\x0c\x93\xb3\xf9\x6c\x66\x7f\x7d\x4f\xd2\xd9\x66\xb6\xbc\xbd\x15\x03\x7d\x1b\x28\x9c\x94\xb5\x7f\xc2\x0a\xc7\x6c\x9f\x88\xab\x71\x08\x25\x57\xaa\xe3\xf7\x4e\x3c\x6a\xc1\x77\x4e\x6c\xda\x03\x1b\x27\x1e\x05\x7b\xb6\x4d\x6c\xe2\x43\x7b\x1a\x5e\x5d\xe1\x7b\x26\x16\xf9\xc1\x2d\x13\xa8\x77\xf4\x02\xf0\x28\x83\xb7\x06\x9b\xac\xe5\x1f\x6c\x45\x5e\xfe\x6a\xad\xf0\xfa\xcf\x23\xba\xcf\xe5\x48\x32\x13\xf5\x9b\x21\x25\x5a\x30\xc2\xde\x18\x23\xbd\xef\xf4\xdc\xb5\x11\x6b\x31\x04\x0c\x8e\xfd\x0d\x8c\x04\x30\x6c\x7e\x05\x87\xa9\x8a\x06\x28\x8d\x7d\x90\xbc\x3f\x1f\x12\x22\xae\x81\xe1\x84\x71\x34\x7a\xbc\xb8\xec\x6f\x36\x1b\xff\xc7\x81\xb0\x10\x7e\x98\x7f\x83\x2f\x8e\xcf\xf4\xaf\xeb\x5b\x1c\x00\xe4\xeb\x9d\x33\x24\xdf\x9e\x4d\xf2\x8f\x1f\x8e\x64\x44\x5f\x5b\x48\xfc\xb5\xb5\x78\xe7\x1f\x1f\x1e\xa4\x8d\x7d\xf0\x77\x2f\x33\xc9\x6f\xc7\xe6\x59\xc2\x18\x90\xf8\x08\xa8\x99\x07\x06\x8c\x63\xe7\x97\xfd\x39\xef\x3e\x69\x5c\xe3\xd2\x0c\x69\x89\x0f\xc6\x5f\xee\x07\x40\xf3\xfb\x7b\x92\x91\xab\xfc\x1e\x12\x63\x97\x30\x04\x90\x5d\x89\x08\xa8\x68\x92\x66\xd7\x0f\xe6\x54\xa3\xbc\xbc\x82\x9b\x04\x69\x55\x14\x49\xdd\xea\x33\xd4\xdc\xc0\x64\x31\xc5\x36\xef\x1f\x49\x10\x0d\x35\xdd\x07\x81\x84\x7a\xdc\x57\xd2\x91\x1e\x70\xdc\x20\x9a\x2f\xf9\xeb\xf1\xbb\x1e\xd8\x2d\x4a\x93\x86\x74\x7d\x27\x20\x62\xdd\xb8\x91\x7e\xad\x7e\xf5\x7c\x0c\x05\xb9\xa9\x16\xf2\x5b\xa7\xf9\xa0\xe2\x02\xfd\x04\x0a\xef\x71\xa2\x18\x37\x15\x21\x60\x07\x5b\xad\xe8\xc1\xfa\xee\x18\x03\x84\x33\x29\x2f\x9e\x23\xab\xcc\x94\x85\x09\xff\x16\xe6\x65\x46\x5e\x69\x99\x3e\xbe\xca\xa6\x62\x78\x0a\x5f\xe7\x39\x5d\xd9\xa7\x9c\xd5\xfd\xc0\x99\xb8\xa7\x66\x3f\x1a\x6b\x7d\xd0\xed\xfb\x80\x80\x5f\x58\x02\xa5\xc6\x17\xc5\xe5\x87\x71\x37\x9a\xf8\x39\x24\x3a\x0b\x98\xf5\xad\x53\x57\xbd\x68\x80\xe9\x22\xaf\xb7\xfa\xcd\xdf\x57\x4b\xe4\xf0\x05\x4e\x79\x2a\x58\xbd\x9f\x66\xe1\x06\x51\x96\xbf\xe4\x19\x69\xae\xe0\x19\x2c\x21\xcd\x0d\x13\xad\x3d\x10\x90\x75\x21\xbf\xf1\x68\x12\x7e\x2e\xf2\xe7\xc4\xf3\x70\xe0\x5c\x3e\xd9\xca\x5f\xb3\xdd\x57\xdd\xc9\x89\x12\xfa\x2f\xa3\xcd\xe7\x73\xfc\x1d\x5b\x87\x05\xe9\xce\x10\x08\x37\x5c\xcc\x41\xed\xd4\x4e\x11\xfd\xf1\xbe\x3b\x68\xb7\x27\xd3\x2d\x25\x76\x73\x0a\x80\x73\xa3\xc1\x86\xfb\xa4\x46\x89\x72\x87\x7e\x43\x37\x82\x2e\x87\x33\xe9\xab\x11\xde\x34\xc8\xc3\x1d\x40\xb0\xdd\x7b\x4f\x3b\x63\x89\xa1\x3d\xec\x7f\x60\x11\x3d\x38\x20\x3e\xb8\xd7\x4d\x75\xcc\xb3\xed\xbf\xfe\xe7\x5f\x28\xe8\x6f\xf2\x11\xe1\xe8\xaf\x79\xda\x54\x6d\x75\xe8\xa2\x23\x1d\xaa\xa4\xec\x7e\x20\x25\xe3\xe4\xe7\x43\x52\xb4\xe4\xc3\x0e\xbb\x60\x41\xd7\x4b\xcf\xd6\x84\x66\xb9\x13\x86\x92\x78\xe7\x3f\x31\x0e\xf5\xfb\x85\xca\x51\x9b\x68\x14\x41\x64\x3c\xdd\x35\xe0\x9a\x81\xc2\x12\x4f\x7d\x0f\x8c\xa8\xde\x90\x03\x7b\x2c\x58\x37\x40\xc5\x4a\xff\xd0\x33\xf6\x21\x7f\x25\xd9\xce\x60\x2a\xde\xa9\x33\x3c\xfc\xf8\x8f\x9c\xbc\x37\x9b\xf8\x06\x26\x1e\x5b\x68\x9e\x79\xe8\x52\x07\xdc\x31\x4e\xa2\x32\x79\xd9\x27\x4d\xc8\xda\x14\x07\x85\xf4\x4a\x55\x60\x19\xe9\x1a\xad\x2b\xd8\xda\x05\x82\xa7\x63\x55\x23\x06\x37\x83\x8d\x99\xbc\xd3\xd6\x98\xea\xd4\x01\x4b\x37\x8f\x48\xef\x79\x2c\xd1\x9a\x78\x1e\xd7\x24\x8e\x18\x46\x0f\xba\xcf\x4c\x6e\x3a\x1a\x85\x81\xa9\x8c\x1b\x90\x40\x07\x0d\x44\x3c\x07\x11\x15\x41\x16\xe6\x62\x0d\x88\xf8\xd7\x69\x05\x26\x04\x37\xa9\xc0\x65\x06\x42\xcb\x01\xf3\x52\xb0\xce\xc2\x2a\xd9\x60\x5e\x0a\x57\x8f\x58\x2d\x07\xce\x8a\xa3\x81\x6a\x72\x6d\x2d\x07\xc0\xcc\xe9\xe1\x18\x66\xe1\xbc\xa1\x10\xd9\x7a\xea\xa3\x25\x6b\x5d\xe8\xe8\x39\xd0\xbf\xa2\xb5\x00\x08\x3d\x96\x28\x57\x1e\x5d\x55\x15\xfb\xa4\xb9\xba\x6f\xec\x03\x68\x60\xb3\xa0\xca\xc1\xc9\xdc\xab\xad\x78\x81\x04\x0c\x08\x96\x20\xe4\x9e\x0d\x72\x46\x12\x64\xc9\x10\x10\x75\x59\x75\x3f\xc0\x5c\x25\x1f\x78\x89\x4e\x34\xc1\x0b\xec\xd8\xf5\xc3\x15\xdd\x7d\x80\x3a\x04\xf9\x4f\xac\x33\xb3\x7e\xcc\x3b\x1b\x17\x89\x44\xd9\x70\x56\x9c\x80\xe8\xde\x82\x38\x2d\xeb\x86\x5c\x39\x18\x56\x6d\x47\xee\x0e\xb6\xc5\x11\xed\x29\xca\x90\x01\xb0\xf9\xf1\x58\x80\x8d\x30\x42\x67\x7c\x56\x19\x50\x91\xa0\x06\xf3\xfa\x5a\x52\xb1\x47\x36\x56\xc3\x12\xcd\x1b\xa9\x46\xb4\x04\xf2\x9d\x38\x46\xf5\x95\x12\x77\x36\x73\xdd\xd9\x0c\xdf\xf4\x45\x27\x9e\x67\x3e\xc7\xd8\xa8\xc6\x96\xc3\xda\x79\x15\x77\xed\x0e\xc8\xb0\x38\x0e\x90\x61\xe1\x89\xf5\xba\xee\xcc\x20\xe4\xe1\xfb\xf7\x38\x20\xda\xc7\x80\xde\x5d\xbc\x67\x03\x51\x06\x30\xc8\x1c\x52\x1c\xad\xe8\x46\x3c\x48\x21\x18\xb4\xe2\x1c\x95\xf4\x46\x85\x36\x3d\x34\xe2\x40\x50\xb9\xf9\xbc\x90\xd7\x3d\xf9\x83\x89\x67\x4b\xd7\x56\x48\x0a\x2e\x19\x18\x69\xd7\x60\x1e\x77\x2f\x3b\x90\xac\x26\xe4\x45\xb7\xbd\x1d\x02\x1d\xd5\x8f\x7e\x3a\x5e\xf7\xc9\xae\xf7\xeb\x05\xb3\xeb\x19\x2c\x8f\x3f\x3c\xe3\xf5\x4c\x76\x76\xf4\xd0\xe3\x6e\xae\xbe\x09\x8a\x6d\x7e\x8c\x98\xd9\xb0\xd9\xc8\xcf\x4a\x9f\xff\xe9\x99\xdf\x00\x33\xee\x4c\x3a\x66\xee\xc3\xb4\xf4\x06\x5e\x05\x25\xdb\x27\xee\x1e\x7f\xf3\x00\xad\x47\x3c\xd1\x5d\xfa\x72\x9c\x92\x2b\x33\xaf\x9b\x7a\x50\x51\xff\xb8\xb4\x5d\x7e\xc8\x89\xce\xd1\xc5\x52\x83\xc1\x09\x82\xe7\x0a\x2b\x92\x2f\xd5\xa5\x13\x0b\x4f\xfd\xf5\x84\x6d\xe5\x6e\x5b\x52\x27\x4d\xd2\x11\x94\xb2\x33\x9b\x99\x10\x23\x28\xf1\xe4\x16\x97\xec\xbc\xf7\x37\x00\x82\x6a\xb8\xdd\xfd\x4b\x96\x74\x89\x50\x98\xd8\x18\x6f\x3f\xb1\x0a\xcf\xee\x8d\xad\x71\xc8\xfa\xd6\x96\xb9\xb1\x0d\xa3\x62\xff\xaa\x8e\x8b\xd7\x2f\x40\x40\xc5\x4c\xc6\x0e\x04\x34\xf4\xa1\x01\xd0\xb0\xf3\x1b\x38\x7c\xa9\x45\x12\xdc\xd2\xf5\x66\xe5\x34\x89\xb3\x4f\x43\x90\xfe\xc4\x81\x3a\x97\x39\xfb\x51\xa8\xa8\x99\x0a\xbf\x69\xe6\x09\x0f\xf3\x1e\x1c\xb7\x0b\x23\x10\xd1\x8e\x0c\xa5\xb8\xf0\xf0\xe5\xc5\x72\x39\x1b\x85\x2a\x79\xf3\xe5\xd3\xe8\x15\x4f\x0f\xb6\x4f\x50\x23\xab\xd8\x22\x83\xb9\x48\xf4\xa7\x42\xbf\xb9\x51\xe8\x80\xb9\xd9\x28\x76\x93\xdf\x22\x4b\x8b\x87\x75\x0f\xce\x28\x63\x1b\xd5\x8d\xa1\x74\x30\x1e\xbe\xbc\x58\x23\x8d\xcd\xc7\x5b\xbf\x2d\x78\xc4\xd3\x83\x7d\xa7\xb1\x0d\x89\xcc\x35\x36\xc4\x7c\x98\x1f\xf3\x4f\xae\xd8\x9b\x18\x0e\xc5\x11\x61\x90\xd3\xe8\xbd\x75\xac\x7b\xff\x8f\x04\xb7\xc3\x92\x90\x5e\xf6\x3d\x76\x71\xd3\xb3\x5d\xe9\x5e\xed\x1f\xba\xe1\xd9\xfb\xf1\x09\x26\x40\x74\xef\xa9\xe2\x39\xe0\x46\x26\x3f\x44\x78\xd5\xc9\x92\x86\x66\x08\xe4\xf8\x80\x8f\x5a\x71\x1c\x3e\x57\x81\x1c\xa3\x70\xc8\x61\xf7\xcf\x7b\x91\xec\x4c\xa2\xf2\xa1\x25\xbf\x19\x19\xa9\x8a\x5d\xbb\xf6\x82\xad\x80\x55\x84\x83\x43\x18\x60\xbd\x39\x80\x6c\x85\xe5\x2e\xb6\xbd\xc9\x33\x6e\x0f\x70\x90\x0e\x5c\xd6\xf8\x16\x31\x77\xef\x52\xf5\xca\xd5\xc9\x41\xec\x57\x16\x5c\xf3\xb8\x34\x7d\x50\xa4\x97\x23\xc5\x30\x02\x77\x50\x4f\xce\x46\x21\xb2\x67\x3a\xce\x6c\x3c\xeb\xa6\x07\xb7\xf4\xfa\xe4\x67\xa7\xde\xb6\x27\x49\xe4\xc3\x8b\x1a\xdc\x31\xfa\xa1\x1c\xf5\x52\xc8\x61\x0f\x0c\x8f\xed\x84\x20\x9f\x10\x30\x5c\xf9\x1d\x07\x85\x89\x0f\x24\x28\xcc\xfd\xba\xf2\x56\xa3\xfd\x6a\x65\x60\x40\x58\x7f\xd0\x3c\x11\x99\x94\xc9\x8b\x93\x70\xc4\x5a\x58\x59\x87\x55\x58\x9d\xe7\x22\xef\x59\xdd\x89\x2f\xcf\x1c\xef\x39\x19\xc2\xb4\x96\x36\x4b\xc1\x97\x71\x3c\x42\xfd\x7d\xcf\x47\x79\xea\xea\x24\x29\xf0\x61\xdf\x38\x1f\xe0\x40\xcd\x16\xfb\x0e\x17\xe0\x87\x1f\x7a\x8f\x06\x60\xdf\xf0\xcb\xe4\x25\x10\x5f\xe9\x27\xf0\x0f\xc0\x88\x2a\x12\xc9\x8b\x7a\x7c\xba\x7d\xce\x82\xd5\x2e\x93\x97\xf0\xed\xce\xd1\x48\x5d\x3c\xe7\xe7\x23\x78\x00\x53\x19\x47\xd8\x25\xfb\xf6\xea\x4d\x40\xce\x9e\xb6\x93\x68\xd4\x90\xdc\x5c\xa6\xa2\x92\x32\x51\x89\xfa\x9c\x98\x83\xa3\xe7\x08\x41\x6f\x92\x0d\x27\xd0\x09\x44\x06\x71\xab\x35\xae\x82\xab\x7d\xe6\x9f\x04\xfc\x3f\x76\x4f\xc0\xf9\x1a\xac\x14\x28\xd4\x85\x19\xc6\xd5\x93\xcb\x1a\x7d\xbb\xc3\x9c\xd1\xbd\x66\x27\xee\x9a\x6b\x9e\xd9\x2f\x7a\xf3\x0b\x3e\x64\x6a\x25\xbd\xf7\x54\xd1\xea\x33\xb5\xef\x60\x3d\x27\x57\x37\x36\x75\x12\xcd\x7b\x09\x0c\x9f\x7d\xd0\x07\x37\x7a\xcf\x39\x78\xfa\xd0\xbb\xd9\xd6\xd7\x29\x7b\x63\x68\x14\xb6\x3e\xaa\xe2\xc4\xdb\xbe\xfe\xbb\x96\xe5\xc3\xb0\xad\xcc\x8b\x07\x13\xa1\xd9\xe3\xf3\x01\x19\x3e\x27\xbd\x43\x7e\xcc\x98\xfb\x9d\x3b\x6d\x8e\x17\x76\x47\x80\xf3\x52\xe7\x45\x61\xcd\x4c\x26\x40\xf7\xd5\xd6\x9d\xc4\xf8\x58\xe4\x57\xeb\x94\xac\x89\x60\x75\xce\x29\x86\x3d\x72\x81\xce\x39\x3c\xff\x41\x3b\x4a\xa0\xed\x92\xf4\x57\x7c\xb4\x6a\x10\x60\x59\x3c\x27\x6b\x7f\x37\xf2\xcd\x16\xb7\xe1\x49\xe1\xd1\xb9\xe0\x5b\x4c\x01\xf7\x8d\xfc\xd1\x03\x1e\x88\xc6\x3b\x7b\x3e\x3e\x21\xf4\x8f\x8b\x31\x63\xe2\x1b\x4c\x02\x6f\x3d\x01\xfc\x0e\x9d\x44\x07\x7d\x97\xec\x43\x71\x2a\x8f\xbd\x0a\x13\xd6\x49\x69\x9f\xd8\x37\x70\x44\xf4\xef\x06\xbc\x8c\x09\xdb\x42\xed\xcf\xb1\x8f\x7c\xac\xe2\x87\xee\x90\x50\x1a\xa4\x7b\x5b\xba\x49\xd8\xd9\xa1\xcb\xbe\x58\x68\xf0\x58\x20\x32\xd3\x0d\x1f\x25\x14\x87\x41\xc1\xfc\xa9\x8e\x0d\xaa\x0b\x11\x34\x72\x54\x29\x9e\x63\xf8\xce\xd9\xeb\xf6\x25\x6f\xf3\x7d\x41\xec\x03\x18\x4b\x3b\xa9\x3f\x2b\x01\x87\x2e\x7d\xe1\x1e\x9a\x93\x33\xe6\x87\x2b\x66\xcb\xe5\x44\xfe\x3f\x9a\x7e\x18\xf1\x10\x9a\xd5\x13\x76\xe3\x43\xbf\xd1\x36\x3c\x03\x19\x62\x00\xe9\x25\xad\xd3\xa3\xd6\x29\x0d\xbb\x55\xe7\x66\x09\xb3\xc2\x3f\xe6\xe7\xba\x6a\xba\xa4\xec\x76\x60\x53\x17\x94\xea\x73\xf9\x62\xb9\xa7\x02\x7f\x21\x74\x8d\x3b\xd4\x53\x51\xe1\x66\x1e\x57\xed\xaa\x3a\xb0\x2b\xaa\x13\xad\x3c\x57\x60\x3f\x8e\x79\xea\xd5\x96\xd7\xc0\x67\xbf\x1b\x4b\x26\x98\xe4\x25\x69\x9e\x4d\x6b\x9c\x68\x48\x78\x28\x2e\x79\xe6\x87\x3f\xbb\xbc\xf9\xea\x02\x73\xb6\xf3\x26\xee\x9c\xe4\x8a\x3d\x66\xf1\xff\x02\xd7\xb1\xe5\xf0\x6f\xae\xd6\xae\xc6\x65\x18\xeb\x30\x0f\x1b\x56\xc3\xa6\x0f\xa8\xd9\x3b\xee\xae\x29\xa1\x56\x61\x1f\x01\x37\x4e\x6f\xc3\x0b\x3b\xf3\x78\x98\x9d\x81\xa6\x86\x59\xbc\x1a\xc7\xbd\x4d\x61\x78\x48\x8a\xa1\x67\xef\xbc\x18\x24\xa6\xc0\x3b\x52\x12\xfb\x26\x29\x33\xb8\x58\x56\xdb\x26\xcb\xfe\x8f\xc1\xcc\x07\x00\x17\x61\x52\x04\x1e\x54\x97\xf9\x77\x59\x06\xe5\xf9\xac\x8d\x2e\x30\x88\x4e\x5c\x04\x6e\x95\x26\x9a\x9b\x92\x54\x8b\x5c\x1e\xd4\xf3\x9c\xe3\x66\x66\x60\x26\x30\x85\x2e\x83\x6d\x74\x4c\xad\xb7\x63\xd6\x8e\xcb\x5c\x63\x37\xb0\x86\xef\x77\xdc\xb7\xe1\x60\x75\xc9\x3d\x6c\x6d\x80\x83\x28\x4f\xab\x32\xa4\xde\x18\xbb\x77\x39\x9b\x69\x05\xbb\x5f\x5e\xa6\x4e\x6b\x9a\xdc\x47\x4d\x18\xc8\x64\x31\x66\x14\x0b\x5d\x18\x41\x92\x6a\x47\x6f\x2b\x6e\x9f\xa2\x65\xfd\x1a\x84\x6a\x5b\x4f\x80\xc5\xce\x20\xc8\x19\x6b\x3c\xd9\x03\x73\x45\xdb\xb6\xdc\xf3\xb2\xaa\xa6\x1f\xd8\xa7\x23\xcd\xcb\x7e\xee\x5b\xfe\xc0\x0f\x1b\x19\x7a\xfb\x4d\x41\x3f\xb7\x87\x7b\x6b\x1f\x27\xac\xfb\x93\x21\xac\xc0\xb9\x5e\x63\x7c\x74\x93\x47\x30\x67\x96\x6c\xfd\x2d\x5e\x1d\x59\x8e\xaa\x66\xcd\x11\xfd\xb8\xce\x1e\x25\x48\xd4\x30\x6c\x56\xd4\x72\x9c\x0d\x41\x30\x20\xc4\xe6\xb3\xb5\x32\xf7\x1b\xd5\x12\x31\x2a\x4b\x5c\xc6\x85\x16\xf8\x55\x03\x49\x85\x3c\xdc\x01\x76\x03\x46\xb3\x87\x44\x53\xfc\xc6\x15\x98\xb2\x00\x8e\x76\x18\x55\x73\x1e\x95\x9d\xd9\xdd\x3d\x1f\x13\x10\xe3\xeb\xb4\x81\xf4\x03\xc3\xc1\xf3\xa4\x37\xb2\x7e\x43\x52\x43\x33\xf8\x08\xb7\x5f\x35\xe7\x37\x4b\x29\xef\xd2\xfc\xca\x94\xf2\x06\xc1\x71\x29\xe5\x8d\x2a\x0f\xa5\x94\x37\x28\x88\x3c\xe3\x26\xd5\x6f\x9d\x52\xde\xe5\x00\xfb\xa4\x8f\xf2\x74\x6f\x4a\x79\x83\xc8\x1d\x29\xe5\x07\x9d\x8f\x63\x58\xee\xd6\xd6\x38\xeb\x74\x97\x86\x76\x84\xbe\xb3\xc2\x77\x38\xf3\xc5\xee\x4a\x6f\xf4\x85\x00\xc0\xc4\x5d\x93\xa3\x35\x15\xfb\xb7\x41\x7a\xbe\xfe\x0f\xee\x81\xe0\xeb\x43\xbc\xc9\xc7\x0f\x27\xcb\x90\x54\x7f\x49\xf6\xcf\x35\x00\x39\xe2\xa9\x3d\xae\xc3\xaf\x13\x3a\xb5\x5e\x5b\xa3\xd6\xc2\xad\x65\xc4\x8d\xe4\xb5\x33\xf0\x91\x87\x36\xfa\x57\x9c\x90\x90\xe7\x39\x41\xd7\xe5\x18\xbe\x93\x56\x1d\x67\x1f\x60\xd9\x84\xa4\xc2\x96\x7b\x71\x6b\xfa\x63\x67\xd8\x7a\xa2\x3f\x76\x6d\x6b\xc9\x20\x5f\x13\x79\x1a\x40\xb4\xe2\x18\x1c\xc7\xfc\x12\xc7\x3e\x7a\x0e\xe4\xb1\xf1\x90\x63\x92\x1d\xc1\x9a\x0a\x5c\xee\xc0\x1d\xe8\x89\xf5\xb9\xbc\x2f\xf5\xf9\x98\x9e\x50\x72\xe6\x86\xec\x20\xd6\x08\x06\xef\xfa\xf8\x39\x60\x07\x8c\x1e\x4c\x22\x30\x0e\x6f\x0c\x97\xbe\x13\x00\xec\xc4\xdc\x43\x76\x61\x5c\x9c\x90\xa9\xab\xc4\xb7\x64\x7f\x85\x01\x5e\x8d\x85\x24\x92\x50\x6b\x90\x3e\x58\x64\xba\xd5\xd7\xeb\xb5\xb7\xba\xb3\x81\x67\x23\x30\x67\x76\xd7\xb0\x66\x82\x07\x67\x22\x06\x70\xc6\xa8\x71\xe8\x04\x05\x63\x08\xbe\x60\x3d\xe8\xe8\x91\x66\x7a\x56\x5e\xe3\x06\xf7\xe8\x35\xd8\x7d\x75\xdf\x6c\x1a\xc0\xdb\x18\x35\x37\x0c\x54\x7d\xb4\x7f\x6f\x3c\x8b\x78\x1a\x19\x37\xb5\x0c\x56\x7e\xb8\x93\x0f\x4f\x42\xde\xbe\xc2\x4c\x78\x7d\x46\xa9\x73\xae\x5d\xe1\x33\x04\x02\x9a\x97\x2f\xa4\x69\xb1\x0c\x7e\xb3\x99\xfd\x48\x59\xbc\xa6\x3f\x76\x55\xdc\x95\xcb\xb3\x59\x5e\x44\x4b\x92\x38\xce\xf0\x67\x72\xcc\xec\x6d\x5a\xd0\x8f\xf7\xf1\x65\xfb\xf1\x31\xb8\x03\xdd\xc0\xfd\xf8\xc3\x3d\xc1\xfd\x78\x2f\xd6\x08\x06\xef\x3a\x96\x30\x60\x04\x3e\x3f\x3e\x80\x37\x86\x4b\xdf\x10\x5a\x2c\x16\x0f\xda\x05\xe6\xc7\x91\xc1\xd1\xef\xc7\x3d\x48\x3e\x3f\x35\x4c\xbf\xd7\x8f\xb3\x44\x98\x9e\xea\x8e\x1f\xb7\x11\x10\x3f\x3e\x8d\xe9\x4f\xbf\x3a\x2d\x3f\xde\x83\x33\x46\x8d\x03\x7e\x9c\xdb\xd7\x0e\x74\x77\xd0\x8f\x23\xcd\xf8\x66\x61\x6b\x37\xf6\xae\xf9\xad\x67\x93\x57\x1c\xcd\x7c\x64\xb4\x0c\x47\x1c\x03\xd3\xd0\xe8\x88\xe3\xbe\xba\x6f\x36\x61\x8d\x8d\x38\xee\xaf\xfa\x68\xff\xde\x78\xbe\x1b\x1f\x71\x3c\x52\xf9\xe1\x4e\x3e\x3c\x5d\x7a\xfb\x0a\x23\x8e\x3e\xa3\x74\x23\x0e\x9e\xbe\xb7\x21\x49\x96\x36\x97\xf3\x5e\x7d\x05\x59\xcb\x1d\x6f\xe4\xd0\x8b\x9d\x63\xd1\x97\x24\x0f\xfb\x36\xa7\x9b\x82\x47\xc4\xe0\x66\xa7\x85\xf3\xb1\xc8\xb7\x7b\x72\xa8\x1a\x72\x55\xd9\xbd\x7e\xfa\x7b\x1c\x27\xf1\x3b\xb5\x3f\xcf\x92\x5d\xec\x74\xdc\x66\x90\x90\x27\x8a\xa0\x78\xea\xe4\x98\x97\xec\xcb\x2b\xbe\xdf\x6a\x6d\xa9\xca\x1c\x93\x31\x4c\xca\x01\x7b\xa5\xe9\xb9\xbd\xb2\xa0\xd4\xe8\xcc\x82\xb6\x4e\xfa\x13\x68\xb9\xcf\x14\x7a\x4e\x66\xf7\x25\x34\xec\x7b\x74\xc7\x73\xf6\xd9\xbd\xd3\x60\x30\x6e\x5c\xb2\xb0\x7b\x65\x00\x59\x0f\xcd\xed\xd5\xd1\xc9\x21\x2c\x90\xcd\x03\xb8\x8d\xe1\xb0\x00\x60\x8c\x83\x9e\x2d\xcb\xbe\x8c\x14\x6e\xab\x7a\xec\xbb\x9a\xc4\x21\x89\xbc\xf1\x82\x54\xc0\xf2\x3e\x8f\xb9\x87\xc0\xf6\x1d\x00\x3d\x30\x71\x23\xa5\xb4\x29\x14\x80\xf5\x05\x56\xea\x01\x63\xbd\x32\xaa\xf2\xae\xe9\x14\x00\x23\x8e\xd5\xa2\x97\x2d\x9c\x63\xf6\xb0\x41\x35\x9d\xba\x5d\x34\x40\x58\x47\x4c\x04\xa4\x37\xd0\x57\xe0\xe5\xbd\x64\x91\xab\x2d\x63\xde\xb0\xa3\xa3\x0f\xbb\xd0\xa2\xdb\x08\x8b\xa3\x33\x99\x88\x32\x3e\x9f\x0c\x5c\xfa\x74\x69\xf9\x87\x33\x02\x47\xc6\x13\x1c\xa8\x2b\xff\x18\x5e\xa1\x6d\xfb\x86\xb1\x0b\x1e\x1a\xc9\xab\x9e\x91\x6c\xb7\xdd\x9e\x5d\x19\xf2\x32\x43\x86\x9e\x6b\xb8\x2e\xa9\x1e\x11\xba\xf0\x01\x11\xce\xfd\x22\x9c\xa3\x6d\x7b\x45\xe8\x80\x87\x44\x38\xef\x11\xa1\x6c\x5b\x1f\x98\xc0\x9d\xa4\x1d\x23\x38\xc7\xd2\x05\x95\x00\xf7\x97\x0c\x20\xfa\xc1\x7f\x67\x4c\xf7\x39\x6b\xae\xa6\x7b\x92\x3c\xbb\x47\xa7\xf9\x37\x18\xdd\x3e\x18\xdb\xb2\xe4\xfe\x5b\x72\xbc\x72\x54\x92\xd7\x4e\xf7\x88\xff\xc9\x3a\x05\x8e\x2b\x28\xe4\xba\x21\x2f\x79\x75\x69\x41\x05\x55\x04\x2a\xf1\x53\x1a\x02\xc1\x9a\xaa\xcc\x22\xb3\x27\xce\x04\xe5\x02\x58\x2b\x83\xd3\x16\x36\x49\xf1\x0f\xe3\xa6\xaa\x94\x92\xa2\x19\x39\x07\xd1\x8a\xfe\x67\x4e\xce\x60\x44\x3d\x2d\xdf\x1b\x97\xf1\x9f\x7c\x97\xf1\x55\x6e\x64\xe3\x92\xc3\x70\x8e\x80\x7d\xd2\x12\xfe\x72\x82\xa1\xf2\x68\xb6\x24\x67\xc1\xf4\x2f\xa7\x86\x1c\xe4\x4b\x09\x46\xd1\xb8\xec\xcc\xe6\xfb\x16\x82\xe8\x96\x9c\xeb\xee\x8b\x75\xe4\x9d\xe5\x85\xe3\x82\x72\x23\x3f\x79\x9a\x5d\x10\xe8\xf9\xae\xc7\x82\x59\x03\x09\xe9\x82\x05\xf2\x2c\xef\x8f\x4d\xf2\x45\xd2\x42\x9e\xf5\xb4\xae\xbe\x18\x78\x58\x9b\x26\xc8\xbb\xe5\x12\x3f\x4d\x13\xd5\x05\xe4\x1d\x43\xb9\xe5\xcc\xde\xaa\xb3\xf0\xb0\x66\x4d\x90\xaf\xd9\xc5\x62\x93\x2d\x16\x92\x9c\xfd\xa0\x9b\x6c\x93\x3d\xf2\x05\x91\xb0\x06\x41\xb9\xb7\x93\xd3\x7d\x9c\x2d\x25\x21\xe4\xad\x2b\x69\x56\xec\x3d\x23\x0b\x0f\x6b\xd3\x04\x79\x3f\xbb\xa4\x9b\xa7\xe9\x41\x99\x87\xf3\xc8\x8f\xf1\xb0\x8b\x89\x86\x1a\x11\x84\xf8\xda\x4c\x37\xf3\x78\x46\x97\x5f\xec\xe9\x18\xfc\x28\x8b\xce\xe6\x0f\x93\xe1\xcc\xeb\xd7\xe0\xc9\xcd\x74\x61\xcf\x08\x60\x04\x9a\x93\x83\x6f\xb0\x23\xf3\xc2\x98\x4c\x1e\x6c\xc6\x33\x5d\x03\x3b\x58\xc0\x3a\xe6\x1f\xd1\xbc\xdf\x7d\x23\x9a\x1f\x47\x90\x98\xc6\x69\x12\xf9\x78\xc8\x2d\x11\xcd\x70\xf9\xcb\xbf\x1e\x9a\x82\x92\x88\x39\x62\x7e\x7b\x3d\xef\xc8\x59\x86\xe7\x9c\x28\xbc\x04\xa7\x82\xfa\xe7\x7b\x5e\x6b\x35\xef\xee\xc9\xaa\x70\xad\xc7\x22\x86\x7f\x5c\xce\xfb\xaa\x6b\x40\x42\x96\xb9\x7b\x76\x83\x15\x71\xe2\x79\x79\x22\x4d\xde\xf9\x5c\xaa\x22\x17\x9c\xa6\x13\xf0\x57\x74\x9a\x5e\x0d\x02\x10\xd5\x3e\x2e\x64\x1d\xee\x9e\x4d\x2d\x7b\x9b\xc5\xf1\x0d\x9e\xb8\xd6\x7d\x40\x12\xa6\x00\x1e\x54\x95\xab\x95\xfa\x52\x6c\x97\xb6\x69\x43\x48\x19\x24\x65\x86\x9d\x1d\x71\x24\xc5\xcf\x0d\xaf\xdd\xc3\x96\x0b\x16\xc6\xa3\x0c\x1a\xa1\x19\x7c\x34\x43\x1c\x1a\x59\xc5\x26\xcf\xae\x14\xb5\x5c\x56\x73\x76\xfe\xa8\x3b\x5d\xce\xfb\x32\xc9\x0b\x4f\x1e\x7a\xf7\x50\xcd\xcc\x3e\x61\x0c\xef\x90\x3f\x1c\xa2\xc1\x67\x36\xc0\xab\x2b\x49\x51\x04\xd1\x8c\xbf\xb8\x12\xe6\x65\x58\x5d\xba\x5d\x3f\x18\x74\xe9\x39\x3f\x1f\x27\xfa\xcf\x40\xde\xbf\xd7\x46\x0c\x0f\x2f\x83\xe4\xeb\x89\xae\xa4\x46\xab\x2e\xe1\x91\x15\x28\x89\xb0\xc7\xa1\x94\x4f\xd5\xed\x47\x69\x52\xb3\xcd\x29\x70\xbc\x7e\x07\xbf\x52\x24\x05\x69\xba\xab\x71\x4b\xe1\xce\xcb\x69\xd8\x2e\x16\xa3\x1a\x9c\x16\xe6\x71\x32\x6b\x3c\x71\x24\xfe\x0f\xdf\x77\xb4\xe6\x68\x81\xf2\x5c\x4f\xc4\x2f\x17\xe7\x94\xa4\x42\xf9\x58\xdb\xef\x13\x09\xc2\x59\xde\x9e\xf3\x96\x85\xa2\x57\xd3\x74\xe7\x38\x56\x10\xa5\x45\xd5\x7a\xe7\x5e\xea\x4b\xc4\x79\x3a\x36\xce\xb1\x4e\xf5\xc4\x1f\xd9\xe1\x10\x67\xce\xfb\x97\x2b\xb2\x49\x57\x4a\x2f\xe9\xd3\x6a\x9e\x59\xa4\x82\x53\x03\xf3\x67\x2a\x2f\x49\x66\xfb\xb9\x8d\x0a\x45\x2a\x37\x83\xf6\xcb\x05\x75\xa7\x1c\xe2\x89\x53\xb2\x0d\xc9\x0e\xf6\x43\xb7\xfb\x94\xac\x0f\x2a\x64\x9e\x4f\x9f\xe2\xf5\x01\xd2\xc1\x19\x4b\x56\x64\x4a\x8c\xf6\x50\xae\x16\xcb\xd9\x6a\x23\xb1\x7a\xe2\x99\xf4\xb0\x26\x73\x8b\xb1\x43\x42\xf6\x69\x2a\x19\x5b\x27\xab\x6c\xbe\xb7\x48\xe1\xbc\x1d\x9e\xc8\x74\xbf\xb4\x51\x11\xf6\x56\xab\xe5\x54\x0b\xcd\x1b\xf7\x1c\x66\x19\x71\xde\x7d\xa5\xbc\x65\x4a\x6c\xc9\x66\xb1\x58\xcc\x4c\x4a\x38\x73\x64\xb1\xdf\xa4\xb1\x85\x89\xf0\xb6\x5e\xcc\x97\xf3\xc5\xed\x4f\x72\x02\xfb\x95\x7c\x39\x34\xc9\x99\xb4\x41\xdd\x54\xc7\x86\xb4\x6d\xb8\x67\xd7\xb8\x9a\xbc\x26\xed\xf5\xd0\x54\x67\xc8\xba\x32\xee\x05\x5b\x64\xdf\xba\x0a\x85\xc6\x41\x7c\xbb\xfd\xe9\x1b\xd2\x8e\x24\xc5\xab\x9d\xda\x04\xde\x8b\xc2\x66\xa4\xd1\x5f\x0a\x86\x0e\xc9\x3b\x0f\x25\x79\xcf\xc0\xbb\x98\x9a\x7f\xf6\x29\xd7\xc9\x4b\xaa\x9e\xe3\x62\xf9\x3a\x7a\xb2\x33\xce\x74\xc0\xe2\x59\x96\x7a\x77\x39\x7b\xba\x17\x82\xc3\xf9\xc6\x6b\x53\x63\x31\x11\xf7\xc8\x3a\x16\x44\x2b\xf7\xb9\x32\x13\x02\x44\xc3\x0d\x25\x0b\x4c\x61\x39\x97\x4f\x64\x63\xfc\xa1\xb6\x50\x3d\xb1\xb3\x58\x66\xe4\x38\x41\x6e\x18\x2c\x3f\x04\xb3\xe5\xfb\x09\xf0\x45\xce\xdf\xcb\xf8\xbd\xa7\xa6\x1f\xf2\x64\xd1\xb0\xfe\xfe\xe0\xde\x2d\xfb\xff\x89\x63\x66\x7f\x6c\x64\x2e\x58\xe8\x26\x75\x22\x22\x0a\x4b\x49\x52\x27\x49\x99\x9f\xf9\xda\x00\x9b\x02\x82\x99\x7c\x5e\x2f\xc8\xcb\x43\x5e\xe6\x1d\xd9\xdd\x5d\xc3\x1c\x4b\x23\x96\xf0\xfd\xf6\x85\x11\xf8\xa7\x9d\x7d\x5b\x8e\x2d\x15\x0e\x6c\x87\x0c\xe8\x0f\x7f\x1d\xff\x9f\xca\xfb\x9d\x94\x37\xbc\xbb\x34\xa0\x3f\xef\x53\xec\xff\x54\xe1\xef\xa4\xc2\xc1\x9d\xba\x01\x0d\xfa\x9e\xf3\xfe\xa7\x02\xbf\x9d\x02\xd9\xc6\xce\x84\xff\x13\xee\xab\xec\x8b\x13\x18\xff\x56\x55\xe7\xed\xd4\xc4\x0c\xf8\x3f\xf6\x5d\x23\x81\x84\x3d\x40\x25\x72\xe8\xf2\x76\xaa\xfd\x3f\x48\xda\xd9\x99\x72\x38\xec\x44\x12\xba\x66\x96\x37\xc5\xe3\x20\x0e\x34\xe5\x67\xfe\x5a\x1f\xbb\x4e\x6b\x5e\x41\x8a\x6d\x1c\x7e\xa1\xd6\xb8\xb8\xa4\x71\xc2\x22\x6f\x3b\xfb\x33\xa0\x93\xd3\x52\x6f\x40\x5e\x91\x15\x81\x59\xfb\x66\x6f\x57\xde\x9f\xe0\x12\x49\x74\x78\xcf\x6e\x93\xc3\xc1\xa8\xb7\x30\x86\xce\xac\xd8\x34\xdd\xcb\x5c\x76\xa2\x8a\x81\x43\x2a\xf8\xb9\x19\xa7\x21\xb9\x1f\x6b\x7c\x62\xc4\x71\x3e\x9a\x5b\xb7\xdc\x20\xf8\x6e\xb4\xad\x13\x70\x93\xc3\x01\x06\x76\x81\x32\x45\xb0\x7f\xe5\xd4\x52\x9b\x67\x8e\xf0\xef\xf9\xda\x2a\x9e\x66\xf5\xed\x79\xbb\xe4\x05\xc0\xd7\xba\x04\xbf\xd5\x29\x16\x2f\x67\x5e\xa1\x0d\xb0\xfc\x40\x3d\xd6\x97\x21\x25\xc9\x7d\xb1\xf1\xfc\x52\x0d\xdd\xcd\x6c\x7f\x25\x0f\xa7\xf0\xca\x00\x99\x92\xec\xf0\xe4\x58\xb4\x5a\x44\x18\x5b\x73\x88\xae\xf8\xb6\x9e\xdb\x4d\x9c\x80\x1f\xef\x61\x79\x4a\x02\x3e\x0b\x54\x70\xf3\x96\x91\xb7\x3f\x31\xd9\xa4\x2b\x7f\x33\xde\x81\x60\x21\x0c\xb1\x63\x0e\x8c\xde\xe1\x20\x79\x35\x4f\xf2\x8b\xbd\x52\x9b\x3c\x5b\x3c\x18\x7b\x96\x58\x27\xd9\x7e\x27\xd2\x49\xb7\xb6\x07\xe9\x71\x75\xd1\xda\x5e\xe1\x30\xa0\xa9\x28\x5f\x1f\xd2\x05\x99\x1f\x90\x79\x90\xd1\xf0\x6b\x09\x40\x7b\xb9\xb8\x47\x3f\x82\x45\x53\x3f\x62\xbf\xd8\xa6\x2d\x17\x07\xc6\xee\x2d\x36\x11\xb3\x9d\x5f\xa4\x7b\x28\x01\x3f\xde\xe3\x8a\x12\x04\xbc\x52\x92\x70\x43\x42\xfe\xfe\x24\x87\x59\x9a\xfa\x9b\xf1\x6b\xcc\x44\x18\x62\xe7\x0e\xbd\x49\x5e\x0d\xbd\xc9\xed\x74\x9b\xbc\x58\x12\x18\xdb\xda\x58\x37\xd9\x96\x38\xd2\x4d\xac\xbe\x17\xed\x71\xa5\xf1\xfa\x5e\x21\x09\xb0\x21\x1c\x6f\x5f\xc8\x3e\x4d\x51\x95\x71\x2a\x7e\x8d\x19\xf0\x01\x5e\xee\xd0\x97\x64\xd4\xd0\x97\xfc\xc0\xe0\x13\x58\x4f\xda\x8f\x25\x12\xed\x19\x99\x0b\x54\x40\x69\x3d\x5e\x75\x8b\xea\xa4\x74\x12\x97\xf8\x76\xe7\xb1\x30\xb9\xf7\x2b\x22\xb6\xb1\xcd\xf7\xe1\xa7\xd6\x3e\x7c\x6c\xee\x69\x7b\x91\x04\xc3\x7c\x59\x05\x3f\x79\x4a\x80\x94\x96\x37\x5b\x4f\x6f\x32\x9e\x9e\x83\x8e\x03\xe7\x2f\x41\xdb\x68\x0a\x5d\x71\x89\xcd\xfa\xd4\xc8\xeb\x75\x79\x57\x90\x3e\xfd\xc6\xf0\xbb\xc3\xca\xfd\x62\x09\xc8\xa8\xfb\x48\x16\xf0\x50\x55\x1d\xc8\x6b\x05\xc4\x32\xf0\x15\xc6\xcc\x6e\x84\xa4\x41\xf7\x09\x0a\x3f\xc6\x2a\xf8\x79\xf6\xaf\x04\x63\x04\xc5\x99\x46\xae\x6e\x0a\xbf\x9d\xf3\xac\x90\x43\x06\x2e\xdf\x1c\x92\x9e\xb5\x5d\x4f\x0e\x95\x51\x56\x61\xb4\xaf\x97\x7a\x6e\xf3\xee\x33\x1f\x63\x96\x81\x63\x05\x2e\x8d\xf3\x63\x9f\x54\x7d\xcb\x5b\xf5\xd6\xac\xe8\x11\x4b\xe2\x3c\x31\xfe\x0a\x1b\xd2\xd6\x55\xd9\xb2\xe3\x44\xac\xc4\xab\x56\x06\x35\x5f\xf0\xf1\x50\x32\x5f\xee\x70\xea\x79\x57\xe0\x23\x15\xe3\x10\x7c\xee\xa8\x94\xcc\x92\xc6\x30\x9a\x2e\x7b\x0b\xc6\xbf\xae\x1d\xb3\x1e\x9d\x09\x7f\x0f\x8e\xbf\xa6\x9d\x3b\xfb\x7e\xfa\x9d\x64\xdc\xd3\xce\x9d\x7d\x7f\x23\x8e\xef\x6b\xe7\xfa\xcd\x4c\x1c\xbe\xd8\xf4\x0d\x2d\xdc\xd7\xcc\xdd\x86\xf7\x16\xfc\x7e\x45\x33\x77\x9b\xdd\xef\x22\x5f\x7f\x33\x77\x1b\xdd\xef\x22\xdf\x13\xe2\x01\x7d\x37\x4e\x40\x5f\xc6\xf0\x06\x5f\x69\xb2\x6b\x8d\xbc\xfb\x32\x10\xcd\xd8\x54\x45\x7f\x61\x41\x03\xbd\xff\xd8\x59\xb9\x8f\xf3\xaf\x69\xc3\xa8\x45\x63\xc3\x6f\xcd\xea\xe3\x6d\xdc\xd3\xe3\x91\xf3\xf0\x57\x49\xb5\xcf\x6b\xdc\xd1\xe3\x37\x61\xf5\x9e\x36\xfa\xaf\x97\x7d\x8d\x25\x7f\xed\x10\xfc\x8a\x26\xee\xb3\xb1\xaf\x67\xf4\xe1\x26\xee\xb3\xb0\x6f\x2e\xd1\x1e\xe7\x70\x97\x7d\x7d\x73\x89\x62\x5e\xc1\x33\x55\x2b\x13\xd6\x5b\x04\x1f\xad\xa5\x8a\x03\x01\x7c\x5e\xbd\x0b\x5e\x73\x6c\x8c\x71\x65\x93\x7b\x6b\x98\x2b\x4e\xb3\xc1\x90\x83\x88\x5f\xc4\x36\xa2\x7c\x68\xc6\x47\x88\x47\x0f\xcf\x5d\xf3\x3c\x72\x1a\x7a\x90\x80\x46\xa7\x02\xf8\xaa\xf6\x46\x11\xd0\xe8\xd4\xaa\xbe\xaa\xbd\x51\x04\x10\x71\x8c\x73\x96\x0f\x12\x40\xc4\xf1\x68\x7b\xa3\x08\x20\xe2\x78\xb4\x3d\x9c\x80\xfd\xa0\xe9\xb0\xb5\x8e\x98\x70\x1e\xab\x8f\x9a\xda\x43\xad\x8d\xa9\x8f\x1a\xda\x43\xad\x8d\xa9\x8f\x9a\xd9\xd7\x49\xb2\xa7\x3e\x6a\x64\x5f\x27\xc9\x51\xad\x01\x13\xfb\x3a\x49\x66\x88\xcf\x51\xaf\x20\xf7\x0b\xd6\x9c\xe4\x1f\x90\x6c\x3f\x01\x47\x34\x8f\xb7\x37\x8a\xc0\x00\x7b\xa7\xaf\xed\x9f\x4d\x60\x80\xbd\x7b\xda\xc3\x09\xb8\x4f\xc6\x0d\xb4\x0f\x23\x93\x47\xc4\xdb\x57\xdf\x31\xbd\x87\x5b\x1b\x53\xbf\x9f\xb7\x47\x44\xdb\x57\xbf\x9f\xb7\x7b\x5a\x43\xeb\x0f\xe8\xd1\x89\xea\xdc\x4f\x2a\x72\x5f\xdc\x77\x18\xcd\x80\x07\xe8\x77\x32\x24\xfb\x93\xfd\xbc\x2f\x46\xe5\xa3\x49\x4c\x5d\x76\x73\x31\xd5\xd7\x2c\xbc\xb7\x28\xae\xa0\xae\xb2\x0c\x06\xf0\x8b\xd9\x50\x88\x6b\x52\x14\xdf\x8c\x90\xc8\x14\xc3\x1b\xd3\xb0\xe7\x95\x62\x8e\xa8\x32\x1b\x60\x89\x8d\x00\xc2\xb3\x25\x1c\x7d\x96\x6c\xf0\x63\xd6\x58\x9a\x23\x85\x38\x4c\xef\x5e\xd1\x20\x14\x55\xfe\x05\xf4\x9e\xa8\x81\xe3\x91\xcc\xfd\x67\xd3\x7a\xc9\xde\x29\x9c\x5e\x92\x8f\xca\xc7\x24\xaa\xee\x89\x20\x57\x32\x2d\x1c\x9f\xf1\xf4\x9f\x0a\x43\x2f\x7b\xf6\x53\xbe\xd7\x84\xfa\x48\x3e\x6c\x45\x06\x51\x7e\x1b\x03\xb9\x19\x0a\x11\x7c\xf2\xe9\x3f\x80\x85\x5e\x38\xed\x21\x7b\xa7\x70\xfc\xf4\x1e\x95\x8c\x49\x51\xdd\x73\x40\x6e\xa7\x5a\x38\x1e\xf9\x0c\x9c\x7e\x42\xef\xbd\xf6\x53\xbe\x53\x44\xbd\x24\x1f\x95\x92\x49\x54\xde\x25\x40\x2e\xc9\x9a\x28\x1e\x19\x0d\x1c\x35\x42\x6f\xdf\xf6\x12\xbe\x53\x44\x7d\x14\x1f\x95\x90\xa4\xf9\x99\x14\xc5\x15\x3c\x11\x0b\x8f\xb3\x6f\xa7\x9b\x87\x2e\xc0\x42\x37\x49\xe6\xf4\xe7\xfe\x9b\xb1\x03\xe7\x6c\x06\x50\x79\xbf\x02\x76\xb8\xfe\xbf\x2e\x55\x87\x3c\xa6\x60\x6a\xcd\xba\x7c\xca\xeb\x87\x85\x3e\x8e\x33\x5b\x38\xef\xe6\xb1\x8c\x19\x0c\xaf\x3d\x1b\x39\x0e\x4c\x34\xb6\xc1\xc7\xaf\xf5\xc3\x57\x08\x7b\x52\x76\x78\x93\x46\xc5\x71\xcc\x6f\xe7\x1a\xa7\x8d\xe2\x80\x39\xca\xaa\x4e\xd2\xbc\xfb\xb2\x8d\x66\xbb\x43\x5e\x74\xa4\xd9\x26\x45\x7d\x4a\x7e\x10\xe5\x3f\xcf\xe2\x0f\x82\x0f\x99\x12\x87\xff\x61\x1c\xfb\x52\x2d\xf4\x67\x64\xd1\x8d\x2d\xf1\xc6\x96\xf1\x87\xdb\xfe\xd2\x75\x55\x29\x33\x1a\xc8\x24\xa7\x36\x25\x6d\x4b\xdb\x58\x9d\x85\x01\x6f\x11\x25\x75\x4d\x92\x26\x29\x53\x79\x13\xe3\x5c\x65\x49\x11\x56\x35\x29\xed\xeb\x29\x02\x66\xa4\xb4\xd1\x71\x2d\x4b\x7e\x01\x1e\xa7\xe5\xaf\xf6\xee\xac\x97\x42\xf9\xc1\x19\xfd\xde\xb6\x3c\x7e\x66\x3f\x1c\xba\x8c\x07\xdf\x01\xde\x81\xd7\x1a\x19\x63\xd1\x21\xc9\x48\x20\x3a\x90\xe5\x49\x51\x1d\xaf\xc6\x2d\xe7\x43\xd5\x9c\x79\xaa\xdc\x22\xe9\xc8\x0f\xf1\x24\x9c\x2d\xdf\x7f\xd8\x85\xe7\xb6\x17\xde\x5b\xd7\xbd\x45\xed\x34\x19\x44\x73\x91\x53\xa4\xba\x74\xbb\xf0\x5c\xfd\x66\xa0\xab\xbf\x11\xdc\xca\xc0\xac\x7c\x78\x00\x09\xc7\x90\x12\xca\xcb\xbb\xe4\x13\xf7\x09\x27\xf6\x49\x86\x0e\x04\xa3\x11\xf7\x7a\x8e\xf3\xd8\xa3\xbc\x31\xc4\xaa\x89\x14\xbe\x48\xbd\xb1\x77\x74\x74\x66\x26\x50\x0a\x27\xa1\xd9\x07\x77\xb6\xc1\x4f\x25\xce\xeb\xd7\x60\x63\x4d\x81\xf6\xa1\x44\x1f\x0e\xe0\xb6\xc8\xeb\xad\x4e\xcd\xf3\xea\x18\x6f\x48\x91\xb3\xa6\xaa\xed\xb7\x75\xc7\x8e\x98\x05\xf2\x54\x26\x9d\x6f\x6c\xfa\x6c\x94\x5c\xe5\x04\x13\xe3\xf3\x8b\x56\xa1\xaa\x96\x97\xd7\x31\xb3\x92\xa8\x66\x3d\x97\xd9\x7b\xd0\xf2\x3b\xf6\xc6\xd3\x12\xbe\xa4\x3e\x5d\xa9\x2c\x40\xda\x2c\x38\x4d\x99\xc3\x05\x3e\xea\x3e\xd3\x48\xf0\xcc\xa4\x73\xae\x55\xd2\x54\x9d\x63\xa7\x45\x1d\x2b\x53\x4e\x09\xd8\xa4\x58\xf3\xda\x2f\x7e\x41\x57\x1e\xb0\xac\x96\xcc\x83\x83\x1c\x0f\xdc\x1d\xe1\x0b\x6c\xde\x71\xb3\x89\x20\xda\x77\xe5\xc7\x08\x3c\x7c\xc6\x54\xed\x5e\x5a\x8b\x91\x7a\x72\xfd\x8d\x92\xe0\xb9\xc5\xdc\x3a\xcc\x8d\x7f\xd4\xbf\x9a\x49\x98\x7b\x5e\x30\x33\x06\x39\x07\xad\x62\x9d\xd4\x83\xa5\xea\x0a\x58\x0a\x24\x6b\x60\xa3\x03\x4d\x3d\xa9\xda\x37\xd2\x3c\x48\xb2\x81\x56\x3e\xda\x37\xa7\x7c\x60\xef\xfc\x6d\x36\x33\xc0\x7b\x21\xf9\xde\x70\xfc\xa8\xab\xaa\xa2\xcb\xc1\x20\x4c\xf6\x6d\x55\x5c\x3a\x62\x3c\x6a\x6d\x5d\x2f\x64\xef\xb0\xe7\x05\x1d\x1a\xf2\xe1\xfc\x9e\x7c\x20\xd3\x68\xb1\x1b\x31\xfc\x04\x27\xc6\xb8\xdb\xe0\xe8\x1b\x88\xdf\x55\x46\xba\xa4\x70\x0e\xac\x74\xc9\x92\xb6\x28\x54\xf7\xde\x26\x44\x16\x97\x41\x25\xb2\x78\x3b\x1b\x90\xee\xa1\x0c\x6f\x8d\x72\xdb\xf3\x53\x0e\xf3\xd2\x4c\x83\x36\x8b\xed\x9c\x7f\xeb\xa1\x0c\x2a\x23\xef\xfe\x81\x37\xd3\xe1\x7d\x48\xc9\x48\xd2\x34\xd5\x67\x44\xf5\x56\xc2\x97\xd8\x8c\x6d\x91\x73\xe2\xfc\x66\x2b\x1b\xe4\x86\x62\x02\xab\x29\x73\x36\x5f\xc6\xef\xcd\x6c\xea\x60\xd2\xe4\x2c\xc8\x07\x87\x8d\xa3\xc7\x70\xaa\x07\x6d\x31\x1a\x03\x0d\x7e\x15\x7d\x66\x3d\xde\x06\xd4\xd5\xd0\x07\x5b\x40\xa9\xb3\x2d\xd1\xf8\xfd\xce\x7c\x7d\x93\x99\xb9\xb7\x25\xa3\x35\x7e\x34\x00\x6b\x0f\x93\x96\x6c\xce\x7a\x9d\xdf\xdf\x5e\x2c\x5b\xdc\x81\xef\x97\x68\x73\xf2\xf5\x4c\xb7\xc1\xd1\xc6\xe0\x34\x66\xae\x40\x91\xe6\x50\x93\x80\x6d\xbe\x41\x13\x5e\xbd\x79\x4d\x62\x4c\x23\x75\x55\xb3\xf7\x28\xdc\xb1\x09\xd8\x87\xd1\xd0\x54\xcf\xd1\xe2\xf1\x59\x35\xbb\x3c\xad\xa0\xdf\x36\x9d\x35\xcb\xef\xe4\x09\x32\x7b\x82\x39\x37\x00\x65\xef\x82\xbd\x4d\x00\x2a\x13\x8b\xbb\xd5\x47\x20\x99\x99\x4d\x9b\x73\x52\x28\x61\x3a\x9e\x82\x87\xe0\x12\xea\xbb\xd4\x2f\xe1\xae\x3f\x30\xe1\xae\x0b\x30\xe0\x76\xa0\x66\x3c\x29\xb2\x30\x73\xbc\x2e\xac\x05\xfc\xc2\x5e\xc0\xaf\xf1\x4d\x93\x27\xfa\xd3\x13\x76\xee\xe9\x8f\xa5\x06\x35\x65\x04\xda\xec\xf4\x82\x44\xef\x42\x04\xfc\x35\x58\x81\xf1\x1c\x31\x43\x9f\x58\x7f\x6f\x93\x43\x87\x5a\xad\x19\x3f\x7c\x9d\x7f\x31\x9b\xb4\x2e\xc0\x4c\x5d\x26\x05\x53\x26\x1e\xcf\x51\x26\x5e\x4e\x79\x67\xd8\x88\x24\x8c\x4f\x4b\xd3\xa9\x33\x70\x65\x77\xdc\x19\x1e\x24\xcc\xd5\xa5\x86\xc5\xb2\x78\x4f\xe4\x64\x80\xbc\x03\x46\x04\xff\x8a\xdb\xe0\xdd\x4e\xeb\x76\xe7\x58\xdc\x68\xe6\x58\xa6\x5a\xc3\xfa\x65\xcf\x0d\xb7\xc3\x7b\x6c\x8c\x9b\xa9\x35\xe1\x5b\x6d\x18\x4e\x07\xe6\x0c\x06\xe5\x96\x10\x70\x46\x90\x9e\xf3\x81\xc9\xda\x17\x52\x8b\xef\x60\xc6\xe8\x32\xa7\x30\x5e\xdb\xe0\x02\x10\x3e\x73\x83\xae\x1a\x00\x5b\xe1\x4a\x88\x1e\x5e\x90\x6e\x8b\x75\x94\x5f\xdb\x83\xcc\x19\x5d\xa7\xf5\x6d\x65\xcb\x87\xb5\xfb\xb4\xcd\x85\x69\xb5\x03\x7d\x3e\x10\x01\x28\xf6\x2a\x1b\xf0\x81\x74\x5a\xa4\x5f\xb9\xa3\x79\xbe\x39\xa2\x0d\xe3\x16\xa5\x49\x53\x5d\x5a\x2c\xa1\xbc\x86\x89\x80\xdc\x5d\x17\xdb\xe9\x6a\xe0\xeb\xf7\x66\xe5\xe7\x88\x5d\xc6\x33\x5c\xb0\x4b\x0f\xd9\x3c\x93\x29\x06\x45\xfa\xdd\x80\x39\xe4\x01\x38\xde\x38\x4f\xd7\x8b\x42\x78\xe6\x5e\xc3\x83\xb8\x34\xc4\xdd\x5f\xa7\xbc\x24\xaf\x9d\x5b\x5a\x37\xe4\xc5\x4e\xb2\x83\x53\xbc\xca\x33\x6d\x77\x10\xf6\x85\x3d\x7d\x0a\xa0\xe4\xae\xc2\x6f\x63\x70\x46\x58\x0e\x1c\x1f\x01\x66\x91\x38\x53\x22\x40\xf0\xf5\x86\x77\x96\x47\x01\x7d\xad\x08\x3c\x40\xcc\xc2\xa3\x23\xa0\xa9\x8a\xa1\xd0\x4f\x2d\x3c\x84\x4c\x96\xef\xc7\x6c\xa2\xc3\xcf\x04\x83\x69\x3a\xdd\x4f\x03\x76\xd6\xd0\xd5\x07\x97\x71\x2e\x82\xd1\x89\xb6\x98\xc0\x19\x1b\x61\xdb\x55\xf5\x0f\xe6\x3e\x47\x10\x7f\xf0\x01\xe3\x38\x9e\x7e\x08\xa8\xf0\x3e\x8c\xc8\x8e\xd5\x55\x01\x13\xf9\xc4\xa6\x3f\xf1\xd0\x84\x24\x1b\x52\x93\xa4\xdb\xf2\x7f\xc2\x57\x29\xdd\xba\xa9\x8e\x79\xb6\xfd\xd7\xff\xfc\x0b\x6d\xf2\x6f\x72\x6f\x38\xfa\x6b\x9e\x36\x55\x5b\x1d\xba\x48\x35\xdf\x76\x49\xd3\xfd\x99\x76\xa4\xed\x9a\x9f\xbf\xff\x6e\x1d\xf3\xff\x7d\x3f\x09\x48\x99\x01\x40\xac\x01\xff\x53\x54\xfe\xdb\x97\x9a\xfc\x3c\xc5\x24\x0d\x8c\x88\x6d\x2d\xab\x4d\xd3\xb7\x10\x3e\x97\x85\x5f\xfe\xcb\xaf\x14\xbe\xa0\x6f\x2b\xe4\x77\x10\x7e\xec\x13\xfe\xfa\x0e\xe1\xab\x8f\x5e\x76\x39\xff\xfe\xa5\xb6\xbb\x9d\x21\x66\xef\xda\x8c\xda\xec\xb2\x5b\x11\x6f\xae\xd2\x79\xc9\x65\x41\x00\xad\xf9\x55\x02\xc7\x56\xbd\xca\xcd\xa9\xfa\x15\x4b\x60\xac\x56\x50\x48\x4c\xc2\x26\x99\x43\x72\xce\x8b\x2f\xdb\x96\x34\xf9\xa1\xb7\x03\xf6\x43\x86\xdf\xff\x7d\x16\xcf\x37\xdf\x7b\xeb\x50\xe6\xd0\x3a\xc9\xf7\xc6\x74\x9b\xe5\x69\xd2\x55\x4d\x8b\xcc\xa4\x32\x7e\x66\xb9\xf8\x65\xe0\xa7\x16\xd3\xcb\x9d\xdc\xdb\xb5\xa2\xc1\x79\xfc\xde\x7e\x04\x71\xc4\x8b\x4e\x08\x4b\xee\xfb\x4e\x21\x5c\x19\x4d\x81\xcc\x81\x88\xf5\xe2\x9d\x32\x5a\x76\xdb\x70\xb3\xd9\x60\x19\xed\xe1\xdb\x69\xe0\xa1\x0e\xff\xa7\x52\xb0\xf7\x10\xfc\x1d\x79\xd5\x08\x8c\x51\xc3\x1a\x41\x8f\xa4\xb7\x57\x0b\x5c\xd1\x95\x19\xe8\xca\xcc\x97\x4e\x03\xea\x5a\x26\xf9\x77\x94\xc6\x9d\xe5\x52\x46\xaa\xf4\x37\x78\x88\x40\xef\x85\xec\xe0\x1b\x11\x46\x3e\x3d\x88\xff\xa6\xae\x8f\x33\xcd\x3e\x2f\x5c\x61\x5d\xf6\x89\x79\xd4\x0b\x17\x8f\x8e\x70\xb5\xff\xaf\xe5\x3c\x77\x86\xe9\xd2\x19\xa6\xe6\x2b\x1f\x73\x23\x56\x56\x3a\x60\xb8\x33\xb5\x36\x98\x01\xf3\x07\x8f\x93\xe0\x83\x0e\x9e\x20\xbd\x45\x69\x41\x92\xe6\x90\xbf\x8a\x71\x3b\xd1\x05\x2c\xec\x9f\xe8\x07\x3b\x34\x86\x2a\xb1\x51\xc2\x43\x71\xc9\x33\x17\x51\x94\x0b\x74\xba\xa6\x90\x28\x6a\x7d\x31\x89\xa8\x93\x08\x4f\x55\x93\xff\x46\xab\x15\x01\x2f\xe0\x59\x29\x24\x7a\x1f\x8e\x20\xb3\xef\xa8\x6c\xab\x62\x9f\x68\x8e\x61\x19\x40\xe3\x69\x25\xe4\x53\x3c\xcf\xba\xcc\xa8\xe8\xc7\x12\xa4\xca\xe4\x45\x55\xa0\xbf\xeb\x62\xc8\x83\xf8\xd3\x00\x8a\x0f\x89\x16\x8e\x2c\x35\x51\xe5\x89\x1f\x1b\x59\x95\x0b\x74\xf6\x30\x9a\x42\xe2\x7f\x29\x90\x3c\x2a\x04\xe0\xaa\x48\x20\xc1\xaf\x72\x0a\xcd\x28\x74\xd7\x83\x72\xc6\x64\x47\x9b\x6f\x3d\x26\xe4\x31\x18\x60\x18\x23\x8c\x01\x51\xf4\x28\xa5\x02\x75\x99\x2a\x42\x75\xe2\x91\xbe\x21\x65\x57\xae\x98\x10\x85\xbc\xa8\x50\xb6\xfb\xaa\x3b\xdd\x22\x3e\x97\x89\x6f\x9c\xe6\x0e\xdc\x88\x57\x5c\x60\xaa\x53\x70\xd0\xe8\x8f\xf9\xb9\xae\x9a\x2e\x29\xbb\x1b\x48\x98\xaa\x5f\x0b\x80\xf0\x53\x9e\x11\x63\x4d\x0c\x81\xed\xa9\xfa\x6c\x72\x05\xa1\x79\x29\xbe\x2c\x5e\xc1\xc7\x46\x79\x2c\x87\xcd\xb0\x8c\x38\x9d\xc2\xb6\xf1\x4f\x71\x90\xec\xdc\xcd\x43\x7b\x22\xee\x7d\x46\x5a\x9d\x14\x62\x6c\x67\xa4\xf4\x30\xbe\x73\xf8\x81\x6c\x27\x87\x43\xfe\x6a\x9d\x68\xb8\xfd\x29\x3c\xb7\xe1\x4b\x4e\x3e\x53\x34\x31\x5f\x67\xe4\x25\x4f\x09\xf7\x01\xb7\x48\xf4\x35\x7c\x6d\x27\xea\xf7\xf6\xac\x7f\x3f\x67\xfa\xf7\xe2\xe8\x13\xa9\xff\xe1\x79\x4d\xdf\x2b\x71\x36\xa8\x30\x44\x3e\xda\xba\xc6\x0b\x0b\x9b\xea\x33\x24\x74\x82\xdd\xe9\x32\x7f\xbd\x94\x14\x05\xa8\xe8\xfd\xf0\x2e\x5c\xa6\xea\xd5\x66\x33\x35\x7a\xd5\x9e\x47\xf6\x0a\x20\x3a\xbd\xb2\x61\xfe\x5e\xb5\x67\xd8\x2b\xa7\xde\x70\xaf\xf8\x27\x79\xbb\x57\xd3\x29\x0d\xe6\x40\xb7\xce\xd9\xc8\x6e\x01\x44\xa7\x5b\x36\xcc\xdf\xad\x73\x06\xbb\xe5\xd4\x1b\xee\xd6\x94\x7d\xc7\x06\x1d\x00\x96\xda\xdf\x01\x80\xe8\x74\xc0\x86\xf9\x3b\x50\x1c\x61\x07\x9c\x7a\xde\x0e\x38\xa3\x85\x0f\x6b\x68\xaf\xd6\x40\xbb\xdb\x52\x05\xc5\xf6\x7c\x07\xc5\x01\x2b\x11\x24\x81\x9e\x86\x49\x2a\x0d\x89\xca\xfe\xa9\x44\x4f\x49\x75\x93\x97\xdd\xc0\x8c\xc3\x71\x3c\x55\xfa\x55\x6f\xe2\x3a\xda\x47\xc0\x7e\x03\x60\xc8\xd0\x06\xb0\xda\x1e\x33\x10\x5d\x10\x82\xe9\xed\xf4\xed\x0f\xff\x37\x00\x00\xff\xff\xb9\xfe\x06\x55\xaf\x60\x01\x00") func web_uiStaticBootstrapMinCssBytes() ([]byte, error) { return bindataRead( @@ -171,12 +171,12 @@ func web_uiStaticBootstrapMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web_ui/static/bootstrap.min.css", size: 99962, mode: os.FileMode(420), modTime: time.Unix(1471050089, 0)} + info := bindataFileInfo{name: "web_ui/static/bootstrap.min.css", size: 90287, mode: os.FileMode(420), modTime: time.Unix(1485366992, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticConsulLogoPng = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x84\xbb\x05\x58\x54\xef\xd6\x37\x3c\x43\x23\x0d\x52\xd2\x29\xd2\x21\x20\x28\x30\xd2\x2d\x31\x43\x77\x8c\x82\x30\x74\xd7\xa8\x08\x88\x94\x20\xad\x84\x02\xc2\xa6\x41\x42\x5a\x4a\xe9\xd0\x91\x90\x50\x9a\x11\x44\x40\xc0\x21\xbf\x3d\xfe\xcf\x39\xdf\xfb\xbe\xd7\x75\x9e\x07\x63\x66\xef\xb5\xee\x15\xbf\x15\xf7\xba\x87\x3d\x4f\x8c\x0c\xb5\xa8\x2e\x5d\xb9\x04\x81\x40\xa8\x74\xb4\xd5\x4d\x20\x10\x42\x6e\xf0\x1f\x1b\x19\x09\x78\xa7\x61\x64\x17\xff\xc2\xea\xaf\x61\xe1\x6f\xea\x85\xf4\x0f\x72\xf4\x75\x85\xdc\x76\xf1\x72\x72\xe5\xd6\xf1\x74\xbc\xeb\x6a\xe2\xea\xe8\x12\xe2\x33\xe0\x7a\x0b\x5c\xc1\xeb\x06\xb7\xf0\xb7\x30\xd0\x57\x74\xf6\xf2\x14\x77\xc4\xf3\x88\x07\x7b\x7a\x43\xf0\x3f\xb7\x54\x82\xbd\x1d\x9d\xef\xbb\xfa\x73\x3b\xb9\xde\x75\x43\x29\xf1\xee\xb4\x76\xf2\x72\xbb\xb9\x28\xf1\x9a\xcb\x1a\x48\x1a\x78\xab\xb9\xde\x73\xd3\x0e\xf5\x75\x35\x0d\x35\x84\x3b\x87\xde\x77\x56\x70\xe1\x55\x51\xe6\xbe\x15\xac\x08\x0a\xf0\x74\xf5\x77\xe4\x0e\xf6\xf4\x40\xf9\x29\x06\x2b\xf1\xfe\x95\xab\x08\xbe\xc7\xdf\x96\xe0\xe5\xfe\xcb\xe2\x7f\x5f\x89\xf7\x1f\xa3\x2c\x0c\x8c\xb8\xd5\xbc\x7c\x5d\xb9\x65\xc5\x65\xc4\x9c\x25\xa5\xa4\xb8\xe5\xe4\xc4\xa5\xae\xcb\xca\xc9\x49\x89\x72\x4b\x4b\x4a\x49\x4b\x48\x82\x7f\xe5\xc4\xa4\xae\x2b\xca\xca\x29\x4a\xcb\x73\xff\xeb\x87\x17\xd4\xe6\xeb\x82\x54\x34\x51\xd7\xfc\x97\x2e\xf0\x4a\x89\xf7\x9e\xbf\xbf\xb7\xa2\x84\x44\x50\x50\x90\x78\x90\x8c\xb8\x97\xef\x5d\x09\x29\x05\x05\x05\xbc\x0c\x69\x69\x31\x90\x43\xcc\x2f\x04\xe5\xef\x18\x2c\x86\xf2\xe3\xfb\xb7\x04\x75\x57\x3f\x67\x5f\x37\x6f\x7f\x37\x2f\x14\x37\xfe\xda\xd1\xc9\x2b\xc0\x5f\x89\x97\xf7\xdf\x2e\x78\x7a\xff\x47\x2c\xca\xef\x5f\x30\x81\x80\x49\x04\x3b\x7a\x4b\x48\x89\x4b\x4a\xfc\x1f\x8c\x06\x06\xff\x33\xab\xa7\xe7\x7f\xb8\xfd\xfc\x4d\x5c\x91\xff\x33\xb7\x1f\x3c\xc4\xdb\x55\xc2\xc4\xd5\xcf\x2b\xc0\xd7\x19\x0c\x1c\x92\x0f\xbf\xd8\x5b\x51\xcd\xd7\xd5\xd1\xdf\xcb\x17\xee\xe5\xe5\xf1\x6f\x14\x8d\xee\x79\xf9\x7b\xf9\xdd\xf3\xf2\xe6\x56\x33\x95\xe3\x16\x32\x77\x43\xb9\x78\x05\xf9\x5d\xfb\xcb\x6f\x60\xa0\xa8\x83\xf2\xf3\x77\x44\x39\xbb\xea\xa8\x2b\xf1\x82\x77\xc4\xdd\xdc\x5c\x14\xa5\xd5\x35\x35\x35\xe5\xae\x4b\xa9\xc9\xc9\x82\xa8\x6b\xc8\xa8\x6a\xaa\xcb\xaa\x4a\x2a\x48\x4b\x6b\x6a\x5e\x97\x91\xbe\x2d\xf3\xef\xb5\xea\x5e\xce\x01\x9e\xae\x28\xff\x7f\xaf\x75\xf9\xff\xd7\x4a\xff\xd7\xb5\xf8\x54\xf8\x67\xb5\xab\xaf\x5b\xa0\xab\x8b\xa6\xaf\x97\x27\xf7\x5f\x97\x15\xdd\xfe\xab\x2d\x32\x9a\xff\xdd\x96\x7f\xd6\xba\xfc\x77\x5b\x24\xff\xeb\x5a\x09\xd0\x18\x89\xff\x27\xd0\xff\xbe\x05\x66\x0f\xfe\xed\x7f\xd2\x16\xbc\xf8\x4f\xe2\xbb\xa2\xc0\x6c\xf7\x05\xd3\xda\xec\xeb\x9a\x06\x04\x92\x7a\x57\x47\xfd\x36\x3c\x78\x76\xeb\x25\x29\x9a\x5f\x03\xf3\xc1\x7e\xcc\xa3\xe5\xa6\xef\xe8\x6d\x5f\x69\x48\x2a\xbf\x9e\x11\xf9\x43\xf2\xdb\xc4\x7d\x68\x3a\x0d\x7d\xa1\x35\x08\x92\xee\x32\xe3\x77\xb5\xcb\x74\x29\x45\x0f\x9d\xd4\x1f\xf2\x0f\x08\xc5\xad\x08\x29\xd8\xcd\xbe\xdc\x3c\x5f\xf8\x01\xcc\x7c\x6d\x05\xff\x48\x2a\x7d\xb2\x3d\x38\x89\x58\xbc\x40\x05\xd1\x04\xb5\xd8\x23\x82\xa6\x3a\xcb\x17\xca\xf9\x87\xa4\xa1\x7f\xeb\x6f\x83\x48\x56\xf5\xef\x1b\x08\x0b\xed\xdf\x97\x2e\xf4\x3f\x97\x0e\xb0\x7f\x5e\x09\x09\xfe\xbe\xa0\xa1\xff\xf0\x53\x92\xfd\x5f\x54\x49\xee\xff\x8b\xfa\xef\xc5\x24\x44\xff\x27\xf5\x7f\x11\xfd\x2f\xea\xff\x22\xfa\x5f\xd4\xff\x59\x34\x6c\xee\x37\x2d\x01\x04\xed\xee\x3b\x6c\xa8\x75\x52\x5d\xf7\x3d\x5f\xa0\x72\x47\x66\xf3\x93\x04\x93\xcc\xe6\x18\xd3\x14\x97\x3e\xa6\xfa\xcd\x28\xce\x52\xae\x20\xea\xa8\xbc\xe4\x86\xeb\x99\x8e\x60\xfb\x71\x43\xd9\x98\x12\x57\xdd\x42\x6f\x7b\x69\x9d\xbd\xb5\x57\x84\xe1\xe4\x71\x8d\xe8\xfd\x63\x1a\xae\xc9\xfc\x99\x29\xaa\xb3\x40\xed\x8b\xbc\xe2\x2b\x9f\xf3\x47\xbe\xec\x20\xa4\x6d\x2f\x44\x4e\x66\x44\xcf\xe6\x58\x8f\x8f\xfc\x70\x63\xea\x5b\x3f\x58\x8f\xeb\xef\x9e\x1d\x59\xfe\x08\x4f\xf5\x58\xc9\x46\xfa\x29\xfb\xf5\xe2\x04\xf9\x3a\xc7\xd6\x14\x2e\xe8\xf8\xf7\xc3\xbd\x16\x47\x8f\xea\x8d\x95\xf9\xb2\x7f\x2c\x6b\xe2\xf4\x59\x57\x65\xea\x27\x54\xfc\x1e\x7c\x90\xcd\xdb\x1f\xae\x23\x3e\xef\x30\x8e\x8a\x92\x8b\xb1\x78\xab\x2c\x63\xad\xed\xa1\x75\x73\xc7\x83\xb2\x96\x65\x3f\x24\x69\xaf\xde\x23\x61\x37\xef\xe3\xbb\x51\xbf\x0e\x8a\x1d\x6b\xbf\xe3\xa9\x7b\x1f\xea\xbe\xf9\xe5\xb5\xb6\x6b\xaa\xe4\xd5\xbe\x38\xba\xb7\xae\x7c\xb1\xde\xa7\x9a\x3a\x12\x75\xee\x66\x92\x76\xbe\xe6\x81\x19\x3e\xfd\xf1\xb8\xcf\xeb\xe7\xa2\x54\x28\x7b\x1a\x75\x5f\x50\xee\x4d\xaf\x5e\xb4\x7f\xce\xd1\x4e\x80\x34\x1f\xe9\x3d\xbe\xd7\x4a\xc3\x6b\x27\x77\x98\x7e\x39\xb0\x1e\xa8\xb0\xaf\x22\x3b\xe3\x72\x11\x8d\xbf\x62\xbb\x5f\x71\x5e\xd9\x9f\xff\x25\xcd\xda\xf3\xe8\xbe\xf1\x7a\x7e\xa2\x6f\xbd\xed\x78\x8f\x07\xcf\x7a\x5e\xe2\x0e\x89\xd2\xac\x83\x97\xe3\x87\xe6\x02\x16\x09\xa1\x2a\xe7\x2b\x44\x2e\xcb\xe1\x1b\xc9\x8a\x1f\x2d\x3e\x3a\xb8\x74\x34\x8e\x31\xb1\xe6\xba\x3c\x3f\xb4\xfd\xcd\x1d\x5c\x05\x7d\xa5\x64\x99\x09\x17\xab\x5e\xac\x28\x88\x92\xa8\x54\xb1\x37\x5c\xbb\x77\xed\x24\xdb\x9d\xf5\xe2\xe0\x7a\xb5\x40\x5b\x2a\xbd\x5d\x1b\xd2\xd0\xce\x48\x69\xf9\x22\xef\x67\x67\xa4\xea\xc1\xdb\x8b\xe3\x6b\x98\x0b\xf8\x9d\xe3\x1d\x2e\x73\x25\xec\x45\xd3\x3f\x81\x45\x93\x3b\xd4\x53\x23\x85\xcd\x4c\x2a\x4b\xac\x4c\x1b\xea\x2e\x66\x84\xcf\x7f\x64\x4c\x6c\xd0\x6c\xb4\x9d\xb4\x67\x70\xac\x5f\xfc\xbc\xe6\xa5\x9e\xb7\x87\x5c\x89\xc4\xf4\x2c\x94\xde\x5a\xea\x8c\x1a\xcf\xbd\xf2\x4f\xb0\xd5\x9f\x8c\xd8\x55\x14\x5a\x4d\xdd\x47\x60\xb0\x40\x43\x5b\x06\x8f\xba\x33\x32\x5b\xaa\xf7\x7e\x89\xbc\x00\x52\xfb\xa7\xc9\xfc\x8f\xc4\x81\x08\xe0\x26\x82\xa6\xd4\x44\x95\xfc\xaf\xaa\x52\xe1\xc6\x53\x37\x42\x2f\xc1\x8c\xf4\xef\xab\x26\x75\xcf\xe4\xd9\xe5\xea\x27\xee\x64\x29\xc6\xac\x36\x56\x2c\x37\x9c\x09\x5d\x9c\x37\xcb\x0b\x04\x85\xcc\xd0\x4b\x0c\x69\xd4\xae\xda\x37\x85\xa4\xa5\xd2\x69\xfe\xcd\x3a\x18\x2b\x49\x23\x52\x58\xee\x77\x54\xa7\x45\x43\xad\x3c\xe7\x9c\x69\x79\xcf\x9e\x9d\x84\x7d\x57\x67\x2e\xdd\xbb\x9e\xa1\x3a\x0d\xaf\x83\xfe\x15\x47\x55\xd2\xbf\x4a\x84\x2e\xe9\x2d\x2d\xcc\xdd\x37\xf5\xba\x3e\xec\x2d\xaa\x79\xef\xe1\x9b\x74\xbf\xfa\xf9\x5b\x2a\x51\xe3\x6c\xa9\x3f\xda\xae\xbd\xc3\xe4\x5e\xce\xf0\x83\xfe\xcd\xf0\xfe\xc7\x62\xc9\xb3\xea\x0d\x95\xee\xf7\x31\xc8\x25\xa4\x02\x09\x19\x55\x82\x83\x6c\x75\xbb\xd6\xe9\x30\xfd\xf7\x6a\xe3\xf9\xad\x80\xf4\xe6\x70\x86\x7f\x5c\x5d\x99\xd6\x8f\x19\xb9\x67\x91\x7e\x6d\x88\x6e\x5a\xf7\x80\xde\x47\x86\x13\xb2\xec\xaa\x81\x51\xb6\x13\x3b\x2f\x6f\x31\x3b\xe0\xf2\xc1\xbc\xdb\xf2\xca\x95\x2d\x94\x66\x06\x25\x93\x41\x21\xea\xde\xf9\x61\x65\xcd\x96\x54\x9f\xaa\x96\x84\x8d\xa0\x97\x07\x42\xed\xf8\x6a\xdb\xf5\x50\xc6\xb6\xaf\x8e\x73\x9b\x2d\xd3\xae\x92\x31\xfe\xb5\x00\x30\xb0\x3d\x90\xc6\x88\xf4\x56\x2e\x2e\x1a\x08\xf9\x50\xac\x76\x65\xe0\x3c\x37\x0f\xa4\x7c\x10\x8d\xa2\xb5\x67\x63\x80\x4a\x59\xd5\x65\xf3\x44\x8a\xbf\x55\x6a\xe4\x5b\x71\xba\x3d\x0a\x70\x20\xc2\x06\xff\xc8\x37\x12\x6e\x90\x34\xde\x3c\xeb\xb7\x8b\x3d\xc9\x9f\xa1\x1c\xd8\x41\x44\x19\xd9\x56\xe6\xdc\xce\xfa\xcb\x39\x6e\xeb\x21\xd7\x73\x18\x60\xf1\x89\x2d\xb9\xfd\x6c\x0a\xc2\x53\x93\x3d\x75\xb5\x57\x6c\xa6\x45\x35\x20\x1b\x8b\xc2\x50\x2d\x14\xfc\x53\xdf\x97\xfa\x01\xe3\xed\xc2\xd0\x86\x66\x01\xc4\x5c\x2b\x37\x89\xc7\xc0\x97\x2a\x3b\x31\x0f\xae\xd4\x45\x60\xd4\xd8\x56\x1c\xf5\x21\xe8\x2f\xf2\x5d\xfc\xb5\xb7\xa8\x87\xbe\x4f\xeb\x1d\x68\x62\x66\xa3\x89\xb8\xef\x32\x62\x1c\xed\xe4\xd4\x9c\xea\xf9\xd6\xcb\x46\x99\x9a\x5a\x6f\xfe\xed\x06\x0e\x09\xd3\xd4\xcb\xad\xe5\x0b\xbc\xa8\x12\x67\x1f\x55\x82\x1a\x23\x8f\x18\x17\xf9\x6a\xae\xd2\x2a\x73\xdb\x95\x91\x8f\x23\xd1\xa4\x7f\x7b\x85\xdf\xa7\xab\xe2\x3e\x73\x81\xac\x4d\xee\x88\xb0\xe3\x7c\x68\x57\xef\xf4\xdc\x8f\x7b\x98\xce\x5e\x81\xba\xc5\xe2\x96\xcf\x51\x34\xf8\xf0\xa1\x37\x6a\x00\x95\x93\x32\xea\xcb\xf2\x43\xb5\x2c\x3c\x50\xa1\x68\x83\x36\xab\xe9\xad\x8f\xd5\x7d\xab\x49\x73\xb7\x83\xff\xfa\x57\xb8\x78\xd7\xae\x38\xf4\x91\xbb\x3d\x66\x32\x9a\xa8\x60\xf9\x2d\x52\xab\x43\x10\x25\xb7\xc2\xef\xa5\xc9\xc9\x7f\x1d\x32\xee\xe6\x1e\x0d\x3a\xb7\xb4\x0a\xec\x94\xe5\xd1\x9b\x37\xac\xd3\x0e\x93\xc2\xae\x4d\xf7\xda\xe7\xd2\xc4\xe5\xb2\xe2\x0a\xdc\xaf\x38\x42\xd1\x86\xef\x41\xd7\xde\x3e\x15\xe8\x13\x78\x66\x7d\x20\x9c\xbb\x6d\x91\x98\x02\x79\x9e\x97\x59\x96\x64\x1e\x61\x1e\x50\xd8\x3c\x3f\x2d\x71\x10\x45\x88\x47\xa9\xe0\xf9\xd6\xeb\xd0\x37\xcd\xa9\xef\xe6\x4c\x21\xc0\x4d\xce\xe0\xca\x4c\x9f\x5c\xec\x75\xcc\xe6\x12\x52\x17\x02\x99\x25\xd1\xab\x81\x38\xf0\x56\x94\x1f\xa7\x72\x65\x9d\xf6\xd3\x58\x49\x72\x41\xbe\xd7\x3c\xc3\xb2\x60\xce\x00\xbd\x5e\xc6\x44\x6d\x32\x8a\xbf\x32\x3e\x4d\x4f\x02\x6c\x88\x0b\x44\x84\x99\x05\x92\x98\x96\xf0\xe6\x93\xaf\xf6\x2b\x6e\x98\x27\x00\x33\x03\x3d\x24\x8b\xb2\xad\x96\x08\xfd\xb8\x36\xba\xb9\xee\x5d\xe3\x9d\xd8\x6d\xed\x0e\x4a\x1e\x68\x1c\xd3\xd0\x7e\x68\xf5\x94\xc0\xc2\xf3\x69\xc3\x2d\x73\xba\x2b\xf8\x14\xec\x72\x99\x81\x1f\x40\x31\xd6\x8f\xdb\x15\x21\x0e\x91\x81\x87\xd2\x1e\xf6\x74\xd6\xa9\x38\x11\x44\xda\x38\xa4\xeb\x95\x03\x39\x13\x24\xa1\xd7\x57\x01\x85\x98\xe7\xfd\x29\x76\x75\x8d\x10\xc2\xd4\x77\x0c\xd8\x97\xe6\x31\x34\xa9\xdf\x57\x53\x25\xc0\xf7\x68\x0b\x16\x91\xf2\x8e\xd2\x50\x78\x40\xc7\x70\x7b\x98\x34\xa4\xcb\x22\x5b\xf8\x67\xdf\x63\xc4\xf8\x71\xfb\x70\x36\x0f\x14\x92\x45\x91\xe1\x00\xed\x7d\xb2\x1a\x38\xfd\x73\xa5\x51\x06\x67\x4d\x46\x0a\x79\x9b\x6d\x1e\x32\x5f\xac\xa8\x16\xd0\x88\x45\x76\x13\x40\x48\x64\xb8\x21\x3e\xb5\x0f\xb1\x57\x81\xab\xf0\xbb\x4e\xca\x90\x02\x87\x2f\xc6\x1c\x95\x2d\x3a\x01\x95\xcd\xba\xa1\x7f\x83\x47\x56\x53\xb4\x67\x1f\x6f\x8d\x3c\x40\x21\x24\x78\xa0\x68\xea\xfa\xe2\xe6\xec\x94\x0f\xf0\x58\x7a\x6a\x7c\x2e\x45\x0f\xc8\x01\x51\xf1\x7a\xc2\x2a\x29\xde\x10\x18\xb9\x85\x5d\x40\x5d\x73\xd1\x41\x35\x6e\x07\x8a\x8f\x2a\x23\x52\x09\xa3\xd5\x87\x59\xeb\x34\x69\x20\x06\x97\xd2\xd7\x35\x63\x85\x30\x6a\x00\x57\xd9\x21\x37\x3f\xde\xfa\x52\x26\x11\xc0\x90\xd1\x3c\xed\xe2\x2b\x50\x49\x4e\x0e\x81\x43\xac\xe9\x43\xb3\xb0\x4e\x18\x3e\x20\x88\x8e\x1e\x2f\xfd\x39\x9b\x48\x6e\x58\x15\x36\x0a\x50\x03\x2d\x87\x67\xa5\xc3\xaf\x96\xfd\x64\xdc\x53\xc7\x67\x9e\x91\xa2\x99\xa9\x2d\x37\x6a\xb9\xeb\x8c\x9c\x14\x42\xd4\x9b\xb3\xb4\xa7\x9e\x87\xe0\x30\xbc\x81\xa7\x8d\x2b\x91\xf4\x0a\xa4\x5d\x68\x1e\xa0\x9b\x23\xc0\x39\x59\xb5\xef\x50\x54\xd1\x30\xa0\x09\xbb\x0f\x24\x92\x91\xe3\x73\x5b\xf1\xc3\x0f\x44\x50\xbc\xc8\x9b\x56\x9a\xef\x10\x74\x9c\x85\xf5\x01\x31\xa6\xb3\x6f\xbb\xae\x43\x98\x07\x0a\x86\x05\xe6\x33\x8d\x7c\x70\x54\x1e\x39\xa2\xc6\x0c\xe1\x5e\x74\x3c\xbb\x8d\xb9\xd3\xc7\xb8\xf8\xb7\x74\xde\x92\x97\x3b\xb9\xe2\x38\x3a\x8d\x2a\x41\x4d\x90\xb5\xa5\x97\x4b\xf1\x5e\x16\x55\x1f\xaf\x77\x43\xf1\x50\x3d\x71\xa4\x99\x08\x2a\x3d\xe7\x41\x71\x25\x1b\x80\x8a\xba\x54\x6b\xdd\x2d\x33\x18\x8e\xc4\x30\x7a\xa0\xf9\xa0\xda\xfe\xd1\x48\xe0\x02\x30\x34\xf6\xd4\x03\x17\xf7\x0f\x4f\x02\x7c\x08\x79\xe0\xbc\xd4\xea\x41\x0a\x3e\xa7\x1c\xde\x4f\xff\xec\xbc\x30\x7e\xf9\xc6\x2a\x1b\x9c\xe1\xf5\xe3\xe7\x11\xc9\x40\x07\x4f\x95\x2f\x37\x9e\xd8\xe5\xec\xb5\x71\xce\x8f\x3a\x5a\x3c\x00\xdd\x85\x59\xe3\x9a\xb1\x21\x98\xab\xe4\xc4\xa0\x54\xee\x40\xbb\x42\x45\xdb\x39\xb6\x96\x79\x50\x09\xcc\xf1\x77\x69\x12\xa3\xf9\xf8\xb2\xa4\xcf\x49\x3c\xbe\x8c\xb9\xaf\x6c\xbd\x3f\xb2\xc6\xac\x02\x8f\xf0\xd4\x0f\x35\x0f\x39\x55\xe8\x8f\x96\xd6\x1f\x45\x13\x82\x01\xa2\x55\x0c\xc0\x4c\xc1\xc7\x80\x43\x41\x76\x08\xc4\xb6\xc7\x57\x35\xc9\xdc\xb6\x7a\x36\xc1\x1b\xaf\x50\x75\xa5\x01\xd8\x04\x5e\x93\x11\x43\x60\x6e\xc1\xd9\x58\x24\x46\x41\xb5\x4f\x14\x9d\xf4\x49\x8d\x0c\x72\xc9\x91\x02\x63\x8e\x08\xa3\xbf\x54\x0a\x51\x03\x66\x80\xdb\x17\x01\x7e\xd1\x75\x74\x39\x99\xbd\xe5\x6b\xae\xf5\x11\xed\x80\x72\x75\xe4\x77\x0d\xe6\xe7\xb9\x53\x21\x11\xaa\x01\x2f\x3a\x49\xf0\x15\x6e\x74\x6d\xab\x72\xd6\x12\x08\x20\x27\xf6\x4f\xc9\x06\xde\xb4\xe7\x99\x28\x95\x85\xf6\x47\x5d\x24\x4c\xed\xf3\xfd\x7e\xe8\x1e\x73\xb1\x38\xb2\x77\x85\xdd\x51\xf5\x0a\x85\x24\xfb\xd3\x57\x72\xdd\xc1\x6f\xcf\x39\x7f\xe5\x60\x1b\xb2\x9a\xc3\x85\x3e\x2d\x01\x02\x88\x21\x20\x63\x57\xa5\xfe\x8c\x7d\x2b\xf1\xb7\xc9\xf9\xa2\xa4\xe4\x38\x79\xc7\x77\x30\x6c\xcc\xe4\x78\x64\x0b\x84\x2d\xf2\x48\xf5\x2a\x0b\xe6\x2d\x26\x2b\xb6\xf7\x4e\x55\x2e\x0e\x1e\x01\xb1\x88\xe4\x90\xec\x99\xe0\xb9\xdc\x84\xb7\x43\x1f\x72\x92\x24\xaf\xa7\xb9\x02\xf2\x7c\x48\x7d\xb3\xc3\x12\x17\xe2\x8b\x83\x2b\x40\xfa\xe9\x94\x48\x08\x1f\xe1\x38\xf5\x30\x3a\x5c\xfb\xc0\x1d\xd3\xf0\x17\x13\x23\xb3\x85\x82\xe3\x27\x5c\xa2\xd0\x04\xe6\xdc\xc4\x66\xbd\x80\x7c\xf9\x2b\x41\x61\x4a\x2b\x89\x31\xd9\x49\x9a\xd1\x3e\xd9\xdf\x5d\x7d\x9a\x5d\xe9\x34\xfb\x28\x07\xb0\x00\xa6\xed\x8b\x69\xfb\xc7\x0b\x0f\x84\x8f\x5e\x0f\xa4\x3f\x7e\xe4\xa3\xed\xeb\xe3\x6c\xec\x59\x07\x17\x01\xde\xa4\xcb\xd3\xdf\xd6\xde\x2c\x05\x4a\x93\x5a\x64\xbd\x6f\xb6\x9f\xa3\xec\xf3\x3b\xff\x11\x15\xf2\xc9\xa7\x1a\xcb\x49\x72\x23\x4d\x4e\xb8\x29\x2c\xb1\xdf\x17\xa0\xea\x13\x7b\x6a\xf3\xe1\xbe\xc0\x45\x77\xd7\xb9\x27\xa3\x63\x36\x73\xc2\x28\x0f\x20\x5f\x9e\xc4\x94\xc9\x25\xad\xae\x8d\x4f\xe6\xf9\xee\x8c\xe8\x17\xbc\x55\xdd\x8c\x5d\xda\x1e\xfd\x4b\x9a\x18\xaa\x48\xd8\x29\x17\xc6\x73\x21\x1a\x16\x14\xac\x3a\xb7\x70\x33\x53\xe2\xdb\xe2\x08\xba\xcd\xa2\xa1\xcc\x9d\x0f\xd3\x7f\x7e\x52\x16\x4d\xdd\xbb\x2a\x15\x61\x7a\xe0\x86\x79\x0f\x2c\xfe\xad\x23\xd8\x9b\x90\x37\xcd\x96\x34\xe8\x30\x84\xfc\x13\xeb\xab\xa8\xb0\x4b\xd3\x15\xfd\x67\xd1\xc5\xa9\x25\x13\xbf\x63\xe9\x54\xea\xd5\x71\x06\x6d\xd7\xa4\x3c\xcb\x43\xcb\xb8\x12\x54\x5f\x4c\x27\x64\x7b\xf2\x87\x3d\x69\x4e\x74\xe1\xe2\xc1\x57\x29\xfa\x55\xad\xec\xfb\x4e\xa3\xf6\x78\x23\xf5\x81\x4f\x0b\x2e\x59\x60\x7a\x47\xfc\xe9\x89\x16\xb0\xf0\xe8\xc7\xba\x57\x33\x7d\x6a\x63\xad\x1d\xf9\xd1\x68\xde\xae\x5a\x1a\xc8\xcc\x77\xf3\xe4\xfe\x85\xa4\xcf\xbb\x28\x7c\xe7\xb8\x77\xd3\x4c\xf9\xb7\x36\x26\x33\x3a\x60\xa9\xd6\xa1\x9e\xe5\x28\x5e\x2f\xf2\xfc\x4d\xb3\x7c\x5e\x63\x91\x30\xdf\x75\x63\x99\x88\xe8\x6b\x6e\x23\x0f\xab\x84\x50\x63\xf9\xb6\xbd\x23\x29\xd3\x4f\x2f\x0d\x49\x59\x3e\xf4\x26\x1e\x4b\x46\x90\x96\x52\x33\xcb\x9f\x90\xe3\x95\x37\xfe\xd2\xc5\x84\xa8\x3e\x19\x1b\xaf\x75\xf9\xd5\x59\x5a\x05\xb7\x2d\x3c\x96\xe0\x79\x20\xe5\xc4\x38\x28\xbe\x77\x05\x67\x33\xbf\xb0\xa8\xe2\xb1\xf9\x45\x6e\x09\x79\x87\xfb\x56\x20\x62\x1e\x00\xb7\xe2\x11\xca\xfc\x7f\x0c\x7f\xe2\x34\xf0\xe6\x4d\x99\xdd\x1d\xa1\x87\xbd\x87\x9f\xfe\xd4\x37\x17\xad\xe8\xf5\x0a\xc4\x13\xbe\x7d\x1a\xb3\x63\x9e\x99\x10\x3c\xfa\x53\x14\x85\x2b\x61\x4d\x13\x7b\x5c\xd7\x55\xe8\x28\xe3\x60\xa6\x78\x92\xb8\x64\x87\xc4\x57\x8d\x83\xcd\xd6\x6b\x45\x7b\x0b\x14\x23\x7d\x63\x6b\xd3\xaa\xe7\x29\x86\x8d\xc6\x5a\xb5\xc7\x57\x78\xa3\x88\x07\x57\x9f\xe9\x28\x03\x54\x1b\x6f\x6f\x27\x0e\xb8\x47\x0b\x91\x65\x1c\x7a\x9e\xde\xf7\xc1\xd4\x21\xe9\xf1\x48\x77\x59\x70\x72\x36\xa6\xe1\xc2\xc8\x35\x56\x6b\x5f\xbe\xaf\x24\xfa\xf9\x32\x12\xf6\x8b\xcd\xe7\xc4\x0b\xf2\xfc\xc1\x3a\xe2\x6e\x28\x6b\xa3\xd6\x13\x4f\x64\x4b\x5a\x73\xfb\x63\x0f\x06\x0d\x3b\x34\x9c\xf9\xfe\x50\x3b\xdc\xcb\xf4\xa5\xda\xdf\xc6\x45\xb1\x44\x01\x8c\x31\xc4\xe8\x3a\x0f\x71\x79\x70\x9c\x3f\x06\x87\x85\x9c\x68\x22\xe1\x87\xd9\xab\xd5\xc1\xac\x22\x7f\x6e\x6f\xe5\xf6\x22\x66\x97\x14\x6c\x95\x4a\xe2\x72\xc9\x6b\x81\x90\x13\x8a\xd5\x77\x50\x70\x19\xdf\x06\x43\xe6\xad\x66\x8e\xc2\x52\xfe\xa0\xd2\x51\xc6\xcc\x6a\x3f\xb6\xef\x68\x58\xb0\xfe\x81\x9a\x44\x79\x89\xeb\xc0\x96\x97\xf1\xf6\xd5\x95\x24\x78\xe2\x08\xe2\xa8\x4c\xb9\xe4\x58\xee\x3b\x7e\xef\x99\xee\x39\x35\xef\xee\x77\x42\xf4\xd0\xf7\xdf\x61\x3a\x0a\xdc\xe5\xec\x86\x3e\x70\xd6\x23\x1d\xdb\xaf\x5b\x62\x09\xfb\x13\x06\x0e\x80\x7a\x74\x79\x83\xbf\xc4\x30\xd4\x1d\xdb\xf8\x02\xa6\xab\x7b\x81\xe5\xe7\x24\x4a\x7f\x3f\x68\x65\xf7\xe6\xb8\x15\xeb\xe1\x33\x84\x80\x38\xb9\xc4\x34\x13\xb0\x0a\xe6\xb6\x37\xd4\x55\x9f\xc4\x7f\x65\x9f\xd8\xd3\x0e\x25\x37\x2e\x93\xfa\x74\xcf\x35\x77\xf1\x75\x0b\xda\x1b\xdf\x81\x38\xa9\x4d\x5e\x1a\xb2\xe8\x8e\xf9\x45\xa6\xb8\xea\xb4\x30\x53\xe0\xd8\x21\xfb\xd2\x42\x28\x92\x23\xf3\xf3\x93\x74\xc4\x0e\x9c\xa3\x74\x36\xeb\xd7\xf3\x0c\xc6\xd3\xf6\x11\xbb\xa2\xe9\xc9\x96\x58\x72\xf2\xde\x4b\xe9\x72\xdc\x24\x5b\x9e\xdf\xbd\x24\xb9\x8a\xd7\x4d\x30\x85\x4b\xc8\x32\x6a\xba\x4c\x78\x12\x0e\x62\x71\x3d\x39\x4e\xcf\x69\x51\xbd\xa1\x0a\xfb\x03\xb8\x4b\xae\xe7\x36\x33\x9e\x9b\x62\x4b\x4e\x0c\xb6\xac\xee\x5e\xe0\xe3\x2d\x01\x54\x14\x8d\x10\x17\x4d\x99\x72\x95\x95\x9d\x0d\xeb\xe4\x85\x29\x15\x1d\x13\x9a\xdc\x2f\x13\x6b\xba\xe4\xab\xee\xb1\xaf\x96\x2b\x90\x6d\x60\xa1\x1b\xbb\x4d\xea\x9c\xcb\x74\x9e\x62\x84\x37\x50\x34\x89\xb6\xe9\xeb\xc1\x75\x55\x63\x61\xd1\x67\xa7\xfc\x5e\x37\x3c\x18\xe4\xf4\xc6\xc3\x1f\xd6\x40\xde\x72\x58\x77\xdf\x1b\xaa\x33\x83\x47\x58\xd9\x60\x3a\xdf\x90\xeb\x95\x05\xe7\x37\x3f\xbc\x92\x4b\x7f\x09\x04\x10\x9e\x2b\x86\x48\x2e\xef\x50\x13\xd2\x7d\x04\xee\x35\xb0\x03\x27\x9f\x21\x1a\x51\xba\x7d\x93\x6e\x82\x71\x3a\x0f\x85\x2f\x52\x4b\x19\xa7\xa2\x7c\xa8\xe4\x67\xb9\x64\x7a\x6e\x16\x7a\x01\x4f\xbd\xf8\xf0\x95\x48\x5c\x5b\x4c\x3a\x15\x3f\xc4\x87\xfe\xe9\x7c\xe2\xc7\xce\x8d\x7a\x83\xa3\x39\x8e\x15\x85\xf8\x33\x97\x0b\x1d\x99\x60\x34\x81\xe5\xe8\xf0\x67\xd2\x4a\x9d\xc3\x2c\x55\xfa\x42\xf8\x6e\xc4\xe1\x61\x49\xe3\x95\xd2\x92\x8c\xd8\x50\x40\xcc\x09\xda\x98\x3d\x5b\x17\x55\x25\x30\xd2\x15\xa5\x3b\xe6\x5b\xca\xb8\x17\x61\x71\x60\xaf\x3a\x19\xe0\x91\x31\x0d\x38\x6f\x6b\xfe\x5d\x80\x6a\xa4\xcd\x34\xff\x25\xae\x3a\x21\x7b\x05\x60\x83\xdb\x33\xc9\x9f\xfc\xa6\xbe\x50\x82\x3c\xe7\xd2\x33\xb9\xe8\x70\x8f\xc0\x34\x2e\x09\x93\x28\xab\x59\xb4\x0c\xe6\xc3\xb5\x18\x48\x40\x3f\x9e\xa7\xe5\x97\x9e\x6f\x72\xbd\x18\x0f\xf1\xf0\x7b\x2b\x01\x98\xd1\xcb\x2f\xef\x2a\x60\xf6\xa3\x89\x0b\xea\x6c\x8a\x43\xcb\x9b\x5d\xd3\xc2\xca\xc5\xf9\xf8\x6d\x7b\xec\x36\x2c\x1e\x24\x89\x91\xe1\x91\x1e\x7c\xb0\x7d\x7c\x12\x86\x69\x25\xd7\x30\x07\x5b\x5b\x2a\x55\xee\xf6\x9f\x87\x58\x1d\x55\x02\x5a\x76\x66\x20\xf0\xb2\x79\xe1\xe6\x51\xf4\x6b\x11\x51\x91\x9f\x02\x5f\x1d\xa3\x09\xf0\x3d\xac\x2f\xf5\xaa\xe7\x72\xa5\x39\x5d\x7c\xd2\xbe\x17\x26\x0f\x90\xed\x13\x9b\xc9\xd2\xd1\x86\x3c\x5c\xb7\x07\xa6\xe2\x44\x72\xcf\x6c\x7d\x64\xf2\xc7\x2d\x23\xf9\x51\x9a\x44\xa0\x13\xe3\xc4\x49\x97\x33\xad\x6b\x44\x0b\x37\x58\x1a\xbd\xba\x70\x0b\xc1\xd3\x86\x43\x51\xfc\xfc\x10\x63\x27\xb6\xd8\x48\xf8\xdc\xf0\xfa\x54\x74\xd1\x81\xa1\xb3\x02\x4f\x66\x18\x1f\x19\xd8\x69\x36\x20\xed\x91\xdf\x4e\xc4\x54\x27\xa4\xf2\x8e\x62\xc6\x0e\xa9\xa6\xb9\x96\xa1\x10\xce\x5c\xdc\x69\x42\xf3\x5c\x2b\x15\x7c\x9d\x2e\x35\x69\xf7\x12\x86\x10\x78\xf4\x37\x4d\xe2\x5d\x65\x7c\xbc\x16\x02\xaf\x5e\xe6\x78\xbf\x77\xb3\xe2\xd5\x34\x7d\x37\x32\x09\x52\xe3\xfd\xd3\xa8\xdd\xd0\x06\x37\xbd\x48\x9b\x94\xb4\x2b\xe3\xc8\x2a\x0d\x72\x5e\x5a\xa6\xc5\x8c\x00\xab\xe4\x1a\xdf\xa7\x91\x2e\x3b\x0c\x99\x8b\x3e\xd2\xe0\xbc\xe0\xe3\x90\x9b\xd0\x61\xd6\xd0\x82\xa5\xec\x9e\xa0\xab\x90\xec\x12\x21\x27\x04\x79\x67\x87\xae\xf6\x7a\xde\x23\xed\x73\x62\x34\xab\xc8\x99\x36\x59\xa2\xe7\x80\x42\x04\x07\x1f\x01\x8f\x7a\x19\x29\xa4\xf8\xf6\xae\xf3\x5c\x7b\xfe\x34\x4d\xbf\xd1\x44\x87\x92\x00\x4c\x83\x67\xd3\x55\x6d\x4d\x65\x1d\x86\x42\x97\x56\x2f\xf9\x84\x05\xb5\xd9\x1c\x98\x76\x43\x21\x9e\x2b\x82\x5e\xea\xa2\xb1\x5b\xed\x4b\x72\x37\xa3\x0f\x4d\x8f\x8e\x7c\x0f\xbb\x41\xee\x2e\xfe\x69\xcb\x39\xb6\xb7\x54\xe4\x1a\x8e\xa7\xb6\x73\x5f\x07\xb6\x1f\xcf\x0f\x42\x0b\x82\x23\x45\x51\xce\x3d\x12\xce\xea\x97\x0a\xb5\xf6\xce\xb2\x3c\xe2\xb9\x99\xa0\xe0\xb6\x13\xb1\x05\xf6\xc0\xce\x6c\xd5\x93\xda\xc1\x6b\x61\x21\x69\x41\x0c\xa0\xc5\xd4\x4e\xe9\xf5\xca\x57\xab\x9a\x89\x31\x94\x5f\xc7\x1e\x2c\x21\xeb\xf1\x4d\x63\xf9\x5b\x1a\xd0\x49\x1b\xa3\xda\x6c\x37\x67\x12\x27\x0b\x67\xa6\xa3\x86\x6c\xf0\x3e\x02\x92\x9f\x5a\x4b\xfb\xe7\x60\x15\x54\x27\xe5\x2c\x1a\x29\xc1\x2e\x2a\xe5\xf4\x69\xcf\x4c\x69\xd5\x42\x75\x22\x50\x34\xb9\x3f\xc3\xd2\x93\x07\x5e\x0c\x45\xfb\x3a\xe6\xb2\x58\xa5\xf7\x08\x20\xf2\x05\xd9\x3d\x1d\x99\xb9\x4c\xf1\xcd\x8f\x77\x38\x36\x7d\x7a\xfe\xb9\xd1\x5b\x46\x6b\x77\xd7\x55\x49\x79\xa6\xcc\x17\x64\x10\x23\x64\x92\x71\xe5\xab\x63\xd9\xc2\xac\xeb\x5c\xdc\x44\x60\xb4\x2c\x24\x33\x5c\x50\x6c\x16\x95\x9a\x42\xb3\xf1\x02\x21\xb3\x26\x22\x72\x44\x84\x68\xe1\xdd\x38\x6c\xe2\x52\x06\xd2\xd6\xf0\x86\x60\xc2\xea\x83\xb6\x87\x92\xf8\x36\x1c\x29\x6a\xf9\x73\x11\x58\x25\xd3\xb0\x0e\xbe\x6d\xc3\x6a\x1b\xf6\xe8\x8f\x02\x08\x13\x63\x7f\x06\x72\xbb\x20\xb4\xb5\x39\x13\x2e\x19\x49\xcd\x8b\x97\x99\x95\x6b\x0a\xef\x84\x0b\x44\xbf\x12\x7b\x51\x60\x65\x33\xa7\xf9\x30\x99\x96\x1a\x42\x16\x9d\x5f\x26\x67\xe4\xf9\xa6\xe5\xa5\x77\xc2\xd3\x08\xd6\x45\x10\x1e\x07\x6a\x15\xe3\xf6\x47\x92\x6f\x1f\xdf\xef\x5b\x1d\x0d\x8f\x33\x82\xc0\xba\x6c\xca\x66\xb5\x0f\x34\x54\xa5\x90\x1e\x6e\xfb\x4c\xd1\x78\x64\x78\xa3\x2e\x1f\x65\x70\x0a\x7e\x90\x01\x22\xe0\xd6\x65\xe7\x1a\x37\x20\xdc\xf4\x1d\x05\x56\xb7\x03\x94\x0b\x59\x18\x24\xf8\x40\x7d\x0f\xb2\x2c\x4d\x6d\x3a\x3e\xfc\x8c\x76\x32\x99\x16\xb4\x6b\xcc\xfd\xa5\x08\xee\xb4\xd4\x90\xb8\x94\x0f\x88\x93\xf2\x46\xc4\xbc\xee\x0d\xa6\xc1\x96\x68\xb0\xa3\xd3\x8a\xe4\x96\xff\x64\x92\x8f\xa0\x66\x58\xbf\x81\x71\x02\x8e\x80\x3c\x5e\x76\x08\xad\x82\x79\x99\x9c\xe9\xf6\xb5\x95\x0e\x31\xb2\xf8\x36\xd0\xcf\x57\xbd\x72\xea\x2d\x49\xca\x72\xd7\xb6\x3c\xf3\x05\x1c\x22\xd5\xd3\xc1\xd9\x1a\xfd\xae\xa6\xb8\xdd\xec\x2c\xf9\x34\x05\xb7\x79\x15\xaf\x72\xba\x46\xba\x35\x4a\x80\x32\xad\x9b\xb3\xb4\x71\x01\xa7\xab\x0a\x85\xd4\x18\x75\x70\xa3\x2e\x9e\x86\x91\xf7\x49\x46\xfc\x55\xc6\xc0\xc5\x68\x8e\x64\x16\xec\x3f\x00\x10\x67\x84\x8c\xe0\x88\xd9\xaf\x82\xb8\x5f\xae\x5c\xe8\xfe\x77\x56\xef\xed\x69\x82\x2f\x0a\x52\x32\x2c\x29\x63\x0c\x97\x74\xaf\x2a\xeb\x83\x43\xa8\x60\xaf\x3c\x42\x09\x60\xe0\x4b\xee\xd9\xca\x32\x94\x7b\xa6\x3f\x6d\x47\x49\x48\xe0\xe3\x5b\x87\xd5\xee\x96\xe4\xe9\x78\x65\xa5\x17\x70\xad\x10\x02\xb9\x47\xb1\x63\xee\x29\xf6\x73\xd5\x30\x61\x38\xae\x3f\xdc\x25\xfb\xb3\xf4\x24\xbf\x14\x37\x2d\x9f\x59\xe6\x99\x51\xb7\x24\x2a\x0f\xe1\x59\x7d\x2c\x8a\xe7\xbb\x39\x15\x17\xf6\x6e\x1f\x43\x36\x76\xb6\x09\x8a\x7b\x5d\xed\x0c\xe3\x56\x3c\x2f\x0a\x15\x73\x64\x91\x6f\x7c\xf3\x61\x12\x10\xc1\x8f\x93\x85\xec\x95\xb3\x6a\x4b\xc2\xce\xe7\x8b\x37\x12\xb4\x52\x25\x3a\xeb\x58\x53\x44\x1d\xc9\x99\x48\x88\x9c\xba\x74\x4f\x6d\x2b\x67\x13\x8d\x12\x9e\x76\x96\x96\x3c\xf9\xfa\xe9\x51\xa6\x1c\x04\xf2\xf2\xbd\x5d\x86\x58\x79\x68\x6e\xef\x33\x2e\xba\xbe\x21\x31\x19\x8e\x86\x8a\x4d\x4a\xb2\x08\x76\x42\x82\xf7\xf5\x45\x58\x41\x8c\x59\xb4\x93\x4d\xf8\x20\x5b\x23\x6b\x34\x01\xa4\x40\xe4\x54\xb5\xa1\x0d\x1b\x83\x1e\xdb\x5d\x04\xbe\x3a\xb9\x8d\xb7\x5c\xa1\x4d\x1d\x07\x4d\x55\x0e\x5c\xee\xb0\x6c\x80\x16\xb2\xc8\x34\xc5\x8b\xd0\xe0\x02\x40\xf4\xc6\x03\xf2\xcc\x3d\xab\x8e\xad\x0a\xd6\x83\x7c\x44\xa9\xdc\xc8\x37\x90\x30\xe9\x61\x52\x12\xa2\x87\x48\x72\x4c\x03\x20\x4b\xd6\x97\xa5\x60\xd7\x90\x5d\x73\x9b\x09\x02\x9b\xf9\x93\x80\x2d\x06\x5a\x09\x6e\x56\xd7\x3b\xdd\x6b\xbb\x5e\xb6\x3a\x54\xed\x4b\x98\xba\x1e\x55\x43\x46\x41\x48\xc0\xb3\xc7\xeb\xa3\xe3\x79\x9f\x3e\x5e\xca\x27\x31\x19\xf3\x1d\x6f\xc5\xdb\x69\xdf\xa5\x80\x3e\x4f\x07\x16\x82\x4e\x63\x5b\x46\xbd\xe5\x83\x62\x35\x9c\x28\x99\x03\x8c\x5b\xff\x0b\x43\x93\x5d\x20\xb1\xaa\x94\x60\x12\xbd\x79\xd4\x79\x24\x68\x86\x11\xb9\x07\x61\x8f\x41\xd1\x71\x3d\xe6\x43\xdf\xb8\x45\x36\xb5\xbd\xe7\xda\xeb\xab\x6c\xaf\x8e\x19\x49\x88\x08\xfa\x7c\x95\xaa\x98\x9b\x4e\x2f\x31\x05\xdc\xb9\x3c\x63\x19\x80\x87\xb8\x94\x3d\xa3\xcd\x13\x17\xaa\x52\xba\xb1\x7b\x61\x78\x30\x25\xc4\xd9\x88\x55\x08\xfd\xf4\x3e\xfc\xf0\xd1\x29\x0d\x25\x59\xf4\x07\xdd\x25\x5d\x9c\x98\xa6\x10\xd3\x80\xeb\x12\xfd\xef\x0b\x43\x21\x08\x44\x78\x84\x14\xc1\x55\xfa\xcd\x87\x8b\x31\x16\xa7\xbd\x57\xd7\xaa\xe4\xf6\x68\x06\x64\x25\xfa\x18\x03\x5c\xc4\x95\xe7\x52\x53\xf4\xcb\x35\xce\x4e\xfc\xd0\x01\x0b\x8b\x96\x48\x05\x7e\x50\x16\x89\x78\xb6\xac\x64\xc6\xff\x0e\x93\xfe\x8a\xca\xb2\x21\x1c\x87\xb0\xf7\xcb\xe0\xc7\x2d\x70\xb1\xd0\x82\x0a\xa2\xc5\x5a\xeb\xdc\xcd\x45\x5b\xad\x6e\x64\x3c\xef\xac\x6d\x9e\xa1\x81\x40\xc8\x9e\xf2\x60\x1e\x00\x4d\x19\xa7\x37\x2a\xaf\x47\x5e\xae\xe7\x32\xc3\x01\xd5\x0a\x37\xed\x23\xd3\x05\x28\x1d\x41\xe8\xe9\x33\xbc\x51\x8c\x2f\x2c\x02\x1b\xbc\x0d\xcd\x2a\xab\x43\x9f\x1b\x41\x20\x44\x23\x9b\xc0\x76\xf1\x8b\x9b\xa5\x77\xcc\xb7\x99\x9f\xe2\x36\x8c\x97\x27\x32\x47\xbb\xc3\x41\x80\x24\x33\x8c\x6d\x85\x87\xc3\x45\x13\x62\xb0\x54\xe0\x21\xf0\x12\x04\x7d\xaf\x26\xfc\x23\x63\x71\x78\x48\x64\x6b\xd9\x4f\x72\x85\x5f\x19\xde\x0b\x15\x98\xe2\x3c\x59\x97\x02\x29\x19\x89\xa3\xee\xc9\x72\x2c\x78\x22\xe9\xaa\xaf\x6b\x76\x35\x17\xa1\x8b\x27\xf6\x6d\x70\x0f\xf2\x69\xdd\x20\x80\xc0\x6c\x6e\x89\x54\x4d\x16\x2a\x91\x7a\x74\x26\x3e\x10\xe7\x1c\x7a\x04\x88\xc1\x93\x5d\xa1\xc9\x7d\x62\x03\x73\xc3\x9a\x5e\x8a\xd6\x24\x39\xf5\xa7\x63\x5b\xf3\x0a\x61\x51\x70\x0e\x24\xac\xcb\xc2\x70\xae\xae\x1c\x41\xde\x47\x80\x8b\x71\x67\x1b\x26\x7d\xfb\x51\xbe\x73\x50\xbe\x6b\xe9\x36\xcb\x3d\x8a\x75\xc2\x7c\x1b\x1d\x11\x68\x60\xc7\x77\x3a\xc7\xf8\x34\x95\xb2\x46\x13\xa5\xf9\xe2\xb1\xa6\xe2\xce\xd6\x1c\x1c\x99\xc2\xc7\xc6\x95\x41\xf1\xda\x6b\x89\xac\xef\xf6\xb2\x69\x02\x6f\x7d\x40\xc3\x24\x45\xc5\x51\x53\x9f\x31\x64\x7d\x1b\x47\x30\x8c\x1d\x70\x87\x3e\x3e\x98\x24\xcf\x8f\x24\xb7\x32\xd6\x36\x83\x8d\xba\xbc\x65\xe9\x7c\x0d\xca\xc2\x86\xcb\xb5\xe0\xa0\x2d\xb6\x3b\x0c\x90\x1b\xe3\xbb\xee\xe8\x70\x99\xa1\x29\xce\x3a\x35\xc0\x31\x56\x65\x4a\xd9\x2b\xc0\x47\xc3\x88\x40\x8e\x2b\xa0\xec\x0d\x55\xf6\x6c\xf0\xed\xd0\x4f\x85\xa7\x61\xba\x3f\x9d\x60\xdc\xa2\xe7\x25\x56\xb1\x92\x09\xf1\x02\x47\x9e\x65\x2d\x71\x46\x44\x8a\xa5\x2f\xca\xdb\x96\x5f\xdc\x76\x49\x95\x2d\x96\xab\xc8\xf8\xee\xe0\x4d\xee\x77\xc4\x71\x57\x1b\x3b\x09\x5f\xed\xe7\x8f\x2a\x1a\xdd\xbc\x53\xa9\x70\xf9\xd8\xb0\xc6\x22\xbd\xa2\x1d\x41\x5a\x86\x64\x3a\xb5\x6c\x3c\xdf\x80\x5d\x84\xa8\xf1\xd8\x9b\x07\x8a\x59\xa6\x8b\xe4\x1e\xd4\x9c\x29\x9b\xd0\x8f\x82\x91\x2a\xc2\x4d\x3f\x94\x4c\x18\x7c\xb2\x24\xfc\x60\x1e\x26\xa4\xca\xcb\xea\xa8\x58\xe7\x98\x66\x7c\xa7\xfd\xf7\x7d\x19\x2e\x1d\xe5\xdd\xbe\x02\xba\x7e\x43\x61\xa4\x6a\xe8\x9e\x8b\xe5\xd5\xb3\xd9\x8e\x26\xf9\x26\x93\xfb\x96\x19\xdf\x39\xc9\x6e\xfb\xc4\xb8\xe7\x60\xe7\x81\x8b\x06\x5c\x90\x8a\x68\xd5\xc6\x00\xbc\x6c\x34\x8f\x9f\x41\x86\x4b\xb9\xa9\x87\x7e\x64\xdf\xc5\x4f\xe5\x07\x19\x0b\x2d\x19\x45\x58\x79\xa7\x8c\x23\x4b\xfa\x23\xc4\xce\x55\x4a\xe8\xad\xf1\xbd\xef\x76\x9e\xc1\x1f\xef\xf6\xbf\xca\x90\xdd\x2b\x8b\x90\x61\x17\x23\x5c\xa2\xfc\x30\xa7\xa9\xc1\x22\xd8\x7d\xa3\x72\x5b\xfb\x93\xfb\x59\x55\xf6\x58\xd2\xef\x15\x64\x91\xf1\x8f\x74\xcd\xc9\x1f\x48\xbd\xdf\x9d\x86\x56\x43\xc7\x92\x2d\xdf\xe7\x50\xea\x91\xc2\x55\x05\x4f\xc5\xbe\xb6\x3b\xa5\x76\x8e\xd9\xd1\x76\xe8\xda\xa0\xd6\x06\xe8\xff\xb0\xd1\xc9\x5c\x69\xec\x0d\x88\xbf\x42\xd3\xb4\x02\xc4\x20\x68\xd8\x01\x87\xbe\x01\x09\x44\xb5\x20\xe5\xeb\xba\xd8\x66\x22\xb5\x52\xac\xa4\x64\xb6\x0c\x7b\x29\x6e\x15\xce\x47\x1a\x56\xe2\xa1\x9e\x44\xda\xa3\x22\x34\x7a\x3e\xca\x63\x9f\x97\x7e\x51\x20\xae\x93\x1a\x22\x53\x21\x27\x60\xb0\x5f\xbd\x9f\x77\x4f\xef\x8c\xfe\xfd\xa9\x59\xfe\xd3\x36\x51\x73\xe7\x3b\xe0\xe8\x64\xc6\x36\xed\xbb\x3e\x71\x38\x5d\xb7\x24\x98\xf1\xc9\xa7\x1d\xab\x8b\xe9\x03\x62\x9d\xc8\x33\xb2\xa9\x72\x23\x02\x9f\xac\xb1\xea\x55\x81\x5d\x58\xe8\x6a\x9c\xb5\xd6\x25\x3f\x67\x8c\x7a\x45\xde\xb1\x58\xf4\x2b\xa7\x9e\x36\x33\xa7\x57\xf2\x2c\x3d\x8f\x5a\x44\x39\x6a\x49\x3a\x0f\x8e\x53\x88\x25\xc7\x65\xef\xdf\x3a\x2a\x10\xb1\xaf\x4b\x3f\xa1\xab\xdd\xa2\xfb\x51\x8d\xd2\x14\x3f\xd8\xf7\x42\x6a\x4f\x86\xb3\x5e\x8a\x29\xaa\xbb\xc5\x8d\x32\x5b\x79\x73\x1e\x66\x5d\xe2\xfa\xe4\x47\xe3\x94\x59\xb5\xbb\xd1\xc1\x8b\x66\xc0\x4c\x66\xa9\x2d\x2a\x17\xa7\xed\x5a\x20\x25\x12\xa5\x13\x8d\xeb\x42\xc3\xb2\xc2\x0d\x0f\xa0\xdd\x92\x5c\x8b\xc6\x1c\x3a\x2c\xc2\x7b\x5d\x83\x5a\x7e\x28\x23\xb9\x5b\xf7\xf4\x4c\x55\xbc\xf7\x19\xcb\x63\x2e\xac\x29\x49\x9f\x2f\xa6\xac\xd4\xf3\x35\xe4\x5c\xaf\xcf\x53\xb0\xd4\xad\x3c\xe5\x3f\x69\x95\xbd\xc9\xeb\xd1\x65\xe6\x53\x51\x33\x30\x1f\xfd\xfe\x28\x4c\x96\x2d\x62\xe4\xbd\xcd\xec\x77\x29\xb0\xcc\xc9\x9e\xf7\xc0\xed\xf9\x29\xf7\x77\x8d\x31\x41\xe4\x6a\xc4\x31\xf7\x23\xe7\xd2\xc7\xbc\xa7\xeb\x80\xeb\x1c\xa3\x8b\xda\x75\xa7\x2a\xac\x86\x92\x77\x2d\x19\xe1\xa3\x09\x09\x1b\x6f\x71\xec\x71\x02\xb5\xe5\x3c\x6e\x2b\x33\xfc\x6e\x79\x4d\xcf\x73\xb7\x3e\xb3\xa5\x46\x47\x52\x63\x04\xd8\xe4\xb8\xea\x99\xeb\xc6\xa8\x1d\x60\x05\xd8\xad\x37\xc7\x74\x8e\x59\xc9\x47\xa5\x86\xbc\x94\x02\x11\xb0\x19\xc2\x01\x4e\xfd\x6c\x6b\x09\xaf\x4f\xbf\x65\xbd\x14\x3d\x60\x82\x7c\xfa\x5a\xfd\xf5\x14\x04\x72\xfc\x06\xf6\xb6\x22\xf9\x1c\x65\xc5\x93\x69\xb2\x70\x64\x37\x5b\x55\x1e\x1b\xe1\x8d\x52\x5a\xb9\x4f\x13\x69\xd4\x3a\xd5\x39\xc9\x5f\x2a\x48\x03\xaf\x10\x12\x7c\xaf\x7d\x8d\xbd\xd5\x2d\xc9\x6c\x56\x3d\x4f\x4f\x28\xc1\x77\x59\x40\x96\xa3\x92\x68\x7e\xce\x9f\x32\xe4\xd3\xb3\x91\xfd\x45\x3a\x89\xb8\xde\x14\x17\x3f\xe0\x6d\x71\x03\x27\xeb\x67\xad\xa3\x14\x5b\x86\x27\x39\x74\x6e\xcd\xae\x56\x91\xaf\x87\x45\x9f\xe1\xe4\xb4\x89\x84\x32\x71\xf7\xb4\x3b\x73\x68\x1c\x9d\x6f\x83\xad\xd0\x53\xf9\xdc\x90\x65\xad\x5b\x38\x6d\x4b\x83\x65\xd0\x45\xd1\x23\x7a\x75\xf1\xe1\x4c\xce\x11\x92\x2f\xaa\x27\x57\xa2\x9c\x5e\xbe\xd4\x77\xc8\x20\xd8\x02\x3a\x2c\xc5\xf7\xe4\x3a\xb6\x7d\xf2\xb9\x5d\x3e\x45\x7a\x28\xdf\x52\x15\x97\x0c\x7f\x86\x5c\xf7\xcf\x09\x23\xc1\x7d\x29\xdf\x19\xc6\x23\x7f\xb0\x41\x3e\xf1\xb4\xf2\x97\x76\xcc\x7a\xda\xe9\xa0\x3c\xe8\x72\x2b\xf5\x94\xe7\xb9\x44\xa5\x3b\xb5\x8e\xed\xa9\x26\xda\xed\x53\x72\x75\xea\xf7\xf9\x12\xa8\x43\xa4\x3b\x1f\x52\xd3\x23\xea\x99\xe6\x48\xea\xf4\xc9\x69\x49\x4e\x62\xb8\xca\xe3\x70\xb3\xde\x9d\x9b\x04\xe3\x0d\x27\x4a\x6b\x84\x92\xdc\x13\xbf\x48\x31\x2d\xd1\x8e\x2c\x43\x07\xc1\x34\x8e\x42\xb1\x9b\x35\x5a\x77\xc4\x3c\x57\x4c\x77\x71\x1e\xb1\xf2\x1c\x87\x29\xdd\xde\x90\x84\xfc\x2f\x76\xf2\xa3\x09\xbf\x3f\x1a\xb5\x9b\xc7\x4c\x2a\x5b\x86\xff\x52\x38\x6b\x2a\x59\x7c\xc6\xc1\x47\xf0\xf2\xee\xcf\x17\x34\x7b\xe9\x10\x42\x7a\xe9\xbb\x65\x81\xdc\x94\x3d\xec\xc5\x8a\x19\x92\xfe\x9f\xfc\x3f\x7b\x4c\x11\x66\x7e\x9a\xf0\xd0\xf5\xea\xe8\x1d\xdc\x0e\x49\xe9\xa4\xea\xf1\x87\xbc\x9d\x48\xb0\xf8\xf9\x5c\x02\xf1\xd2\xe5\xdd\x44\xd0\xd4\xab\x84\xe6\x2f\x73\x19\x2f\x6c\x42\x8c\xda\x70\x2c\xd9\xfb\x0f\x70\x10\x4a\xed\x52\x9b\xd2\x50\x2a\x47\x96\x98\x97\x23\xad\xae\xb7\x52\xc3\xc3\x64\xcd\x6b\xdf\x28\xac\xec\x2b\x5a\xb1\x11\xb5\x90\x32\x04\x2c\x42\xe3\x1b\x2e\x90\x8a\x26\x2a\xfb\x8e\xe6\xd6\x19\xb2\xb1\xf6\x94\x45\x1d\xcf\x25\xd4\x54\x85\x06\xc3\x6b\xb6\x2e\x49\x72\xfb\x78\xf3\xaf\x39\x8f\xb6\xdf\x69\x48\xc3\xfa\xaa\x4e\xe0\x62\x0d\x23\xfd\x74\xd8\x26\xef\x7e\xfa\x29\x3c\xb4\x5d\x43\x9a\xe2\xd9\x9c\x21\x51\xcf\xab\x0f\xe1\xe0\x93\xc0\x88\xf8\x21\x0e\x0f\x5a\xab\xaf\xf6\x48\x50\x34\x0b\x16\x56\x7e\x61\xde\x87\xb2\xa4\xdc\xab\x79\x7f\xd8\x44\xa6\x36\xfa\x09\xf0\x44\x5c\xf0\x5c\xe6\x08\x9d\x5e\xf1\x32\xbd\xff\x6e\xa2\x26\xd6\x50\x89\x6d\x90\x2a\x4e\xac\xd6\x1d\x3b\xe6\x79\xa6\x00\x79\xfe\x23\x87\x43\x4e\x28\xd2\x4c\x9a\x4f\x8d\x68\x16\xa2\xc0\x85\x86\x3e\x89\x0d\x80\x77\xf2\x51\x2a\x20\x15\x1b\xcd\x95\x6e\x0b\x29\xee\x17\xd4\xf2\x3c\x45\xcc\x6f\x1a\xdc\x5d\x1f\xaa\x08\xf5\x6c\x0f\xc9\x58\xa5\xe1\x4c\x20\x85\x05\xb0\xe0\xf2\x72\xe4\xbf\x48\xfa\xec\xdf\x1e\x25\x75\x80\x39\x39\x44\x60\x12\x81\x6b\xd1\xbc\xf6\x28\x8d\xbd\x88\xf7\x6f\x85\x2d\x31\xa7\x1e\x5a\x77\xd6\xe4\x2f\xfd\x26\x5f\x45\x91\x33\xed\x18\x43\x01\x94\xe6\x9a\xcd\x3e\xc4\x59\x86\x4b\xb4\x95\x80\x52\x9b\x3d\x6b\xf3\x8f\xd2\x1a\xdf\x87\x25\xd8\xb9\x1e\x69\x42\xac\x58\x3d\xd6\x93\x72\xad\x9e\xe3\xb0\x41\xc9\xd9\x44\x27\xc6\x4f\x25\x78\x05\x12\x8d\xd4\x84\x30\xed\x86\x77\x85\x43\x48\xf8\x85\x3b\x80\x50\x3a\xc7\x14\x19\x38\x29\x5d\x8c\x53\x0c\x67\xd9\xa2\xce\x8c\x58\x7d\xdd\x5c\xd2\xfb\xf0\x7e\xb5\x35\xc0\xa9\xef\xa6\x09\x04\xcd\xc2\xb3\x0e\x26\x82\xcf\xae\x19\x86\x2e\xfa\x76\xe4\x2b\xc5\x04\xc9\xb7\x99\x5f\x22\xa1\x66\x6c\x6f\xde\x6c\x06\xc2\x51\xe9\x13\x0d\xdb\xc4\x93\x45\xa3\x7c\x24\x10\xc8\xfe\xb3\x5c\x1a\x5f\x65\x30\xde\xa4\x5e\xc6\x67\x2f\x24\x3f\x4e\x21\xf2\x79\x29\x89\x59\x68\x64\xaf\x1c\xca\x0d\x71\x8a\xca\xed\x3b\x32\x60\x37\x7f\x89\xaf\x0e\x07\x42\x20\x0e\xca\x16\x81\xc4\x2c\x29\x59\xd3\x26\x07\x14\xdd\xdc\xf9\xe6\x11\x4f\x24\xdf\xee\x3b\x9a\x8c\x05\x5d\xe5\xba\x37\x3c\x78\xf7\xe6\x9e\xab\x59\xe3\x33\xcb\x0e\x2d\x08\x0d\x13\x04\xe2\x9d\x82\x0f\x40\xb3\x85\x7e\x80\xb8\xe3\xc7\xbb\x4a\x1d\x86\x2c\xb3\x7f\x24\x27\x62\xb5\xaa\x95\xf5\x8f\x3f\x59\x86\x38\xe1\x5e\xd8\x0e\x1e\xd8\x67\xfd\x82\x40\x20\x34\x7f\xf1\x4e\x96\x28\x35\x4b\xbe\x45\x92\x6f\x14\x91\x56\x35\x1e\x79\x3c\x39\xf3\x0e\xe7\xb0\x43\x0d\x81\x58\xd4\xe0\x1c\xf2\x69\xba\xd0\xbd\x72\xbf\x94\xa5\xf7\x58\xc2\xe9\xf7\x8d\xd9\xe5\x8a\xf3\x90\xb7\xf4\x41\x8b\xfc\xf7\x27\x7e\x64\xda\x92\x0f\x55\x81\x1e\x10\x9f\x90\xeb\x25\x2d\x80\xfd\xc2\x16\x0a\x81\x14\xd4\xff\xd5\xff\xc7\xc2\x7a\x4e\x99\x59\x6a\xdf\x0e\x93\xbc\x89\x7f\x6a\xe2\xe5\xe3\x17\x34\x42\x0f\xaf\xf0\x08\x29\xdd\x2d\x27\xe1\x55\xbe\xe0\x93\xe4\x02\xef\xce\xcb\x70\xad\x84\xc3\x5a\x1d\x49\x8a\xe6\xc2\xcd\x1b\x34\x7a\xd7\xbd\x30\x55\x1d\x5a\xf2\xf8\x5f\xc6\x8a\xce\x78\x8f\x7e\x70\xf8\x79\xf3\xaf\xe7\x37\x6e\xc0\x0e\x9e\xc5\x8d\x5d\x38\x03\x5e\x9f\xa8\x40\x6a\x8b\xa3\x32\x72\x7d\xed\xd1\x0b\xbc\x75\x3d\x8a\x40\xbe\x46\xf8\xb9\x96\xb3\x32\x48\x50\xbc\x63\xb7\x2d\xcc\x31\x38\x12\xfb\x95\xe6\x52\xc1\xd9\x78\xfd\xe0\x40\x35\xfc\xec\x59\xde\x89\x14\x50\x3d\x49\x8c\xa7\x7b\x29\x87\xfa\xee\x7f\x07\x6c\xa1\x97\x89\x65\xb8\x57\x97\xe5\x01\x31\x3e\xa5\x20\x3d\xb9\x8b\xeb\xb6\x90\x7f\xd9\xfe\x32\x9a\x35\xc5\xd7\xa7\xd4\x3d\x5f\x7b\xec\x0c\xee\xb3\x1a\x88\xf7\x69\x79\xcd\xb9\xb1\x3a\xf0\x31\x0e\xbd\x04\x9a\x7a\x4b\xf4\xea\x2e\x4a\x2e\x38\x09\xcb\xe1\x0f\xd2\xd0\xa3\xaa\xa3\xa4\xfe\x84\xa1\x56\x21\x37\x46\x72\x53\xa6\xff\x3c\xc5\x52\x5d\x57\x81\x40\x60\xeb\x23\xa4\x0a\x5c\xe3\x54\x59\xd0\x6b\xa4\x2a\xf0\x76\xc5\xee\x7d\x70\x98\x25\x1d\x01\x67\xaf\xf1\x90\x7f\x12\x76\x69\x75\x1b\x38\xd2\x08\x5e\x38\x2a\x0f\x6c\x0c\xfb\xb6\x12\x95\x8e\x11\xca\x3f\x12\xc1\xff\x1e\x97\x6a\x08\xb7\xe1\x8c\x47\x5e\x7d\x28\x07\xe0\x02\x59\x24\x4a\x03\x8d\x95\x0c\x98\xf1\xb0\xb0\x83\x78\xb1\x16\xac\x07\x30\x7f\xdd\xbe\xd9\x7f\xa6\x1c\x68\x3a\x6f\xdb\x2b\x31\xca\xcf\x0a\x06\xbe\xf7\x49\xfb\xf7\x31\x96\xa5\x04\x77\xe5\x8f\xf8\x0e\x30\xd7\xa6\x75\xf0\x9e\x6c\xec\x2b\x52\xb9\xaa\x04\x07\x85\x14\x6c\xf7\xab\xa5\x9e\x32\x7e\x86\x39\xc7\x7c\xae\x8f\xa1\x6e\xfe\xd1\x96\x72\xc5\x71\x50\x74\xfd\x75\xa7\x54\xd8\x0d\x33\x08\x98\x31\xd3\xfa\x73\x25\x61\xb5\xbb\x74\x18\x81\x97\xe1\xb4\x3e\x8f\x88\x21\x71\x63\xd1\xd3\xd6\xe7\xd7\x12\x99\x8b\x3a\x15\x4c\x7b\x7d\xd9\x79\xed\xdd\x7b\x95\xc1\x8c\x81\x2e\x3f\x27\x1b\xc3\x59\x03\xcb\xf7\x42\x21\x10\xa1\x2b\x99\x5f\x53\xb4\xc1\x79\x53\x9f\x35\xf4\xb6\xbb\x65\xce\x58\x4c\xef\x95\xa7\x79\x74\x0a\x5c\x59\xf8\xe0\x0c\x48\x81\x00\xdf\x5c\x97\x41\x70\xed\x7c\x89\x5d\x97\xe1\xa9\x08\x00\xc5\x5e\x6a\xdd\xc9\xdd\x2c\xbd\x3b\x12\x2e\x57\xd4\x84\xd8\xbd\xf6\x6a\x86\xd6\x57\xb9\xa0\xc2\x88\xb8\xbc\x7e\xab\xea\x18\xee\xb2\x7e\x4a\x81\xf9\x3a\xe8\x23\xa4\x83\xd2\x82\x40\xb8\x39\x3d\x68\x51\x14\xbe\x9e\x0a\x66\x39\x18\x57\xa1\xcd\x34\xe4\xa4\x48\xe5\xe3\x16\x9e\x7c\xf9\x93\x70\x98\x25\x18\x8c\xfa\xf0\x6b\x75\xfb\x11\x30\x9b\xba\x88\x6b\xde\x5e\x51\xcd\x50\x42\x48\x6f\x4c\x2e\x79\xb5\x8e\x98\xe7\x9a\x66\x91\xfc\xcb\xd5\x28\xce\x35\xc9\x8f\xdb\xfb\x52\xda\xa3\xa4\xcf\x99\x90\x30\xc5\x0f\xcc\xf0\xaf\xea\x81\xa3\x27\xe5\xc8\x8c\x1f\x25\x5b\xa8\x6e\x9d\x7e\x7d\x32\x08\xcc\x5f\xb3\x57\xa2\x13\x3b\x42\x52\xbc\xe0\x31\xe8\x50\x69\x3f\x69\xa5\x34\x46\x47\xfe\x58\xe1\x24\x7c\x18\x99\x4f\x23\x24\xf6\x7b\x78\xf4\x97\x2f\x66\x1d\x74\x44\xbe\xbc\x4a\x64\x95\x30\x4e\xfe\x36\x04\xe2\xc3\x46\xc7\x71\xfe\xb9\xae\x84\xb2\x48\x8e\x4d\x3a\x2b\x8a\xab\xdb\x83\x0c\x5f\x4e\x0f\x98\xf4\xca\x46\x13\xb7\x5e\xd0\xd0\x67\x06\xdb\x61\x73\xaf\x6b\x12\x41\xb8\x9d\x18\x52\x55\x48\x7b\xd3\xdf\x20\xf8\x4c\x86\x8e\xa8\xca\x7e\xd6\x08\xb9\xe6\xd3\x94\xd2\x8a\xbe\x17\xce\x63\x40\x94\x6b\xf8\x77\x98\x6d\x63\x13\xdc\x6f\x85\x5b\x24\x11\x43\x68\xe5\xab\x74\x9d\xc4\x3c\xb5\x3b\xaf\xbb\x6a\x1f\x83\x43\xd4\xc0\x8f\x74\xf8\xb5\xdb\xed\xe9\xfb\x13\x39\xb8\xae\x70\xd8\x0c\xe8\xb3\xc5\x82\x10\xea\x9a\x89\xa8\x0d\x0f\xaa\x33\x19\x3b\xf7\x76\xa6\x82\x16\xc2\x1d\xba\x37\x93\xd2\x3b\x16\x73\x1d\x79\x92\xf3\x04\xc3\xc2\x9b\x68\x13\xd8\xb7\xa5\xec\x00\xeb\xfa\x03\x53\x5f\x77\x1f\x58\x8b\x85\xef\xbf\xef\x19\xb9\x02\x81\xd8\x14\x57\x84\x7e\xf9\x28\x2f\xf9\x96\xfd\x59\x1d\xcd\xda\x00\x98\x28\x64\xc3\x4f\xd3\xe7\xe6\xaf\xa5\xfa\x35\x84\xc6\x58\x97\xff\x04\xb0\xe4\xbf\xbe\x90\x41\x20\x56\x63\x8f\xf8\xf5\xfc\x18\x9c\xc8\xb1\x9a\xac\xf9\x34\xf8\x62\xac\x98\xe4\xe4\x83\x80\x88\x7b\xbc\x39\xf6\x50\x5f\xbf\xaf\x37\x82\x2a\x3b\xd6\x71\xe9\x11\x8c\x7e\x41\x0b\x41\x67\xf9\xdc\x2c\xb9\x6a\x72\x87\x0d\xb7\xa5\xca\x5b\x76\x6e\x5f\xa9\xfe\xc1\xdc\x6f\xa8\x6f\x2f\x42\xd9\x42\x97\x12\xf3\x88\xff\xb7\xd3\x9f\x48\xf5\xf5\x63\x37\xcc\x0e\x41\xc8\xca\x86\x41\xbb\xb8\x1c\x55\x3e\x11\x9c\x81\x13\x3c\xce\xa2\xd4\xf7\x6c\x3f\x7f\x9a\x91\x86\xff\x30\x65\x98\x4c\xcb\x7d\x86\x6a\x2b\x75\xb7\x4c\x80\xe7\x9b\xb6\x87\xde\xca\xf0\xe7\xdc\x55\xe6\x32\xed\xdd\xae\x6c\xac\x75\xa7\xc2\xe8\x2e\x01\x49\x87\xc7\xfd\xb5\x6e\x85\x5a\x7d\x9e\x71\xe1\x4d\x58\x24\xc6\xf3\xf7\x3d\x4a\xed\x0d\xc2\x3d\x31\x5e\x05\xf3\xaf\xeb\xcb\x59\x5d\x9c\xf2\x3f\x0d\x52\xf3\x1f\x92\x42\xd0\x1f\x0d\xe2\x6e\x30\x38\x0d\xd5\xe6\xe8\x08\x27\x16\x5d\x6d\x22\x7c\x59\x95\xba\xea\x0b\xee\x85\x6b\xaf\x25\x12\xa5\xd7\x9d\xd5\x30\xb9\xf0\xea\xcb\x4d\x9d\xb3\xcf\x7d\xce\x77\x76\xcc\xcf\x10\x07\x61\x98\xc7\xc0\xe6\x6f\x14\xa5\xb6\xd0\x56\xc5\xb1\x3b\xff\xba\xbb\x17\xd3\x21\xf9\xd1\x83\x65\xe1\x57\x9f\xa5\x78\x20\x90\x2c\x5a\x95\x0b\x07\x72\x6c\xc6\x8b\x85\xd2\x03\x5d\x53\xec\x71\xd1\xc6\xb0\x0c\x6f\xfe\x13\xe3\xce\x4f\x8b\x2f\xae\x29\x35\xfa\x38\xdd\x0a\x79\xca\x56\xaa\xcc\x2b\xfe\x26\xf0\xb5\xce\xb9\x78\xee\xb5\x90\xd6\xcc\x91\x14\x9b\x62\x45\xdb\x80\xba\x9a\xc3\x96\xe5\x14\xc2\x49\xbb\xa4\xb8\x0d\x9b\x23\x73\x25\xfa\xbd\xe5\x12\x04\x17\xe8\x7d\x81\xab\xba\x55\x3d\x0f\x52\x53\xd1\x91\xc0\xc6\x24\x5c\xd0\xf4\xca\xa7\xfd\x78\xf3\x46\x22\x11\x82\xfd\xda\x2c\x2c\x3b\x06\xec\x10\x8d\xef\xc3\x87\x87\xd0\xcd\x99\xfd\x57\xcb\xf2\xd2\x9b\x81\x0c\x27\x18\xc1\x32\x06\x88\xe0\x53\x98\xea\x41\x98\xf7\x7b\xbf\x3a\x8c\xa1\x00\xdb\x71\x11\xb9\x54\x68\x3d\xcf\xa6\x31\x83\xf4\xde\xdd\x6d\x81\x81\x11\x4d\xa5\xfb\x6b\x6b\xaf\x33\x8a\x6b\x57\xc2\xa7\x13\x3e\xf8\x01\x53\x01\x1b\xfb\x4c\xe6\x2f\xb9\x51\x96\xb8\xd0\xdf\xde\x94\xda\x98\x3f\x81\xfc\xeb\x38\x3d\xcc\x6e\xad\x92\x07\x3d\xf2\x2e\x14\xe2\xd0\xeb\xf7\xde\xa5\x9e\xbb\x91\x1f\x10\xdf\x8c\x4b\xf4\xbc\x6a\x6f\x20\x25\x41\x95\xcf\x1f\x72\xed\x5b\x99\xbb\xb2\x07\x0e\x41\xb4\xe6\x6c\xeb\x23\xc3\xb9\xc8\xb8\x39\x78\x79\x6c\x0d\xb8\xd9\xeb\xf9\x1a\xec\x19\xba\x0e\xa6\xc1\x6c\x1a\xde\x79\x81\xce\xc1\x7a\xfa\x54\x5f\xa5\x39\x9f\xdf\x20\x82\xa0\x27\x12\xe2\x94\xae\xba\xbb\xf1\xd9\x73\xba\xd6\x33\xea\xd8\x0d\xbb\x10\x28\x5c\xb1\x3c\xcf\xe5\xaf\xc4\x1c\x04\xc9\xba\x0c\x8e\x53\x4c\x56\x93\xf0\x3f\x75\x56\xf8\xf5\x0c\xb8\x88\x07\x7b\x9d\x5c\x63\x62\xf7\x32\xfd\x9d\xdb\x85\x55\x30\xfa\xe3\x95\xda\x62\xf3\x9d\xf8\x15\x9b\x45\x3d\x3f\x42\x08\x64\xd8\x53\x35\xe1\x16\x8f\x92\x9e\xc0\xbe\x66\xf7\xa5\x6c\x17\x5c\x98\xdd\xd1\x8e\x9b\x9d\xa3\xcf\x4f\xf3\x93\x99\x38\x05\x06\x3e\x63\xc2\x4f\x53\x2c\x83\x89\x5a\xe7\x9d\x4f\x9c\x07\x30\x6e\x40\x53\xfa\x56\x56\x86\xa9\xed\xeb\x59\xc4\x41\x50\xa8\x02\x49\x51\x42\xb8\x4c\xea\xfe\x29\x25\x33\x18\xbe\xae\xee\xc4\x38\x19\xbe\x91\x70\x46\xb3\xb5\x72\x97\xec\x67\x35\x40\xfc\xc1\xdb\x6b\x23\x45\x57\x2f\xbc\x46\x6a\x2c\x34\x2a\x33\x42\xca\x36\x3b\x2d\xf3\x62\xaf\x3d\xbd\xeb\xf7\xfe\x29\x22\xec\xf9\xef\xe9\xe1\x33\xdb\x57\xa1\xed\x58\x9b\xd0\x1b\x24\x45\xfa\xe1\x16\x0d\x3a\x44\xeb\x6e\xb2\xf5\x9d\x9a\x78\xc3\x12\xc6\x12\x58\x2a\x07\x2d\x1b\xfd\x42\xea\xcd\x8e\x54\x4c\x8b\xb3\x13\x86\x99\xa5\x5e\xd3\x4f\xac\x3d\x64\x4e\x9f\x0e\x4f\xe8\x05\x7c\x2c\x55\x4f\x43\x7e\x6f\x1d\xb6\xdc\xcc\x62\x69\x84\x8e\x3e\xa3\x7b\xb1\x6e\x00\xb4\xdf\x43\x81\x3b\xc6\x13\x36\xfa\xaf\xad\xaf\x37\x8f\x76\x3e\xee\x9d\x7d\x46\x34\xcc\xd6\x6c\xc6\x79\x98\xef\x73\x3d\xb5\xee\xb6\x63\xf4\x20\x59\x91\xfd\xed\x42\xa9\xcd\x5a\x43\x45\x6a\x9e\xfc\xed\xd6\xa2\xa0\xc7\x38\xa8\x0e\xb2\xfd\xdd\x14\x38\x82\xff\x6a\xbe\x90\xa0\xb3\xec\x48\xaf\x97\xb1\x74\x84\x39\xf0\xb6\xc1\x97\xa6\xfd\xc7\x81\xb0\x79\x55\xbc\x49\x30\xb6\x1a\x8e\x91\xe4\xb2\x8d\xda\x6a\x6e\xd4\xba\xff\x3d\xc2\x15\xb4\x7e\x42\xb5\xa6\x77\x52\x10\xf9\xcd\x47\x04\x10\xc8\x65\x3d\xfa\x91\x13\xef\xa1\x0e\x95\x77\x4b\x4f\x85\x03\xa7\x96\x9b\x56\x8f\x16\x4b\x96\x0d\xa9\x91\xb0\xfe\xe4\x6d\x02\xce\x63\xc5\xae\x6c\x40\x09\xa1\x76\x1d\xbf\xfb\xbe\x7d\x90\x5f\xfe\x85\xfc\xdb\xad\x8e\xe2\xd9\xbc\xb5\x17\x15\x6c\x8f\x77\x6b\x52\x7b\x8d\xa9\x06\x0f\x65\xdf\x3d\x5d\x03\x87\x17\xa1\xa4\x38\x7a\x51\x79\x1d\xf5\x05\xf6\x71\x5c\x16\xf9\x4c\x0c\xe7\x2d\x9f\x2c\x28\x2b\x97\xdc\x89\x94\xd8\x2f\xbf\x5b\x88\x03\xbd\x1c\xb0\xd5\x40\x66\x7b\x0b\x1f\xbc\x1c\xfb\x82\xe5\x3c\x4a\x35\x63\x5c\x7d\x42\x46\x48\xe0\x5c\x64\x7e\x90\xd1\x35\xb6\x6b\xf9\xe4\xf5\x5b\x49\x90\xc3\x3f\x26\x1d\xb1\x43\xf3\xab\x4d\x68\xe8\x29\x74\x93\xac\x71\x19\x77\xe5\x41\xfe\xf2\x04\xf0\xe6\x9e\x3b\x48\xbc\xc7\xc0\x65\x4c\x45\x14\x6c\x17\x5b\xf6\xa5\x24\x44\x8a\x5b\xa3\xae\xb2\xd9\x76\x4c\xad\x5f\x77\xe8\x25\xcc\x14\xef\x6e\xae\x85\xaa\x8d\x9d\x5b\xdc\xe7\x76\x72\x28\xa5\xb6\x63\xb8\xf2\xaf\xfd\x30\x7d\xa1\x77\x14\x78\xb0\x5c\xed\x31\xd2\xd0\xfc\xc5\xc8\xeb\x52\x24\x45\x42\x76\x22\x55\xfc\x9e\x1f\xc3\xb5\x6d\xce\x49\xf1\xcf\x45\xb5\x92\x45\x9c\xbe\x7d\x60\x44\x45\x41\x68\x02\x89\xa0\x3f\x47\xca\x2c\x22\x5e\x6a\xfc\x15\xc8\x96\xfd\x6a\x96\xef\xe1\xfe\x5c\x66\x49\x3f\xfa\x2d\x5b\x39\x59\x83\x61\xd7\xfa\x11\x1a\xbb\x7c\x5d\x06\x0f\x09\x6b\x2e\xab\x05\x0f\x48\x7d\x86\xa7\xe6\x4e\x91\x46\x46\xca\xb5\x7e\x2a\xca\xc6\x8f\x07\x23\x1e\x9c\x03\x21\x28\xc0\x2a\x61\x0d\x24\x3d\x6d\x2a\x6b\x24\xfb\x73\x7a\x5e\xa5\x98\x84\x04\xa1\x42\x13\x4c\x73\xa7\xee\xdb\x98\x34\x70\x8e\x24\x42\xdd\x48\x1b\xbf\xe2\x6a\x41\xcb\xf6\x01\xb5\x7b\x48\x50\xaa\x50\x5c\x16\xc9\xea\xfd\xf1\x39\x96\x94\xc0\x5f\x0a\x18\x61\x90\x12\x86\x38\x9a\x18\x06\x29\x46\xb4\x22\x5a\xfe\x55\xf7\x27\x40\xd2\x40\x5d\x4b\xb3\xed\x4d\xb5\x55\x02\x8c\x84\xdb\x3f\x8b\x38\x7d\x72\x69\xfb\x09\x14\xb8\x59\x52\x74\xf6\x75\x7c\x56\x83\xd4\x56\x19\xae\x4b\x81\x94\xcb\x71\x89\xaf\x4b\xd4\xfd\x3b\x08\xaf\x2b\x90\xb8\x48\x7b\x88\x39\xee\x90\x45\xbe\xc2\x52\xe7\xb0\x82\xb4\x4b\xfc\xa6\xc5\x74\x2f\x25\x18\x35\xa4\xb8\xd3\x96\x38\xa0\xf9\x5f\xcf\x80\xe4\xc9\x5e\xbc\x26\xc9\x47\x40\x36\xdd\xcb\x1d\x8f\x1c\x76\x42\x69\xe3\x0c\x93\xf6\x6b\xdf\xf6\x4f\xb2\xdc\x99\x46\x28\xc1\x61\x85\xb8\x4e\x3f\x35\x78\xf4\x0b\x92\x28\x2f\xa9\x34\x20\xff\xd5\x23\x67\x98\x60\xbc\x40\x9e\x04\xc7\xc6\xbb\x33\xc3\x00\x39\x03\x3c\x4b\xc8\x70\xb0\x8b\x8e\x41\x7a\xaf\xff\x6c\xb2\x86\x7f\x15\xcd\xf8\x90\x14\x37\xc3\x77\x0d\xe0\x0e\x69\x28\x6a\x2c\x5e\xa4\x15\x1f\x90\x79\xee\x21\x27\x19\xae\xfe\x6d\xba\x97\x3f\x94\xfc\x7d\x29\x3f\xaa\xff\x69\x03\xe4\xc7\xfd\xea\xb3\x5f\xc6\xde\x73\x02\x31\x12\x0f\xa5\xd5\xf1\x15\x08\x89\x0c\xbc\x3c\x47\x3f\x10\xa2\x5c\x7a\x4c\xa3\x04\xda\x62\x27\x67\xcc\xc1\xbe\xf1\xce\xb6\x52\x31\x5d\x10\x44\x72\x83\x13\x3c\xb0\x70\xf8\x16\xeb\xc0\x7b\xaa\xa2\x34\x7d\xf3\xe4\x75\x6d\x18\x3b\x25\xb9\x3d\x97\xe2\xd0\x63\xdb\xfe\x39\xe0\x78\x54\x70\x32\x4d\x2f\x3a\x44\xa8\x53\x77\x0f\x09\xab\x62\x96\xbf\x49\xab\x68\x3e\xde\x2a\xc5\xbd\xec\x2a\x82\xb9\x49\xa8\xd4\xa4\x07\xff\xf0\xa9\x0f\x8c\x57\x4b\xb2\x2b\xfa\x7a\x31\xa7\xa9\x78\xdc\xc8\x25\x1b\xf6\xf7\x21\xe7\x19\x0b\x89\x50\x56\x09\x52\xd2\x70\x14\xd7\xab\x30\x30\x13\x9e\xf7\xa2\x5d\xca\xae\xa7\xb5\x00\x4c\xa6\x9c\x1f\x2d\x1f\xe4\x2f\xa6\x03\x51\x13\x78\x41\x85\x5a\x0d\x77\x0a\xd6\x0f\x39\x30\x95\xfe\x5e\xa0\xd9\x7b\x29\x12\x3d\xa9\xa1\xfa\x43\x35\xe7\xa5\x2d\x7c\xdf\xf6\x6f\x3e\xb2\xc3\xcb\xd9\x31\xae\xa4\xfb\x16\x32\xd3\xaf\x62\x5f\x78\x1f\x2f\x8c\x42\x86\x33\xd1\x2a\xb9\xc8\x27\x7d\xe5\x2c\xa4\x60\x5d\xd6\xf6\x40\x24\x54\x96\xc4\xe5\x96\xfe\x33\xef\xa3\xb3\x3f\x35\xbd\x0d\x27\x42\x60\xee\xc9\x52\xc6\xb9\xe0\xa4\x2b\xae\x6f\x3e\xb3\x62\x32\xf8\x5e\xb4\xcc\x3f\x6c\x40\x1e\x55\x10\xfa\x02\x2f\x91\x26\xb6\xdc\x8c\xea\x57\x9b\x78\x9a\xf7\xe2\x75\x10\x4c\xa2\x07\xd9\xb4\x4f\xee\xd2\xaf\x84\x60\xa4\xa0\x79\x53\x0a\x60\xb7\xf8\x18\x3c\x5e\x6e\xb7\xc0\xbc\xf1\xee\xa5\x46\x26\xbe\x3a\x77\xbb\x44\xf4\xf6\x5d\x2d\x0c\x72\x89\x9f\xdc\x3d\x21\x63\xcb\xa7\x24\xf6\x57\xbe\x5b\xfe\xa0\x4d\x50\xfe\x19\x03\x23\x09\xbf\x22\x35\xa2\x92\xf5\x5b\xc8\x7c\x89\xe2\x03\x71\x70\x9a\x36\x42\x79\x68\xfd\x2e\xb4\xca\xe7\xcf\xfe\x73\x36\x21\xe0\xaf\x54\x11\x15\x21\x9f\xb2\x76\xbf\x54\x59\x43\xa2\x1f\x9d\x10\x1b\xda\xf5\x72\x8d\xac\x05\x2c\x01\x18\x31\x89\xbd\x1c\x45\xea\x67\xd7\xc0\x4a\xfb\xce\xa4\x12\xde\x2f\x57\x05\x12\x0c\x4e\xb6\x34\x0e\xe7\x7f\x2f\x0d\x4c\x30\xcc\xe0\x66\x4b\x1e\x49\x5c\xfa\xd5\x56\x41\x39\xd7\xe7\x7f\x17\x84\x07\xc8\x4a\xd1\x27\xf9\x11\x61\x32\x96\x33\x99\x26\xc7\x6f\xf0\x2a\xf8\xea\xa9\xa6\x8f\x88\x5c\x46\xc5\xc6\x6e\xd4\x1d\x7e\x9e\xa9\x46\x8e\x33\x95\xba\xfd\x79\xd9\xf1\xfd\x63\x69\x5b\x30\x45\x0b\x74\x5d\x42\x2c\x17\x2c\x95\x08\xc1\xff\xd5\x13\xe3\x56\xd8\x2e\x93\x54\x6a\xfd\x4e\x26\x14\x9e\x75\x30\xdb\x88\xc5\x08\xb2\xa4\xf8\xd4\xc7\xbb\x5f\x40\xc6\x7e\x10\x5d\xc8\xe1\x1f\x85\x14\x8e\x5e\x8d\xb2\x20\xf9\xb8\x75\x8c\x1e\x22\x7e\xe2\xac\x90\x51\x39\xfd\xe7\x1e\x71\xf2\xc9\xaf\x40\x2b\x29\x4a\xed\x5b\xec\x65\x58\x8a\xad\x17\x79\xf0\x88\x24\x14\x98\xa6\x46\x13\x0f\xb2\xaa\xe3\x65\xeb\xef\xe6\xc8\x08\xf8\x64\xd1\xea\x69\xab\x74\xf0\x7e\x70\x77\x8d\x6e\x32\x9e\xd7\xf6\xea\x43\x27\x64\xa6\x23\xb8\xc8\x7e\xb5\x8d\x5e\x96\xe3\x20\x82\x40\x4a\xdb\xc8\x59\x81\x83\xc1\xe1\x85\x32\xa9\x6c\xda\xaf\x69\xdb\x1b\xa9\x5c\xcb\x17\x70\xb6\xb2\xaa\x92\x4c\x27\x98\xe0\x43\x84\xe8\x06\xd8\xb5\x22\x55\x99\x41\xb4\x4b\x95\x33\x12\x50\x6c\x97\xd7\x04\xf9\x9f\xf4\x47\x87\x23\x0e\x92\x52\x39\xbf\x8e\x00\x07\x70\x9a\x89\x9b\x60\xa5\x49\x71\x17\xfa\x00\x58\xc1\x16\xb0\xdb\xc1\xb8\x1f\xd5\xb5\xdd\xf2\x4a\x1e\x1e\xf4\x53\x9d\xb4\xd0\x8f\x4b\xbc\x1b\x78\x6d\x46\xca\xb6\x7c\xd6\xf0\x80\xa0\x9d\x1e\x2c\x3d\x8f\x4d\xc4\xbd\xe2\xa0\xbb\x80\xb2\xde\x11\x78\x56\x21\xa3\xc8\x25\x77\x9b\xf6\xad\xc8\x2b\xcd\x70\xb6\x7d\x65\x65\x1b\x10\x9a\x99\xdc\x83\xbc\xb9\x50\x32\xab\x2b\xfb\x72\x21\x0e\x9a\x5d\x01\x25\x4f\xac\x2e\xe7\x2c\x3a\x01\x9b\x3b\xd1\x8d\x1b\x43\x0c\x9f\x4e\x9c\x86\xc8\x6b\x7d\x46\xac\x11\x6c\xe5\x55\x3f\x26\xa7\xdd\x65\x31\x12\x1b\x0f\xc0\xfe\xb1\x67\xe5\x33\xa0\xc6\xb3\xfb\x1c\x7b\xa3\x45\x1c\xb4\xe3\xa3\x20\xff\xe0\x0b\xda\x9e\x46\xa6\x69\x93\x80\x38\xec\x13\xea\xf0\x85\xc7\x91\x15\x7f\xae\x85\x72\x90\x14\xd9\xb6\xc9\x76\xf9\xd5\xd5\x05\x8c\x8d\x07\x80\x00\xab\xca\xf3\x54\xbe\x48\xb9\x26\xb5\x1a\xfd\xf6\x86\x41\x43\x9b\xbb\x3d\x66\x71\xf6\xb4\x35\x16\xbe\xc8\xdc\xb4\x75\xdf\x0b\xb3\xfd\xbb\x71\x74\x92\xe1\xd7\x3b\xb1\xaa\x59\x85\x1a\xbf\xba\x86\x27\x8b\x05\x5f\x41\x5b\x7a\x1f\x0c\x91\x6f\x0e\xf8\xa9\x92\x5c\xa9\xf7\x65\x48\x15\xd0\xd1\xe7\xf9\x53\x39\x15\x13\x69\xd3\x04\x60\x8b\x81\x6d\x84\x5e\xe2\x6e\xd0\x9c\x88\xf8\xd8\xca\x22\xd0\x0a\x8f\xa2\x6f\xea\x04\xcf\x42\xb3\xa3\x0f\x80\x55\x82\x9b\x6f\xf6\xe1\x32\x1b\x8d\x60\x60\x77\xc7\x07\xc9\xb3\x31\xd6\x69\x0f\x0a\x59\xdd\x55\x4d\x64\x79\x1a\xa6\xbb\xbd\x5b\x87\x95\x4c\x1d\x73\xf5\xaa\x5f\x5b\x99\x36\xbc\x72\x67\xc5\xa0\x81\x6b\x55\x16\x63\xce\x4b\x76\x73\x39\xdf\x83\xa3\xed\xa2\xa1\x9b\x97\xbd\x68\x7e\xbd\x30\x2c\x1e\xc2\xdb\x10\x3b\x12\x5d\xa4\x63\x6b\xf0\x11\xbe\xe9\x35\xcc\x5e\xcb\x3e\x74\xf1\x92\xff\xbc\xfc\x1e\x52\x8b\xa4\x6f\xf5\xe9\x9c\xe6\x4e\x17\xfa\xf9\x63\xcf\x76\xd5\x6e\xa4\x4a\xd5\xeb\xbf\xfc\x4f\x46\xc2\x57\x04\x8b\xee\xea\xe6\x15\xa1\x3e\x4f\x8a\x8e\xd1\x94\x65\x0f\x3f\xdf\x88\x92\xf9\x90\xc2\x4f\x44\x25\xc9\xcd\xb1\x52\x03\x19\xdb\xb4\x68\x01\x8f\x67\xb0\x17\xd3\x5b\x9a\x4b\x06\x71\xac\x4f\x91\x95\xf2\x17\x21\x39\xcd\x51\x9f\xf3\xe3\x2c\x93\xac\xb0\xc3\xda\x28\x15\xe9\xfc\xe6\x3c\x32\x24\x91\x24\x37\xb1\x73\x2e\x35\x27\xfd\xb4\xc2\xcb\x57\x2d\x31\x3f\xf1\xe7\x5f\x9c\x93\x48\x27\x91\x08\xab\x31\x8b\x48\x13\x67\x40\x26\x9b\xc9\xfd\x6c\x7a\x59\x9e\xc6\xf0\xf2\xb5\xbb\x9a\x92\xbc\x68\xe8\xb5\x18\x5a\xbd\x9d\x73\x74\x15\x9e\xf5\xa9\x9c\xa0\x1f\x1b\x7d\xd9\x4c\xb8\x76\xf2\xe7\x49\x64\x87\x47\xf9\xcf\x4c\x94\xa3\x3a\x04\x9c\x1e\x17\xd8\xa7\x71\x36\x05\x2d\x79\x7f\xd9\x18\x64\xf9\x47\xac\x6c\x3f\x47\x6a\x7f\xd2\x8f\x13\xfb\x34\x38\x97\x2a\x36\x4c\xe6\x00\x13\x1c\x8b\xa4\x5f\x18\x5d\x5f\x2c\xc9\x05\xbd\xea\x2a\x1a\xd6\x2e\x77\x37\x33\x49\xd3\x6c\x17\x6c\x78\xfb\x53\x5f\x7b\xcd\xf7\xaf\xb6\xec\x1b\x3b\x94\x5b\xe1\xe2\x66\xb6\x9a\xf2\x60\xa2\xa1\x1b\x53\x14\x72\x1d\xa3\x66\xc5\x7f\x1c\x1a\x28\xdd\x5f\xd1\xab\xcf\xa2\x83\x52\x7e\xec\x9d\x16\xad\xd9\xc7\xb1\xd9\x5e\xc6\x6f\x1d\xde\xbc\x3d\x72\x3d\xba\x27\xb3\xfd\x31\x95\xd1\x01\x32\xbc\x59\xb4\x5d\xe8\x84\x44\xa5\xbe\xed\x18\xd6\x4b\xe0\xa6\x5d\xe6\x6f\x8c\xdf\x95\x52\xbf\x0c\x6b\x0d\xc5\xa5\x54\x50\xb3\xa4\xd4\x32\x58\x6d\xce\x33\x20\x92\x27\x35\xf0\xdb\xa3\x76\xcc\x11\xcb\xae\xbd\x6c\x5a\xde\x5c\xb0\xc5\xe6\x42\xef\x7a\x2c\x99\x26\x08\xd1\x7e\x6d\x23\xb6\x0b\x3d\xeb\xda\x88\xbd\xe9\x7f\x07\x7f\xb4\x7d\xcb\x21\x55\xfe\x4c\xb0\xc1\x26\x40\x64\x2d\x57\x4e\x6b\xfa\x72\x16\x65\x25\x15\xaf\x14\xb7\xe3\xaf\x92\xae\xd9\x55\x66\x20\xf6\x9d\x3e\x5e\xd8\x7d\xc2\xd5\xb9\xc0\xcf\x45\x96\x7e\x43\x75\xfa\xa2\x03\x39\xea\xfa\x62\x1f\x90\x2b\x9a\x62\x74\xa6\x14\x2b\xb7\x16\x68\x2d\x5a\x5f\xa8\x4f\x81\xf5\x8b\x46\xa5\x52\x5d\x64\xeb\xc8\x94\xad\xbb\x67\x33\xb0\x74\xe2\x6a\x7c\x3f\x64\x93\x4d\xa4\x49\x22\x61\x81\x46\x9e\xac\x46\xb9\xa7\xb7\x03\x64\x6d\x19\x40\xad\xba\x32\xe8\x2f\x8e\xf5\x62\x03\x39\x69\x6c\xdd\x92\xa1\x15\x3e\x7e\x61\x35\xcd\x83\x4e\xc3\x5c\x0a\xaa\x59\xd0\x90\x30\x07\xcf\x3d\x83\x16\x01\x90\xed\xb9\x8f\xa4\xe7\x5b\xc0\x55\x41\x92\x97\x22\xc1\x3c\x63\x64\x06\x42\xff\x50\x9a\x5b\x0f\x38\xa4\x29\x55\x42\xc1\xcf\xd2\x51\xe4\x20\xcf\xaa\xc0\x90\x9f\xda\x64\xb8\x0e\xd3\xce\x6f\x2d\x0e\x07\x19\xbd\xcb\x6f\xa1\x21\xe9\xee\x9b\xe8\xd9\x65\xdd\x16\x7e\x90\x0e\x7f\x1f\x9d\x85\xd3\x8e\xb0\x23\x1b\xf6\x54\xe6\xf6\x20\xdc\x3b\xee\x9a\x5d\xd6\xff\x87\xf2\x21\xba\x39\xb5\x7d\x38\xba\x59\xc0\x3d\x2b\xf9\x06\xe5\x47\x26\x68\x43\x1f\x17\x22\xea\x8d\x1e\x18\x43\xd8\x81\x7e\x1c\x75\x67\x5a\xb0\x81\x76\x2a\x39\x8e\xf3\x19\x4b\xca\x36\x42\xe2\x52\xa9\x58\xa4\x61\x10\xde\x4d\xac\x15\x9d\x2c\x37\x5d\x4e\x0a\x7f\xae\x73\x2f\x77\x38\x21\xbd\xc9\x1e\x4e\xad\x7b\x0f\xff\x29\x02\x59\x57\x74\xef\x75\x86\x49\xe1\x5a\x8a\x5d\x96\x94\x08\x42\xf7\xd8\xfc\xb2\x98\x8d\x24\x90\x40\xdb\x55\x73\xeb\x12\x43\x77\x6a\xf9\x1f\xca\x8f\x91\x40\x00\xa1\x1b\xe1\x90\xd9\x31\xb9\x2d\x1d\x48\x52\xe5\x75\x61\x78\x88\x8b\xfb\x84\x6e\x13\x2c\x90\xbb\xa1\x15\xc0\xf5\xf7\xae\x24\x4f\x16\x0d\xa5\xb6\xc2\xa6\xe9\x36\xa3\x11\xdb\x8b\xdb\xf2\xf8\xa7\xce\xf5\xc9\xd6\x08\x09\x4d\xec\x3c\x0e\x9d\xd3\x61\x4b\x51\x6f\xb0\xb7\x5a\x78\xf0\xcf\xab\xab\x4a\x72\xb1\xa4\xec\xed\xf5\xa3\x97\xa2\xc8\x6d\x69\xff\xb3\x36\xc4\xd2\xe6\xc0\xfd\x9f\xa7\xd6\x05\x89\xf6\x1f\x40\x37\x89\x5a\xcb\x32\xa8\xf9\x0f\x93\xcb\x46\x8b\x29\x08\xfe\x7d\xf7\x9a\x04\x0f\xa2\x53\x51\x4f\x36\x4d\x1c\xcf\x99\x45\x3b\x4c\x4a\x52\xd4\xd6\x76\xab\x60\x3a\x5f\xff\x08\xdc\x47\xd1\x59\x06\xda\x0a\x9e\xda\x0f\x71\x5d\x68\xca\xfa\x54\xf7\xd7\xb0\xa5\xc8\x44\xac\x66\x0b\xfe\x63\xa4\x5e\x94\xaa\xee\x5d\x15\xbc\x6e\xba\x2d\x5e\x14\x4d\x0a\xed\x8d\xa7\x55\xf8\x59\x6f\x82\x2d\x25\x35\x3b\x85\x5f\xef\xcc\x18\x4a\xd2\x5b\x7b\x07\x36\x75\x65\x60\x1d\x6f\x04\xae\x4b\xe8\xd9\xf5\xcd\x9f\x29\xd7\x27\x5e\x97\xae\xe2\x3f\xba\xf5\xb3\x10\xe4\x26\xf4\x6d\xc4\x72\xb6\x70\xe2\x9f\xa0\x67\x1f\x8e\x76\xb1\xfd\x78\xa9\x56\xc0\x5c\xb4\x15\x2b\xaa\xc4\xa8\x30\xca\x81\x78\x4a\x4c\xbf\xbf\x38\xb9\x8d\x5f\xbe\xf6\xa6\x81\x5d\x64\x73\xdc\x83\xa8\x9e\x73\xbe\x50\x58\x86\xbb\x9a\x92\x7f\x61\xac\x2c\x52\xab\x09\x3f\xa8\x5b\xa0\xc9\x6b\x89\x8d\x7b\xf4\xea\xe2\xb3\xb2\xbd\x11\x55\x78\xa3\x34\x6a\xc3\xb8\x77\x3b\xe0\x07\x94\xf3\xd4\x78\x90\xbe\x0b\x16\x65\x7f\x16\x93\x79\x5d\xd9\x29\xc3\x75\x8a\x34\x38\xd9\x26\x62\x25\xac\x33\xf2\xc0\x61\x48\x1e\xf4\x9e\x58\xb5\xb0\xe3\x2d\x98\x96\x64\x98\xd4\x35\xba\xa3\x79\xaa\x40\x87\x75\xbf\xe5\x6e\xa9\x36\x57\xa1\xab\xea\x2d\xc5\x4d\xe1\xda\x84\x5e\x8a\xa0\xb3\xfd\x2b\xc8\xc3\x22\x40\x38\x97\x78\x20\x51\x1b\x75\x45\x9a\xf5\xa4\xae\x82\x3f\xff\xa0\x46\xe5\x87\xdb\x27\x89\x77\xdd\xc1\x0e\xb0\xfe\xfe\xd1\x07\xbd\xc7\x2a\x40\xd4\xe4\x2a\xde\xe8\xfe\x47\x32\xec\x23\x39\x23\x31\x9f\xfd\x18\x9e\x89\x7e\x8e\xe6\x8f\x7c\x87\x58\x43\x2a\x4d\x96\x5c\x88\x65\x25\xd7\x19\x1d\x0a\x5b\x94\x97\xdb\xd1\x69\x57\x8c\x15\xb6\xe2\x77\x56\xfd\x84\x70\x39\xfe\xda\x19\xda\x33\x61\xbd\x7d\x56\x2a\x79\xb5\xd4\x61\x57\xc9\x3d\x56\x9a\x93\xa6\x90\x73\x0e\x49\x6e\xe7\xbe\x0c\x7b\x0c\xc1\x13\xd9\xd6\x7c\xbc\xc7\xfa\x97\x54\xd8\x96\xfc\xd4\x86\xa3\xb3\x66\x58\xec\xdc\x5d\xc9\xd7\x2c\xe5\x3c\x6e\xe1\xfd\x7e\x52\x63\xca\xed\x73\x9e\x09\xee\x7e\x6c\x78\x9f\x56\x74\xd6\xa4\x78\x23\x46\x6e\xcb\x72\x51\x79\x19\x4b\x72\xba\xbe\xd9\xaa\xa7\xf8\x41\x4a\xbf\xbe\xf8\x09\x83\x37\x70\xd6\x4b\xdd\xa6\xcc\xae\x29\x57\xa1\x9f\x90\x50\xda\xb2\x04\xf8\x42\xc1\x3f\xba\x3e\xf9\x97\x14\xcf\xbd\x1f\xe5\xa4\x2c\xc9\x9d\x76\x37\x0c\xe3\x0b\xed\xfd\x23\x87\x49\xf7\x97\xfd\xfb\x8d\x08\x5f\xb6\x14\x23\xc0\xfe\x2c\x1b\x85\xff\x02\x16\xc4\x28\x92\xb0\x2e\x82\x5b\xea\x9c\x70\x9e\x12\x7f\x59\x30\x47\xe2\xc2\x8a\xf9\x02\xed\x3d\x92\xc2\xd8\x6f\x22\xff\x7e\x2d\x22\xa9\x2e\xe3\xfb\xbc\xa5\xac\x18\xfa\x8f\x5d\x51\x8e\x86\x3c\xde\x7e\x34\xd3\x54\x55\xbd\x65\xf5\x79\x43\xb6\xbb\x29\xe6\x29\xff\xd0\x17\xfa\xcc\x93\xb9\xfc\xb8\xe9\xc0\x9d\x47\xc0\x1b\x44\x32\xc0\x49\x3b\xe0\x71\x33\xb6\x1c\x2e\x31\x7d\x11\xf9\xdb\xff\x64\x22\x28\xf6\x0e\xd3\xf9\x58\x8f\x47\xe4\x58\xe7\x6b\x79\xee\xaf\x24\x93\x9d\xa8\xef\xf4\x78\x41\x10\x57\x37\xcc\x7d\x44\xb5\xd9\xf6\xcf\x4e\x2e\x1a\x35\xe0\x47\x5f\x65\x95\x82\x41\x40\x18\x82\xd0\xd8\x8c\xb0\xce\x80\x9b\x63\x1b\x55\x85\xb7\x5a\x88\xfc\x7e\x5c\xd8\x8f\x8e\x07\xee\x9e\x2a\x90\x46\x4f\x1a\x7a\x95\xe6\x08\xb3\x83\x66\xae\xce\xb9\xd2\x16\x84\xc5\xc0\x04\xb5\x1c\x3c\x42\xe3\xe0\x58\xe7\x9c\x33\x57\x76\x66\xf6\x87\x10\x46\x16\x58\x86\x77\xf6\xa2\xf5\xf3\x18\xe1\xd6\x24\xe3\x33\xc8\xd2\xaa\x6f\x39\xf8\x7a\x10\xaf\xad\xc3\xf6\x2d\x2d\xb4\xec\xbc\xb6\xf2\x24\x70\xce\xfe\x01\x67\x0e\x9d\xe7\x41\xb9\xd1\x26\x24\xda\xc2\xed\x8d\xb6\x2d\xc6\x77\x16\x75\x03\x5a\xb0\xea\x98\xab\x08\x15\x40\xd7\x61\x30\x2b\x1a\x95\x78\x9d\x16\xf6\xa6\x75\xba\x53\x03\x6f\xed\x06\xbf\x97\xc9\x7c\x59\xa8\x85\x8d\xec\xe8\x91\x41\x57\x38\x8b\xdc\xcd\xba\x47\x58\x0b\x9f\xa1\x41\xcf\x98\x15\x38\xe6\x38\x3a\xb8\xb0\x4d\x7d\xaf\x2d\x31\xbc\xec\x73\x12\xc7\x9f\x36\x81\x36\xf2\x5a\xd1\xe4\x64\x47\x98\x60\xff\x97\x07\xfe\x1d\x7a\xef\xce\xf1\x08\xf7\xf4\xf7\x90\x74\xdc\x05\xbe\x5c\xfb\x76\xf4\x95\x62\x49\x0d\x7e\x61\x7c\x06\x6f\xb8\xcc\x93\x9f\xbc\x13\x6f\xdd\xd1\x68\x95\xa9\x7c\x91\xbb\x84\x04\xbe\x80\x73\x64\x72\x26\xe9\x24\x54\x62\xf9\x0a\xbe\x6b\x51\xd7\x24\xc9\x13\xdf\x0d\xf4\xfe\x76\x62\xe8\x83\xc8\x49\xe2\x3d\x55\x28\xff\x23\xf7\x47\x9b\x3c\xc9\x55\xc9\x07\x77\xb3\x78\xa4\x4c\x3c\x17\x5a\x7b\xa6\xd2\x48\x56\xc0\xb0\xc0\x87\x1a\xc1\xb7\x48\xd8\xb3\x70\xa3\x39\xdf\x72\x94\xd8\xd3\xe3\x1c\x2c\x12\x03\xd0\x35\x3d\x18\x91\xb3\xe1\x5b\xb5\xca\x41\x0e\xad\x57\xfd\x3e\x23\x24\xac\x23\xab\x38\xfd\xe9\x04\xf5\xef\x55\xf1\x55\xc1\x2b\x21\xa8\x5d\xf1\x1d\x92\x55\xea\x20\xfa\xe0\x94\xde\xc0\x79\x39\xd3\x9b\x83\xcd\x8b\xce\x5c\xb6\xa2\x82\x64\xf8\xf8\x03\x97\x24\x37\x45\xec\xaa\x39\x1e\x06\x8a\xbb\x57\xd3\x3d\xf5\x9b\x6c\x06\x92\x7e\xec\x03\xfb\x7c\xee\xb1\x84\x88\xce\xd2\x2e\x9f\x9f\xd7\xc4\xef\xbe\xb9\xfe\xbc\x92\x72\x67\x88\x60\x33\xc5\xdc\xd7\x8b\x08\x7d\x49\x4a\x63\xee\x6b\x2b\x23\x42\x04\xd7\x29\xf6\xce\x5f\x4a\x42\xef\x56\xc3\xcb\x90\xed\x62\x84\xda\x5c\x24\x54\x06\xf1\xc9\x75\xb4\x03\x9a\x8c\xeb\xdc\x16\xdb\x78\x1d\x7d\xb9\x40\xd2\xa3\xfc\xa1\x4a\xfa\x9f\x3f\x15\x2b\x3b\x3b\x7d\x9e\x8d\x53\x0a\xf4\x9b\x5b\xf7\x0f\xf4\x03\xd3\xdc\xb7\x3b\x1d\x15\x6e\x36\x6d\x3c\xe0\x8a\x85\x66\xe7\xa7\x13\x34\x4b\xcd\x71\x7b\xc0\xc8\x20\xab\xaf\xef\x46\xbf\xab\x21\xea\x33\xe8\xab\x34\xb7\x1b\xbb\x6f\xf5\x95\x73\x88\xf7\xe8\xe9\xd0\xe3\xd6\xaf\x4a\xbf\xf6\xe2\x25\x91\xba\xe7\x57\xc5\xdd\x18\x21\x82\xfd\x87\x40\xa7\x9e\xc2\x53\xb2\xc4\x15\x04\xc0\x55\x4e\x4d\xf1\x27\xf2\xf8\xec\x12\xe7\xd1\x51\x2f\x42\xe7\x26\x33\xa1\x34\x69\x6b\x96\x19\x45\x81\xe9\x79\xf6\x09\x1f\xe4\x79\x34\xd5\x19\xac\xcb\x85\x58\x59\xb1\xd6\xa6\x67\x41\xad\x6a\xb3\x61\x5f\x68\xad\x17\xe8\xb5\xc8\x9b\x5b\x84\x67\x96\xe6\x15\x66\x17\xa4\xd8\x65\x11\x07\x99\x9d\x00\xe2\xa5\xe3\xbb\x1d\x5a\x73\x9a\x71\x27\x81\x4b\x3d\x75\xdf\x35\xef\x28\xee\xfa\xc8\x11\x36\x18\x6b\x9c\x4c\x28\x9c\x2f\x9c\x06\x51\xc6\x39\x33\xf8\x08\x0c\x03\xa3\x2a\xcd\xfb\x84\x30\xe6\x5a\x83\x9e\x0a\xc3\xce\x4a\x9c\xd8\x57\xbd\x97\xbd\xb9\xbc\x9f\xbe\xf3\xfd\xcc\x6e\x4c\xab\x6e\x7f\x76\xc2\x35\x42\x9a\xf6\xc3\xc1\x52\x99\x76\x64\xeb\x25\xf2\xcb\x67\x2e\xfe\xc2\x17\xb3\x56\x40\xbd\x48\xf0\x5c\xe3\xc9\x71\x53\xd1\xb7\x91\x5d\x69\xcf\x75\xd1\x32\x9d\x54\x41\xdc\x14\xb1\xf5\xcb\x3b\x43\xa7\x12\xe6\x40\xff\xc0\xb9\xf2\xdc\xc6\x17\xe8\x73\xb7\x4b\x3b\x02\xd0\x39\x6e\x13\x4c\xc3\x2d\x02\x30\xbb\x2c\x2a\x8f\xb8\xe2\xad\xd7\x5c\x72\x0b\x3a\x4c\x01\x99\xd7\x6d\x2f\xb1\xa4\x80\xd6\xe9\xd9\xbe\xda\x92\xaf\x09\x44\x70\x3b\x90\x70\xa9\x1e\xe8\x88\xe7\x3c\x79\x06\xc8\x33\x79\x5c\xb2\xba\xb0\xbf\xce\x56\xde\x71\x05\x16\x55\x17\xe1\xac\x8c\x19\x21\x14\x4a\x83\x92\xf3\x40\xe7\x0f\xcf\x83\xe3\xbe\x2a\x43\xfc\xd1\xb2\xae\x37\xca\x24\x25\xc2\x77\x95\x31\x97\x18\x55\xae\xea\x55\x35\x04\x60\x32\xae\xfa\x02\xd8\x74\xa0\xcf\xcd\x9d\x65\xca\xe8\xba\x0e\xbf\x58\x44\x7c\x6f\xf3\x0d\x58\xc0\xbd\xbe\xb1\xef\x59\xbd\xb9\xdd\xbc\xf0\xfd\x40\x19\x11\x8b\xa5\x40\x56\x1a\xe2\x1f\xa6\xb6\xd6\xe4\x88\x12\x11\xff\x5c\xc8\x95\x7d\x13\xd4\x19\x78\x72\x36\xf3\x5b\x48\x25\xdb\x61\x34\x37\xf3\xf9\x04\x19\xab\xb5\x9f\x93\x96\x1e\x2a\x0b\x33\x0c\x48\x75\x0f\xc8\xe1\xec\xd7\xcd\xf9\x4c\xc1\xfe\x33\x10\x6e\x26\xb4\x94\x00\xc9\x71\x79\xe9\x44\xba\x53\xf9\x2e\x59\x75\xbd\x7d\xa1\x2a\xd4\x00\x96\xf9\xc4\x33\xef\xcf\xc1\x34\x55\x5c\xfb\xf7\xd9\x1b\xe8\xfe\xb6\x7c\xd0\xc4\xcb\x68\x25\xc4\x62\x39\x58\x92\x23\x38\x0c\xef\xcd\x8b\x20\xdc\x49\xb9\x67\xc9\x81\x74\x0b\xa1\xe8\xa9\xd3\xc0\x67\xf4\x67\xc5\x14\x8a\x71\xba\xa4\x67\xde\x66\x69\x11\xfa\xb9\xc8\x34\xd5\x12\x41\x13\x9f\x10\x95\x3e\x4d\xf7\x7c\x88\x44\xe6\x91\x5e\xa6\xf0\x78\x46\x1f\xda\x82\x77\xd8\x04\x7a\x7d\xe5\xd1\xdc\x31\xb4\x60\xa4\xcd\x60\x2e\x92\xed\x6a\x7c\xb9\x10\x83\x4c\x86\x45\x54\x7b\xb3\x7c\xb7\xc8\x27\x59\x07\x38\x61\xaa\x02\x61\xea\x1a\x85\x9f\xb0\xed\xa5\xfb\x5a\x98\x1f\x04\xf7\xf3\x5e\x53\xd8\xf3\x23\x28\xcb\x89\xdd\x61\x1e\xc9\x6f\x82\x3e\x78\xc0\xec\xd8\xb5\xd5\x16\xba\x2b\xb9\x20\xb3\xd1\x06\x07\x8b\x80\xa2\x81\xf6\x60\x5e\xa6\xfc\xd3\x5c\xaa\xe3\x27\xcd\x36\x2c\xe8\x77\x92\x84\x93\xfa\xd8\x77\xac\x65\x92\x5c\x14\xbf\x67\xe7\xeb\x1e\x7e\x88\xa8\x01\xcf\xf4\x43\xab\x29\x59\x54\x1f\xcd\x1e\x64\x25\x5f\xf8\x7e\x25\x45\xeb\xec\x85\x62\x3c\x30\x8f\x97\x06\xd3\x7a\x1e\xd6\xca\x07\x1d\xc5\xe7\xd2\x6d\x5e\x65\x97\x4c\x45\x56\xda\xad\xf6\x2c\xda\x76\x87\x2f\xa3\xd8\x11\xef\x9d\x23\xef\x76\x65\x0e\x2a\x2e\xb0\x68\xba\xc1\x54\x83\x3f\xda\x8d\x6d\x73\x42\x04\xdf\x4b\x03\x8b\x65\x91\x62\x18\xb1\xa6\x19\xb1\xad\xef\xb8\x87\xd1\xad\x3f\xa4\x13\x18\x72\x71\xf7\x04\x95\x80\x41\xf1\x9e\x50\x44\xd7\x88\xf3\xd0\xa0\x1d\xbc\x70\x39\x42\xa3\x2f\x29\x88\x77\x8b\xf5\x35\xb4\xb6\x98\x98\x8d\x64\x3c\x78\xca\x67\x88\x14\x4d\xee\x14\x66\x7f\xab\x6c\xf6\xa9\x91\x3e\x8b\xc8\x55\x1c\x1f\x26\x11\x58\x25\xd7\x5a\x21\xe9\xbd\xfa\x2a\x97\xfc\x99\xa8\x48\xdb\xad\xfb\xd0\x6c\x4a\x6b\xa2\x05\xf5\x30\xf3\x0d\x8b\xa0\xe4\x6f\xa9\x33\x02\x9a\x84\x75\x0f\xdc\x67\x20\x57\x76\xf2\xe7\xf6\xa0\x0e\x2f\x44\x05\x51\x5f\x96\x4f\xa2\x5f\x79\x4e\x97\x34\x06\x95\x53\xf3\x5e\x1e\x2f\x3d\x80\xfb\x9c\xf7\xec\xe5\x04\x76\x83\x0d\x8d\xe0\x6b\x48\x2c\x99\x38\xe3\x0f\xbf\xdc\x0f\x48\x98\xaa\x50\xd9\x9f\x66\x2c\x09\xea\x00\x22\x49\xed\x71\x77\x79\xfd\xb1\x65\xf2\xab\x84\xf9\xcd\x25\xdd\x23\x94\xe6\x8d\xa5\xa2\xb5\x4c\xc7\xe2\x86\x50\x4c\x86\x63\xbb\xe0\xc3\xb5\x99\x9a\x6d\xe7\xf1\x5e\xab\x77\xdb\x01\xc1\x9e\xb9\x71\x62\x7c\xef\x5c\x1a\x9f\x8e\xa0\xa3\x6b\x4e\x07\x85\x31\xc3\x4b\x81\x34\x10\x67\x07\x72\x8c\x0a\xdc\x9e\xf7\xf2\x63\xe7\x5c\xe6\x05\x51\xf1\x5a\xae\x57\x7c\x43\x47\x04\x6e\x82\xed\x88\xf2\x98\x86\x08\xfe\x29\xe4\x57\xe1\x69\x81\x90\xfb\x57\x7b\xb6\x17\xd6\xa4\xb0\xf4\xcf\x6c\x24\xcb\x7b\x41\x1b\xa6\xd1\xbf\x90\xa8\xdf\x10\x49\x12\xb3\xcb\x4d\x36\x7e\xd6\xaa\x13\xc6\xa2\xb5\x17\x14\xd1\x3c\xca\xc3\xc1\xd3\xd2\xa2\x43\xa4\xcf\xb0\xc3\x0f\xdb\xf8\x53\xd7\xca\xba\xb7\x56\x84\xe9\x6c\xc5\xf5\xfa\x91\x30\xb9\x4b\x05\x13\x16\x91\xc4\x90\xa7\xdd\xba\xee\xb3\xa9\x05\x07\x64\x1a\xe6\x7f\xda\xb0\x4e\x3e\x7a\xc2\xdc\x4c\x84\x4e\x03\x1b\x26\xe6\x84\x26\xd9\x4a\xb7\x33\xd2\x7e\x89\x88\x37\x4c\xbf\x25\xf8\xd0\x4c\x42\xc2\xaf\x4f\x58\xd7\xd8\x7c\xdc\x83\x58\xb7\x42\xed\x43\x6a\x68\x47\x11\x67\x9a\x42\xd5\x5f\x3d\x0f\x8d\x94\xde\xcc\xc6\x18\xf5\xaa\x65\x34\xbb\xfc\x2e\xba\x12\x7b\xff\x71\x88\xd3\x4c\xf0\xdb\x4b\x12\xce\x19\x4f\x37\x4c\xb2\x99\xd2\xa0\x96\x22\x68\x92\x93\x7c\xac\x21\x6a\x17\x52\x03\xf1\xc0\x8d\x9d\x47\x17\xc2\x2d\xa8\x47\xc5\xa3\x79\xa8\xd7\xb6\xc8\x4d\x9e\x58\xa6\xb8\xf2\xba\xe7\x60\x66\x91\xd2\x5a\xa7\xd7\xb6\x1b\x72\x94\xe8\x1a\xb4\xc4\xa6\x69\xd8\x1e\xd3\xee\xa9\xa0\xcc\xa9\x7c\x9f\x92\xa2\x8d\x6b\xe6\x87\x75\xd0\xe2\xdf\xb3\xe0\x07\xe6\x9b\xdd\x3f\x3b\xc7\x13\xfb\x47\xf7\x04\x2c\x12\xad\xaa\x23\x5f\x66\x9c\x79\x67\x26\x96\xba\x95\x34\xd4\x27\xce\xe7\xeb\xb4\x8a\xe4\x09\xd8\xdc\x76\xbc\x92\x42\x45\x10\xf7\x5d\xcc\x9f\x0f\x92\x45\x2a\x42\x18\x96\xd8\x6b\x6c\x58\x3f\xf8\xa2\x50\xf1\xa1\xa4\xba\x83\x6a\x1d\x9c\x4a\xdb\x5e\x99\xc1\x64\x2f\xb5\x8d\x90\x4e\x76\xe8\x73\xe0\xb9\xb4\x0c\x97\xd9\x41\xc5\xc8\x70\x52\xa9\x92\x22\x76\xb4\xd5\x13\xa6\xaa\xfd\xd6\x89\x50\x15\xc2\xf2\x64\x64\x4b\xb9\x30\x54\xa1\xb0\x94\x68\x91\xae\xe9\x2a\x45\xb4\x07\x6c\xcf\x32\x45\x3d\x06\x7b\xe6\x6a\x1f\x93\xae\xf9\x59\x14\x71\x63\x4a\x8b\xcf\x3d\x79\x53\x8a\x35\x85\xb6\xe4\xca\xce\xb7\x2f\xd4\x90\x3c\x3b\x4c\x36\x10\xa9\x6a\x7c\xcd\xe3\x4e\x06\xe4\xae\x2a\xbd\x23\xf1\x40\x1c\xf4\x4e\xc6\xa0\x51\xe5\xd5\x3b\xda\x4d\xd5\x7a\x83\x09\x71\x39\x45\x97\xd6\x8f\x1d\xd4\xb7\x77\x3d\xf4\x49\x5c\x06\xe2\xe5\xbf\xe8\x83\x83\x72\x02\xcb\xb6\xad\x38\x46\x48\x8c\x7c\xdf\x59\x86\x67\x87\xa6\x5c\xad\x04\x37\xf9\x9a\x20\xa3\x18\xae\x28\xac\xd6\x60\xc2\xfc\x3a\xec\xd6\xab\xfe\x2c\xbb\x07\xce\xe1\x10\x42\xfa\x3c\x68\xad\xfc\x63\x44\xf5\xe1\x2f\x2e\x8c\xe9\xdc\x38\x14\x86\xcb\x75\x17\xe9\x36\x72\x8b\x2c\x08\x35\x27\xbb\xea\x54\xf2\x3a\x43\x76\x5f\xfe\x8c\xb5\x9e\xdb\x8f\x44\xe9\x4a\x32\x78\x66\x1d\x23\xbe\xb6\x29\xaa\xad\x4f\xb2\x92\x17\x9f\xb0\xef\xe4\x96\x96\x94\x53\x89\xba\x92\x72\xd0\xb7\x7d\xc9\xc6\x15\xb5\x1a\x48\x4d\xab\x14\x71\x6e\x57\xc3\x50\x48\xf6\x30\x0d\x5e\x4d\xb1\x0c\xa7\xef\x24\x10\x79\x8d\xd0\xca\x91\xc1\x38\xb4\xbf\xad\xe7\x96\xfb\x16\x21\x98\x5a\xd2\x5c\x8f\xe6\x5c\x44\x21\xcb\xaa\x92\x8a\x94\xaa\xe2\xfa\xc0\xe4\x6d\x3f\x8b\x98\x1b\x84\x6a\x86\x5d\xe2\xdf\xd5\x4e\xbd\xf8\xa4\x22\x57\x38\xf1\x68\x69\x5d\x51\xdf\x76\x8c\x0a\x51\x5e\xae\x1a\xa8\x41\x86\xb6\xb2\xa3\x2b\x37\x8f\x81\x0b\xbc\x20\xce\xfe\x69\xa0\x4d\xf9\xf6\x4c\x00\x75\xbb\x3e\x22\x53\x6b\x9c\x29\xa8\x1c\x95\xd4\x87\xae\xe0\x82\x3d\x52\xea\xaf\x64\x77\x58\x20\x85\xdd\x32\xa1\x36\xe3\x50\x2f\x27\x8d\x4d\x27\x6d\x50\xb2\x11\x6e\xe3\x0b\xe0\x3d\xa8\xc8\x36\x0f\x77\x22\xff\x72\x6f\x62\xc0\xa5\x46\x39\xc5\xbc\x5f\xd8\xd1\x72\x81\x8d\xef\xde\xc3\x92\xcb\x35\x89\xb7\x6f\x8b\xe1\xa6\xc8\x66\x97\x53\x93\x3a\xc9\x36\x96\x06\xaa\x38\x41\x51\x03\x9e\xec\xdc\x56\x81\xf0\xb3\x04\x49\xa2\xa1\x50\x45\x0f\x95\x4e\x84\x16\xe0\x3e\xc8\xf5\xcb\xd2\xea\x50\x49\xa2\xe5\x2e\x4c\x5a\x64\xc8\x3a\x8d\x47\x96\x47\x40\x74\x28\xcc\x92\xc8\xc0\x41\x44\x9b\x13\xf8\x58\x6b\x57\x7e\x1c\xf4\x6d\x7b\xf7\x6b\x16\xe5\xc7\x18\xe8\x75\x0b\xfd\x83\x42\xa8\x03\xb5\x04\xe2\xec\xa5\x24\xd1\x18\x27\xb0\x2f\xac\xd0\xc5\x74\x94\xc1\x75\x52\x9b\x02\x4d\xb9\xf2\xf6\xbd\x95\x7d\x07\x7b\xb9\x8b\x5e\xad\xb8\x89\x12\x57\xf0\x1f\x2f\xe1\xaa\x75\xe6\x6e\x1d\x68\x53\x5f\x27\x7c\xfd\x83\x0b\xec\x0b\x59\xc1\x84\xd0\x7b\x0a\x5a\x2e\xa5\xa5\xc3\x63\xf4\x8d\xe9\x3b\x5a\xbb\xd5\xe5\x0b\x57\xde\x8b\x56\x3f\xec\x5b\x2a\xd7\xa0\x32\x9f\x37\xa9\xa8\xb0\xd1\xab\xcd\xcb\xf8\x95\x79\x76\x5a\x95\x65\x6f\x6d\xc1\x76\x6e\x02\x18\xcb\x05\xf3\xfa\xbb\x0a\x76\x5a\x93\x14\x55\x59\xbd\x5b\xa2\x42\xd6\x73\x5d\x2c\x1f\x52\x7d\xe3\x5c\xde\x15\x5a\x94\x70\x8a\x98\xbd\x25\xdc\xf1\x86\x30\xb7\x0f\xc8\x28\x56\x3f\xff\xc0\xf2\xd3\xe6\xca\xeb\x12\xb1\x3e\xe0\x40\x47\xc9\xbe\xce\x2c\x47\xc0\x9f\xc7\x7c\xe6\xed\xcc\x4b\x0a\xe1\xc0\xe1\x8c\xfd\x30\x47\xb4\xa7\x63\x58\xd4\x0b\x76\xb0\xf8\x10\x80\xfd\xc3\x29\x61\x12\x4a\xdf\x13\x92\xb8\x78\x2a\x38\x17\x37\xe5\x84\xa3\xc2\x53\x95\xaa\xc1\xf7\x39\x9b\x35\x02\x1a\x19\xd1\xa3\x82\xd1\x60\xc2\x3d\x3a\x88\x74\x7b\x7e\xdf\x2b\xc5\x8f\x90\xfa\xdd\x88\x20\x5c\x2a\xf6\xf0\x14\xf2\x75\xe9\x64\xb2\xf8\x6c\xab\xc5\x15\x66\x96\x89\x35\x27\x71\xc1\x31\xc2\x6c\xde\x0a\xf3\x61\xc8\x34\x9e\x5b\x34\xd4\x8f\x21\x9c\xd5\x5f\xa6\xa0\x95\xf3\xbc\x9f\xe4\x5e\xcb\x99\x91\x91\xbd\xa3\x2f\xf1\x84\xfc\x9d\x5d\x80\x3b\xfa\x7b\x23\x73\x93\xbd\xc8\x68\x38\x73\x68\x98\xb2\x5a\x80\x21\xcc\x73\xb7\x1a\xb5\xf0\xa9\xe5\x80\xdb\xf6\x26\x3a\x26\x0c\x06\xe1\x16\xec\x78\x63\x15\x2b\xa9\x3e\xc2\xcc\xf0\xac\x72\xc8\x1e\x3a\x94\xfe\xcd\x95\xf9\xb7\x0f\x65\xcc\x75\x33\x37\x93\x4c\xcb\x83\x6b\x3d\x25\x45\x44\xe1\x4a\x5d\x46\x5f\xd9\x8e\x4e\x9e\xca\x3e\x7f\x2c\x9e\x78\xd2\x0c\xd0\x69\x5b\xbf\x98\x1c\xa1\xd9\xd9\x5c\x89\x6d\x8f\xaa\xfe\xee\x8a\x14\x21\x19\xf7\xae\xf5\xb8\x4c\x04\xe1\x0d\x03\x16\x0c\x58\x60\x0a\x86\x0d\x06\xd9\x34\xe3\x31\xa3\xb2\x8e\x24\x2e\xa7\xe0\x89\xcb\xcb\xf0\x46\xb9\x32\x37\xe1\x88\xa5\xab\x45\x47\x60\xeb\x8e\x17\x17\x35\x7f\x6f\x86\x97\xb7\x87\x0f\x85\x83\x26\x53\xa1\x78\x42\x58\x1b\x39\x0e\xd5\xf7\xb5\x1b\x48\x89\x78\x53\x3e\x65\x9d\xa9\x2c\x1f\xad\x04\xe3\xfc\x1e\x48\x25\xc5\x30\x13\xf3\x68\xb1\xa4\xef\x7d\x7d\x03\x76\x5c\x9a\xab\x80\x95\x46\xfe\x04\xba\x2c\xcf\x53\x36\x44\x5a\x96\x2e\xc8\xd5\x9b\xf1\x31\xba\x6e\x73\xf7\x6e\x83\x9f\xb2\xe5\xd6\x65\x07\xad\x3c\x32\x39\x36\xbb\x83\xe8\xdf\x41\xfe\x67\x56\x3f\x26\xd7\xab\x58\xbb\x1e\xab\x53\x93\xc1\xd8\xc3\x4d\x1b\xc8\x1d\xd1\x74\xe1\x9a\xa4\xbc\xed\xae\x6f\x87\xb2\xb9\xd4\xa7\xea\x49\x86\xaa\x05\xef\x2d\x88\x5e\x8b\x40\x46\xb8\xdb\x71\x0c\x21\x35\x5a\xe6\x4a\xc6\x36\xb9\xaa\x69\xb8\xdf\x5e\x8c\xd7\x2b\x74\x6c\xdc\xb3\xa4\x4e\xfe\x71\xf4\xf8\xeb\x4e\x3b\x42\x1e\xfe\x56\x2c\x50\xac\xa7\x36\x68\x08\x5d\x01\xdf\xa5\xd8\xd4\x71\x64\xf6\x47\xb3\xd4\xf4\xee\x37\xd1\x93\x64\xc5\x32\xeb\xe8\x30\x4c\xd6\xdf\x82\xb6\x7f\x17\x71\x30\x96\x70\x7c\x25\xd8\xbb\x34\xad\xab\x7b\xa7\xe8\x87\x0c\x4f\x66\x79\x87\xc9\x6e\x4d\x64\x0d\xdf\xd9\xa2\xe5\x47\x43\xcb\x1d\x61\x33\xf5\x5b\x16\x07\x4d\xd2\xec\xda\xf2\x43\xbf\xcc\xb2\xc3\x10\x32\xcd\x06\x6a\x15\xc9\xeb\x71\x87\xa7\x7f\x9e\xc3\x2f\x1e\x93\x5f\x7e\x74\x90\x68\xc2\x04\x2f\xc3\x39\xb2\xe8\xf3\xc6\x84\x98\x84\x26\xe7\xa4\xb8\xe1\x80\x3c\xab\xa3\xe5\x90\x04\xae\x30\x38\xdd\x50\xfe\x8f\x71\xb6\x20\xf9\x47\x98\xc2\x86\x77\xe6\xc0\x61\x99\xd1\xcd\xe9\xc9\xda\xfc\xcc\x75\x65\x4c\x48\xc6\x2f\x40\xfa\x8e\x77\x18\x09\x19\x67\x98\xf1\x9e\x4f\x37\x84\xa2\x2b\xbe\x99\x1d\xd1\xcf\x4c\xd4\x43\x28\x99\x55\x44\xee\xa6\x6b\x6a\xf0\x91\x52\x96\xa7\xb1\x3e\x3c\xd3\xe0\x65\xfb\xef\xf0\x44\xb8\xd7\x45\xad\x57\x69\xe4\x15\x6f\xf9\x5a\x8e\xf9\x23\xa0\xcb\xc7\x8a\xfc\x3b\x9f\x6e\x40\x44\xc0\x77\x99\x29\x23\x31\xcb\x5d\x6a\xad\x73\x52\xd8\x1f\x8b\xc7\x29\x50\x50\xd8\xfb\x85\xad\x9f\x76\x55\x6a\x83\x7b\xab\xe6\x37\x52\x0e\xb3\x53\x34\x2b\xc7\xc6\xa2\xfd\xe7\xa3\xe7\x04\xc5\x63\x0f\x17\xe2\xa3\x77\xf8\x80\x3b\x9a\xe3\x06\xe2\x26\x62\xf6\x4b\xb5\x85\x62\x7c\xca\xa5\xfe\x53\x66\xcc\xca\x7e\x65\x10\x45\x36\x19\x6e\x88\xa3\xb3\xab\xd9\xa2\x3a\x8b\x03\x65\x78\x8b\x3e\xa9\xf3\x23\x17\x3d\x18\x33\xfd\xf8\x57\x77\xd5\x18\x5f\x06\xe9\x06\x4a\xc1\x95\x28\x20\x53\x17\x67\x1f\xcd\x29\x51\x15\xed\x2d\x3a\xdd\xec\xad\xe7\x33\x54\x37\xe8\xaf\xcf\x56\x66\x28\xb1\x1a\x80\x79\x3c\x66\xa3\x80\x4e\x0a\xa4\x69\x72\x41\x17\x28\x3c\xa4\xed\x62\x99\xb1\x8c\x3d\x6e\x4d\xe7\x71\x1e\x48\x1d\x0d\xf3\xaf\xf1\x90\xe1\x76\x7b\x08\x75\xeb\x24\xdf\x94\x78\x4a\x5e\x7b\x76\xbd\x22\x75\xe2\xb5\x00\xd5\x14\x33\x3c\x56\x6b\xda\x20\xcf\xdc\xf3\xea\xaa\x45\x0e\xee\x8e\x0f\x86\xcd\x4b\x62\x5b\x16\x14\x46\xc9\x53\x98\xc6\x4a\x8b\xf6\x0e\xa9\x95\x04\xd3\xc9\x79\x4c\x9a\x5d\x3d\x63\x07\xbd\xf0\xeb\xc4\xdc\x01\x16\x2f\xc3\x53\x6c\x91\x74\x90\xd2\xbc\x6a\x11\x75\xcd\x32\xeb\xd0\x34\x42\x6a\xaf\xca\xb7\xa2\xd9\xff\x91\x75\xcb\xaf\x99\x0c\x11\x97\x93\xcb\xed\x36\xba\x1d\x51\xfa\xf2\x94\x1f\xeb\xa0\xfe\x55\xa4\xcd\x8c\x84\x44\x43\xdf\xa3\x21\xfd\x4f\x56\x1f\x8a\x4e\x6d\x3f\xd2\xe6\x77\xbe\x48\x4e\xca\x4a\x99\x5c\x89\x1e\x36\xdb\x16\x44\x0d\xdc\x6b\x32\x47\xbe\x28\x06\xca\xc5\x0b\x32\x29\x93\x19\xb6\x5d\xbf\x0c\xc1\x3b\x7f\x76\xad\x2b\x95\x2a\x1a\xc9\x1a\x1c\x44\xa5\x37\x67\xb4\xfc\xca\x46\xd8\x3f\x74\x65\x14\xe2\x5c\x9d\x25\x20\xcb\xb0\x25\x83\x26\xa4\x09\x68\xd4\xa9\xb5\xb6\x43\x0b\xb3\x93\xf3\xde\x3e\xdb\x71\x34\xa6\x3b\xee\x5d\x7d\x2c\xfe\xc3\x29\xcb\x9c\xa9\x3c\x85\xfc\x5a\x9f\xaf\xe8\xb2\x3b\x86\xc4\xf6\x4a\xb0\xf2\x8a\xc1\x38\x14\x78\x6e\xfd\x3e\x7c\xae\x34\xf4\x35\xd7\xc9\xb9\x36\xe6\xde\xfe\xce\x45\x7b\x33\xeb\x34\x06\xd1\x09\x98\x38\xb4\xf8\xd4\x4a\x98\xef\x8e\xfe\x4e\x68\x0e\x88\x84\x18\xd3\x5a\x8a\xbd\x3c\x63\x68\x1a\x60\xef\x0a\x56\x50\xb7\x19\x98\xf8\x69\xf3\xc6\x5d\x11\x3b\x52\xb2\xd8\xf9\xea\x39\x1b\xed\xec\xd7\x6f\xe6\xa5\x72\x07\x8f\x5c\xd9\x24\xc5\xc4\x50\xf5\x63\x2d\x5c\x59\xed\xdf\xf2\x6b\x0f\xe5\x8e\x98\x54\x82\x4f\x62\xb1\xa3\xbe\x39\x29\xe7\xe1\x97\x65\x8b\xa5\xf8\xec\x77\xbf\xac\x66\xbf\xe1\xf1\xd1\xf3\xf2\xe8\xe9\xf6\x9a\x69\xaf\xf8\x36\x96\x2b\x8e\x6a\xfc\x73\x59\xfc\x4c\xca\xb1\x8f\x70\xe1\xcd\x71\x0d\x16\xb3\xa4\x2b\xdc\xa9\x3b\x67\x52\xb9\xfb\xeb\x39\x56\xd8\x47\x6f\x67\xd8\xfb\xff\x63\xe2\x2b\xe3\x9a\xfe\xde\xf7\xdf\xa3\x47\x97\x84\x48\x8c\xee\x0e\x41\x1a\x91\x46\x42\xba\xa4\x1b\x44\xba\xa7\x22\x25\x02\x82\x0c\x18\x8d\x84\xa4\x84\x74\x4a\x0d\x81\xd1\x9d\x52\x43\xba\x41\xd2\xff\xfc\x7c\x7f\x0f\xfe\x4f\x77\xce\xb9\xae\xbb\xce\x7d\x5f\xe7\xf5\xda\x26\x6d\x3e\x05\xf5\xe9\x86\xbe\x68\xc3\x42\x57\x8c\x89\xb9\x06\x29\x91\x50\x05\xaa\x7f\x83\x5e\xf4\xb1\x66\xe2\xc7\xde\x7d\xdc\x57\xd6\x0d\xc4\x9d\x06\x1d\xdc\x53\x3c\xef\x2a\x0c\x3c\x0d\xdb\x0c\xfb\xea\x9d\xd7\x6d\xd6\x4e\x9e\x4a\x50\x5e\x1a\xb6\xbd\xe7\x13\x90\xd2\x32\x17\xcb\xf9\x6b\xa3\x48\x35\xb0\x54\x3a\x53\x32\x6d\x10\xaa\x66\xae\xdd\xf7\x59\xfc\xfe\x3e\xc3\x40\x8e\x52\x62\x41\xb8\xdf\x5e\xce\x83\xd7\x81\xba\x3f\xb3\xd0\xe5\xa2\xcb\x55\x64\x4a\x6a\x39\x8e\x77\x6b\x61\x50\x2a\x89\xaf\x3a\x58\x6f\xb1\x34\xe3\x26\x74\xcf\x13\x8f\x8d\x74\x49\x90\xc9\xe0\xb9\x62\x78\xec\x2e\x2e\x93\x6a\x7d\xa2\xcb\xbe\x0b\xc1\xe6\xfa\x3b\xf4\x87\x57\x7b\x2a\xf3\x9f\x97\x7d\x38\xbf\x45\x4c\xd9\x1b\xea\x86\x6a\x2f\xb6\x63\x7e\x68\xd8\xf6\x87\x07\x5e\xb5\xce\xac\x97\x9e\xf6\xee\x0b\x1c\xfb\x04\x6a\xaa\xe6\xb3\xdb\x05\x99\x68\x46\x7b\x15\x7b\x62\x9a\xa1\xea\x61\x2e\xb8\x53\xed\xa5\x48\x83\xb2\x8f\xc7\xfe\xad\xbf\x70\xdb\xea\x7b\x76\x9f\xdf\x7b\xf6\xc9\xef\x4b\xc4\xf9\x23\x02\xd6\xb2\xc4\x99\xfc\x1c\xcb\xaf\x65\x99\x12\xbc\xda\xe4\xa5\x9f\x8a\xdd\x79\x01\xfb\x44\xc9\x3d\xb0\x17\xc6\x4b\x77\x0b\x52\xf3\xde\xe7\x63\xa6\x23\x38\xa7\x3f\x5e\xc1\x27\x5b\x7c\x0f\xea\x9b\x57\x5b\x4a\xf3\x1d\xc9\xdc\xbb\x1b\xfc\x6f\x46\xaa\x25\x6e\xad\xf8\xa3\xc0\x63\x5e\x61\xcf\x0d\x8b\xd2\x13\xa9\x2e\xfa\xee\x88\xbf\x25\xdf\x8d\x18\x3e\x90\x18\xb4\xeb\xeb\x81\xfd\x98\xa3\xf3\xdf\x7d\x8c\xfe\xd4\xc4\xf3\xe4\x40\x6f\x89\x7b\xe8\xb5\x3c\x13\x8e\x5d\x29\x35\x0e\x16\x30\xd0\x47\x87\x07\xfa\xfe\x83\x68\x6f\xc6\x19\x53\xd8\xf1\xf2\xb4\xd2\x7a\x77\x2e\x9c\x27\x8b\xcf\x6d\x62\x9d\x28\x7a\x7f\xee\x94\xca\xeb\x67\xa3\x85\x38\xa4\xd0\x2c\xbe\x8e\x89\xe1\x04\xe3\xf7\xb2\xd8\xc4\xea\x88\x48\xb1\xc5\xf9\xa3\x44\xc7\x6d\x71\xe0\x47\x75\x6d\x9c\xfb\x47\xa9\xce\xfc\xd9\x86\xda\x69\x96\x9f\x14\x23\x16\xe7\x65\x95\xbc\x1d\x52\x06\x8b\x35\xb5\x1e\x15\x77\x35\x5e\xbd\xca\xcb\x71\x3e\xfe\xf2\x06\x95\x48\x7c\x90\x20\x13\x8b\x71\xfd\x07\x89\x12\x3f\x05\xb0\x25\xf4\xe8\x71\x1a\xa9\x7c\x46\x95\x0c\xad\xe5\x98\x10\x66\x12\xeb\x78\xb2\x58\x01\x3f\x52\xbb\xc3\xab\x81\x56\xa9\xac\xd5\x47\x55\x6d\xed\xde\xc4\x6b\xaa\x56\x5c\x20\x0a\x9c\x1e\x09\x06\x71\x7e\x02\xa5\x93\xcb\x0f\xcd\x62\xd3\x33\xf1\x06\x15\xb2\x3e\x31\x51\x12\x74\x1b\x6b\x4a\x50\x5f\x3c\x29\x2b\xff\x82\x69\x51\x56\xe3\x53\xff\xd9\x73\x85\x78\xd0\xbd\x51\x3b\x56\x40\xe1\x09\x0e\xc5\x78\xd4\x7f\x87\x4c\x84\xa1\x69\xd5\xb8\x78\xf2\xc6\xb3\x0b\x3b\x06\x78\x98\xdf\x3f\xf9\x92\x7b\xb1\x3d\x8a\x4d\x31\x0b\x9b\x5a\x5d\x1a\x71\xd7\xaf\xf3\x56\x67\xf8\xeb\xdd\x6b\x10\xca\xfd\x06\x6c\x2d\x49\x25\x4f\x4b\xd8\x4f\x0e\xea\xd9\xa3\x6d\x26\x92\xd7\xd9\xd3\xc4\xcb\x45\xfa\xd8\x1d\x65\xd4\xc3\xac\x7c\xf9\xff\x76\x5f\x9c\x3e\x2e\x63\x76\x7f\xf5\x89\xf8\x7a\xe6\x79\x0f\xd1\x7d\x0b\x44\x24\x92\xc8\x53\x11\x8b\x02\x63\xd4\x00\xb3\x46\x13\x10\xfa\x82\x23\x2e\x6f\xdc\x1a\x81\xf6\x2a\x30\x7d\xa7\xb0\x37\x3c\x0e\x09\x6d\x44\xe2\x8a\x7c\x52\x64\xe3\x9f\x59\xbf\xc5\xaf\x7b\xe3\xee\x12\xd0\xe2\x32\x58\x49\x5c\x73\xab\xd9\xff\x32\x54\x3e\x89\x77\x73\x00\xf8\x9d\x04\x4a\x37\x3c\x0e\x98\x5b\x5a\x97\xfc\xc7\xa9\x73\x87\x8f\xcf\xb4\xa0\x8d\x5f\x8f\x1d\x43\xec\x61\x71\xb5\xd4\x95\x6a\xe5\xce\x5c\x39\x6f\x30\x55\xd5\x79\xfb\xac\xb9\xf5\x76\x61\xde\xa9\x6a\x39\x27\x23\xf1\x21\x3b\x16\x80\x29\x0c\x72\x4b\xce\x4e\xf7\xa1\x83\xbe\xac\x2a\x98\xd2\x02\x63\x52\x76\x8a\xbf\x9f\xa7\xcb\xb8\x4b\x14\x0d\xef\xf6\x48\xa9\xc2\x47\xd5\x3e\xf0\x88\x4a\x31\x90\xdb\x6d\xa6\x18\x10\x4e\xb7\xc8\x61\x56\xaa\x5b\x6e\x45\x02\x82\x4c\x34\x89\xc7\x2f\xc1\xbf\x27\xfe\xe5\xef\xa5\x86\xfd\x4e\x04\x08\x3f\x77\xb4\x50\xce\x41\x6a\x0f\xd9\xdc\xa6\x2b\xf0\x18\xb4\xa4\xfe\x82\x51\xe7\xb8\xbe\x6a\x31\xc5\xc8\x6f\x0a\xba\x21\x62\x58\x32\x74\x90\xce\x8d\x5c\x8c\x10\xa4\xc0\xa0\x49\xd4\xae\x09\x00\x70\xec\xc4\x97\x70\x98\x68\xea\x59\xb0\x74\x48\xe9\x4a\xa6\xf9\x7c\x74\x32\x48\x6c\x08\x2a\x6a\xed\xb7\x8e\x6a\xe5\xe7\xd7\x55\x5c\x16\x76\xf4\x02\xea\x87\x14\x61\x43\x9b\x65\x8d\xb5\xd2\x5c\x6d\xe9\x93\xfd\xff\xbe\x05\x80\x6b\x52\xbe\x76\x0c\x57\x48\x05\xe1\xc5\x22\xc1\x20\xca\xfe\x0f\x1f\x44\x18\x4d\x64\x31\xf5\x5e\x59\x14\x7e\xc3\x9a\xa4\x72\xc0\x49\x38\xb8\x50\x60\xbd\x8a\x4b\x69\x2c\xf0\xa9\x24\xe9\x84\xfa\xc4\x95\x3c\x48\xa0\x1e\xfc\x06\x74\xd9\x58\x28\x02\xd8\x35\x5e\x64\x1d\xa2\x83\xfe\xc0\xcf\xd7\x14\xcc\xbd\x9b\xe1\x6e\x02\x1e\xdd\x3f\x12\xff\x7c\x7d\xe6\x3a\x37\xbc\x37\x56\xf3\x72\x6a\x2a\x42\xd4\x55\x46\xf8\xc5\xa1\x2d\x17\xd5\x4b\x79\xa9\xa7\x9e\xbd\xeb\xbd\x27\x3c\xd0\x57\xc6\x4a\x75\xc4\xd6\x50\x0c\x93\x8e\xaf\x56\x8b\x6f\x90\xfb\xb2\x8f\x5e\x06\xcf\x5a\xda\x1d\x0a\x74\xbf\x31\xbe\x31\xb1\x2f\x77\xd0\x43\x44\x00\x38\x05\x98\x9a\x25\x01\xad\x96\xb9\x83\x00\x56\x77\x5f\x04\x80\xef\x50\xcb\x1c\x56\xc2\x96\xdb\x20\xde\xc2\xc3\x09\x5a\x82\xb1\xb7\x43\x46\xc5\x25\xf5\xea\x7c\x66\x88\xa2\x25\x12\x6a\x83\x8b\x54\xe1\x5b\xef\xaa\xd4\x20\xe8\x61\x60\x97\x8b\xf6\x49\x19\xed\x53\xe4\x14\x1e\xc8\x27\x37\xe1\x81\xde\x9d\x90\xc0\x26\xfc\x41\x3d\xc8\xba\xbf\x49\xb7\x9e\xa3\x3f\x63\xf0\x15\x93\x83\xd4\x50\xc8\xac\x26\x1e\x9a\xc7\xb8\x34\x2c\xa5\x1a\x8b\x80\xe9\xd1\x34\x3a\x7a\x82\x83\x25\x86\xbc\x6b\xd4\xd4\xb7\xed\xb7\x53\x6f\x1a\x06\x97\x2d\x78\x23\xc5\x52\x5d\x9c\xb9\x3f\x16\x48\x8c\x80\xad\xff\xb9\x11\xfb\x65\x47\x92\x69\x08\x0a\x44\x88\x3d\xc6\xe2\x84\xa7\x2c\xdc\x11\x24\xdf\xae\x5a\xa4\x61\x57\x6f\xaa\xb5\x60\x2f\xb3\xb7\x7c\x85\x09\x0c\xfe\x60\x9d\xff\x5c\xaf\x60\x0d\x53\x1d\x0b\x94\x01\xfe\xfd\xa6\x04\xf0\x49\xaf\x03\x83\x7c\xa0\x53\x1f\x68\xbf\x53\x89\xeb\xd4\x11\xdd\xc0\xf0\x5a\xb5\x78\x19\x7d\xdf\x8d\xd3\x90\xaa\x15\xa6\x9f\xf5\xeb\x8c\x3f\xe7\xc7\x7b\x29\x2f\xc8\xf4\x65\xfc\x3f\x97\x85\x23\x80\xd2\xb9\x11\x7c\xfa\x02\x0f\x0a\xb5\x96\x72\x93\xd2\x1f\x69\x0f\x13\xf2\x4c\x73\x44\x5d\x7d\x3b\xac\x21\x9a\x93\xc3\xf6\x7b\x55\x6f\x41\xb4\xef\xb3\x63\x11\xae\xd1\xfc\x98\xa4\x84\x1a\xa4\x18\xbf\x81\xc1\xfa\x60\xa8\xbd\xe7\x4f\x3e\xb0\x0c\x8f\x03\x49\xa2\x16\xb3\x73\x2a\x75\xea\xee\xab\x9a\x56\x19\x77\x2a\x2c\xf6\x10\x67\x42\x33\xd2\x4e\xe8\x10\x01\x7a\xb2\xeb\xe0\x94\x0b\x8f\xad\x45\x80\xa4\x3a\xf5\xf6\xe9\x8b\xa8\x86\x23\x3f\x7d\xd7\xd8\x1e\x9e\x48\x1a\xa5\x53\x4b\x10\x4d\xb6\xa4\xcf\x14\x22\x10\x6e\xdf\xed\x6a\x4a\x58\x46\xbd\xf4\x18\x4d\xc7\xfe\x01\xf5\xb9\x39\x9d\x27\xf2\xc7\x82\x0a\xa6\x71\x63\xa7\xa8\x60\xa7\x45\xf5\xce\x5f\x0d\xe2\x33\x18\x9a\xf4\x56\xa6\xa0\x79\xc4\x06\x03\x74\x2e\x2e\xc2\xaa\xa6\xbf\xbd\xfb\x28\xe5\x79\x82\x50\x0b\xb7\x85\x9d\x15\x29\x29\x23\x09\x31\x22\x73\x07\xd9\xe9\x00\xc5\xdc\xe7\xa5\x56\x54\x8f\x4a\x15\x52\x2e\x3a\x4c\x15\x4a\x3b\xac\x66\x8c\xab\xb9\x8d\x0b\xcd\xa8\x3c\x8a\xba\x2f\x70\xaa\xe9\xc7\xd5\x54\x19\x77\x3b\x79\x7f\x3a\xc6\xed\x98\xc4\x5e\x75\x42\x79\x13\xa5\x20\xb8\x9d\x56\xa9\xd0\xe6\x23\x0c\x1c\x29\x25\x05\x8d\x84\x64\x66\x51\x52\xdd\x96\x59\xc2\xdf\x93\xc2\x0c\x69\xb4\x24\x65\xb1\x29\x42\x30\x86\x99\x09\x82\x16\x43\xbe\x20\x3c\x10\x8b\x28\x30\xd3\x94\x9c\xe6\xb1\x26\x96\xbd\x3f\xaa\x50\x6b\xf6\xc0\x06\xfe\x60\x8f\x6f\x97\xa6\xff\xa0\x47\x2b\x87\x60\x3c\x99\x78\x53\x84\xf9\xdf\x97\x36\x21\xb8\x58\x5d\xa2\x8c\x31\xb2\x27\x67\x10\xa3\x0f\xc5\xc9\xa7\xc2\xa0\x00\x8f\xa1\xe7\x9a\x29\x0c\x19\x9b\x1e\x74\x46\xb0\x06\x98\xd8\xed\x7e\xac\x11\x3b\x14\x14\x43\x6b\xa9\x24\xdf\xc9\x72\xf2\x95\xe1\x95\x56\xf6\x8e\xce\xbe\x42\x28\xe4\x34\x45\x84\xc5\x25\x75\xbb\x94\xd6\x5e\xe6\xb1\x04\x81\x5e\x6a\x24\x3c\xb1\x1d\xe5\xa6\xf6\xd3\x1d\x7a\xe1\x53\x3e\x2e\x7d\x21\x25\x93\x8b\xaa\x60\x91\x8f\xe1\x53\x7d\x4a\x58\xea\x30\x81\x1a\x05\x39\x18\xfc\x36\xce\x39\x41\x49\xe3\x30\x5c\x5e\x82\x3c\x06\x01\x32\x9a\xc4\xd2\x95\xd9\x00\x6c\x10\xe9\x70\xee\x2b\x2a\x6b\x28\xf1\xa8\xe1\x17\xb3\xa3\x80\x33\xb2\x29\xdb\x4f\xdf\x07\x29\xec\x65\x1f\x0f\xde\x7c\x75\x24\xda\xd6\x72\x4c\xc6\xc4\xa0\x21\xc5\x39\xe2\xfd\xf1\xf6\x55\xcc\x90\x85\xdc\xb7\xa0\x78\xc3\x28\xe2\xa3\x17\x42\x33\xce\x10\xa3\xf2\x36\xd6\x56\x96\x24\xbf\x2b\xa3\xf4\xc3\x3e\x43\xf0\x20\xcc\xf2\x78\x9e\x42\x90\x69\x3f\x4f\xa1\x15\x18\x50\xb3\x93\x64\xba\x60\xbe\x72\x36\xa5\x97\xea\x5c\xdf\x3f\x68\x36\x14\xec\x5a\x8e\xa5\xfe\xfe\xbc\x87\x0f\x4d\x40\x64\x2f\x23\x38\x78\xf9\x1b\x89\x73\x4a\x9b\x18\x67\x8d\xfb\xaf\xdc\xf4\x8c\x65\xfc\xa1\xc2\xd2\x67\x2e\xd5\x53\x59\xe1\x30\x34\x87\x8e\xd8\x97\x60\x5f\xd6\xfd\xd7\x46\xb4\x24\xdc\xa7\xb5\x8c\xe7\xdf\x3f\xd1\x69\x01\x84\xaa\xc1\x5f\x83\x62\xe4\x4a\x23\x15\x66\x7b\x52\x8e\xfe\x90\x12\x11\xd3\xff\x8a\x89\xa5\x3f\x7c\x80\x06\x7d\x57\xd8\x8a\x4d\x32\x12\x26\x6a\x9b\x91\x82\x43\x88\x87\x63\x07\x39\x1b\xb3\x67\x7a\xba\xf7\x31\x43\xeb\xdc\xd1\x2b\x25\x28\x24\x0d\x16\x45\xfc\xca\x93\xec\x10\x8c\xaf\xa9\xd9\xae\x72\x3e\xd3\xb9\xb0\xc1\xcd\xb5\x4a\x18\x5d\xe7\x9c\xf0\x5c\x7a\x84\xb3\x85\x80\x26\xb1\x5e\xef\x9c\xcd\x18\xd3\x87\x16\xef\xc1\x65\xa7\xc6\x6d\xd8\x6f\xdd\x57\x1c\x15\xc4\xd8\xb6\x83\xb7\x0c\x7c\xa8\x0a\x85\x3c\xcc\xc9\x53\x0c\xcf\xd4\xda\x9e\xa5\x03\xf5\x2f\xe5\xb0\xdf\x50\xde\x94\x76\xd4\xd0\xa2\xb5\xf0\x0d\x28\x6f\x62\x9b\x4d\xf9\xdd\x83\x04\x23\x39\x0b\x1c\xc5\x1e\x06\xdf\x8b\x4e\xef\x42\x46\xdb\x39\x1c\x28\x2d\x29\x67\x26\xee\x8b\x11\x4a\xdf\x36\x38\x98\xcb\x29\x2d\x48\xbf\xd3\xdd\x46\xa2\xd1\x7b\xc0\x4f\x67\x3a\x3b\x14\x69\xa2\x37\x28\x3c\x70\xa0\x48\xe9\xd3\x9c\x6a\x14\xba\x2e\xe0\x20\xcf\xa4\x53\x73\x0b\x9a\x55\x87\xc6\x45\xfc\x1d\x3d\xd0\x11\xf4\xa7\xf6\x6e\xda\x61\x9a\x82\x69\x06\xf1\xe8\x01\xa9\x25\x1e\xc4\xdf\xb5\x86\x75\x96\xac\x8a\x30\x07\x52\x2d\x0b\x95\xc6\xcb\xba\x42\xd0\x7d\x83\xc6\xc1\x50\xda\x52\xff\xb7\x30\x69\x39\x76\xb5\x3d\xe0\x25\x73\xeb\xf6\x4a\x95\x59\x8a\xf2\x67\x45\xaf\xc5\xb7\xfb\xf7\x0a\x5e\x88\xfb\x4d\xf9\x85\x8d\xb2\xc2\xe6\x43\x17\x82\xe9\x1a\xd1\x95\xd3\x77\xf6\x46\x50\xd0\x0f\x28\x6f\xb4\x33\xda\xd3\xf4\xfe\xe5\x76\x13\x5d\x42\x07\x85\x5c\x55\xfc\x74\x65\xd5\x7f\x7f\xbb\x92\x1c\xf4\x49\x04\xd6\x61\x78\x27\x59\x75\xf1\x27\xfb\xd9\xee\x85\xe6\x62\xab\x6e\x43\x0a\x6a\xd0\xd2\x4c\xe3\x9b\x1e\xf9\x08\x08\x53\xef\x08\xb3\x63\xa0\x0a\x8b\xa0\x4b\x9c\x49\xfc\x7b\xcc\x2e\x24\x80\x02\x1d\x25\xbd\x59\x8f\x05\x13\x9e\x37\x4d\xc6\xb2\x8c\x3a\x66\xc6\x0a\xd0\xd7\xc8\x30\x56\xb1\x6d\xa3\xd3\xb1\x64\x71\xe3\x20\x6c\x9a\xc4\xb7\xe9\x96\xc7\x01\x5a\x85\x83\xf2\x5f\x59\x59\xee\x7b\xa0\x80\xe6\x43\xb3\x65\xa3\xdf\x84\x66\xa6\xb7\xe7\xd7\x24\x53\x31\x6f\xbe\x23\x1c\xcf\xef\x2f\x9e\x9a\x0c\x58\x16\xaa\x3d\xcf\x3e\x1d\x9b\x79\x34\xe4\xa8\x80\x1e\x4a\xbd\x27\x21\xe8\x76\x4d\xce\x8b\x47\xbd\x40\x60\x17\x60\x11\x28\x1a\xf3\xdb\x68\xe2\x48\x87\x74\x46\xf5\x4d\xed\xbd\xb8\x9d\xfb\x0e\x93\x78\x0e\x98\xcb\x27\x2f\xb1\x75\x85\xee\x13\xb7\x77\xd6\xce\x9f\x9a\x47\x9a\x3c\xdb\x21\xb9\x42\xb6\x8d\xb7\x92\xff\xfa\xaa\xe5\xd7\x80\x56\x58\x67\x04\x9a\xf8\xfe\xc7\x2c\xaf\x9f\x45\xe0\x5c\xa3\x85\x2f\x5d\x05\x09\xf6\xab\xc0\xbc\x19\x57\x98\x7a\xad\xe1\xe5\x8c\xab\xe9\x59\x53\x48\x6b\xd7\xfe\xcb\xcd\xbf\x2b\xe6\xec\xa7\xd6\x02\x01\xd7\x19\x22\x6d\xbd\xdd\xe8\x00\x63\x61\xd6\x38\xb9\x81\xa9\x52\xaa\xd0\xc9\x59\x6d\x93\x67\x5e\xb7\x9c\x67\xc0\xaf\xc2\x33\xa2\x6a\x8b\x73\x7c\x4c\xd6\xf6\x87\x56\x23\x03\x74\x65\xae\x4c\xb7\x06\x70\xfd\x2c\xfa\xc2\x77\x2a\x64\xef\xd4\xfc\x5c\x8a\xe3\x10\x53\x90\x29\xcb\xc6\xb0\x77\xdd\x9e\x8e\x4c\x18\x13\x43\xc1\x16\x13\xde\xbf\x3c\xb0\xa4\x54\xa6\x94\x51\xad\xc5\xff\x77\x2e\x86\xa4\xc6\xde\x98\xde\xb4\xcb\xd6\x3e\xf0\x79\xa5\xf1\x93\x90\xa7\xbe\x61\x73\x43\x51\xee\x17\xea\xe3\x92\xe8\x19\x35\x28\x02\xea\x71\x73\x6e\x26\xc2\x0a\x56\xaa\xb2\xa7\x77\x91\x1f\x37\xe5\x2b\x92\x4e\x5c\x99\x38\x19\x75\xb8\x67\xa6\xff\x7a\xed\xa4\xc1\x86\x84\xce\x6a\xbc\x9b\xae\x8f\x50\xfe\x79\xca\x5f\x32\x7c\xcf\x04\x6b\x79\x6d\x6e\x32\xa4\xa2\xa5\x85\x98\xcc\xa3\x16\x64\xfc\xaf\xdf\x77\xbe\x65\x80\x7d\xda\x7c\x73\x6b\x70\xfe\x98\x8f\xc4\x7d\xa3\x48\x7b\x8f\xc5\x3a\x7c\xbe\x6e\xfe\xeb\xb9\xdf\x49\x50\x5d\xa1\x31\x23\x77\xe0\xad\x1c\x37\x5b\xc9\xb2\x98\xf4\xe9\x58\xda\xa7\x8c\x7f\x7f\xf6\xe3\x4f\xd8\x5f\x8b\x26\xf7\x6a\x26\x8a\xf0\x54\xdc\x11\xca\x3a\x20\x9c\x5a\x71\xf6\x75\x2a\x06\xa1\xdf\xec\x62\x4f\xc2\xdb\xb2\x73\xa5\x4a\x0b\xaa\x57\xac\xce\x97\xf4\xd2\x49\x72\x4e\xc9\xe6\x42\x1f\xe4\xbe\xc0\xd9\x78\x0f\xd8\xd4\x53\x2e\xe1\x28\xf6\x2d\x17\x88\xdf\xd6\xc4\x47\xc3\xac\xef\x60\xb0\x28\xf1\xe3\xe8\x9d\xf1\x61\x8b\x6f\xce\xb2\xa3\x75\xaf\x2b\xe9\xdb\x2d\x13\x0c\xf6\x77\x88\x42\x68\xab\x9e\x9e\x52\x83\x25\xd1\x46\x26\xea\x06\xf0\x43\xd3\x2a\x54\x1b\xde\xe4\x12\x45\xcb\x8a\xee\x5b\xcf\x7d\x55\xae\x23\xdc\x9d\x29\x45\x38\x85\x3a\x61\x16\x7f\xe0\xb9\x9b\xaf\xde\xad\x83\xc8\x08\x7f\x3e\xf3\x5b\x0f\xba\xcb\x68\xb4\xff\xb9\x34\x44\x50\xfd\xb0\xa7\x9e\xd7\x2d\x94\x4b\x4d\x01\xfc\x5a\x16\x18\x70\x94\xcf\x86\xed\x18\x75\x99\xc2\x3c\x30\x85\x7e\x95\xee\x3e\x7d\xd7\xd6\x2b\x13\x65\x18\x25\xfe\xf8\x6d\xed\x93\xb6\x6a\x3f\x43\x8d\x02\x93\xda\xdd\x3a\x1e\x01\x42\x9c\x36\xd0\xac\xaa\xaf\x72\x94\xdc\x0d\xe1\xd4\xc9\x32\x90\xb2\xe6\xfe\x73\x51\x92\x91\x0b\x85\x99\xcb\x8a\xd3\x93\x34\x5a\xd6\x4e\x27\xa5\xf6\x9b\xf4\x9e\x86\xfb\x5b\xe4\xd4\x7a\xd2\x58\x21\x57\x6f\xf1\x04\x4c\xe1\x84\xc7\x94\x81\xfd\xa7\xc1\x9a\x9f\xfc\xe1\xd1\xbb\x45\xb6\x2f\xfe\x81\x73\x05\xee\x3b\x4d\x6d\x2e\x3c\x5c\xb2\xc5\x3b\xaf\x3d\x03\x88\xf5\x64\x0c\x60\x7d\x39\x72\x5b\x98\xa7\x20\x1d\x2a\x4c\x61\xb3\x81\x5a\x4b\x9f\xfc\xf2\xa7\x0d\x6f\x7e\x11\x45\x87\xa7\x35\xef\x48\x8d\x65\xd6\x57\x2c\x74\xa4\x4f\x47\xa9\xbd\x72\x68\xb0\xa4\x11\x75\x91\xb1\x2f\xb1\xf4\xaf\x70\x71\xf4\x7c\xaa\xfd\xe9\xc2\xa0\x23\x44\xe7\x5c\x6b\x2a\xa8\x94\xbe\x75\x95\x8b\x68\x23\x04\x88\x4b\xf0\x28\xaf\xae\x7a\x9d\xea\x6a\xf8\xd8\x61\x70\xcc\x9d\x89\x98\x22\x09\x39\xf7\x59\x90\x81\xc2\xe6\x06\x27\x53\x73\xb7\x1b\x2b\xe0\xc5\xf9\x84\x47\x68\xa3\x45\xb1\x83\x62\xd0\xc4\x8f\x9a\x9e\x75\xd3\x6f\x97\xa5\x96\xfc\xfc\x2a\xdd\x67\x36\x9e\xcc\x86\xfa\x5a\xf4\x9b\xe1\x8e\x65\xac\xbc\x9f\xfe\x52\x4d\x7d\x2c\x0d\xee\x65\x4b\xb3\x32\x98\x8e\xf4\xdc\xfc\xf7\x2b\xa1\xdc\x45\x9c\x82\x9d\x98\xec\x0d\xa8\xfc\x23\x9c\x1e\x4f\xf5\xb4\x92\x1d\x67\x16\x58\xd4\x8e\x40\x4f\x05\x87\xd5\x7b\x06\x60\xbd\x27\xce\x75\x86\x5b\x66\x5e\x98\x37\xa3\xda\x8d\xaf\x7b\x40\xaa\xf6\xc9\xb5\x71\x15\x11\xed\xdf\x55\xb1\x24\xb6\xde\xb6\xd1\x8c\x35\x04\xf3\xc5\x8a\x16\xf5\x65\xd2\xeb\x20\x83\x87\xa1\xf7\xa1\xb2\x9c\x75\x04\x3a\x86\x98\x7a\xe7\xea\xc6\xf5\x58\xae\x60\xf0\x97\x7c\xea\xce\xb7\x44\xaa\xf7\xaf\xb4\xec\xbe\x4e\x27\xd3\x25\xaa\x56\xcd\x20\xea\xdb\x6f\xb5\xce\x00\x9a\xad\x07\xde\xea\xfe\x56\x34\x76\xdd\x81\x66\x6d\xdb\x3a\x96\xb0\x86\x0d\x69\x9e\x07\x2b\x74\x71\xa1\xb2\x2f\x93\xca\xcb\xe7\x0d\xeb\xf2\x5c\xf8\xbc\x04\xda\x79\x47\x1a\x57\xfe\xb6\xd0\x1e\x73\xf4\x20\xf1\x96\x79\x3c\x9e\x8d\xc6\xdd\xc6\x91\x6a\x67\xd3\x26\x1e\xd7\x36\xa2\x5f\x27\x5d\x8c\x7a\x9b\xc1\x6f\x67\xcd\xa6\x7e\xd4\xb4\x19\xf0\x25\x59\xd9\xca\xbf\xcc\x34\x3e\x40\x58\xd8\x07\xb8\xbf\x64\x2f\x30\xc2\x71\xfe\xa4\x9d\x96\x30\xe4\x20\xcb\x9d\x7a\x2a\x94\x6b\xaa\xb4\x48\xde\x68\x7f\x77\xe9\x67\x9b\xc3\x55\xa9\x57\x42\xe4\x77\x98\x2c\x78\xe1\xce\xc3\x62\xf6\x75\x39\x77\x5e\xa9\xee\x0a\xeb\xfe\xd2\xcf\xcb\x2c\xef\x83\x5c\x99\x76\x72\xd2\xe7\xec\xca\x58\x50\x60\xe3\x5a\x56\x31\x4a\x60\x39\xaa\x31\x9e\x29\x00\x73\xed\x12\x8b\xb6\xfc\xfc\xa7\xbc\xb7\xe1\x83\xe5\xd2\xfa\x77\xb5\xbd\x6c\x05\x87\xaa\x24\x50\xaf\xb3\x74\xf2\xc4\xcd\xcd\x80\xda\xcf\x8f\x22\xf2\x91\x2a\xca\xaf\x65\xf7\x22\xdd\x33\x94\xdb\xd5\xcd\x97\x91\xa5\xa5\xbe\xf6\x63\x74\xdc\x19\xb4\xd5\xac\x7f\x6f\xee\x8c\x11\x17\xc1\x4d\xaa\x18\x81\xa7\xcb\xd8\xe2\xba\xf4\x45\x41\x1f\x5d\xb2\xd4\xee\x2b\x65\xbd\xa6\x50\x9a\x86\xf7\xf3\x27\xe5\xfc\xfa\x77\xf2\x8b\xbc\x60\xf4\xc0\x92\xa6\x97\x77\x34\xcd\xde\x05\xdb\x08\x43\x94\x5c\xe4\xdd\x4c\x54\xb4\xc6\x8d\x1d\x14\xe2\x7b\xa1\x9d\x34\x4d\x10\x9e\x41\x06\xe1\x74\xcb\xb2\x30\x5a\x18\x5f\xc6\x90\x6a\x24\x7f\x4f\xc8\x0b\xa6\xad\x6e\xc2\x3e\xc4\x0b\x46\xf2\x06\xbb\x90\x56\x63\xcb\xe1\xc1\xd6\xb8\xcb\x60\x7d\x9b\x40\xed\x15\xa3\xbb\xd4\x6c\x41\xf6\xf2\x5f\xe3\x09\x06\xc1\x54\x67\x37\xfb\x18\x2b\xf3\x83\xf3\x37\x51\xa5\x24\x2f\xd8\x1e\x2f\x35\x3e\x79\x2f\xe8\x5d\xc5\x3d\xf3\xe0\xa9\xad\xbc\x8f\x8e\x2d\x26\xad\x08\x84\x6c\x3f\xee\x3e\xd8\xcb\xf3\x0e\xa0\xea\x6d\x18\x38\xab\xe9\x74\xe0\xca\x58\x5a\x22\x61\x0d\x39\xd5\x5d\xce\x24\xa1\x3b\xca\xe6\x3f\x50\x3e\x74\x64\x77\x92\xa5\x72\x50\x97\xfd\xda\xac\xb4\x48\x77\x99\x3a\xc1\x42\x15\x4b\xfb\x26\x98\x40\x94\xf1\x8b\xf5\xb3\xb1\xd2\x7e\x7a\x28\x88\x36\x0b\x81\xf9\xdb\xb8\xcc\xcb\x5d\xc1\x9c\x9d\xd5\x00\x73\x9c\x07\x69\xfa\x02\x33\xc3\xd6\x29\xd0\x18\xeb\xef\x8b\xbb\x1a\x4d\xdc\xcf\x31\x22\x4c\x3a\xd0\xab\x7e\xf5\xb6\x11\x44\xea\x1d\xf4\x32\x97\x38\x04\xc6\xf7\xb7\x5a\x1a\x2b\x83\x8c\x36\xd7\x7f\x48\x42\xb6\x55\xc1\x57\x31\x55\x36\x5c\xc8\x2b\x63\xc7\x34\xbe\x7f\x8d\x26\xf1\x88\x10\x8f\x4d\x0a\xc2\x8f\xb9\xb6\x52\x4e\x3c\x7d\x6d\x0b\xc7\xbe\x4a\xf6\xf1\xb2\xc2\xfd\x8a\xc5\xc8\xb5\x55\x67\x4a\x11\x63\x5b\x62\x87\x18\x8a\xe2\x6b\x80\xcf\x07\xe4\xc5\xa1\xd6\x43\xc3\xcc\x7d\x7d\xa8\x65\x6f\x74\xbc\x52\x86\xda\xf9\xbc\xb9\x25\x7a\x87\x54\x0c\x48\xbe\x5a\x9a\xbe\xb5\x0d\x2c\x6c\x44\x3e\xb9\x44\xeb\xce\xd5\x55\x40\xb3\xff\x43\xe3\x30\x93\x14\x85\xcd\x83\xea\x93\x25\xd8\x52\xf7\xec\xbe\x36\x4d\xf3\x89\x3d\xe1\xc8\xc4\xb5\x20\xbe\x9c\x9e\x85\xee\x00\xa8\x76\x2e\x11\x0b\x73\x9c\xff\x54\xc8\x7f\x58\xc5\x79\x08\x01\x3d\x0c\xaf\x3f\xe8\xc8\xa0\x63\xbd\xbc\x7a\x73\x59\x51\xf3\x7b\xe3\x22\xf1\xaa\x5d\xc2\xc6\xbe\x0b\xf6\xcb\xa2\xfc\x1a\x0b\xa7\x47\xc8\x8c\xdb\xf2\xc6\x4c\x55\x31\x8a\x86\x28\x5a\xa0\xfb\x89\x71\xc2\x8e\x72\x6a\x0a\x91\xdc\x87\xe9\xa8\x40\x41\xfd\xeb\xde\x9a\x76\xce\x2a\xa4\x92\x7e\xc9\x27\x5c\x34\xa6\x6e\x7b\x66\x82\x73\x29\x8f\xc1\x42\x0a\xa7\xb9\xa1\xc5\xa0\x7a\x97\xc7\x43\x6b\xa3\x6a\x22\x37\xb9\x17\x6b\xeb\x37\xcd\x8d\x5d\xdc\x63\x74\xa4\xeb\xed\xb1\xfe\xe2\x3c\xdd\x2d\xa2\x0d\x8e\xd1\x1f\x4d\xb3\x09\xc6\x53\x0f\x1b\xf7\x1c\x14\xf2\x3b\x3d\x16\xe3\x36\x5e\xb2\x72\xfc\xd6\xf9\x1b\xee\x91\xae\xdf\x64\x17\x6e\x4a\xac\x9a\x1d\x5d\x39\xc3\xa3\xd9\x15\xf2\x59\x64\xcb\xd6\x77\x2a\x4b\x2f\xde\x5e\xf6\xd4\x46\x84\xa9\xe1\xab\x5f\xc2\x50\x48\x6b\x21\x06\xe2\x4a\x6d\xea\xd3\x87\xec\x33\x92\x15\xa8\xb4\xe9\x31\xb1\xa3\x27\x63\x3f\xe6\x1b\xce\x6a\xd0\xf0\xde\xf5\xe7\x90\xac\x40\x24\xf5\x26\x91\xf9\x45\x95\x5c\x1c\x0c\x77\x04\x53\xaf\xab\x21\x86\xa5\xba\x4c\x18\xc9\x63\xfd\xe3\x29\x52\xa5\x2d\x53\x92\xb1\x3e\xfb\xaf\xe5\x94\x3a\x1b\xc9\x2a\xa3\x41\x94\xff\xe6\xea\xa4\x5a\xd3\xa6\xa7\x67\x89\xce\x4c\x7d\x6c\xa8\x27\xcf\xe0\x0f\x9f\xdd\xd2\xe6\x27\xd0\xe0\x49\xd3\xc5\x22\x88\x3a\xe6\x5a\x2a\x73\x1a\x38\x86\x13\x72\xc7\xca\x35\x68\x49\x32\xea\x5e\x3e\xb9\xe9\x6d\x1f\xae\x96\xe8\xa9\x1a\x8d\x9d\x9e\x18\x58\x6b\x6f\x84\xb9\x39\x78\x35\xab\xb7\x18\x74\x5f\xea\x76\xf0\x3a\xd3\x25\x0a\xda\x32\xb0\xd0\xfb\x00\xf8\xfa\xb0\xd8\x59\x60\xa5\x90\x50\x9f\x69\x69\xa7\x1f\xf2\xa2\xcb\x34\xd9\x4c\xac\x27\x56\x26\xad\x82\xf7\x50\xa7\x9d\x92\x07\x6e\xcf\x50\xdf\x97\x1a\x71\xd6\x28\x69\xc2\x38\xd6\xc1\x13\x7e\x15\xa1\x09\x67\xcd\x7f\xde\x1f\x62\x3c\x84\xf3\x50\x24\x74\x58\x25\xe1\xb3\x2d\x83\xf8\x16\xee\x03\xc2\x6d\xec\xf1\xbc\x29\x66\xfa\x83\x6d\xba\x12\xed\x92\x57\x46\x0d\xe3\xab\x16\x02\x34\xf2\xc4\x78\x38\x58\x2f\xbb\xbe\x93\x8f\xb3\xa8\xf9\x85\x3e\x5d\x7c\x66\x4e\xca\x71\xa9\xd6\x44\xa1\xb5\x45\xd8\x77\x8b\xca\x43\x23\x0d\x85\x9c\x15\x7c\xac\x71\x17\x0e\xc8\x77\x29\xc3\x8f\x9c\x7a\x6d\x3f\xc2\xbf\x1c\xd2\x88\xc1\x95\x3e\x29\x65\x8f\x17\xce\x3d\x55\xe9\xed\xae\xf1\x27\x8c\xa6\x0c\xd4\x24\x07\xbd\x99\x7a\xb6\x58\x03\x71\xd8\x23\xca\x63\x6b\x1e\x2e\x25\xe9\xf9\x4e\xb9\x2b\x3a\x95\xfe\x3d\xcc\xc7\xf8\xbc\xaf\xcd\x40\x84\xc7\x5a\xde\x87\xd3\x41\x23\xca\x34\x66\xb2\xea\x77\x74\x0c\x3c\xe1\x1e\xc5\xbb\xad\x15\x35\x50\x3f\x82\x20\x2b\xbd\x34\x7c\xdc\x68\x58\xb2\xeb\x48\x2f\xf4\x49\x0d\x17\xbf\xb6\x25\x56\x6f\x01\x7b\x74\x9b\x84\xb2\x21\x8e\x57\x0a\xd3\xc6\x33\xa9\xc8\xa8\xf5\xd8\x70\xab\x88\x68\x4c\xae\x7e\x2a\x62\xc8\x10\x73\x0d\x66\x23\xc6\x9a\xd4\xa6\x20\xcb\x54\x29\x2d\xd0\xd3\x8d\x5b\xd7\xb0\x62\x5a\x38\x0e\xbe\x10\x6f\x34\x78\x46\x45\xa5\x5d\x8a\xfa\xd2\x20\xc9\x19\x8a\x9c\xb3\x17\x61\x14\xd0\x0d\xe5\x80\x92\x32\xf2\x4e\xa9\x4f\x5b\x92\x9a\xa9\xaa\x5d\x4e\xa6\x31\x1d\xc6\x8e\x41\xa5\x37\x0d\xec\xcb\x51\xe7\x49\x8b\xcd\x10\x17\xcc\xa4\x95\xa7\x7a\xe9\x06\x39\x49\x02\x26\xd1\xac\x8c\x1b\x3f\xe5\x19\x8a\x04\xc5\x2b\xc7\xe3\xef\x27\x76\x52\x3c\xbd\x53\xaa\xaa\x18\x09\x10\xb0\x83\xd9\xd0\x32\x09\xfa\xb3\x27\xfd\xa9\xb1\xb6\x18\xf8\xe7\x08\xcc\xc7\x51\x97\x58\xd3\x77\x56\x79\xf3\x72\xe2\x98\x36\x8b\xfa\xc7\x91\x66\x9a\x75\x0f\x1b\x3c\xa3\x97\x23\x36\x76\x91\x14\xe9\x73\x22\x5a\x3d\x46\x89\x31\x50\xb9\xb2\xf8\xfc\xf3\x77\x88\x58\xe2\x47\x3a\xc8\x37\xbe\x65\xf9\x14\xbc\x43\x21\x69\xba\x74\x4e\xc3\x03\x8e\xde\x1a\x86\x62\x6e\x02\x53\x65\x98\xf8\x97\x1a\xa2\xcd\x2d\x0f\xb2\x4b\xad\x1e\xc1\x28\xcf\x4a\x01\x81\x77\x2c\x36\xa2\x4c\x24\x58\xa3\xaf\x76\x5f\x11\xe0\x3a\x6d\xbe\x3b\xfb\x0a\x4e\x2f\xb5\x72\xac\xde\x23\xb1\x09\x56\x08\x49\x98\x26\x81\x41\xa6\x3c\xf4\xc6\x32\x95\x77\xbf\x5c\xd8\x40\xf5\x5a\x09\x08\x92\xd0\xaf\x93\x4d\xb5\xad\xba\xd7\x7c\x67\xbc\x63\x61\x44\xee\x1b\xde\x0f\x64\xfd\x16\x08\x5c\x3e\x02\x0b\x76\x51\x1e\xb4\x4b\x1e\x0f\x13\xc3\xb1\x47\x5f\xf1\xbc\xc2\xc5\x75\x4a\x4f\x74\x68\xd7\x68\x36\xe8\x8b\xe5\x3c\x9e\x5a\x66\xb8\x7b\x33\x4d\x92\xb4\xf4\x9d\xda\x4a\x7f\xc9\xad\x50\xf3\x61\x3d\x16\x8f\x5a\x3f\x26\x2d\xb6\x59\xf6\x74\x32\xb1\xfa\xf3\xab\x13\x59\x42\xb3\xb5\x50\x79\xa8\xf5\x8a\x42\xcb\xda\xee\x07\x3f\x0f\xec\xe3\x76\xa8\x40\x54\xe5\x0b\xff\x3d\x94\xc1\xe5\x2b\xe0\x63\xbd\x68\x83\x17\xb4\x49\x2b\xda\xa0\xd7\x65\x32\xa8\x30\x5b\xdc\x56\x72\x5f\x89\x2d\xae\xed\xe3\x4b\x62\x46\x52\x35\xfe\x8a\xeb\x47\x16\xae\x20\xaa\x0b\x5b\x8f\x9a\x90\xe2\xd3\x67\xd9\x3e\x96\x5d\xad\x24\xeb\xbf\xa0\xdd\xe1\xaa\xd6\xc3\x5f\x1a\x43\x3d\xcb\xb1\x4e\x8a\x40\x0d\x31\x48\xa8\x4f\x88\x6b\x8c\x87\x65\xa0\x3f\xce\xa8\xd3\xa0\x17\x0f\x6e\x9a\xd2\x5a\x59\xf5\xc8\x5e\x7a\x3e\x7b\x41\x25\x7b\x41\xde\x48\x24\xaf\x9b\x9a\xc3\xcd\xbb\x56\xbd\xc5\x24\xfa\xaf\xb2\x5b\xea\x60\x97\x8d\x06\xe7\xaf\xfb\x37\x9c\x83\x55\xa8\x98\xd8\xb3\xd2\xab\xfe\xd3\x99\x01\xda\x8c\x19\xec\x47\xf7\xa1\x05\x41\x83\x33\x97\xc4\xf7\x63\xfb\xd9\xd6\x63\x34\xa4\x3c\xbd\x66\xe7\x46\x05\x19\xf8\x40\x5c\x40\x15\x47\xd8\x95\x01\xb3\x48\x10\xf5\x60\xaa\x9d\xb2\x1e\xed\x2e\xd5\x14\x4c\xef\x6e\x27\xac\xda\xf6\x09\x56\x87\xec\x67\xb2\xf7\xee\x4f\xd3\x74\x63\xfd\xf9\xdd\x9a\x0c\x9e\x4b\x7d\xee\x78\xa4\x36\x28\x79\x53\x5d\xe6\x92\xdc\x99\x61\xdd\xc1\xac\x69\xff\xa6\x2d\xe4\x1b\x1e\xff\xc7\xf8\x1c\x5b\x89\x6f\xed\xb8\xbd\xfb\xbc\xe6\xf6\xe2\x1b\x7e\xc4\x82\x03\xbf\x38\x24\xe8\x87\x23\x8c\x5f\x07\xc9\x7c\xb0\x91\x9c\x46\x96\x22\x5f\x24\x8c\x63\x72\xff\x04\x93\xeb\x05\x6e\xb6\x4a\x59\xc8\x8c\xf8\xbe\x14\xe9\x9a\x66\x9a\x4a\x59\xac\x2b\x34\x62\xcb\x7e\x10\xe4\x8e\xa5\x55\x1d\xfe\x3e\xde\x97\x6f\x0a\x45\xf6\x3d\x86\xed\xcb\x25\xc2\x46\x3e\x8e\x83\x67\xf9\xa5\x2b\x41\x61\x00\x88\xca\x49\x91\x5c\x6d\x2a\x42\x33\x19\xfd\x8a\x35\x7d\xc4\xde\xf3\x7a\x61\x59\x73\xd7\x28\x3e\xf9\x05\x23\xbe\x57\xbf\x16\x4e\x7f\xb4\xd3\x06\x1d\x31\xf1\x66\xca\xb5\xf9\x81\x0a\xad\xb7\xbf\xdd\x02\x1e\xbc\xcb\xe1\x43\x99\x5e\x0f\x07\x2c\x85\x7f\xb0\x4c\x3c\xfe\x27\x54\xda\xe8\x5c\x08\xe6\xc2\xe2\xb1\x0b\x10\x08\x43\x3c\x3e\x9e\xc7\x65\x7f\x75\x50\xe4\xd7\xdd\x57\xdb\x35\x8a\x1c\x64\x6d\x25\xea\x7b\xc9\xe0\xd6\x94\xf2\xa0\xaf\x6a\xd3\x88\xcd\x22\xc8\x9e\x97\xfa\x27\xb4\xa1\x43\x71\xab\xc9\xeb\x69\xea\xcf\x20\x21\xda\x44\x04\x86\x53\x15\xb2\xb1\x0e\x93\x77\x83\xdd\x76\xb0\x7a\xb2\x74\x64\x2f\x8b\x4a\x5f\xbb\x9f\xf1\xae\x6d\x55\x36\x48\xbe\xe4\x2a\xc6\x45\xa5\x8b\x54\xdc\x63\xdb\x00\x95\x6a\x99\xf2\x90\xee\xf3\xf3\x98\x02\x13\x4b\xc3\x4f\xeb\xe6\x2c\xf9\x1a\xf6\xfb\x69\x84\xfd\x15\x20\xd1\x59\x8d\xc6\x36\x4c\xde\xcc\x9e\x0c\xe2\x85\xaf\x55\xb4\x23\xaf\x79\x5b\x3a\x2a\x0a\x9b\x33\x19\x74\xd4\x97\xd9\x3c\xbc\x85\xf0\x96\xa0\xac\x31\x1a\xd2\x33\x37\xda\xb0\xcf\xcd\xcc\xc6\x9a\x3c\xdc\xd3\x65\xfd\x5e\x95\xf4\xba\x19\xbc\x64\xc9\xa0\xa6\x27\x50\x9c\x85\xa7\xc0\x4b\x42\xf6\x02\x83\xfc\x06\x7b\xc5\x71\x63\xed\x25\x98\xad\x85\x0a\x09\xe7\x03\x58\xb1\xb7\xb0\x75\x74\x67\xc8\xac\xbc\xca\xa1\x8c\x8c\x89\x52\x8d\xa9\xde\x45\x85\x99\xcd\xfc\x62\x40\x45\xec\xa3\x2d\x1b\xb2\x3a\xb5\x17\x6a\xbf\xff\x82\x73\x7f\x94\x93\x4f\xeb\x2d\xa2\x40\x7d\x0e\x8a\x6e\xb5\x5f\xd3\x65\x26\x26\x23\x26\x6d\x7f\x82\xd3\x21\xfc\xdb\x27\xa9\x67\x50\xbd\x97\x06\x91\xc3\x84\x7f\x6d\xbc\x03\x49\xaa\x0f\x81\xf1\x79\x1f\xc1\xea\xb9\x84\x13\x15\xdb\xab\x68\xb8\x43\x2e\x33\x62\x8e\x5a\x37\xe3\xac\xc7\x4e\xfe\x40\xa7\x4d\xe7\x18\x27\x83\x7d\x0f\x17\x43\x10\xad\x39\xa5\x28\x92\xb6\x22\xce\xfa\x44\x29\x6c\xd8\x2c\x49\x92\x76\xa8\x57\xbe\x72\xa7\x46\x2f\xec\x5f\x4a\xfc\x20\x69\xbe\x83\xe5\xde\x21\x4d\x6c\xec\x99\xd4\xdb\xf7\xbe\x8e\x3e\x9e\xdd\x53\xf1\x94\x7a\xb1\xc1\x3f\xb7\x6f\x77\x1c\x0d\x2f\xee\x60\x46\xa4\x3f\xf3\xfd\xf9\xd4\x4e\x3e\xfb\x82\xbd\x60\xc7\xed\x67\x2d\xfd\xcb\x4c\xf6\xa7\xe6\xda\xaa\x2c\x25\x88\x24\x0a\x9b\x4c\x08\xff\xd5\x09\x24\x48\x41\xe5\xaa\xc0\x85\x7a\xea\x4e\x37\x8e\xd9\xa7\x4a\x66\x34\x93\x4b\xff\xa1\x48\x01\x97\x4c\x20\xed\x1e\x8d\x04\xcb\x90\xb7\x5c\x4d\xde\xed\x7d\x92\x81\x2d\xff\x57\x2a\xdd\xd3\xef\x6d\x0a\xf8\x2e\xeb\x73\x64\x75\x3f\x5f\xba\x65\xc9\x60\x61\x2a\x32\x4b\x75\x62\x69\x46\x13\xc5\x3a\x20\x52\x29\x6c\x9a\x3c\xeb\xc3\x47\x47\xb6\xb1\xdf\x4f\xe8\xb4\x69\x9f\x7f\x34\xd6\x9e\x85\x89\x5f\x14\xd6\x9e\xce\x91\xdc\xcc\x57\x0a\x2d\x90\xb5\x9d\xfb\x6a\xae\x9b\xb5\x14\x1b\x9f\x04\xbe\x77\x80\xda\x3c\xdc\x23\x36\xe8\x9c\xa0\x79\xae\x3c\xc9\x3e\x61\x8b\x9e\x94\x58\xa3\x4e\x02\x28\x49\x12\xc1\xfb\x28\x65\x1e\x0e\x3b\x43\x0f\xc5\x7c\x38\x58\x88\xd8\x70\x9f\x83\x3e\x6c\x97\x92\x2c\x35\xda\x4c\x3f\xdc\xd2\x0d\x65\x9b\x2b\x34\x71\xe8\xfb\xe9\x0f\x0f\x5f\x72\xd1\xe4\x17\x74\xad\x5d\x7c\xc9\x7b\x97\xf9\x9d\xbb\x96\xb1\x6f\x82\xcc\x22\x07\x7b\xf1\x12\x7f\x7b\xe1\x52\x65\x92\x5d\x04\x3d\x7d\xf3\x3e\xaf\x59\xbc\xdf\x92\xe9\xc4\x72\x8b\x5e\x41\x43\x1e\xbe\x70\x9e\x0c\x8a\x4a\x75\x54\xee\xc2\x2e\x3d\x37\xd8\x9a\xa0\x98\xef\xab\x2d\xc5\xec\xe5\x6b\x0a\x62\x8f\xfd\x51\x6f\x29\xef\xf0\xd8\x74\xb0\xd2\xed\x48\xe6\x30\x77\x21\x9d\x54\x82\x82\x5c\x49\x3a\x69\x7a\x4f\xa5\x6e\xfc\x88\xf1\xe3\x6f\xa9\xd0\x46\x66\x44\xa0\xe3\x53\xf7\x93\xc3\x59\xc2\xfe\x0e\x0c\x27\xd1\x96\x2f\x9e\xc3\xde\x8c\x2f\xf3\xd9\x7b\xda\x9a\x06\x52\x6d\xa7\xf2\x4d\xe3\xed\x67\x1d\xde\xdf\x7c\xc8\x50\x6b\xfb\xb8\x2c\xc8\x15\x6f\xc4\x57\x71\x6d\xa0\xc9\xb1\xff\x5a\xd6\x61\x13\xc7\x4e\xf4\x54\x08\x11\xa1\xda\xfe\x68\xd0\x00\x31\xf0\x36\x3e\x2a\x3d\xc1\x14\xae\x0e\x63\x3b\xe8\x0d\x10\xf3\x09\x7e\xba\x74\x51\x89\x2e\x25\x2d\x74\x29\xa9\x20\xd6\xeb\x92\x7c\xba\x48\xfd\x08\xfa\xd0\x0f\xf4\xf9\x08\x3b\xe1\x16\xd9\x5f\xa9\xb6\x85\xd5\xef\x3b\x61\x5f\x3c\xca\xa5\x62\x97\x05\x3d\xee\x4b\x4c\x8d\x7c\x1b\x55\xcd\xe7\xa6\x2b\xec\x8d\x42\x65\xb7\x6c\x75\x3d\x6f\x93\x5b\xf9\x0d\x79\x38\x58\x47\x83\x63\xb2\xad\x95\x35\x42\x56\xe8\x75\x67\x2a\x06\x06\x1d\x45\x98\x84\x78\x3f\xde\xf8\x17\x23\xd6\xea\xc8\xb3\x02\xa6\xe6\xde\x0a\x01\xf2\x74\x9a\xd1\x7c\x88\x9d\x74\xf2\x32\xb0\x50\xfc\x83\xd4\x82\x7b\xb3\xa0\x1e\xe6\xf4\x4d\x2d\xc4\x60\xa1\x94\xe7\x8b\x05\x45\xf1\xf1\x10\x51\x07\x35\xa9\xca\x42\x83\xf4\x1c\xb0\xda\x5b\x11\x48\xfa\x08\x5f\x6d\xb0\x0a\xf6\x20\xc9\x02\xe1\x6f\x4c\x9a\x44\x3d\x6b\x33\x65\x73\x0a\x85\x60\xf3\xb9\x6d\x12\xde\x0f\xa0\x26\x21\x52\x4c\x3d\x6a\xc0\xe9\x03\x38\x7d\xe9\x09\x9b\x55\x7c\x4a\x8f\xb3\x62\xb9\xe6\x61\x3b\xba\x29\x75\xe4\x1a\x0d\x45\x21\x03\x42\x74\xcc\x93\xae\x8e\xab\xb3\x42\xda\x47\x54\xf4\x06\x79\x2c\xce\x25\x1c\xb4\x9d\x12\x3e\x48\x4e\x55\x77\xd5\x30\x75\x0f\x7e\xab\xf9\xee\x72\xc5\xc8\x67\x15\xe8\x8c\x65\x31\x1b\x67\x98\x62\x29\x8d\x38\x12\xfe\x9d\x6f\x4c\xd4\xef\x0b\x12\x5d\x2e\xed\xe2\xc5\x93\xbf\xd1\x8c\x46\x87\x81\x2d\xbc\x96\x6e\x5b\x33\xda\x5a\x59\x6a\xb9\xc8\x54\xe1\x3c\xd4\xcb\xde\xde\xb6\xcf\x41\x72\x99\xc9\xa3\x6f\x1d\x57\xef\xee\xa3\x1b\x87\x74\xff\x30\x12\xc1\xfc\x5a\xb6\xcf\xc3\x21\x29\xf7\x80\x9e\xff\xaa\x55\x2c\xfb\x1b\x7c\x63\x0d\xaf\xf9\xd5\xd4\xf0\xf1\x6d\xe7\x61\x9b\xe1\xf6\xee\x5b\x34\x72\x07\xa6\x73\xcf\x39\x8d\x14\xc6\xf7\x09\x74\x80\x8d\xfd\x07\xab\x93\x02\xb4\xa2\x8f\x1b\x77\xba\x4b\x9d\x4b\xbf\x95\xc2\x3f\x65\x75\xb4\x3d\xa8\x2f\x35\x84\x6d\x79\x69\x0f\xd1\xff\x20\x0c\xb4\xf2\xd6\x11\x5b\x10\x68\x81\xb7\x06\x3a\xed\x67\x5a\x7a\x99\xc1\x38\x66\x66\x6a\x9f\x65\xff\xd5\xb5\xd6\x3f\x9f\xc1\xb3\x14\xbd\xad\x4f\x63\xd0\x31\xce\x90\x63\xb5\x36\xe2\x6e\xcd\xa5\x1b\xf9\x5c\x43\x93\xa8\x33\x2d\x53\x39\x50\x45\x96\xdb\xc6\xde\xe3\x16\xcd\x56\xa4\x22\x4b\x31\xde\xe5\xb2\xc5\xb8\xff\xb1\xbf\x85\x6d\x0f\x9f\xaf\x5e\x37\xdd\xa0\x76\x5e\xbd\x2e\xb9\x31\x54\x26\xbf\xaf\xf2\x8d\x65\xce\xab\x6c\xb6\xfd\xd0\x10\xa3\x95\x88\x46\xdb\x6f\xc5\x29\x8c\x2d\x0b\x2f\x2f\x25\x40\xfe\xeb\x7f\x83\x92\x0d\xd8\x30\x6d\x32\x1f\xbe\xca\xb8\xb5\x92\x90\xfd\x6e\x98\x0f\x2c\x92\xca\xb3\x78\x74\x25\x92\xe5\x2e\x75\xc7\x4e\xbf\x2e\x07\x39\x6f\x48\x42\x68\x15\xbc\x9e\xb0\xff\x7d\x71\xae\x37\x05\x2b\xb5\x7d\x11\xfe\x79\x67\x24\x4e\x7a\x8f\xf1\x2c\xaa\x14\x46\xd1\x90\x83\xa8\xab\x96\xf0\x73\x4d\xff\x4c\x4b\xa2\xf1\x38\x67\xaf\xa6\x8c\x54\x2b\x9a\xbe\x01\x19\x32\x8b\x7a\x07\xe2\xe5\xba\xf1\xea\x5c\xba\xda\xb0\xe1\x73\xb2\x36\xe7\xb4\x66\xff\x92\x33\x56\x71\xec\xff\x3c\xe6\xed\x4b\xa2\x16\xcf\x5e\xba\x93\x07\x71\x1f\x80\x58\x21\x88\x78\x27\x4d\xf9\xa5\x46\xb8\xf8\x13\x2b\x87\x4f\xec\x62\x18\xeb\x8d\xda\xa8\x8d\x31\x3e\x08\xbf\x4a\xd7\xc9\xb3\x7a\x81\x39\x99\x30\x05\xe9\x35\xc6\xb7\xf5\xdf\x77\x18\x45\xb7\x9c\xa8\xe5\x93\x8c\x5a\x76\xea\xec\x8d\xae\x04\xcb\x1a\x77\x0c\xd2\x3b\xd6\x4a\xeb\x9f\x47\xa7\xc7\x9b\xce\x0f\x39\xaa\x61\x36\x4a\xcc\x0e\x46\x0c\xbe\x78\x82\x35\x9d\xcc\x98\xdc\xea\xf4\x94\xac\x4d\x82\x6b\xf9\x6d\x74\x26\x97\xc7\x33\x71\x56\xd9\x99\x0a\x12\xfe\x09\x83\x87\x8a\x6c\xe5\xbe\x2f\x32\x4e\xbe\x63\x71\xf6\x45\xcc\xfe\xcd\x00\x43\x38\xec\xde\x48\x17\x4b\x29\x9b\xb7\xf7\x08\x97\xb6\xf5\xb2\x7d\x5b\xd1\xcd\xb7\xcd\xac\xbc\xce\xda\xb1\x2d\x4d\x2d\x31\xd4\xa5\x8f\xb9\xa2\xa1\xa7\xd3\xbc\x2c\x7a\xd7\x74\xf2\xc6\x17\x77\xf9\xc0\xb1\x1b\xb3\xd9\xc5\x5a\x84\xe9\x67\x74\x9e\x53\x4a\xe1\x2d\xa4\xf3\x20\xe4\x6d\xf6\x62\x5c\x3e\xa6\x11\xd3\x4a\x72\xd5\x40\xe8\x5f\xcd\xe6\xc6\x89\xe0\xf4\xe5\xf8\xa5\xb5\xc3\x60\x83\x9c\x27\x62\xfe\x21\x3c\x09\x5a\xd0\xb7\x9a\xaa\xb2\x14\xc2\x89\x02\x2a\xd5\x20\x5c\x11\x08\xc1\x46\xa0\xd7\x20\x0e\xff\xd9\xca\x37\x5e\x8f\xa6\x69\x43\x4b\xba\xaf\x86\xa9\x36\x56\x4f\x91\x47\x28\xc4\x00\x6a\x5e\xa3\x68\xb7\x57\xeb\x72\x24\x3f\x90\x6a\x69\xc1\x3d\x27\x7e\xd9\xa7\x3f\x3d\xa1\x35\x5d\x4a\x82\x47\xb7\x22\x3d\x91\x35\xe7\xea\x6b\x31\x32\x91\x3b\x28\xeb\xb7\xd6\xf5\xf8\x9b\xcc\x11\x82\xfb\x4c\xfc\x03\x70\x6f\x3b\x89\x4e\xa8\xde\xf9\xae\xfc\xfc\x46\x81\x47\x58\x40\x3a\x61\xff\xdd\xb2\x49\xa5\xd9\x31\x4e\x9d\x44\x42\xf1\xd1\x11\x16\xe7\x70\xc4\x77\x98\xed\x5c\x27\x6f\x95\x82\xca\xa7\x59\xbd\xe2\x95\x81\xc5\x07\x4e\x86\x2f\x2a\x0e\xed\x45\xd8\xf5\x0d\x3e\x94\x51\xe9\x9f\x07\x6b\x9d\x97\x06\x9a\x64\xc7\xb0\x75\x8f\x9c\xd5\x84\x7c\xde\xb6\x14\x69\x3d\x6e\x9a\x59\x19\x39\x3c\x96\x8b\xf2\x22\xba\xb7\x08\xf7\x40\x86\xf8\x5c\x1a\x0f\xfc\x35\x1c\x5d\xb3\x6f\x62\xac\x6b\xbd\x36\x10\x14\x60\x75\xbb\xdc\x67\x61\xcd\xdc\xd8\xca\x71\xb2\x0a\xca\xef\x0f\x9b\x87\x94\xb9\x69\x28\xbb\x1f\xe6\x91\x18\xb4\xca\xc8\x7e\x69\xc6\xc0\x14\x8e\x8a\xc2\x10\x64\xca\xab\x98\xc3\xe2\x2c\x01\x93\xd1\x96\x5e\xaa\x25\x21\x89\xdd\x7f\x8d\xa9\x31\x9c\x37\xc7\xe9\x7c\x2e\x7d\xa7\xe1\xe9\xdd\x53\x53\x56\x49\x72\x34\xe8\xae\x78\xb2\x3e\x68\xee\xa7\xf9\x92\x8d\xdb\x2d\x66\xa8\xb2\xf4\x1d\x4f\x18\x83\x61\xc5\x61\xff\xf0\x79\x64\x97\xa4\xf9\xe2\xeb\x1b\x0b\xee\x79\x86\xe2\xb2\xf6\xe9\xfd\x77\x9c\x0b\x14\x37\xed\x80\x07\x8d\x6b\xa9\xf8\x16\x18\x5f\xa7\x15\xec\x25\x09\x09\x0d\x0c\xd4\x2b\xb5\x55\xc0\x6b\xcc\x4c\xf8\xeb\x78\x28\xfb\x6b\xa3\x74\x40\x36\x5e\x4e\xa4\x36\x03\x39\x0e\x39\x63\x28\xf5\x51\x68\xfe\x0c\xc4\x4e\x32\xc5\x92\xca\x17\xc4\x70\xaa\x1a\xc4\x1e\xc5\x8a\x92\x51\x06\x7c\x2a\xfa\xc5\xa3\xf5\xa9\xc8\xa7\x80\xab\xcd\xbf\x40\x39\xe8\xb0\xcd\x2e\x79\x6f\x78\xf1\x32\xf0\x40\x92\x4e\xfc\x27\xfb\x82\xc3\xc1\x62\xf0\xf0\xe1\x4d\xe0\x5f\xf9\xb7\x02\xe9\xc1\xa8\x83\x83\xbb\x91\xb6\xad\xcc\x61\x51\x69\xcb\xd9\xc3\xf6\x22\x6a\x91\x1f\xc3\xe0\x05\x8d\xd3\xa0\x1f\x09\xd6\x97\x6e\xed\x7e\x8b\xdc\x1e\xb4\x32\xe2\x8f\x9f\x9d\x2a\x80\x56\x08\x16\xfc\x3d\xb7\xa4\x5b\x13\x5b\x43\xfd\x09\xec\x63\x44\x0c\xbb\x31\x6a\xb8\x21\xf7\x5e\xbc\x2d\xc6\xb6\x39\xa4\x11\x3a\xb2\xa6\x9c\x8c\x98\x9f\x1b\x5b\x72\xdf\x2f\x5e\xb5\x8e\xcc\xb2\xc4\x3d\xa1\xfc\x83\xac\x56\x49\x61\x20\x3e\x2a\xa8\x7d\xd0\x46\xcc\x3d\xeb\x5a\xaf\xac\x2e\x3e\x95\x93\x3e\xe5\x80\x5c\x1b\xf1\x06\x35\x49\x24\x52\x78\x53\xca\x91\x42\x79\x35\xa2\x65\xe2\xa7\xd8\x0d\x2e\xc0\x0a\x10\x81\x9c\x25\x8e\x06\xab\xe1\xab\x97\xda\xfa\x7f\x11\xfc\xb1\x63\x35\x2a\xac\x97\xdc\xbf\x76\x65\xd5\xdd\x36\xcb\xca\x9f\x47\x97\xaf\x89\x1f\xdd\x58\xbf\x69\x7f\xd1\xce\xe7\xd1\xee\xcb\xbf\x51\x01\x9d\xc5\xe7\x12\xc0\x3d\x42\x76\x65\xcf\x65\xa6\x33\x12\xc9\x4f\xb3\xd9\x19\x5f\xff\x14\xd2\x38\xcb\x7f\xc9\x51\xc5\xc3\x38\x15\xd3\x1e\x07\xe8\x57\x3f\x28\x08\xd3\xcf\x9d\x71\x0d\x76\x78\x44\xfb\xe3\xe6\xc4\x31\x1c\x99\xea\xe8\xb7\xd5\x8d\x2a\x5f\x84\x17\x53\xa7\x20\x82\x5b\x21\x7b\xb8\xc2\x19\x0e\x7c\xed\x56\x18\x73\x30\xd2\x96\x9b\x31\x03\x67\x5f\x6f\xc5\xc6\x38\x25\x90\xb1\xb5\x47\x89\x6f\xe1\x6a\x35\xcf\xd9\xaa\x20\x12\x8c\x1d\x90\x55\x3f\x32\x92\x16\xbd\x9c\x6a\x76\x87\x7d\xef\x28\x19\xe2\x6e\xdb\xcb\x77\x70\xe6\xb3\x6c\x69\xcc\xd0\xb1\x20\x43\xd3\x0f\x96\x8c\x3d\x4c\x91\x9f\x5e\x24\x6f\xdb\xce\x22\xbd\xbb\x30\x24\x3f\x88\x60\x42\x6c\x2a\x0d\x6c\x87\x90\x48\x6c\xbd\x43\x54\xe2\x20\x42\x27\x75\x2e\xca\x5e\x2a\xff\xd2\xf1\x0a\xd6\xdd\x98\x0a\x84\xf3\xb1\x48\x93\xe5\x90\x37\x74\x8c\x9b\x49\x06\x69\x49\x38\xc3\xc6\x5a\x53\x11\xa0\x41\x5b\x50\x13\x4b\x62\xb2\x97\x7e\x98\x20\x80\x6c\x7e\x44\xb6\xcd\xbd\xb0\x6e\xcc\xb7\x08\x56\x20\x76\xad\xc9\x39\xfd\xa4\xa9\xc9\x91\xc5\xa1\x95\x06\x3c\x9c\x9f\xb9\x89\x18\x78\x25\xc7\xc8\x1a\xfb\xed\x72\xc5\xe5\xd9\x42\x43\x53\x66\x1b\xbf\xd9\xbe\xcb\x4c\xf4\x73\x95\x96\x05\x41\xbd\x53\x0d\xe7\x83\x25\x52\x33\xd3\x25\x14\x61\x28\xcf\xc8\xbb\x14\x04\x86\x0d\xc5\xd8\x0a\xe1\xaf\xa7\xb7\xa5\x8d\x66\xaf\x01\xf4\x4b\x5f\xed\x56\x16\x52\x68\x28\xc1\x11\xf1\x04\xd2\x9f\x0e\x2b\x10\xd1\x52\x3c\xfe\x3a\x38\x13\xec\xd8\xa4\x25\x65\xea\x30\xe9\x47\x8d\xe4\x7d\xb8\xa0\xe3\x13\x81\x82\x3d\x6a\x85\x6d\x89\x69\x10\x64\x08\x16\x5b\x18\x7b\x97\x87\x7b\x56\xba\x75\xe5\x84\xc7\x39\x58\xfe\x7c\x39\x73\x45\x4a\x10\xbd\x5f\x73\xa3\xc3\xc4\xb1\x16\x1b\xc2\x87\xa1\xd5\xcc\xb9\xdd\x4e\x91\xcf\xc6\x4a\x86\x8a\x60\x62\x24\x0f\xde\xe3\xde\x4e\x8a\x65\x27\x43\x85\x4c\x6e\x7f\x90\xb1\x88\x9c\x39\x08\xf2\xfb\x3e\x44\xa9\x0f\xae\xfe\xd9\x4b\xe7\x5c\x3f\x13\x32\x56\x30\x73\x44\x80\x4c\x82\x3b\x4a\x92\x71\x4c\x94\xcc\x99\xd6\x16\xd9\xd5\x8e\xed\xfa\xc2\x7b\xc5\x54\x28\xed\xa1\x27\xd7\x4b\x87\xed\xf2\xda\x9d\x9f\x42\x88\x30\x24\x39\x21\x9b\xb0\x33\x9b\x04\xf2\xb7\x0e\xa9\x09\x03\x05\x27\x3f\xb2\x12\x9a\x13\x3c\x4c\x15\x4d\x27\x9e\x40\x0a\x59\x4b\xcf\x7b\xf8\xa7\x79\x73\x9b\x44\xbb\xe5\x4e\xad\xe0\x92\x62\x08\xef\x03\xad\x99\x3b\xf8\xb9\xa8\x86\xf3\x3d\xf7\xf9\x52\xe9\x9d\x92\xd7\x13\xb8\x40\xc1\x9c\xe2\xa9\xcd\x27\x9c\x22\xb6\xe2\x6f\xbb\xd3\xf2\xda\xad\xba\x70\xab\xd3\x73\x5c\xd1\x86\x88\xd9\xc2\x68\x8b\xb4\xd9\xf7\x56\x5c\x25\xf8\x23\x0b\x5f\x68\x0d\x1a\x93\x64\xfd\xa6\x6a\x43\x74\xa2\x77\x25\xfb\x92\x53\x13\x69\xed\x02\x66\x1e\x57\x37\xdd\x7d\xfa\xdc\xf6\x5c\x74\xc1\x99\x78\xc6\x8d\xc5\x83\xf9\xcf\xbc\xef\xbd\x88\x5b\x59\x04\x9d\x98\x91\xea\x63\x02\x1c\xfb\x4d\x49\xa4\x36\x3c\x27\x3a\x83\xc5\x2d\xe1\xf7\x42\xd4\xe4\x45\x63\xfb\x92\xc2\xc3\x65\xc4\xdf\x0e\x99\xf9\xf3\xc6\x70\x12\x37\x8a\xa7\x0b\x8b\xc7\x38\xc8\x9e\x7c\x62\x55\x4b\x82\xfe\xd0\xf6\x9f\x7c\x86\x47\x14\x07\x74\x6b\x1e\x31\x6d\x9d\x33\x0c\x89\xef\xc8\xf5\x5c\x3e\x9d\x59\xaa\xea\xad\x53\x38\xd9\xf5\xb9\x44\x22\x2f\x7f\x55\x97\xb9\xcd\xce\x34\x20\xc1\x9f\x60\x49\xb0\x44\x01\x1b\x6e\x48\x1f\xca\xf6\xd1\x61\x6d\xab\x00\x8b\x38\x6d\xa0\xd8\x6e\xe7\xbb\x3f\x87\x73\x27\x15\x7e\x0d\xeb\x9e\x6b\xb2\x48\xc4\x68\x48\x65\xd3\x50\xf1\x02\x2f\x5c\xb9\x77\xa9\x17\xae\x34\xc1\x7d\x00\x2e\x24\xf6\xe2\x31\x6e\xe3\xf3\x48\x68\x1d\x51\x7a\x18\x0d\x7b\xd4\x51\x1f\x8c\xc9\xc9\xe4\x40\x89\x8d\xd5\xaf\x02\xae\xee\x30\xac\x8b\x88\xb6\xc4\x83\xbd\x27\x7f\xcb\x3b\xa0\xa2\xf6\x41\x45\x8c\x68\x93\x65\x90\x7c\xed\x20\x22\xce\x33\x7d\x6c\x05\xac\x66\x73\x1b\x14\x3e\xbe\xa5\xea\x95\x9c\x3f\x43\xd6\xc0\x5b\x66\x61\xc6\xf7\x3b\xfc\x5b\x05\xa2\xf7\x00\x71\x6f\x33\xe3\x37\x58\xff\x7c\xc1\xfd\xa0\xeb\x49\xa6\xd6\xc7\xea\x79\x82\xe7\x3e\x7f\xbf\x20\x37\xaf\x12\x9e\x8b\x9e\x98\xcb\x1f\x8c\xef\xd1\x74\xd2\x2c\x58\x24\xca\x9d\x16\xe2\x6c\xac\xbf\x1e\xe5\x57\x2c\xdd\xa4\xe2\x9a\x92\xe2\x58\xa2\x05\x3d\x34\x90\xdd\x53\x6c\x1c\xca\x4c\x60\x47\x07\xb6\xa0\x6d\xf7\xc3\x19\x57\x45\xf4\x4a\x14\x89\xa8\xd1\x15\x80\xfc\x7b\x3d\x74\xec\xda\xc2\x96\x28\x54\x6f\x96\x53\xfb\xba\x14\x74\x35\x2a\x23\x34\xa5\xae\x9a\xc4\x3f\x46\x20\x5a\x14\x32\x6b\x41\x92\x71\x0a\xd9\x3b\x1d\xdb\x20\x1f\x4f\x82\x91\xde\x8c\x3b\x42\xf0\xa1\x18\xe3\xd4\x66\xe3\xfb\x4d\x40\x5f\x80\x9f\x17\x1d\x0e\xa8\x7f\x6c\x33\xaf\x5a\x12\x52\x8f\x29\x46\xcd\xf6\x35\xfc\xea\x65\x5d\xd9\xed\x67\xd2\x0c\x0a\x61\x4d\x0d\xd5\x60\x4d\x8d\x33\x0c\xca\x44\x48\x00\x5f\xa2\xd7\x72\x9a\x3e\x51\x3f\x63\x0b\x69\x49\x0a\xb7\x1e\x85\x3a\xde\x8e\x89\x6c\xf3\x56\x88\x8e\xec\x89\xbe\x62\x7b\xc8\xa3\x0f\x4f\x20\x00\x76\x81\x40\x02\xae\xf0\x30\x5d\xff\x2f\xc3\x1c\x20\x51\x81\xa8\xa4\xf0\x26\x42\x47\x51\xf0\xec\xc4\x3a\xa7\xbe\x76\xc0\x34\x0c\xdd\xb6\x82\x24\xdf\x3c\x81\xfc\x08\x13\xc0\xc5\x2e\xb0\x54\x9c\x23\xe9\x81\x19\x2e\xc4\x4d\x10\xf5\x6f\xd9\x7f\xf9\x13\xb3\x2d\x16\x06\xb5\xc6\xa3\x96\xb3\xf7\xa2\x18\xfe\xb4\x45\xae\xa7\x61\xd4\x95\x61\x9c\x17\x11\x71\x71\x9e\xca\xcf\xad\xc7\x7d\x65\x75\xdc\xae\x27\x1f\x89\x72\x00\x3b\x82\x1b\xf7\x25\x97\xa0\xd2\xa9\xa4\x6a\x8c\x88\x9d\xe5\x51\x42\x1a\x9d\xab\xa3\x04\x0b\xaf\x6d\xfd\x08\xff\x32\xf6\xac\x42\xc3\x74\x9d\xf4\x37\x1f\xa6\xba\xc2\xb7\xfc\xde\xb3\x64\x79\x1b\x94\xb9\x34\x95\x17\x7c\x20\x9e\x4d\x9a\x69\xfd\x46\x99\x98\x47\xf3\xad\x49\x26\xb1\xba\x7e\x33\x60\x41\x72\x13\xda\x9a\x9a\x28\xcc\x86\x85\xc9\xc3\x18\xa4\x30\xd8\x2e\xac\xdc\xf2\xa7\xa4\x90\xba\x94\x62\xa0\x9b\x0b\x82\x7d\xd7\xac\xb1\xa2\x62\xe6\x5c\x39\xbd\x39\x18\xbe\xd6\x91\x9c\x3a\xf1\x64\x7e\x4a\xcf\xbe\xe6\x70\x3f\x17\x4a\x38\x89\x7c\x13\x77\x6e\xbe\x06\xdb\xc0\x4e\xf4\x46\xf7\x99\x70\x81\xb7\x7b\x13\x67\x7a\x52\x5b\x98\xef\x5b\x80\x1a\x44\x35\x7b\x0a\x29\x03\x82\x1b\xdf\xe8\xcc\x75\x9b\x3e\x01\xf6\x3d\x40\xb3\xa9\x43\x23\x89\x7d\xec\x70\xdd\x8a\xbf\x61\x38\x58\x03\x44\xdb\x68\x86\xf9\xf0\xd0\xf3\xd5\x00\xa8\x97\x0b\xb2\x67\xfe\xb1\x7d\x50\x25\x25\x8f\xf3\xa4\xe5\x2b\x5b\x0f\x55\xde\xef\x82\x08\xca\x35\xd7\xe1\x07\x08\x17\x53\x59\xf5\xd0\x65\xdf\xb3\x60\x59\x5f\x39\x58\x6f\xd2\x2e\x65\x22\x28\x48\x61\xb1\xf2\x37\xc4\x38\x45\x9f\x98\x93\xf8\x66\x23\x8e\xd1\xe8\xf7\x5d\x57\xdd\xce\x20\x6e\x82\xc5\x7b\x1d\x45\xb7\x98\x65\xf0\xa6\x5f\x78\xfa\xa0\x51\xe8\x41\x3b\xb5\xd9\xea\x65\x6f\xf7\x81\xf9\x39\x2f\x6b\xe8\x0c\x4c\xe0\x03\x5e\x82\xbd\xae\x3c\x0e\xf7\x67\x44\xd5\xf4\x28\xef\xa0\x33\x2e\x65\x59\x04\xa0\x6f\x39\xfa\xf9\x76\xc7\x19\xaf\x38\x62\x32\x8d\x22\xa9\x7b\x6d\x75\xf6\x11\x49\x46\x83\x48\xe2\xda\xd8\xc2\x4c\xc5\x12\xf6\xd5\xc9\x81\xf8\xa1\x10\x76\x81\xa7\x04\x8e\x28\x2a\xe3\xd5\x3c\xa8\xf7\xfa\x58\x05\xfc\xc3\x6e\x93\x65\xb5\x8b\x6d\x92\x5c\x8f\xcf\xc8\xce\xa6\xe9\x23\x79\x52\xc6\x87\x49\x56\x3e\xc6\x64\xea\xfb\xbc\x0e\x01\x35\x53\xc5\xd9\xec\x8f\x18\xe3\x0d\x37\x62\x23\x58\xc2\x28\xdb\xc7\xfb\x50\x0c\x43\x32\x75\x3c\x4e\xc6\x55\x2b\xca\x2b\xf2\x71\x13\x86\x67\x60\xe7\x20\x88\xe6\xf8\x15\xc3\xc7\x6b\x53\x3f\x7f\xa5\x3f\xed\xda\xa0\xed\x05\xdf\x37\x71\x57\x2e\xf0\xf3\xc7\xe7\xd0\x7c\x18\x29\x43\x4b\xcc\xb9\x4d\xf4\x09\xd9\x48\xb0\x3b\x7a\xaa\x50\x8c\x2f\x32\xa7\x4d\xd9\xc6\xd7\xf9\x54\x32\xae\xcc\x70\x31\x4d\x50\x8d\xdb\x1a\x2f\xbc\xde\x01\x29\xf3\x41\xe2\x14\xe2\xa8\x0b\xa4\x05\x18\x56\xb0\xab\x90\xe0\xbc\x08\xbb\xdb\x3a\x87\x5a\x11\x76\x2d\xe1\x91\x93\x9b\xa0\x18\x72\x45\x50\x7a\xd1\x13\x51\x4f\x5c\xe1\x03\xb3\x57\xe8\xed\xfc\x90\xdb\x5c\x8c\x2e\x81\x6c\x43\x45\xb4\xb3\xf6\x57\x4e\x28\x8b\xbe\xef\x11\x47\xaa\x54\xd8\x05\xd4\x14\x62\x23\x38\xc2\x07\x1f\x9c\xda\xbb\xb7\x71\x75\x14\x13\xff\x7e\x60\xee\x31\x57\x4c\x3a\x23\xa3\x47\x45\x44\x58\xc8\xb2\x87\x5a\x51\xa3\x6e\x74\xe5\x83\xfc\x55\xe4\x6d\xff\x2a\x69\xcb\xe5\xfe\x96\x13\xe3\x82\x80\x8c\x34\xf9\xc5\x85\xb6\xd7\x1a\xb9\x1f\x6c\xf3\x7a\x71\x14\xe8\xb2\x09\x78\x9e\x96\x71\x42\x28\x13\xb9\x2c\xe8\x46\x67\x3d\x4b\x4d\xde\xea\x93\x72\xde\x6f\x82\xa1\x47\x1a\xd1\x2d\x14\x8a\xe0\x92\xe0\xab\xfe\x6d\xd7\x75\x7e\x09\xec\x02\x0e\xb3\xf8\xcb\x12\x68\x5f\x38\x8f\xb6\x02\x00\xe0\xeb\x29\x46\x20\xaa\xd1\xf7\x69\x9c\xe0\x2e\x64\x9a\x44\x1d\x0f\xdb\x8e\x7b\x06\x5b\xf4\xde\x6a\x8b\x12\x0b\xc8\x55\x65\x2b\x48\xe2\x9f\xd0\x00\xd3\x06\x5d\x71\x62\xa0\xd7\x0a\x16\x56\x30\x1e\x86\x9b\x11\xb9\x82\xb4\x95\x00\x20\x56\x4f\xd1\xc5\x43\x1b\xcf\x5f\xf1\xad\x00\xe3\x67\x52\x7c\xd5\xe7\x09\xae\x0c\x44\x76\xb7\xfb\x2c\x94\x68\xbd\x01\xe4\xea\xb0\xa1\x91\x6d\xb8\xfe\xb7\x34\x83\x7b\xc6\xb0\xd7\xe3\x8c\x07\xc8\x0b\x69\xa8\x52\xb3\xb1\xfe\x39\x51\x00\xe7\x41\x7d\x5a\x44\x73\x2f\x5f\x8a\x21\x71\x32\x63\x01\x80\xb2\x2e\xe2\xbb\x9f\x55\xbe\x30\xe7\x1b\xd8\x3f\x3b\x7a\x66\x6d\x8d\x21\xfb\xe0\x1a\xea\x62\x66\x00\xe8\x15\x80\x2c\x82\xc1\x0d\x21\x3a\x8a\x9c\x4c\xa8\x13\xe8\x72\xd4\xa1\x0b\xd5\xa6\x0f\xda\xc2\x46\xb6\x02\x75\x30\xb8\xfd\xbf\x05\x23\xec\xf3\x36\x0d\x3b\x15\x6d\x15\xb4\x69\x16\x8a\x01\x8f\x78\x6e\xd1\x24\x31\x2d\xd0\x56\xde\xd5\xf2\x48\x7b\x3f\x81\x3f\x37\x20\x00\x60\xeb\x39\x88\xf8\x6c\xca\x86\xd2\x98\xd0\xd3\xfb\x80\x32\xb6\x00\xe7\x45\xf7\xbc\x90\xd7\x54\x3d\x95\x7f\xe6\xe2\xb7\xfe\x19\x0d\x39\xcb\xd6\xc3\xaf\x5e\x56\x08\x3b\xd0\x78\x31\xa0\x72\xc4\xd6\xb3\x6c\xaf\xae\xaa\x89\xbd\x71\xd2\xb9\x9c\xf0\xf1\x31\x1b\x08\xe0\xbc\x65\x73\x0e\xe2\x28\x30\x2c\x8d\xbe\xf1\x91\x8e\x27\xd7\x8b\xaf\x0a\x39\x73\xca\x96\x4e\x7a\xa0\x0b\xaa\x7e\xc2\xf4\x1c\xe7\x2c\x6c\xf6\x75\xeb\x7e\x26\x0c\xed\xd1\x8d\xcb\x77\x51\x03\x30\xf8\xcf\xc0\x93\x8b\x13\xa1\x12\x3f\xd8\xd9\x1d\xca\xf9\x9a\x06\x3f\xba\x89\x35\xf7\xd2\x96\xc1\xcb\x1b\x9d\x00\xf9\x55\x01\xa4\x05\x58\xed\x76\xd3\x30\x20\x61\xbb\x31\x5f\xf9\x2a\xed\x11\x1b\x6b\x3c\xc6\xeb\xec\xa2\x87\xa3\xc1\x35\x72\xc5\x6c\x00\x60\x5d\x85\x78\x5d\xfe\xf6\xbb\x01\x02\xd7\x48\x51\x5d\x4d\x6c\x40\x92\xf1\x8e\x0f\x32\x44\x00\x46\x7b\x56\xd9\xc4\x9e\x7b\x69\xe7\x85\xa4\xd1\xd6\x02\x00\x0c\x2e\x08\x1c\x56\xa0\x11\x69\xf4\x04\xdf\x4a\xb1\xd9\xb1\x76\xd6\x22\x21\x49\x47\xf6\x9a\x3b\x67\x91\x08\xdc\x00\x4d\xd3\xc0\x08\xb6\xba\xf8\x35\x89\x05\x30\x3d\xf2\x83\x98\xaa\x95\x8e\x1b\xd6\xa2\x67\xf1\x5b\x58\xa2\xde\x75\xe9\xfe\x63\xf4\x2d\x0a\xe9\x5a\x59\xb9\x94\x3d\x4e\x28\x83\x94\x63\xd8\x94\x59\xb7\x91\x8d\xde\xd4\xe4\x35\x82\xb7\x01\x80\x29\x97\x60\x0c\x66\x9a\xca\x03\x29\x64\x4e\x21\xbd\x94\xda\xff\xc4\x63\x24\x1b\x71\x22\x24\x1f\xd3\x7e\x29\x56\x22\x48\xfa\xe6\x41\x62\x0c\x5c\x0e\xf7\x62\xf9\xd1\xc0\x36\x18\x90\x87\xb2\xb1\x6e\xfb\x24\xd8\x3e\xb0\xf9\x8b\x17\x1c\x1a\xb4\x5d\xde\x5b\xd2\x15\x92\x00\x49\x4d\x74\x29\xe9\x5a\x24\x05\xbb\x6e\xed\x7f\xc0\x08\xf6\x14\x9f\x2e\xff\x91\xca\x03\x00\x6f\x52\x48\xab\x11\xd5\xcd\x05\x6d\x83\x23\xe0\x9f\xab\xf7\x64\x07\xcc\x4d\x9f\x97\xcf\x9d\x4a\x0c\x26\x56\x56\xbb\x02\x7f\x7f\x71\x29\x65\x3b\x88\x88\x78\x21\xdf\xa7\x6e\x1c\xfc\x36\x8d\xfe\x8f\x0d\x36\xc0\x84\xbe\xff\x29\xab\x92\x3c\x90\x98\x9c\x9c\x24\x59\xc1\x17\xbb\x9a\x56\x5f\x5a\xdc\x8a\x42\x26\x09\xbc\x15\xba\xb8\x99\x50\xf1\x9d\xf1\x5b\x74\x21\xe9\x18\x00\xa9\x13\xf8\x5f\x97\x4e\xaa\xaf\x3c\x4e\xe6\xbf\xcd\xf0\x56\x58\x0c\x35\xd9\x83\x11\x56\x16\xf8\xcb\x34\x8f\x87\xa3\x2a\x71\x39\x99\x42\x9f\x88\x54\xad\x9b\x18\xd6\x72\x14\x73\x01\xc0\x2a\x2c\x71\xda\xb4\xf8\xbb\xff\x47\x8d\xf0\xac\xf3\x2c\xd2\x1b\xde\x76\x18\x2c\x8e\x95\x4f\xe9\xa0\x52\xc5\x48\x9f\x80\x8c\x93\x49\xf9\xf4\x33\xca\xea\x0d\xfd\xc4\x72\x66\x11\x00\x44\x58\x28\xee\xc5\x2b\x49\x71\xb0\xfe\xac\x8c\xf0\xa1\x26\xf4\x47\x7c\xd1\x1f\x08\x7b\xcf\x13\x8b\x46\xc5\xf4\x57\x78\x89\xa8\x7d\xeb\x40\xa7\x6d\x00\x00\x5d\xfc\x90\x14\xb5\x8c\x07\xb0\x87\x86\x8a\x41\xcb\x73\x55\x6b\xd6\xfe\x56\x7b\xc3\xb8\xc9\x43\x0a\x20\xda\x87\x0b\x9f\x8f\xce\x3b\xe3\xb7\x1d\x33\x4b\xd1\x78\x56\x8a\x7b\xda\xd1\x19\x69\x96\x2b\x2a\xb9\xe5\xa3\xc6\x6e\xb8\xa7\x07\x4f\x18\xea\x1f\x55\x69\x89\x1f\x5a\x1e\xe3\xa3\x1b\x7f\xf6\x3e\xf8\x75\xd0\x4b\xc4\xf7\x22\x07\x23\x6d\x23\x00\xb0\xe1\x84\x64\x99\x2a\xee\x88\x70\xb0\x1e\xd3\x31\xc0\x5c\x0d\x9c\x2b\xfc\x9a\xd7\x74\x6f\x6a\x02\x5e\xcd\x60\x52\x26\x5e\x37\xe9\xe8\x13\xed\xa5\x5d\xac\xfb\xa0\x03\x06\x23\x5f\x3b\x8c\xf8\x23\x09\xc1\x2c\x01\x27\xcb\x38\xd8\xf7\x7e\x11\xd7\x8d\x74\xe6\xde\xfe\x62\xa8\x78\x8c\x9e\x9c\x0a\x7b\x64\xe5\x1a\x98\x4f\x8a\x52\x44\x17\x5e\x0f\xa0\xa3\xa6\x06\xde\xce\xa6\x48\x3a\x93\x15\x92\xde\xd6\x65\x6f\x3e\xf4\x29\x28\x64\xc9\x5a\x10\x52\x88\x34\xe0\x28\xd8\xec\xde\xdf\x54\xd8\x06\xb0\x59\x09\xb6\xb0\x02\x34\x35\x9f\xe1\x02\x4c\x45\xe4\x7a\xbb\x9f\xc5\xf9\x20\x1e\xc4\x2a\xca\xfa\xd9\x67\xc6\x86\x5c\x6d\x89\x65\x5a\xf3\x0d\x5f\x5a\x7c\x08\x27\x3a\x16\xb2\x12\x92\x72\x8c\xb5\x8f\xe5\x97\xbf\x63\x85\xb8\xd5\x3f\x3a\x5c\x5f\x3b\x78\x14\xb1\x16\x0c\xff\xe6\xcc\x80\x9a\x44\x9b\x16\x49\xae\xf7\x89\x8a\x8f\x66\xb3\xd2\x4b\x2f\x25\x76\x45\xf9\x09\x5a\xd8\x98\xf2\x90\x5f\xa6\x26\xb5\x68\x25\xd5\x27\x7d\x7f\x15\xb1\x20\x49\x45\x2a\x21\xe1\xe7\x8b\x96\x9d\x81\x62\x2c\xa2\xdd\x41\xb7\x9e\xed\xa3\xad\x25\x81\x26\xa7\xe5\x1d\x1e\xcd\x1a\x13\x3f\x69\x95\x41\x3f\xbb\xdc\xdf\x3c\x20\xf5\x4e\x74\x20\x2c\xe6\x07\x00\x2f\x55\x8e\x4f\x66\xe0\x63\xef\xc7\x7a\xf7\xfc\xaa\x6b\x61\x64\x41\xdb\xc6\xe6\xa7\xb6\x48\x27\xa4\xde\xdd\xed\x5f\x13\x8f\x58\xab\xf0\xfc\x26\x65\xef\x42\xd4\x6b\xe4\x56\xa6\x09\x52\x9f\xf8\xf6\xcf\x30\xd1\x51\x5a\xfd\x44\x79\x57\x09\x01\x20\x6f\xce\xd6\x23\x13\xb6\x29\xb2\x3d\x56\x9a\xcb\xf8\xad\x86\xc4\x9c\x71\x5c\xfa\xdb\xd5\x15\x30\xa0\xe2\xe9\x30\xe5\x56\x21\xb9\x92\xfa\x49\x5f\xd4\xdb\xcb\x41\x57\xfe\xe1\x0f\x86\x1f\xd7\x8e\x50\x84\x2f\xe7\x3f\x52\xbc\x49\x07\xb8\x84\x28\x75\x4c\xf0\x59\x2b\xd9\x4c\x47\x7d\xf3\xef\x96\x35\xf1\x2a\xcb\x08\x48\x31\x74\x72\xa1\x1a\xc4\x90\x8c\xc4\x9e\x8b\x9d\xa0\x06\x00\x2c\x3b\x6a\xa4\x23\x7c\x57\xf4\xd4\xf1\xcc\xf1\x80\xd5\xa3\x32\xda\xdd\x4e\x26\xb3\x01\x8a\xa1\x27\x70\xe9\xe2\x41\x74\xd4\x48\x8c\x3a\xc3\x06\x00\xd0\xd7\x68\x33\xe9\x7e\x86\xac\x9c\x12\xb5\x6f\x3f\xea\xa5\xfe\x18\xd7\xb2\x79\xfe\xd3\x2d\xc3\xc4\x47\x69\xd3\x54\xb0\x4d\xf4\x96\x5e\x87\x32\x53\x99\x8a\x39\x4e\xdc\x6f\x85\x5a\xde\x75\x28\x9f\x65\x2a\x7c\x55\x19\xf3\xf2\x40\xfe\xce\xf5\xf9\x37\xfa\x34\xe8\xee\x33\x19\x09\x4f\xb5\x73\x4a\x1e\xa4\xb3\xf6\x04\x7b\xcb\x49\xe2\xab\x52\x3c\xa2\xfe\x25\xe4\xbe\xdf\x11\x80\xee\x83\xb1\x1b\x33\xf0\x70\x57\x53\xef\xeb\x6b\xbf\x07\xfe\x8e\x0e\x86\xcb\xdc\xf8\xfd\x3a\x99\xc5\x81\x90\xce\xf5\x6b\xb6\x62\x21\x00\xe0\x24\x35\xb3\xbc\xac\xc2\x68\x1d\xb6\x17\x25\x71\x9a\x0f\x1c\xe4\x64\x52\xf2\x0a\x85\x22\x44\xd5\x17\xb3\x48\x01\x00\xda\x6a\xa6\xb4\x78\xd2\xac\x6c\x9d\x10\xb5\x34\xb4\xf0\x0c\x44\x1b\x5b\x86\x29\x53\x69\xe5\xc5\x8d\x09\x40\x33\x33\x54\xbc\xb5\x40\x56\x97\x33\x62\x51\xa7\x17\xe8\xc1\x3f\xf8\x70\x6f\x13\xc4\x30\xa3\x0e\xff\x22\x99\x85\x6e\x9f\x69\x7a\x5c\xb0\xef\xdb\x56\x07\x9f\xd6\x0e\x64\xc3\xca\x19\x7a\xfd\x96\x82\x47\x48\xc4\x28\x13\xff\x64\x52\xfd\xf6\xa2\xcf\x37\x49\xd4\x7f\x08\x00\x1b\x89\x7c\xee\x2d\xc6\x3f\x12\x56\xcb\x31\xa8\x39\xf1\x55\x93\x97\xd8\xad\x3d\x34\x1f\x6b\xd6\x32\x16\x8b\xa2\x5d\x4f\xec\x49\x2e\x3c\xf7\x94\x23\xfc\xc5\x97\x61\x90\x80\xea\xb9\x8e\xc3\xc7\x66\x7d\x56\x8c\x15\x64\xbe\x70\xc5\x8c\x01\x00\x89\xd4\x72\x44\xbf\x8d\xc3\x98\xdc\xde\xc8\x83\x68\x59\x33\xe2\xc2\xdc\xa1\x88\xba\xc4\xaa\x60\x0e\x00\xe8\x4f\xd0\xfd\x57\x29\xdc\x9e\x3c\xd8\x76\x55\x8a\x6d\x04\x35\x51\x0e\x5a\xda\xee\xe8\x23\x98\xb8\xe8\x82\x1e\x54\x63\x36\x3b\xc1\xa2\xc2\xb6\x13\x74\xbb\x44\x3e\xc1\x94\xa9\xb7\x95\xac\x03\x01\xf2\xc9\x7c\xdf\x68\xe9\x7f\x57\x7f\x5c\xdb\x2f\x84\x12\x4e\x9f\xbf\x61\x98\x79\x06\xa7\x7f\xdc\x86\x5e\xa1\xd8\x7f\x74\x54\x2d\x74\x08\xc3\x10\x76\xe2\x70\xb6\x24\x39\x9b\xbd\x7f\x2e\x22\x57\xfc\x18\x00\x9c\xde\xd2\x8a\xb6\x60\x85\x84\x10\xe0\x31\x5e\xe8\xc9\xe3\x38\xe7\x47\x3c\xa1\x2e\xb0\xf0\x26\xfd\xdf\xda\x47\x31\x6f\x9c\xb0\xb8\x8c\x23\x71\x7d\x79\x9c\x5d\x4d\xa4\xd9\x1b\x86\x85\x78\x78\x7a\xe0\x07\x34\x62\xdf\x33\xe5\x57\x71\xbb\xce\xa6\x81\x65\x5c\x4c\xef\xc6\x20\xab\xcb\xd8\xd5\x4b\x52\x09\xeb\x7c\x38\x00\x40\x6b\xf6\xe4\xad\x6d\xe6\xf3\x5a\x7c\x4f\x31\xb4\xf1\x61\x65\x81\xd2\xa3\xb6\xb5\x75\x0d\x0d\xab\xff\x2d\xa6\x2b\xb9\x95\x98\xc6\x52\xa1\x5b\x9a\x14\xe4\xe8\x6d\x2f\x9f\x22\x00\xc0\x8b\x28\xf5\x9f\x45\x67\x44\x30\xbc\xb3\x7f\xdc\xc0\x85\xce\xdf\x27\x54\xb5\x7c\x82\x7b\x01\x8a\x73\xd9\x06\xed\xf2\x9b\x74\x66\xa9\x69\xe5\x80\x16\xf4\x8a\xaf\x72\x27\xe2\x82\x60\x55\x52\x19\x00\x46\x03\x84\xf8\xa0\x22\x12\x9e\x12\xd8\x76\x5f\xe3\x67\x5a\xa9\x8e\x8e\xb3\x7a\xcd\x08\x01\xe0\x61\xb9\x4c\xbe\x2d\xfd\x8f\x05\x2d\x10\x2d\xf7\x02\xf5\x46\x03\x88\x71\xa5\x14\x3e\xd6\x8a\x04\x80\xdc\x37\x91\x2a\x3e\xe5\xee\x5d\xf1\xbf\x29\x13\xa5\x1e\x5b\x9c\x9a\x77\x22\x1c\x35\x88\x45\x20\xf4\x00\x94\x97\x4d\x97\xde\x9d\xaf\xc6\xb6\xc2\xeb\xad\xbe\xfc\xce\xea\x2c\x34\x01\xc9\x5e\xf0\x37\xbe\x81\x06\x80\xf6\xf1\xb0\xc5\xf8\x25\x24\xb1\x16\x26\xdd\x89\xc1\xba\x19\xa8\xc7\xcc\xdc\x6e\x7e\xfa\x7a\x15\xfd\xdb\x87\x81\x34\x40\xc3\x87\xc1\x0f\x4f\xc5\x31\xd1\x06\xd5\xe9\x49\xf2\x41\xc8\x62\x4a\xa0\xad\x48\x5a\x6d\x50\x49\xb1\x15\x6e\x58\x48\xc7\xcc\xd0\xf0\x02\x21\x20\x8f\x93\xbf\xc3\x78\xe2\xfc\x14\x71\x2d\xcb\x81\xd6\x36\xd9\x0c\x9f\xab\x52\x37\xeb\x2c\xd4\x9f\xaf\xb9\xe3\x00\xb9\x9f\xda\xba\x65\xde\x1a\x4c\x7c\x26\xcf\xe0\x4e\xec\x21\xe5\x61\xaa\x1e\xfa\x10\x10\x59\x9b\x89\xa1\xe7\x49\x8d\x86\x68\x71\x82\xfd\xb7\xcb\xcb\xed\x3e\x4a\x26\xf2\x01\x59\x30\xef\xb6\x05\x3e\x1e\x27\xd3\x3b\xef\x12\x54\x12\x34\x61\xc4\x03\xcf\xea\x3f\x0a\x5b\x03\x8d\x94\x34\xe2\x06\x7d\x6f\x4f\x56\x44\x10\xb5\x23\x9a\x86\x2c\x9e\xf0\xf6\x0f\x2c\xb9\xea\x52\x16\x04\xe4\x96\xb8\xb1\x95\xc3\xa9\x48\x5b\x08\xc8\xc7\xd4\x8d\x1b\x54\x5e\xc5\x3d\x77\xca\xde\x22\x2c\x86\x8a\x76\x19\x23\x7f\xbe\x61\x5c\x57\x80\xfb\x06\x96\x81\x00\x27\x79\xd0\x27\xf4\x90\x75\x06\xa9\xe5\x73\x31\x35\x3c\x7d\x15\xd7\xe0\xe5\xa7\x2f\xff\x70\x9b\x06\x1c\x9e\xf2\x4e\xce\xd9\x34\xe0\xdf\x9e\x21\x36\xa3\x3a\x3b\x39\x87\x2f\x5c\x4c\x7e\xfe\xbf\x3e\x75\x26\x1c\xe3\x0f\xbb\xe2\xab\xb2\x84\x96\xcf\x89\x1c\xd9\x9a\x9b\x76\x65\x1f\x62\x00\xf2\x13\xb3\xf8\xc6\x59\x9b\xd3\x67\xba\xe5\xd1\x0c\xdd\xd7\xb6\x9d\x08\xbf\x62\x94\xe1\xb0\x1b\xbe\xea\x97\x39\xbb\xfd\x51\x4f\x8e\x30\x95\x5a\x2a\x4f\x31\x00\xf0\xe5\x67\xda\xb6\x35\xe6\x1b\x2f\x64\xeb\xe1\x43\xd0\xbd\xef\x50\x6b\x2c\xb3\xbe\xcb\xaa\x85\x63\x24\xa5\x68\xb0\x3c\xee\xab\x0d\xcc\xf8\x67\x15\xf8\xd8\x5f\x21\xc9\x47\x6d\x99\xf3\xe0\x6d\x08\xe4\x80\xec\x90\x74\x69\x98\x56\x0b\xf4\x73\xc0\x04\x1e\x85\x21\xd7\xb7\x29\x56\x7c\x6a\x88\x09\xe8\x6c\x61\xe4\x17\x76\xa3\xde\xf8\x38\x0f\x1c\x2f\x62\x4b\x2a\x9f\xaa\xbd\x44\xf8\xe4\xb5\xa7\x27\x14\x67\xd0\x12\x8a\x53\x92\x12\x8e\x0e\x93\x3d\x5a\x5f\x86\x63\xfe\xf3\xf4\x6b\xc7\xf0\x49\x95\x8f\xff\x99\xea\x2c\xb3\xec\x0d\xae\x8f\x34\xa3\xd3\xc5\x2a\x6f\x11\xd4\x6e\xdf\x19\x79\x4c\xf6\x68\x4b\x0d\x6e\x10\xd0\x82\xde\xb5\xfe\xde\x48\x2f\x99\x9f\x8f\x09\xa6\xae\xf7\x71\xb3\x4a\x60\xba\xf5\x41\x7f\xf5\xa3\xa2\xab\x68\x91\x74\x8c\x71\x42\x15\xd7\xe5\xb8\x5f\x8f\x9f\xaf\x57\xa0\xf3\xd3\xee\xc6\xdf\x1f\x31\x70\xe4\x63\x95\x58\xd3\x41\x4d\x1e\xd0\xf7\x61\xc1\xbb\xfc\x77\xe5\xcc\x17\xc9\x16\xd9\x2f\x8a\xa0\x1f\x9d\xbe\x4e\xc4\x09\xbf\x1e\xcf\x4c\xef\xf5\x2c\x10\x01\xf2\xf4\x04\xd1\x2b\x69\xaf\x42\x0a\x65\x96\xd2\x04\x93\x90\x60\x81\xc9\x4c\xb3\x5f\x33\x9e\xa7\xc6\x7e\x5b\x7b\x85\x50\xd1\x85\x40\xb8\x2b\xf3\xe3\x61\x02\x51\xba\x23\x3f\xb4\x5b\x08\x02\xc1\x0e\x66\x43\x7f\xf0\x27\x1a\xe6\x9f\x1e\xd7\xa9\xe1\x94\x67\x7c\x0b\x96\x09\xbf\x2a\xce\x38\x77\x48\xf1\xf1\x22\xd7\xe2\x54\xe3\x27\xb2\x97\x32\xdf\x35\xd0\x01\xd0\x6b\x58\x22\x38\x45\x3c\xdd\xd8\x39\x45\xbd\x82\x07\x46\x84\xdf\x30\xb6\x68\x50\x35\x73\xeb\xad\xc6\xd8\x81\x81\xcd\xca\xe8\x71\x46\xbd\x95\x97\x61\xf6\x5f\x77\xd4\x99\x21\x10\xe2\x81\xec\x0b\xe7\xd9\x07\x04\x71\xb0\x26\x6d\x06\x76\x70\xf4\x9a\xc0\x2f\x8d\xbd\x08\x4e\xa1\x18\x49\x3c\x51\xd1\x19\xe6\x0f\x9a\x91\x62\x51\x27\xff\x6c\x90\xdb\x5e\x37\x62\xfb\x14\x0f\xa3\xb5\xcf\x2c\x32\xad\x2c\x60\x63\x3d\x6a\x81\x78\xba\x4e\x3f\x68\xd0\xb5\xce\xbe\x53\x3f\xd5\x18\xd6\xc3\x57\x65\x68\xe3\xf6\xda\x23\xb2\x09\xfb\x62\x92\xd2\xf0\xe8\x3f\x53\xd4\x2b\xe0\x1e\x3a\x7f\x94\x07\x35\xb7\x97\x48\xc1\x7f\x3d\xfa\x29\xd6\x18\x0e\x87\x77\x33\x49\x83\x5f\xec\x39\x0d\x6b\xe3\xab\x66\x5b\xec\x50\x60\x06\x6f\xb8\xd1\x78\x4a\x02\xc0\xb9\x1b\xe4\xc0\xab\xdc\x27\x66\xf9\xe4\xd5\xb6\x53\xd6\xcf\x15\x22\x70\xd0\xb7\xc4\x98\x7b\x45\xb9\xe7\xcf\x8d\x5b\xf3\x4c\xb4\x63\x9f\x98\x64\x63\x90\xd3\x66\xe4\x52\x76\x7f\x31\xfe\xa0\x61\x77\xaa\xa0\x5e\x6e\x04\x02\xfa\x2b\xa3\x0a\xe8\x28\x0d\x35\x1e\x6c\x3b\xa5\xab\x49\xf1\xb8\x0b\x49\x27\xf9\xbe\x75\xf8\xee\x60\x9e\x6c\x85\x30\x81\x63\xf7\xba\x4b\x11\xe1\xab\x42\x5a\x51\xcf\x17\x69\xdc\xb6\x08\x8c\x8e\xf6\xa2\x00\x6c\x2c\x20\xf1\x0a\x1b\x2e\x13\x96\xc2\x3a\x3e\x66\xfb\x36\xe8\xd7\xcd\xfb\xd9\x69\x9c\x5a\xe7\x61\xb7\xae\x9c\xbb\xbc\xc6\xb6\x91\xb0\xa1\x74\x15\x10\x17\x73\xcb\xfb\x3f\x8a\xac\x88\xeb\x27\x48\x86\xbc\xf0\xd3\x86\x93\x4f\x55\xb6\x5c\x40\x2e\x78\xcf\x51\x47\x39\x9c\x4a\x8b\x97\x24\x39\x7e\x9a\x96\xad\x3a\x6b\xa2\x3b\x9b\x7a\xbc\x64\x6e\x81\xfa\x13\x8b\x68\x8e\xd8\x9f\x91\x16\xbd\x45\x4b\xc7\xfa\xf9\xad\xb6\x4c\x2f\xca\xc4\xfc\x87\x87\x1d\xaf\x6c\xbc\xf2\x1d\x2a\x47\xdb\x97\xcc\xd4\xb7\x45\x1a\xc4\x06\x70\x81\xdc\x9f\x8b\x76\x3e\xc1\xac\xae\x21\xbb\x84\xdb\xad\x89\x7a\x7f\x34\xce\xe7\xc9\xdb\x10\x4e\x0e\x53\x71\x63\x8b\xba\x5b\x7f\x2f\xe6\xe0\xca\x62\x66\xae\x1e\x13\x2f\x24\x47\xd0\x7a\xce\x31\xf8\xdd\xad\x64\x92\x6d\x96\xf2\xdb\x0c\x12\x9b\x94\x2f\x37\xd5\x3c\x68\x08\x26\x0e\x6a\x37\x53\xa9\x3d\x70\x79\xbc\x4f\xc9\x32\xcc\xf8\x82\xa0\x9a\xb1\x2f\xd5\x69\x9a\x5a\x02\xf7\x1c\x40\x3e\x80\xcf\xe0\x1e\xad\x54\xc5\x1c\x24\xc4\x06\xbf\xee\xbe\x7f\x52\xeb\x7a\x31\xd9\xda\x65\x32\x25\xcd\x47\xa8\xa0\xf4\xe8\xeb\x9c\xa2\xc8\x73\x2c\x44\x73\x4c\xe3\x4f\xdb\x28\xca\xbf\x3a\x7b\xc3\x2a\xd4\x9b\x98\x40\xe2\x20\xcf\xf1\xd9\x56\xf2\xbd\x95\x14\x47\x41\x19\x8b\x45\x73\x83\x61\x2c\xaa\x76\x83\x5a\xac\xf8\x4f\x1a\x9b\xa8\x86\x33\x6a\x62\xa8\x24\x5d\x77\x11\x77\xd7\xf0\xf1\x1e\x7f\x54\x85\xc3\x79\x12\xca\xc4\xf9\xf6\x8b\x79\x2e\x74\xa3\xab\x78\x0d\x96\xd2\x22\x92\xb4\x2e\x63\x3c\x91\x27\x59\x33\x7a\xce\x92\x75\x0a\xf9\x4c\x02\xc8\x87\x85\x1b\x5e\x35\xc5\xac\x9b\xcd\x17\x56\xb8\xb6\x7e\x9f\x6c\xb6\xe1\x86\xc8\xc8\x1c\xbe\xc3\x58\x23\x2b\xef\x6b\xd2\xf0\xf6\x78\x8a\x70\x6d\x79\x7f\x9f\x5b\x65\x85\xb7\x2a\xe0\x85\x07\xe0\x15\x46\xfc\x41\x7c\x63\x77\x02\x6f\xf3\x36\xf4\x9d\x3c\x46\x8f\x89\xdf\xc5\x2b\xca\x7e\xad\x1c\x1f\x32\x04\x0d\x33\x3d\xd7\x92\x8e\x3e\xd2\x01\x3a\x9d\xe4\x49\x05\x83\x67\xf3\xeb\xc6\x16\xc7\x43\x60\x10\x36\xd6\xdd\x51\x1c\xca\x91\x8c\xfe\x10\x0f\xf9\xbe\x75\x1f\x00\xec\x74\x14\x7b\xf6\x89\x6c\xd8\x7a\x0c\x7f\xe6\x47\x40\x31\xde\x7a\xf8\x19\x31\x15\x65\x75\x4b\xcc\x98\x1b\x44\x7b\x2e\xae\x7a\xee\x60\x01\xd1\xb9\x11\x69\xc7\x15\xfb\x8b\xff\x4e\x27\x57\x67\x89\x59\x7d\xf8\x1d\xa0\xe2\x7a\x9f\xb6\x4b\x91\x23\xc9\x08\x40\x75\xd4\xa3\xff\x0a\xba\x4b\x7b\x2b\xca\x83\x14\x48\xea\x15\x27\x9f\x33\x3f\x71\x30\xb3\xbd\xe9\xbc\x0d\x4d\xa6\x3a\x08\x02\x80\xb7\xbc\x10\x36\xd4\x3f\x68\x2e\x73\x0e\x8f\x2d\x64\x5a\x66\x81\x89\xa4\x95\x00\xd7\xea\x30\x3a\x2b\x43\xe4\x5d\x99\xa4\x3a\xf2\xa3\x1f\xba\x45\x0f\x55\xfc\x86\x1a\x3e\x2c\x70\x7e\xbd\x5a\x49\x9b\xf0\xec\xf9\x17\x0f\xf4\xab\x4d\x90\x03\x8b\x92\xd4\xe7\x46\xfe\xf4\x4b\x7f\x7c\xa0\x03\xb2\x43\xac\xf6\xf4\x02\x1d\x7b\x05\xf0\x71\xc2\xc3\x05\x59\x88\xc5\x7f\x2e\xed\xe0\x23\x19\x99\x9f\xa0\xb0\xc5\x24\xc4\xf6\xe9\xaa\xab\xe6\x1f\x00\x4c\x5d\xe4\xf9\xb4\x23\xff\xa0\x7f\xed\xf3\x79\x24\x24\xa6\x95\x97\x36\x25\x35\x30\x00\xd0\x38\x75\xbc\xff\x19\x7a\xe1\x75\xcb\x0e\x1f\x61\x7e\x72\x50\x21\xca\xe1\x70\xfd\x31\xf5\x9f\x27\xfd\x1a\xd1\xd6\xda\xe8\x61\x21\xf8\xcd\x85\xf8\xe3\x51\xa3\xbb\xe3\x1f\xab\xa3\x7f\x6c\xba\xe0\x6d\x21\x8e\x88\x50\xf4\xb9\x1f\xe9\xf0\x28\x16\xe9\x83\x75\xd1\x16\xb1\x8d\x8c\xf2\x8e\xdd\x1f\x59\x24\x00\x50\xc4\x09\xd9\xa3\xc0\xc0\xc7\x6b\x65\x7c\x1a\xb4\x18\x3e\xed\xf6\x63\x01\x6d\xfb\x33\xb6\x08\x49\x48\x2e\xb4\x33\xd8\xb4\xd6\xb9\x00\x11\xf6\xd1\xe1\x2e\xef\xaf\x63\xe3\x2e\x5a\x0d\x84\xff\x1f\x4b\xa3\x82\xf7\xd3\x1e\x44\xbb\x68\x31\x80\x9e\xf4\x29\xa4\x17\xff\x3c\x59\x16\x1a\xef\x69\x13\x86\x3b\x35\xa2\xb4\x91\xb7\x99\x68\xd9\x63\x67\xac\x38\xfb\x2f\x04\x5f\xbf\x30\xcb\x1c\x34\x89\x5e\xe2\xb5\x14\xa2\x0d\xb2\x00\xff\x87\x70\x44\xbd\xda\xa2\x12\xb4\xf7\xc1\xa9\xcf\x05\x85\x42\x6b\x28\xa6\x16\x72\x9b\x34\xb4\x25\xaa\x8b\xc3\x63\x99\x54\xdb\xd5\x66\x57\x8d\x91\xfa\x68\x5d\x47\xa8\xf1\x9f\xd3\x6f\xe6\x8d\xbc\xc3\x0b\x10\xed\xcd\x28\x3f\x6d\xb4\x5a\x14\xe6\x87\xfc\x8b\x1e\x6b\x90\xad\x28\xfd\x27\x86\x9b\x20\xf2\xad\x88\x10\xb4\xbe\x30\x52\xfc\x0f\xe2\xcc\x72\x7a\x8f\xe6\xf8\x38\x5c\xff\x94\xd1\xab\xcc\x0e\xf4\x2f\x72\xff\x33\xfb\xb8\x59\xd1\x3b\xa8\x07\xd1\xf1\x16\x25\xac\x8d\x89\x46\xe1\x85\x84\x69\xf7\xff\x81\xf9\x6d\xdb\xfd\x5b\xd5\x9d\x57\xf1\xf6\x47\xaf\xbe\x47\x71\xff\x5b\xad\xe1\x83\x2c\x25\xd8\x0a\x09\xd1\x53\x26\x3e\x0e\x7d\x7e\xaa\xdb\x83\x90\x33\x35\xa6\x27\x00\xa0\x6e\x1a\xfd\x05\x92\x10\x77\x3d\x3e\x11\xb4\x77\x89\xb3\xad\x85\x26\x4a\xa7\x26\x3d\xb6\x2f\xfd\xff\xb1\xa3\x15\x13\x5b\x4f\x9c\xe7\x7f\x74\x42\x41\xda\xa7\x13\xfd\x88\x4e\x54\x84\x39\xb2\x04\xfd\xb4\x8e\xfc\x5f\x5c\x9f\xee\x63\x20\x57\x58\x18\x31\xcd\xe8\x77\x89\xb5\xb1\xff\x23\xfa\xcf\x19\xcb\x05\x97\xec\xd8\x10\xc2\x7f\x9d\xd6\xf6\xfd\xc4\x7f\x66\xab\x8e\x48\xfe\x97\x1f\xd5\x17\x7b\xb2\xbf\xaf\xe1\xd4\x2c\x8c\xb8\x0b\x42\xa1\xe5\x0e\xda\xda\x60\xf4\x39\x1e\x48\xe4\x3f\xbc\x9e\x2d\x4c\x64\x24\x7c\x84\x85\x31\x8a\x4d\x94\xc4\x15\xb5\xf6\x19\x1d\xcd\x2f\xe4\x36\xde\x8a\xea\xff\xc1\x3e\xfb\xe6\x74\xe1\x40\x63\x67\x8d\x9c\x80\x7f\x22\x44\xd3\xcd\xa5\x90\xfe\x2b\x69\x72\x8e\x8c\xcf\xf7\xd4\x91\x90\x50\xc2\x41\x54\x6f\xf9\x90\x0e\xf0\xaf\x56\xfe\x33\x7b\xec\xfa\x0d\x4a\x38\x52\x61\x5e\x2c\xc1\x49\xdc\x86\x13\xad\x51\x2b\x23\x68\xfe\x3b\xc1\x68\x46\xbb\xbb\x42\xa8\xb4\x63\x05\xa7\xa7\x45\x4b\x3c\x61\xee\xff\xd9\x6d\x6a\xe6\x92\xed\x48\xa3\x17\x3e\x75\x1b\x67\xfd\x5f\x22\xff\xbb\x17\x6b\x13\x79\x73\xc9\xd6\x69\x1b\x4f\x19\xd1\xc8\xca\xff\x43\xd6\x6d\x56\xae\xa5\xe8\x16\x8c\x59\xc2\x6e\x4a\xb4\xfe\xff\x72\x6e\xbe\x77\xfc\x85\x51\x88\x30\x79\x2f\x37\x50\x75\x91\xd5\x17\x2d\xfa\x7e\xff\x0f\x24\xff\x8c\x03\x39\x46\xd8\xcd\x6a\x45\x21\x21\xe7\x40\x16\x89\x81\x0e\xfe\xff\x2e\x41\xcc\xc8\xb7\x9e\x25\xa2\x37\x22\x1d\x02\x10\x1e\x41\xca\xff\x5a\xc1\x7f\x48\x9f\xfd\x66\xa4\xfb\x05\x35\xc7\xf3\x9b\xac\x16\x6b\x7a\xd1\x14\xef\xfe\x8f\x42\x9a\xdd\x65\x9a\xaa\x41\xe3\xf1\xa3\x0c\x82\xd7\x31\xa8\x17\xff\xa0\x08\xff\x0f\x4a\x3b\xd5\xe1\x33\x4a\x2b\xd2\x46\xf8\xc6\xc9\xc3\x06\xfd\x50\xe9\x2f\x8a\xf8\x77\x75\x13\x1b\x5b\xbf\xcd\xc9\x8b\x64\xe7\xa5\x0d\x49\x88\x49\x08\x12\xfe\x47\x52\x94\x49\xa1\x57\x36\xf7\x91\x4c\x47\x9e\xb4\xca\x51\x6c\x57\x84\x50\xff\x0a\x86\xe2\x43\x46\xfe\x0b\xec\x47\x01\x48\x1f\x03\x02\x3e\x2b\xac\x49\xa0\xe6\x3e\x7e\x08\x61\x40\xb7\xe0\x17\x0c\xa3\x71\xd3\xe6\x48\x1d\x4d\x07\x4b\x74\x03\x50\x71\x8e\xb7\x43\x0b\x6e\x5f\x3b\xc6\x8b\xca\xaf\x26\x86\x22\x09\x0e\x54\x48\x41\xaf\x53\x51\xb9\xb1\x56\x3e\x8f\x4a\x54\x32\x9c\xb3\xb2\x67\x9f\x5f\x35\xbf\xce\xd6\xc6\x3e\xc0\x54\x6d\xbe\x74\x7d\x42\x92\x19\x7c\xa9\xc4\xc9\x84\x37\x2d\x06\xb7\x10\xdd\x12\xa2\xd4\xaf\x2e\xfc\xe0\x38\xb1\x37\x82\xce\x57\xe4\x4b\x59\x64\x3c\xfc\xa3\xa8\xab\x93\xc3\x21\xe2\xef\x48\xd4\x9a\xa1\x4b\xab\xc9\x29\xb5\x57\xc2\xf3\x28\x33\xc5\x71\x44\x75\xa9\xa9\x62\xa4\x5a\x7e\x9b\x6d\x40\x6a\xb0\xba\x34\x97\xae\xa2\x8d\xf3\x66\xf4\xc8\x15\x1c\x93\x26\xd2\x72\xbf\xb8\x29\x1e\x9d\x00\xc2\xb7\xee\x21\x37\x24\x5e\x04\x1d\xb7\xda\xb5\x6a\x72\x83\x51\xe9\x4a\xb5\x25\x28\x3b\xe4\x13\xb8\x86\x18\x0f\x6e\x38\x04\x3e\x59\x50\xbb\x08\x93\x4d\xb2\xbf\x94\x4f\xcb\xd4\x06\x29\xcc\x6a\x8f\xed\x21\x05\xcf\x5c\x44\xbc\x72\xa4\xdd\x7b\xd1\x16\x5c\xaf\xb6\xac\x31\xe4\x05\xa9\x9e\x66\x49\x59\xe4\xa0\xef\x48\x34\x4a\xee\x3e\x07\x93\x1f\x32\xe5\x13\xb8\x8c\x9e\x98\x73\x3c\x11\x18\x6f\xf1\x32\x4b\x24\x3f\x59\xff\x9e\xc2\x43\xa6\xc0\xbb\x69\xf1\x81\x4e\xd1\x21\x6e\x0f\xb5\xcb\x0e\x57\x98\xeb\x68\x4e\xf5\xdb\xc6\x16\xc8\xc5\xd6\x10\xb9\x07\xb8\xa4\x90\xc7\xd6\xf7\xfb\x10\x13\x05\x8f\xfb\xf6\xb7\xf4\x7f\x74\x8d\xc4\xe3\x99\xbd\x82\x9a\x13\xd5\xf0\x0e\x61\x42\x00\xca\x35\xbb\xae\x77\x18\x63\x36\x2e\x43\x70\xb1\x35\xbb\x74\xf5\x51\x89\x1f\xb2\x2d\xdc\x96\xb2\xba\x1d\x06\xb9\x18\x59\x24\xca\x83\x32\x99\xcb\x4d\x9b\x77\x0a\x6a\x26\x6b\xb1\x86\x28\xd4\x72\x2a\x81\x00\x9d\x28\xa7\xfb\x12\x67\xe4\x9f\x91\x3a\xb9\xc3\x67\xc8\xec\x3c\x62\x37\xae\x2c\x5c\xbd\x94\x98\x4d\x6b\xe1\x4a\xdf\xbe\xb3\x4a\x55\xe5\x70\xe4\x12\x5a\x58\x75\x7d\xaf\x6d\x8c\xf1\xfc\xbd\x64\x03\x4f\x55\xbc\x2f\x22\x01\x7e\x4f\xbc\x45\xbf\x96\x65\xda\x7f\x7e\x5b\x4f\x80\x63\xbe\x6b\x97\xd7\x72\x19\x37\x70\x51\xd3\x88\x96\x81\xd9\xdf\x75\x2f\x11\x59\xa7\x94\x93\x56\x11\x0a\x04\x5d\xa7\x3b\x14\x38\xb8\x46\xda\x34\xaf\x9c\xed\xd7\xb7\x68\x09\x6f\xb4\x0b\x02\x3d\xb6\x71\xa8\xfc\x47\x6d\xd9\xc9\xa2\x22\x30\x72\x49\xf6\x49\xd0\x37\xa7\x55\xd5\x4b\x02\xae\x3a\x35\x3d\xae\xe2\x9b\xf7\x9f\x0b\x4b\xed\x0b\x10\x4b\x89\x7a\x3f\x0f\x19\x6d\x56\xf9\xd5\xac\xf1\xd9\x95\xd0\xae\xbd\x3f\xaf\x23\xec\xf6\x99\xdb\x31\xae\x7f\xba\x36\x80\x2e\xa6\xa7\xab\x11\x99\x29\x09\x1e\x2a\x1f\x82\x35\x1f\x1b\x1b\x0a\xec\x91\x95\xbb\x94\xb0\xb5\x51\x08\xb7\x0b\x2b\x35\xbf\xb1\xae\x5b\x84\xa3\x06\x91\x04\x5c\x8c\x94\xa4\x94\x4b\x30\xf8\x2e\x6d\xe4\x36\x5c\x7f\xf1\x24\xfa\x89\x10\x25\x40\x5a\x6e\x7d\xbf\xb5\xfa\x43\x32\xec\x63\xbd\xf3\x6a\x4d\x5e\x07\x19\x9b\x57\x82\x95\xaf\xf3\x76\x95\xda\x0e\x7d\xca\x85\xa8\xd5\xf7\xe1\xcf\xf7\x96\x92\x79\x50\x74\x05\x63\x2c\x10\xac\xbb\x45\xe6\x3d\x17\x0f\x5c\x39\xa0\xe1\x43\xb7\x00\x79\x9d\x30\x6e\x8f\xa9\x12\xad\xd7\xe1\xee\x07\x17\x17\xb1\xd0\xfd\x6c\x4b\x0d\x8e\x92\x16\xdc\x6f\xe4\x15\x6c\xf6\x25\xc7\x7f\x1e\x60\x63\x29\x54\x83\x67\x66\x04\x09\x43\xe7\xcd\x4f\x63\x1d\x8c\xd0\xd7\xe8\xed\xab\x0c\x94\x28\x72\x08\x3b\xb0\x6d\x65\x92\xe0\x48\xe8\x80\x59\x3a\xf2\xcc\xcd\x0a\x3c\x31\xce\xc5\x84\x37\xea\x84\xf4\x25\x54\xea\xc8\xfc\x22\x99\x62\x0d\x40\xbb\x6a\x9a\x42\x3d\x5d\xa6\x05\x7e\xb9\xca\xc5\x36\x90\x50\x92\x46\xd8\x11\xac\x6a\xab\x86\xef\x7f\x09\x54\xac\x25\x45\x67\xeb\xbd\x4d\x99\xda\xdc\x62\xfb\x15\xfe\xf5\x75\xea\xf8\xde\x8f\x05\x3c\x7c\x3c\x45\x1b\x7f\x45\x6d\x6b\x9a\x6b\xfb\x40\xaf\x04\xbb\xac\xbc\xf4\xf7\xab\x00\xd4\xdc\x4c\xed\xd4\x0a\xf9\x17\xeb\x15\xaf\xdc\xd6\x3e\x16\x36\x56\x9e\xa4\xbc\xb7\x6c\xf7\xa8\xc0\x85\xea\x8e\x25\x9c\xa3\xd7\xdd\x06\x0f\xe8\x67\x34\xb3\xbc\x14\xf2\xf2\x27\x51\x7c\x89\x10\x8a\x6c\x78\x80\xe6\x72\xa0\x46\xe6\xd0\x44\x86\xd5\xaa\x54\x5b\x8e\xde\xbe\xcd\x03\xa0\x8b\xc6\xda\xa7\xf9\x1b\xc1\x81\x4b\x3f\x1e\x22\x17\x08\xd0\x54\x67\x2c\xab\x5e\xe5\x6f\xa4\xb4\x4f\x3f\x57\x99\x0b\x00\xa2\x0b\xc4\x6b\x07\xda\x09\x84\x67\x7f\x9e\xa1\x1f\xbf\x19\x0a\x20\x85\xe8\x3d\xaf\xf2\x50\xda\x48\x50\xf5\xc7\xfc\x3e\x97\xf8\x5f\x51\x98\x80\xe8\x66\xd7\xad\x35\xf2\xfd\x1b\xc6\x62\xad\x7c\x2b\xb4\x26\x47\xd3\xec\x88\x5a\x3d\x1d\x0d\xdf\x5f\x83\xa9\x87\x68\xd4\x82\xba\x41\x40\x7a\x95\xfd\xb8\xe7\x54\x39\xf9\xcf\xe3\xca\x5e\x33\x62\x34\x8d\x43\x82\x4d\x35\x68\xa5\xf3\xe3\xe8\xe2\x9a\xc6\x23\x20\x57\xc8\xed\x7d\xd9\x16\xcb\xad\xa4\x18\xa3\xa7\x0c\xfa\x9a\x2f\x05\x76\x15\x34\xfc\xb8\x2e\x69\x54\xdb\xe1\x11\xa1\x04\x74\x24\xea\xc9\x57\xd3\xd7\x0c\x1b\x4d\xa5\xbb\xd6\x73\xb2\xf4\x01\x4a\xd2\x9e\x4e\x71\x6e\x73\x0b\x91\x37\x79\x34\x82\x66\x45\x33\xe2\x1d\xcd\xba\x8b\x03\xbc\x00\xf4\xc7\x4d\x3b\x4a\x06\xf9\x9c\x99\xe1\xdd\x6a\x26\x4e\x2e\x94\x89\x8a\xc4\xc5\x70\x34\xa4\x5f\x87\x70\xa0\x6f\xcd\xd0\xc1\xda\x92\x08\x20\xcc\xe4\x3b\x3b\x8e\x40\x09\xac\x31\x78\x7f\xa4\x25\xc8\x42\x8b\x9a\xaf\xd2\xc5\x26\xe3\x7f\xe9\xdf\x79\xd7\x34\x3a\xc2\x8c\x6c\x39\x81\x5c\x2b\x6d\xf2\x86\xc9\xab\x13\x42\xe5\xd2\x01\x52\xf4\x86\xd9\x59\xfa\x44\x7b\x51\x7f\x11\xca\x77\x0e\x23\xbc\x72\xb9\x92\x59\xe8\xb8\x39\x9b\x1a\x9c\x96\xa3\xe4\xd1\xed\x92\x82\x16\x03\x5d\x44\x2c\x37\x67\xf6\xf4\xc8\x5e\xc2\xde\xc4\xbd\x8a\x40\xa5\x45\xed\x9d\x7d\x42\x5c\xa0\x60\x7a\x66\x11\x72\x30\xb6\xc2\x46\x1b\x5f\x12\xd2\xf7\x0f\x2a\xcd\xfd\xdb\x15\x51\xb7\x20\xeb\xe9\x87\x05\xb5\x3b\x16\xa4\x21\x21\x2e\x34\x9a\x68\xe2\x56\xd7\x3b\xc3\xc1\x22\xd2\x16\x2e\xfb\x12\x0f\xad\x6c\xf6\x88\x27\x6e\xd3\xac\x69\x6a\xc4\xd1\xbd\xa2\x4c\xcc\x5b\xe4\x11\xc0\x6c\x2b\xa7\x22\x3b\xb5\xf7\x53\xe7\x6c\x1b\x1c\x89\xf6\x5e\x7e\x83\x17\x49\x45\xa8\x64\xe1\x56\x12\xa8\xe2\x8d\x61\xd5\x0d\x30\x57\x7d\x6f\x7c\x2f\x79\xcf\x74\xf0\x8e\xe6\x6c\x5f\xf7\xdf\x96\xce\x26\xed\xda\x92\x23\x37\x97\xb6\x47\x7b\xe1\x9c\x87\xac\x43\x24\x20\x52\x86\x85\xdc\x29\xd8\x24\x3d\x8f\x97\x07\xfb\x63\x63\x71\x81\xc8\x14\x4e\x05\x10\x28\xa8\x51\x41\x24\x15\x25\x1b\x99\xcf\xff\xcc\x85\x9f\xb4\x61\x9b\x2a\x81\x0d\xc0\xfb\x91\x09\x5f\xe8\x75\x1f\xbd\x0e\x8d\xb4\xed\x34\xbe\xc5\xa6\x24\xcd\xa5\xae\x37\xbb\x36\x85\x9f\xd2\xc6\x36\xa3\x25\x71\xcf\x10\xb5\x28\x8f\xd0\x23\x00\xff\xab\xf2\xa9\xab\x17\xe3\xd7\x72\xc4\x2b\xc2\xf9\x14\x42\x10\x27\x53\xe7\xf7\xfd\x7c\xc9\x04\xeb\xaf\x65\xbd\xa2\x09\xce\x95\x53\xbc\x43\xaf\x00\x4e\x3c\xb3\xd7\x8b\x0c\x23\x32\x71\x79\x34\x49\x83\xa2\x02\xc2\x84\xb9\x50\x60\xa2\xa1\xcc\x41\x4e\xab\x4b\x67\x72\x0a\x05\x37\x12\xa5\x8e\xcd\xe8\x04\x03\x81\x22\xb5\x8d\x2a\xe5\x0c\x54\x0d\xdb\x3b\xaf\x22\xed\xfa\xb5\xff\x85\x02\x74\xbd\xf5\xc2\x2b\x67\xba\xa3\x47\x67\x72\x89\x78\x8d\xfd\xd5\xbd\xc6\xe2\xc1\x19\x90\x88\x5b\x1f\x1d\xb9\x6f\x60\x9d\x3c\x64\x64\xfd\x78\x67\x8d\xd5\x0a\x05\xe0\xe3\x8d\x3e\xff\xf6\xe1\xa6\x20\xbb\x6e\x90\xce\x96\x05\x3d\xe3\x07\xc5\x6a\x05\x1f\x01\xf0\x8d\x85\x35\x59\xb7\x9a\xe7\x3b\x66\xb4\xf1\xcd\x81\x46\xde\x94\xdd\xe8\x9d\x82\xaf\xb2\xd6\xd8\x75\x56\xfa\x75\x44\x87\xa6\xe1\x09\x62\x1d\x33\x43\x7d\xaf\x80\xfe\xaa\x80\xd9\xc5\x08\x1e\xd1\x0f\xc2\x8f\x7c\x1d\x83\xdd\xab\x7b\xd0\x65\xd8\xc9\x34\x67\x9e\xa8\x25\x7a\xe3\x5a\x4a\xa8\xa2\xf4\x59\xf4\xc6\x45\x76\x3c\xb3\xe2\x0a\x5f\x09\x23\x17\xb4\xa7\x14\xbf\xdf\xcb\x57\xe2\xda\x6b\xcb\xaa\x34\x4e\x2a\xe1\x1c\xff\x6a\x65\xde\x16\xcc\xc9\x24\x6f\x3b\xcb\x71\x56\x9f\x3f\x81\x4b\xa8\xac\xb4\x9f\x17\xf8\xcc\xbb\x01\xb5\x8b\xce\xb1\x94\x85\xd9\xa3\xe2\x40\xab\x53\x09\x6b\xb5\xa5\x67\xcd\x12\x64\x57\xb0\xd0\xd7\xd4\x4a\x68\xff\x6a\x8e\x4a\x1b\x63\x26\x9e\x0b\x51\x12\x35\xd4\xa3\xf8\x91\x98\xf0\x4d\x1a\x62\xe0\xdd\x68\x91\xe4\x8b\xd3\x3c\x14\x35\x1c\x5f\x69\x5c\xe7\x62\x75\xec\xd9\xe2\x1f\xf4\x13\xee\xab\xdc\x42\xa2\x4b\x20\x52\x92\x50\x99\xdd\x70\x42\xba\xa4\x49\x45\x24\x76\x15\x18\x25\xe9\xee\xd1\xe2\x6e\x90\xc4\xeb\x18\x1b\x1a\x48\x14\x5d\x24\xb8\xbf\xf1\xc5\x55\x02\xa1\xe3\xf1\xb8\xc5\xb5\xcf\xc9\x05\xbd\xd9\xad\xf8\xda\xac\x97\x6f\xfb\x0f\x26\xd2\x9c\x10\x0c\xe5\x2a\xff\x26\xa9\xbb\x88\xaf\x59\x5f\xce\x5f\x66\x6a\xbf\xee\x21\x77\x61\x25\x48\x89\x4e\xc9\x47\xff\x98\xc6\x29\xfd\x6c\x7b\x4e\x61\xdb\xdd\xd3\x9c\x43\x01\x41\x37\xfd\x6e\x36\x5a\x72\xa6\xa0\xfa\xfc\x14\x19\xe6\xe0\x0c\x94\x63\x17\x7d\x02\xef\x5c\xfc\xf1\xae\xd3\xf2\x4b\xce\x7f\xa6\x9f\xc2\x1b\xef\x14\x87\xd1\x07\x1a\xde\x09\x84\xa7\x3a\x1b\xda\x3d\x86\x7e\x1d\xca\x95\xd4\x39\x2d\x6a\x7c\x50\x41\x65\xa3\x2a\x7c\x5e\x82\x2a\x83\x8b\xd0\xe2\xeb\xc8\x43\x51\x73\x5a\xb5\x3c\xdd\xa3\x94\x0b\x4e\x0c\x33\xd2\x45\x73\x49\xab\xc0\x5b\x07\x7f\x09\xb7\x30\xc4\xd6\x9a\xdf\x7c\x76\x02\xe4\x67\xe6\x7e\x4e\x4d\xd2\xdf\x76\x02\xf4\x5e\xf6\x27\xcf\x17\xbd\xab\x04\x84\x29\xb5\xac\xe5\x48\xbf\x51\x49\x38\xdf\x91\x22\x1f\x12\x82\x49\x23\xe6\xc4\x56\x66\xcc\x79\x3d\xd6\xf5\x32\x56\x7e\x3c\x7c\x8a\xb4\x4e\xbe\x4e\x1d\x6d\x1d\xd2\x81\x62\x60\x6c\x20\xe8\xe1\xbd\x77\x12\xce\xa2\x51\x7c\x0b\xc1\xad\x28\x59\x2f\x9e\xda\x38\x6b\x55\xa8\x62\x8d\x96\xda\x08\xa9\x44\xc7\x2f\x01\xf8\x3e\x4d\x52\x51\xa0\x65\x6d\x15\x4a\xd0\x9a\x80\x10\x4d\xb2\x58\xe3\x39\x4e\x27\x42\xa8\xe5\x98\xa1\x62\xc9\xea\x91\x7a\x9e\xdc\x1b\xfa\x1a\x97\x69\x45\x7c\x46\x9a\xd9\xc3\x2a\xa6\x4d\x74\x9f\x50\x4d\x7f\x0e\xd7\x55\x7c\xe4\x40\x2c\x12\x83\x92\x94\xe9\xaf\x07\xd5\x25\x78\x99\x87\x50\x79\x02\x59\x24\xf9\xff\xe8\xba\xfa\x70\xa6\xf7\xf7\xff\x99\x87\xea\x94\x8a\x50\xf3\x34\xf3\xcc\x0f\x51\x66\xe5\x68\x72\x92\xa7\x44\xa7\xaf\xc8\x8a\x10\x36\x4f\x8d\x59\xc7\xaa\x6d\x4d\x25\x25\x3d\x38\x12\xc7\x2a\x23\x45\x1e\x22\x56\x4c\x34\x3d\xd0\x3c\x2d\x45\x48\x3e\xe3\x34\x4c\x31\xdb\x61\xe1\x8c\x66\xbf\xcf\xfa\x5d\xd7\xf9\x5d\xbf\x73\x5d\xbf\xfd\x71\xff\xb1\xeb\x7a\xdf\xf7\xfb\xbe\x5f\xf7\xfd\xba\x5f\xef\xbf\x3e\xee\xd2\x3b\xc2\x33\xb5\xbc\x3a\x60\x3c\xd3\xdf\x74\xb7\x97\x34\x4f\x78\x84\xd7\xa9\xe1\xbb\xf5\xe3\xaa\xeb\x0b\xb1\xdb\x96\x29\xc8\x58\x7b\x0d\x98\x0a\x44\xcf\x3e\xbc\xf7\x82\xd4\xf1\x09\xc3\x24\x8e\x3f\x75\x64\x73\x43\xae\xe4\x9a\x20\x4f\x22\x8a\x8e\x4d\xdb\x6f\x5f\x82\x0d\x04\xb7\x3f\x2b\xd1\xbb\x1e\x0a\xf1\xfe\x23\x9c\x9d\xc7\x39\x78\xf2\x6a\x35\x93\xba\xc9\x18\x7a\x79\x41\x7e\x92\xb0\xf1\xb8\xe4\xd2\x8c\x5e\xf2\x4d\xb6\x91\x58\xf1\x10\x7b\x2b\x12\xa6\xdf\x69\x79\x63\x38\x7d\x4e\x11\x5b\x38\x70\xc7\x43\xd6\x6e\x34\xdc\x4d\xf4\x3c\x7b\xec\x9c\x8a\x4a\xfa\x67\x55\x5e\x9d\x20\x38\xe5\x17\xce\xc7\xde\x42\x4a\x3c\xe2\xc3\xae\xff\x22\x90\xec\x53\x8f\xae\x9e\xe2\x22\x28\x4f\x32\xc7\x99\xcb\x2d\x35\x2f\xb2\xc7\xdf\x2e\x33\x9e\x3a\xaf\xde\xa6\xc4\x3a\xb2\xb6\xc9\x64\x38\x81\x53\xf9\xf5\xf8\xce\x94\x0e\xf4\xe0\xcf\x61\x20\x61\xba\x61\x0d\x25\x0b\xb8\xf0\x34\x97\xdd\xd4\xe2\x10\xb7\x62\x21\x7e\xcb\xd5\xd0\xf0\xdb\x3a\xd4\x6c\xb0\xfc\x6e\xe2\x58\x86\xca\x36\x81\xec\x54\xab\x20\x85\xb7\x86\x48\xd2\xac\x8f\xd8\x99\x92\xa0\x6a\x3c\x3c\xbf\xb8\x56\xf1\x5a\x16\x4c\x74\x7d\xac\xfa\x07\xb8\x9f\xf1\x5b\xab\x3f\xb2\x61\xa2\xe6\x70\xb4\x4f\x8a\xc4\x83\xa7\x25\xc8\x73\x5d\x05\x0d\x84\x9a\xe8\xde\x80\x5b\x58\x83\x85\x95\x83\x76\x1e\xa3\x9b\x85\x45\xb9\x2e\xc3\x87\x45\x7f\x19\x33\xfc\xda\x30\xdc\x0d\xad\xdd\x9c\x1b\xf2\x5f\xa5\xf6\xfe\x06\xaf\x0f\xc2\x27\xe3\x53\xa3\xe0\x00\xe2\xe5\x9e\x3b\xd5\xda\x0d\x7d\x92\x5b\x1a\x9e\x91\x76\x35\xb2\x5b\x42\x1b\x22\xc9\x2b\xb1\xbc\x73\x02\xbe\x79\xef\x2b\xf1\xc9\x8f\x25\xf7\xd1\x4c\x9e\x9b\x4f\xe3\x11\x70\x6f\x4a\xa7\x37\x51\xe4\x2e\x03\x38\xad\x46\x9a\xad\xf1\xe7\x71\x09\x3c\x0e\x63\xd4\xc9\xf0\xe2\x5c\x10\x73\x0c\xe5\x90\xb0\xf5\x5d\xa8\x05\xc1\xcc\x19\xa9\x83\xde\x1d\xe1\x44\x24\x27\xda\x77\x4f\x58\x5b\x2e\x73\xa2\xbb\x10\xac\x72\x24\xd4\xc2\x96\x2e\x41\x60\xdd\x63\x2b\x99\xf1\x82\x75\x9e\x67\x1b\xe6\xc0\x89\x5a\x9a\x97\x48\x3c\x20\x17\xa4\x9e\x3c\xeb\xee\xf4\xbb\xc9\x9e\x5f\xec\x4a\xb1\x61\xac\x34\x07\x43\x03\x47\xf3\x8b\x0b\xd7\x85\x11\x44\xe3\x6c\x00\x2a\x60\xa0\xde\x34\xfd\xcf\x1a\x53\xc2\xcd\x66\x17\xbd\x9c\x3d\x75\x34\xaf\xd4\xc5\x6d\x0b\x0f\xaf\xf8\x47\x34\xa8\xaf\x49\xdc\xb1\xb0\x08\x37\x1d\x17\x4d\x4a\xf4\x05\x79\x5d\xf2\xeb\x38\x8b\x0c\x73\xf8\xc2\x29\x49\xea\xab\xd5\x48\x68\x8a\xbf\xac\x6e\x0a\x22\x34\x3d\x0c\x37\xaf\xca\xd5\x55\xb9\xdd\xce\xb9\x75\xa3\xf6\xda\xc7\xc4\x82\xf0\xa3\x2b\x73\xa9\x91\x58\x5c\x74\x8f\x38\xa5\xca\x96\xb0\x49\x66\xc9\xd0\xd3\xcb\x29\xa2\x9a\x12\xaa\xdf\xce\x6b\xa8\x43\x97\x5d\x25\x20\xd1\x89\x8f\xcb\x85\x49\x8c\x21\x78\x4e\x44\xd5\x17\x56\x0b\xee\x0e\xdb\xe2\xac\xe4\x1d\x88\x14\x13\xed\x8b\x46\x44\xd5\xe0\x11\x41\x70\x65\x9d\xf7\xae\x2d\xc7\x7d\xce\xc7\xd8\xda\x12\xba\x1c\xa1\x3d\x10\x61\x2d\xd2\xb6\xbb\xad\x76\xa6\x0e\x67\x9c\x61\xb6\x13\x5d\x4c\x36\x63\x96\xa0\x8c\xe3\xc4\x1f\x76\x55\x9d\xf6\x94\x36\xb3\x5d\x8f\x1b\x69\xe8\x2e\xc5\xfd\x14\x9e\x3c\xb3\xfc\xa6\x8e\x71\xcd\x39\x3c\x32\xe4\x3c\x5e\xca\x4b\x94\x72\xe9\x8e\x3a\xee\x8a\x5b\x39\xe6\x91\x3a\x69\x5f\x3f\xe2\x59\xac\x13\xff\x79\x68\x4f\x6f\xbc\x3e\x1c\x42\xbb\xe2\x60\xba\xdc\x75\x7f\x54\x2c\x9f\x2e\x37\x97\xcb\x16\x31\x2b\x61\xdb\x27\x5a\x98\x23\x83\x71\xbd\x63\x2d\xbb\x65\x92\x26\x87\xb9\x11\x3a\x7d\x6e\xd0\x79\xde\xf8\xe7\xaf\xa3\x16\xbe\xa3\x35\xe4\x33\x35\xce\x05\x2b\x09\x76\xfe\xd3\xbf\x1d\x88\x0a\xf5\xeb\xa3\x3d\xef\x38\xa4\xa8\x58\xac\xbd\xfd\x86\x79\x7b\x3f\xda\x72\xec\xdb\x8e\xaa\x74\xb0\xb8\x85\x7c\xc3\xc1\x3c\xc9\x7f\xfe\x48\xce\xc8\xb1\xf0\xed\x72\xa2\x6f\xe9\xfc\xa7\x33\xf4\xb0\x07\xe5\x2b\x37\x3b\x50\xdc\x7b\x1f\xc6\x42\x4a\x17\x19\x67\xe4\xac\x9b\x9c\x37\x36\x05\xc2\xc6\x6d\xfc\xc1\xed\xfc\x28\x71\x4f\xc2\xd7\xb1\xdf\xbe\xed\x1c\x39\x6b\x94\xd0\xcb\xac\x95\xcc\x4e\x47\x57\xec\x66\xf9\xd3\x4f\x90\xd0\x9c\x52\x6c\x10\x3d\x89\x26\x9f\x17\xf4\xb9\xbe\x8d\xe3\x54\x47\x5b\x8f\x61\xe4\xd2\xea\xdc\x6f\x52\x9a\x64\x22\xe1\xd1\x87\xc1\xc6\xbc\x6f\x63\x18\xc9\x22\x71\x61\x8e\xe2\xdb\xdb\x22\x8d\x77\xe4\xfe\xdc\x36\x1b\xa0\x00\xa7\x66\x28\x1e\x4b\x2d\xb5\x32\xa3\xdd\xa0\xa0\xc3\x40\xf1\xea\x80\x6f\xc4\x9f\x6c\x55\x95\x6f\x33\xeb\x89\x3d\x27\x92\xcc\x08\x56\xf3\x91\x1a\xbe\x3a\xb8\xe4\x07\x4e\xfe\x0d\x5b\x9c\xc9\x59\x94\xe8\xe9\xdd\x6e\xc6\x4e\x87\x5e\x1e\xdd\xc7\x62\xe0\xd4\x89\x7e\xee\x35\xe5\x05\xb7\x22\x33\xf3\xf8\x36\xfc\x5e\x1a\x12\x06\x51\x14\x6a\x60\x54\xde\x36\x69\xc1\xc9\x46\xba\x65\xc9\x44\xe3\xf4\xb0\xbe\x5d\x96\x62\xf1\xe5\x99\x01\x82\x81\x85\xdb\xd6\x2a\x76\xd0\x21\xdd\x6b\xfc\x8e\x90\x36\x2e\xba\xe9\x09\xb7\x62\x73\x74\x6c\xd1\x9b\x84\x85\x77\xdf\x6f\x15\x03\xd0\x10\xe5\x89\xb4\x6b\xe6\x21\x9e\xc7\xfc\x07\xb4\x2a\xbe\x7c\xb8\x91\xdb\x16\xdf\x50\xc1\x76\x31\x0f\xf6\x29\x9c\x9f\xec\x5e\xcd\xc9\x6d\x46\x12\xa4\xad\xfa\x1e\x83\xa8\x19\xc6\x84\xf3\xba\xac\xa3\xd1\xc7\x53\x89\xd2\x1d\x22\xf1\x9b\xed\x2b\x83\x2f\x72\x03\xde\x1b\x5a\x76\xaf\x53\x85\x1c\x69\xf3\xbf\xb0\x2e\xb0\xb9\x75\x69\x84\x05\x9b\xa5\x5e\xb7\xe7\xb5\xeb\x3b\x13\x05\x15\x98\xb7\xf3\x39\x42\x17\xe6\x60\xba\xab\xd5\xfc\xf6\x50\xd6\x65\x76\x50\x99\x48\x82\xb6\xa1\xda\x28\x7a\x52\x2f\x5d\x08\x6b\x7b\x1f\x5e\x8f\xec\xd8\xca\x20\xeb\xad\x55\x72\xed\x45\xfb\x7e\xca\x45\xa1\x06\xaf\x5a\x63\xf5\x52\x24\x82\x79\x30\xf0\x3b\x87\xef\x72\x3a\x10\x34\xda\x64\x6b\x59\xb3\xdc\x3c\xa5\x58\xa9\x77\xb0\x06\x31\x5a\x05\xbe\x4e\x4c\x76\x0c\x61\x46\x62\x46\x6b\x7c\xec\xfd\x20\xf1\xfd\x9a\xa6\x92\x6d\xeb\x5e\xa7\x9b\x3c\xee\xff\x4b\x74\xb0\xcb\xf5\x7f\xbc\xfd\xce\xcf\x19\xf5\x27\x9d\x67\xfb\x8b\xf3\x22\x7c\x1c\xd7\xa4\x4e\x46\x9b\x30\x47\x84\x70\xec\xec\xa9\x70\xd0\x2c\x2c\xd8\x4b\x14\xd0\xd9\xe4\xb6\x90\x40\xe9\x9e\xf6\x20\xfa\xad\x1d\x1e\x3d\x11\xf8\xe4\x9e\xa8\x35\x74\xe1\xc1\xab\x7d\x17\x30\x2a\x31\x7e\x43\xd7\xdf\x75\x17\x17\x0c\xe7\x5f\x69\x94\x4b\x7a\xc6\xb2\xbc\x5c\xcb\x34\xf4\xc7\x37\x32\x9e\xc3\x57\x41\xde\x75\x5e\xd2\xdb\x30\xa9\x52\x6d\x1e\x47\x80\x90\x01\x53\xa7\x7f\x77\x6b\xe8\xd9\x47\xfb\x9e\xe4\x4a\x83\xd5\x52\x3f\x99\x31\xe7\x7d\x2e\x29\x46\xb1\xcf\x4a\x7d\x78\x5c\x71\xa7\x39\xc6\x74\x45\xc2\xb7\xcd\xc9\xa3\x76\x62\x7a\x7b\xcd\x82\x2b\x8e\xd0\x3e\xb5\xce\x7c\x3f\xe1\x19\x15\x1c\x8e\x16\x31\xf1\x0b\x0f\xa2\xd0\x91\xf8\x64\x54\x8f\x1a\x71\xdd\x55\xc3\xc9\x96\x7c\x55\x88\x09\x2e\x46\x6e\x39\x81\xff\x3b\xb1\xcc\xc5\x2f\xa4\x5a\x7b\x88\xb5\x6e\xc5\x85\x06\xec\x1f\xa5\x31\x92\xb2\x9a\x2a\xd7\x20\x55\x63\x32\x80\x58\xf8\x32\x8a\x87\xd0\x6d\xfc\x43\xa9\xb6\x6b\x1b\x83\x6e\xc7\x0f\xdc\xa3\x42\x83\x89\x34\x67\x26\xd4\x0f\x52\x3d\x41\x84\x29\x90\x26\x74\xf5\x01\xa9\x95\x06\x70\x65\x49\xd2\x3b\x0b\x6d\xea\x8d\x9e\xb6\xd8\x12\xf0\xbf\x01\xee\xf5\x89\x9c\x9b\xf6\xb7\x09\xe4\xd2\x03\xd0\x9b\x79\xed\x1a\xcd\xac\x2e\xf9\xc6\x96\xfe\xb6\x99\xa2\xf5\x40\x6c\x73\x78\x42\x46\x1c\xc7\x81\xba\x46\x0d\xda\x68\x3e\x98\x87\x58\x2c\xe8\x95\xa1\x0d\x29\x88\xd8\xcb\xd3\xa8\xac\xf8\x95\x4b\xca\xe6\x01\xee\x64\xb5\xda\x63\x96\xfc\x6c\xde\x16\xae\x07\xb2\xc9\xe8\x49\x02\x96\xb7\x59\x80\xd6\x55\x83\x38\xe5\xdd\x85\x99\xa7\xc9\x55\x6c\xb9\x66\x80\x56\xc3\x46\x55\x20\xe2\xcf\x42\x1d\x32\x7e\x48\x08\x62\x5e\x27\x43\x37\x04\xfa\xf0\x64\xf7\x0d\x9a\x0d\x97\x5e\x17\x0a\x52\x59\xab\x80\x6f\x33\xfa\x44\xe9\x74\xb0\x26\x19\xaf\x07\x11\xd9\x0b\xe0\xee\x23\xbd\x62\x97\x3b\x4a\x31\x7c\xc6\x87\x55\x8d\x7b\xe2\xd8\x68\x08\x55\xe4\x61\xd6\x18\x8a\x15\x7b\xd6\x76\x17\x43\x1d\xe0\x23\x06\xaa\xca\xb1\xfe\xa4\x2d\xaf\x61\xbf\xba\x03\x1f\x06\xf1\x0c\x8f\x56\x9e\x96\x8b\xaf\x54\xdd\x43\x05\xb9\x27\x93\xed\x8a\x88\x42\x55\xc6\x8b\xf1\x3e\x50\x66\x69\x6f\xf4\x6b\x64\x8d\x38\x4b\xe2\x0d\x83\x5d\xbc\x6c\xe0\x72\x6b\x39\xc3\xa5\x95\x3f\xcb\x4e\xff\xac\x4c\xa2\x0e\xaf\xbd\x35\x5f\xea\x39\xee\x9f\xa1\xea\x5e\xf4\xb6\xdf\xee\xfe\xd0\x01\xe9\xb6\x1f\x5e\xc7\x4b\x2e\xdb\x15\x0d\x85\x4a\xad\x5f\xc3\x90\x9a\x56\xf1\xb8\x3e\x51\xe9\xe9\xbb\x3f\xce\xcc\x4d\x32\x19\x41\x28\x83\xcb\xc3\x69\x95\x37\x4d\x60\xbf\x3a\xd6\xc4\xaf\x1c\x76\xaa\x11\x22\x79\x56\x1a\x3f\x41\xc9\x67\xd3\x1b\x32\x87\xd3\xba\x2c\xab\x24\x95\xa7\xb3\x4c\x60\xd9\x24\xf2\x95\xe1\x96\x28\x2d\xde\x39\x06\x19\xbe\x09\xc2\xa1\xe8\x94\x65\x6c\x40\x5f\x77\xcd\x90\x1f\x68\x95\x05\x64\x5b\xd1\xfb\xed\x2a\xb1\x07\xc0\x0d\x42\xa5\x6f\x95\xd9\xd5\x44\xa6\x1d\xe1\x61\xe3\x25\x48\x83\xed\x0d\xe2\xe9\x31\x86\x9c\x5d\xe3\x0a\x23\x7f\x64\x92\xcc\xaf\x90\x3d\x63\x87\x5d\x70\xe8\x6b\xe6\x66\x03\xed\xed\x66\x0c\x79\x9b\xbd\xd9\x4a\x60\xa4\xa7\x2d\x32\x1e\x92\x06\x9a\x77\x9b\xc6\xbb\xee\x5e\xf0\xce\x1c\x8e\xa1\x39\x67\xa8\xbb\xdf\xc5\x76\xec\xf4\x23\x3d\x7b\x9c\xa3\x9b\x86\x80\x68\xa6\x75\x06\xcd\x9b\x62\x3c\x90\x7b\xaa\x34\x55\xa9\xc2\x2b\xf0\xce\xc3\x57\x28\xdd\x53\xbf\x76\xae\x56\xfa\x8e\x0b\x73\x14\x95\x14\x04\x92\x1e\x0b\x75\x33\x20\x0c\x3e\x82\xd7\xb3\x9c\x13\x32\x97\xdd\xc7\xb6\x67\xa8\x41\xa8\xb8\xd3\xaf\x0e\x7e\x0f\x60\x3d\x64\xcb\x4c\xb7\xc4\xbb\x1d\x0f\x01\xbe\x1d\xbf\x27\xfc\x09\x92\x21\xe8\xf5\xe0\x31\x92\xf1\x6b\x95\x22\x87\x6e\x18\xcc\xd1\x7e\xb1\x3d\xbf\x12\xf7\xa8\x7c\x28\x90\x75\xb7\xf4\x6e\x31\xec\xde\x42\x9d\x70\x87\x20\xef\xbd\x11\x37\x19\x80\x5b\x8b\xd3\x80\x2f\x1b\x97\x0f\x91\x0e\x43\xeb\xde\xe0\x62\xed\x49\x4b\xcd\x2d\xb7\x8d\x53\xab\xd9\xae\x25\x66\xce\xf8\x40\x37\x00\xaa\x7a\x74\xb1\x87\xb4\x45\x80\xde\xb8\x7c\x45\xb8\x28\x40\x0c\xab\x68\x96\x72\x9d\x9b\x12\x70\x03\x22\x4b\x91\x85\x9a\xb2\x78\x99\x2b\xb6\x84\x30\x05\xd6\x39\x0a\xa5\xd0\xb4\xac\x51\xf5\x1c\x2c\x3f\x7d\x88\x74\x9f\xed\x6a\x14\xde\x7f\xa7\xc4\x17\xae\x0f\xcc\xbf\x32\xd4\x04\x3c\x62\xb4\x0f\x3a\xcc\x6a\xd1\x5f\xd6\xb1\x84\x14\x86\x3a\x1c\x51\xa4\xb9\x62\x43\x08\xe0\xf6\xbf\x4a\x01\x01\xfd\xab\xae\x48\x60\x6a\x66\x1b\x0f\xc6\x50\x6f\x9b\xd9\x96\x72\xee\xaf\xaa\x9d\xd9\xde\x1b\x63\xcf\x8a\x77\x5b\x7f\x0c\x25\x69\x4d\xa8\x2a\x13\x7e\x8f\xb1\x16\x13\xda\xed\x18\x49\x99\x94\xdc\x92\x0b\x91\x30\x06\xae\x4a\x98\xcc\xa3\x32\x9c\x51\x56\x71\x23\xd1\x21\x40\x74\xa6\xf7\x63\x20\xfa\x25\xda\xa6\xa9\x03\x9f\xc4\xc3\x31\x1e\xb5\x61\xaa\xe7\x75\x39\x5b\x60\xeb\xa5\xe7\x20\x69\x71\x23\x64\x48\x98\xe6\xb0\xdd\x5c\x09\xea\xf1\xa8\x4a\x5c\x98\x38\x2a\x31\x6e\xd4\x1e\x75\x34\x1e\xbd\xb9\xe1\xd3\x86\xb4\x97\x94\x00\xd0\xf2\x1e\x9a\x39\x76\x30\x43\x19\x0e\xb0\xc4\x33\xdf\x15\x4a\x02\x67\x3d\xa1\xa7\x05\x62\x88\x91\xff\x19\xb6\x14\x6d\x7b\x88\x6f\x22\xde\xca\x7d\xca\x28\xd3\xdb\xa4\x9c\x9b\x2f\xc6\x94\x43\xd3\xfb\x8c\x59\x57\x70\x47\x89\xda\xd1\xf9\xf8\x53\x69\xbe\x6e\x1f\xbe\x1f\x05\xa3\xae\x05\xff\x3c\x82\xf3\x51\xd6\x2f\xe2\x0b\x62\xd6\xe5\x10\x78\x7f\xc8\xbf\x8d\x6f\x82\xdd\xc3\xba\xfc\x17\x7b\xb3\x20\x82\xbc\xf3\xd8\x40\xb3\x09\xe1\x96\x0b\x85\x3a\x1b\x9c\xa1\xae\x8c\xa7\x3f\x6d\x4f\xac\x8c\xbd\x3b\x46\x57\xf6\x14\xee\x09\xce\x83\xb7\x4f\x43\x4b\x65\xae\x9a\xcd\xad\xb0\x4b\xbd\x34\x66\xf1\x03\x75\x80\xd1\x95\x9a\xc8\xe1\x71\xbb\xcb\xb1\xde\x60\x58\xce\x35\x54\x96\xd3\x5e\xeb\xec\x03\xa8\xc5\xa5\x8f\xa1\xd7\x2f\xc1\x7f\x5c\xaa\xbd\x61\x31\x66\x4e\x66\x56\xdf\xf8\xe9\x93\x20\x78\xe0\x48\x38\xcb\xdc\x23\xdd\xb0\xd6\xc5\x70\x31\x6b\xd8\x76\x12\xc7\xe3\x0b\x10\x4f\x55\xa0\x06\x03\x74\x72\x31\x0e\xf4\x82\x1b\xb5\xba\x4f\x13\xf1\x0b\x49\x57\x28\xa1\x09\x1b\x78\x7b\x04\x68\x5f\x35\xfd\x0e\xf4\x12\xc5\x5f\xfa\x4c\x18\xc9\xb3\xe7\x50\x01\x65\x58\x15\x5c\xa5\x5a\xd8\x4c\x9f\x94\x52\x34\xb3\xea\x04\x79\x1f\x67\x8a\x65\xe7\x71\xd1\xe4\xcb\xbb\x5d\x45\x8d\xde\x20\xc2\xb0\xfe\xf2\xab\x75\x1a\xeb\x94\xe9\xbe\x38\x99\x49\xf9\x36\x21\x46\xb4\xe0\x2b\x4f\x0c\xdd\xcd\xd1\x6d\xb3\x97\x37\x31\x70\xe6\x1e\x17\x8f\x51\xab\x4f\x7b\x81\xd4\xf5\x4d\x25\xb3\xe9\xec\x30\xae\x95\x23\x0a\x80\x46\x33\x6d\xa5\xae\xbf\xbe\x7a\xee\x6b\x7d\x11\xb4\x4c\xc9\xde\xc1\xb3\x8a\x44\xd2\xbe\x0c\xa7\xd0\xf7\xa7\xf8\xf9\xd7\x6a\x05\xe2\xf8\x5d\x53\x8a\x82\x3a\x98\x32\xad\xd8\xf6\xb6\xb2\x89\x25\x44\xcb\x8e\x9b\x38\x9b\x70\x2f\xbb\xfa\x1d\x1d\x90\x44\xf5\x13\xce\xfd\x42\xbc\xda\xd7\x5c\x22\x0b\x01\xd5\x66\x0f\x53\x3f\xff\x5d\x23\x24\xf2\x2a\x35\xb4\x94\x77\x29\x2a\x10\xcd\xde\x16\x5f\xdb\x54\x76\x68\x33\x79\xb0\x15\xc1\x3f\xf2\x89\x8b\x0e\x08\x0d\x01\xe7\x5e\x90\x1c\xa9\xfe\x91\x37\xc0\x21\x81\x5a\x4f\xc2\x31\x9d\x86\x86\x0c\x39\xad\x4a\xf1\xdc\x01\x6e\xaa\xd4\x7c\xee\x5a\xfd\xad\xb4\xe3\x84\x46\xda\x15\xfa\x8e\xee\xfc\xdf\x65\x34\x5f\x6c\x37\x57\x58\xd8\x6d\x46\x88\xa9\xd6\xd2\xf8\x5c\xb4\x5f\x87\xbc\x65\x2c\x28\x1c\x65\x57\xbf\x94\xeb\xaf\x42\x6f\x53\x40\xaf\xe7\x9f\x94\x5d\xa5\x39\xec\x39\x47\x72\x7b\xae\x27\xec\xea\x00\xdd\x16\x7a\xd6\xfd\x9d\xd2\x2b\x8f\xcd\x97\xaf\x88\xdc\x1e\x69\x5d\x1d\x2a\x13\x20\xb2\x96\xda\xb7\xac\x39\x3a\x30\x90\xba\x96\x7e\x00\x9c\xc2\xd5\xc8\x04\xb3\xd7\x15\xa3\x30\xe5\xd9\x34\x98\x4e\x6e\x3e\xad\xb4\xcc\x54\x7c\xb0\xda\x85\xaa\x55\xc0\x2b\x5b\x1e\x74\x5a\x3e\xa9\x20\x65\x39\xd8\x3e\xe2\x8c\x3f\xf9\x5b\xe1\xb5\x28\x39\x4c\xed\x74\xe3\x2b\xc0\x47\x60\x57\x82\x0f\x35\x1e\x0a\xd1\x7f\xac\xf7\x6b\xdf\x84\xd3\x7b\xc5\x27\xcb\x64\xba\xd0\xef\xc2\x8c\x1a\xe1\xc6\x53\x9a\xc8\xef\x8d\xf7\xca\xa2\xdb\x42\x4c\x94\x61\xd9\x2a\x20\xbd\x38\xd7\x3c\xb1\x59\xf9\x8d\x12\xa4\x01\xb4\xa5\x94\x3f\x75\xb5\xff\xb5\x50\xec\x7f\x2c\x04\xc8\xbf\xac\xb2\x4f\xfe\xb1\x50\x49\xff\x65\xa1\xf9\xff\xc7\x2a\x31\xfa\x97\x85\x8a\xf9\x8f\xfd\x3f\x41\xff\xbf\xd0\xd9\x7e\x0a\x87\x17\x80\xac\x17\x5b\xf2\xc4\x09\xc6\x54\xfe\xef\xeb\x19\xb0\xb7\x7a\x4f\xc4\xf9\xff\x0e\x00\x00\xff\xff\xf4\xb0\x35\x31\xf3\x95\x00\x00") +var _web_uiStaticConsulLogoPng = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x84\xbb\x77\x54\x53\xdd\xb7\x2e\xbc\x42\xa8\xd2\x41\x29\xd2\x42\x15\xe9\x45\x40\x90\x12\x69\x82\x14\x29\x09\x4d\x7a\x89\x82\x10\x7a\x6f\x51\x11\x50\x69\x82\x74\x05\x54\x44\xd8\x74\x90\x22\x5d\x9a\xd2\x9b\x91\x22\xe5\xa5\x77\x51\x10\x31\xd4\x6f\xc4\xf7\xfc\xce\xbd\xf7\x1b\xe3\xdc\x9b\x7f\x76\xf6\x9e\xed\x99\xcf\x9a\x73\xae\x95\x31\xb2\x1f\x1b\x19\xde\xa0\x3d\x77\xf1\x1c\x00\x80\x56\x57\x47\xd3\x04\x00\x38\x02\x00\x38\x07\x25\x39\x00\xa0\x66\xe0\x27\xf1\xc2\xee\xa7\x65\xe1\x67\xea\x89\xf1\x0b\x74\xf0\x71\x01\xd7\x9d\x3d\x1d\x5d\x10\xba\x1e\x0e\x77\x5c\x4c\x5c\x1c\x9c\x83\xbd\x7b\x5c\x94\x01\x80\xf3\xb9\xa2\x2c\xfc\x2c\x0c\xf4\x95\x9c\x3c\x3d\x24\x1c\x88\x3a\x12\x41\x1e\x5e\x80\xf8\x51\x56\x0b\xf2\x72\x70\xba\xe7\xe2\x87\x70\x74\xb9\xe3\x8a\x55\xe1\xdb\x69\x6c\xe5\x43\xb8\x3a\xab\xf0\x99\xcb\x19\x48\x19\x78\x69\xb8\xdc\x75\xd5\x09\xf1\x71\x31\x0d\x31\x44\x39\x85\xdc\x73\x52\x74\xe6\x53\x53\x45\x28\x07\x29\x05\x79\x78\x79\xb8\xf8\x39\x20\x82\x3c\xdc\xb1\xbe\x4a\x41\x2a\x7c\x7f\xfd\x2a\x61\x7d\x95\x88\x8f\x25\xf9\x10\x7f\x55\xfc\xee\xa9\xf0\xfd\x0b\xca\xc2\xc0\x08\xa1\xe1\xe9\xe3\x82\x90\x93\x90\x15\x77\x92\x92\x96\x46\xc8\xcb\x4b\x48\x5f\x91\x93\x97\x97\x16\x43\xc8\x48\x49\xcb\x48\x4a\xc9\x48\x4a\xc9\x8b\x4b\x5f\x51\x92\x93\x57\x92\x51\x40\xfc\xd7\x87\x4f\x15\xa1\xec\xe3\x8c\x51\x32\xd1\xd4\xfe\xaf\x58\x3e\xce\x18\x15\xbe\xbb\x7e\x7e\x5e\x4a\x92\x92\x81\x81\x81\x12\x81\xb2\x12\x9e\x3e\x77\x24\xa5\x15\x15\x15\x89\x3e\x64\x64\xc4\x7d\x9c\x31\xe2\xbe\xc1\x58\x3f\x87\x20\x71\xac\x2f\xff\x7f\x3c\x68\xba\xf8\x3a\xf9\xb8\x7a\xf9\xb9\x7a\x62\x11\xc4\x7b\x07\x47\x4f\x7f\x3f\x15\x3e\xbe\xff\xa4\xe0\xe1\xf5\xdf\x6e\xb1\xbe\xff\x45\x93\x93\xa7\x87\x64\x90\x83\x97\xa4\xb4\x84\x94\xe4\xff\xa6\x68\x60\xf0\x7f\x57\xf5\xf0\xf8\x6f\x6d\x5f\x3f\x13\x17\xcc\xff\x5d\xdb\x17\x15\xec\xe5\x22\x69\xe2\xe2\xeb\xe9\xef\xe3\xe4\x62\xe2\x82\xe1\x27\x1a\x7b\x29\x69\xf8\xb8\x38\xf8\x79\xfa\xa0\x3c\x3d\xdd\xff\xc3\xa2\xd1\x5d\x4f\x3f\x4f\xdf\xbb\x9e\x5e\x08\x0d\x53\x79\x84\xb0\xb9\x2b\xd6\xd9\x33\xd0\xf7\xf2\x5f\x7d\x03\x03\x25\x5d\xac\xaf\x9f\x03\xd6\xc9\x45\x57\x53\x85\x2f\xc8\xc3\x4b\xc2\xd5\xd5\x59\x49\x46\x53\x5b\x5b\x5b\xfe\x8a\xb4\x86\xbc\x9c\x94\xb4\xb4\x96\xac\xba\xb6\xa6\x9c\xba\x94\xa2\x8c\x8c\xb6\xf6\x15\x59\x99\xeb\xb2\xff\xb1\xd5\xf4\x74\xf2\xf7\x70\xc1\xfa\xfd\xc7\xd6\xf9\x7f\xd9\xca\xfc\x8f\xb6\xc4\x52\xf8\xd7\xda\xc5\xc7\x35\xc0\xc5\x59\xdb\xc7\xd3\x03\xf1\x37\x65\x25\xd7\xff\x11\x8b\xac\xf6\xff\x8c\xe5\x5f\x5b\xe7\xff\x19\x8b\xd4\xff\x68\x2b\xa9\x8a\x50\x96\xfc\xff\x2d\xf4\x7f\x1e\x99\x68\x6a\x13\xbf\xfe\x77\xd9\xaa\x22\xfe\x57\xe1\xbb\x60\x9d\x55\xf8\x7c\xf8\xd4\x54\xcd\xbe\xad\x68\x01\x90\x7c\x47\x57\xf3\x3a\x2a\x68\x6a\xeb\x25\x05\x4e\x40\x0b\xff\xc9\x6e\xc8\xbd\xe1\x9a\xcf\xe0\x75\x1f\x19\x90\x2c\xa0\x67\x44\xf5\x80\xea\x3a\x59\x17\x8e\x51\x4b\x5f\x78\x05\x60\x18\xcf\x5f\x98\xd7\x38\xcf\x98\x94\xff\xc0\x51\xf3\x81\x40\x8f\x70\xec\x92\xb0\xa2\xed\xd4\xcb\xf5\xd3\xd9\x4d\x68\xf2\x5b\xe3\xb7\xc6\x6f\x52\x2a\x63\x36\xfb\x47\xe1\x73\x67\xd8\x40\xfa\xc0\x06\x3b\x74\xe0\x78\x6b\xf1\x6c\xb1\x40\x9f\x0c\xec\x6f\xff\xad\x91\xca\xa9\xff\xfd\x02\xd8\x18\xfe\x5e\xda\x70\xff\xde\xda\x23\xff\xbd\xc2\x49\xfe\x5e\x70\xb0\x7f\xf5\x69\x28\xff\x0f\xa9\x14\xe2\xff\x90\xfe\xc7\x98\x9c\xf4\x7f\x97\xfe\x3f\x5c\xff\x97\xf4\xff\xe1\xfa\xbf\xa4\xff\x77\xd7\xc8\xe9\x5f\x0c\x24\x00\xe7\xe6\xd3\x6f\x78\xe3\xa8\xbc\x6a\x3e\x57\xb0\x74\x47\x76\x7d\x4c\x92\x45\x76\x7d\x88\x65\x9c\x47\x1f\x5f\xfe\x6e\x90\x60\x29\x9f\x17\x79\x50\x5c\x70\xd5\xe5\x44\x57\xa8\xf9\xb0\xa6\x68\x48\x85\xa7\x6a\xb6\xb3\xb9\xb0\xca\xee\xb6\x67\xb8\xe1\xe8\x61\x85\xd8\xbd\x43\x7a\x9e\xd1\xdc\xc9\x71\xda\x93\x00\x9d\xb3\x9c\xb7\x17\xbf\xe4\x0e\x7c\xdd\x41\xcb\xd8\x9c\x89\x1e\x4d\x8a\x9d\x4c\xb3\x1f\x1e\xf8\x12\x86\x34\xb7\x36\xd9\x0f\xab\xef\x9c\x1c\x58\x6e\x86\x25\xbb\x2f\x65\x62\x7c\x55\x7d\x3b\x09\x42\xfc\xad\x43\x2b\x8a\x67\x8c\x02\x7b\x61\x9e\x73\x83\x07\xd5\xc6\xaa\xfc\x99\x9b\x8b\xda\x04\x7d\xf6\x65\xd9\xea\x11\x35\xdf\xfb\x9f\xe4\x72\xf6\xfa\xab\xc8\x4e\x5b\x8c\x23\x23\xe5\xa3\x2d\xde\xab\xca\xde\xd6\x71\xbf\x71\x6d\xc7\x9d\xa6\x92\x6d\x2f\x38\x61\xb7\xda\x3d\xee\x67\xce\xe7\x0f\x83\xbe\x2d\xd4\x3b\xb7\x7d\x0f\xc7\xef\x7e\xaa\xfa\xc7\x37\xa7\xb1\x59\x5b\x2d\xa7\xf2\xc5\xc1\xdd\x55\xd5\xb3\xd5\x2e\xf5\xe4\x81\xc8\x53\x57\x93\x94\xd3\x15\x77\x7c\xff\xf1\xe6\xa3\x2e\xcf\xef\x73\xd2\x21\x9c\x29\x74\x5d\x81\xd9\xd7\x3c\x3b\x71\x7e\x59\x07\x3b\xfe\x32\xfc\x14\x77\xf9\xdf\xa8\xf4\xaf\x1c\xdd\x62\xf9\x61\xcf\xbe\xaf\xc6\xb9\x8c\x69\x8d\xcd\x46\xd7\xfe\x88\x69\x7f\xcd\x7d\x71\x6f\xe6\x87\x0c\x7b\xc7\xc3\x7b\xc6\xab\xb9\xf1\x3e\xd5\x36\xc3\x1d\xee\xbc\xab\x39\xf1\x3b\xe4\x2a\x53\xf6\x9e\x0e\x9f\xea\xf3\xd8\x24\x85\xcb\x9c\x2e\x92\x3a\x2f\x86\xad\x25\x2a\x7d\xb6\xf8\x6c\xef\xdc\x52\x3b\xc4\xc2\x9e\xed\xfc\xfc\xb7\xcd\x2f\x44\x50\x19\xec\xb5\x8a\x65\x3a\x4a\xbc\x7c\xae\x24\x2f\x52\xb2\x54\xcd\xce\x70\xe5\xee\xe5\xa3\x4c\x37\xf6\xb3\xfd\x2b\xe5\x82\x4d\xc9\x4c\xb6\x4d\x18\x43\x5b\x23\x95\xc5\xb3\x9c\xef\xad\x11\xea\xfb\xef\xcf\x0e\x2f\xe3\xcf\x50\xb7\x0e\x77\x78\xcc\x55\x36\xce\xea\xfe\x5d\x58\x1c\x95\x7d\x35\x1d\x46\xc4\xcc\xa4\xb4\xc0\xca\xb4\xa6\xea\x6c\x52\xe4\x74\x33\x6d\x64\x8d\x7e\xad\xe9\xa8\x39\x8d\x6b\xf5\xec\xfb\x65\x4f\xcd\x9c\x5d\xcc\x52\x04\xbe\x63\xb6\x50\x79\xa1\x35\x72\x38\xfb\xe2\xbf\x8b\xad\xf9\x78\xc0\xb6\xe4\x95\xd5\xf8\x3d\x34\x7e\x03\xaa\x69\x4a\xe3\xd5\x74\xc2\x64\x4a\x77\xde\x2b\x50\x10\xc4\xe8\x7c\x37\x99\xd9\x8c\xef\x09\x87\xae\xa1\xe9\x0b\x4d\xd4\xa9\xfe\x86\x2a\x14\xa9\x3d\x76\x85\x7b\x0a\xa5\xa5\xce\x2f\x9b\x54\x3d\x53\xe0\x94\xaf\x1e\xb9\x95\xa1\x14\xbd\x5c\x5b\xb2\x58\x73\x22\x7c\x76\x5a\xaf\x20\x18\x18\x3c\xc9\x24\xd9\xa7\x55\xb9\x6c\x57\x17\x9c\x92\xcc\xa8\xfd\xb7\xea\x90\xec\xe4\xb5\x18\x11\xf9\x5f\x91\xad\x16\x35\x95\x0a\xdc\xd3\xa6\xc5\x1d\xbb\xb6\x92\x76\x6d\xad\xd9\x8c\x1f\x3a\xfa\xaa\xb4\x3c\xf7\xbb\x97\x1c\xd4\x29\xfe\x06\x11\x3e\xa7\xb7\x30\x3b\x7d\xcf\xd4\xf3\x4a\xbf\x97\x98\xf6\xdd\x07\xef\x52\x7d\xab\x67\x94\xd5\x22\x87\x39\x92\x37\x9b\x2e\x7f\xc0\x67\x9f\x4f\xf3\x85\xfd\xad\xf0\xee\x47\xe2\x89\x53\x9a\x35\xa5\x6e\xf7\xf0\x98\x05\x8c\x22\x39\x25\x6d\x9c\xbd\x5c\x79\xf3\x8d\xe3\x7e\xa6\xf9\x72\xe3\x99\x2d\xff\xd4\xfa\x30\xe6\x7f\x53\x5d\x9a\xd0\x8f\x1e\xb8\x6b\x91\x7a\xb9\x8f\x71\xe2\xe6\x3e\x93\xb7\x2c\x37\x58\x74\xd1\xc2\xab\xda\x8a\x9f\x16\x37\x98\xed\xf3\x78\xe3\x3f\x6c\x79\x66\xcb\xbd\x92\x61\x05\xf6\x48\x4a\x18\xd0\xf4\xca\x0d\x2d\xaa\xb7\xa4\x1d\x2b\x5b\x10\x31\x82\x9d\xef\x09\xb1\xe5\xaf\x6c\xd6\xc3\x1a\xdb\xbc\x3e\xcc\xae\xb7\x4c\xb9\x44\x79\xe1\x2f\x02\xc8\xc0\x66\x5f\x06\x2f\xda\x59\x3a\x37\x67\x20\xec\x4d\xbd\xdc\x96\x46\xf0\x58\xdf\x97\xf6\x46\xd7\x8a\x55\x9e\x0c\x41\x6a\x45\x65\xe7\xcd\xe3\xa9\xff\x76\xa9\x91\x4f\xc9\xf1\xf6\x20\xc4\x85\x0e\xed\xfd\xa3\x50\x0b\x5f\x23\xaf\xbd\x76\xd2\x6d\x1b\x73\x94\x3b\x49\xd3\xb3\x83\x8e\x34\xb2\x29\xcd\xba\x9e\xf1\x57\x73\xd8\xc6\x5d\xbe\xe3\xb7\xbf\xc5\x18\x47\x62\xf3\xc9\x38\xe0\xad\xc8\x1c\xbf\xd4\x29\x3e\xd9\xa0\xee\x9f\xb9\x81\xc5\xd3\xce\xe6\xfd\xdb\xdf\xe7\xba\x21\xe3\xed\x57\x21\x35\xf5\x82\xe8\xe9\x46\x04\xb9\x7b\xcf\xd7\x32\x5b\x71\x77\x9e\xe4\x39\x68\xd0\xd8\x46\x02\xfb\x29\xf0\x2f\xf3\x6d\x02\x95\xca\x74\x7d\xf3\x13\x7a\xfb\xda\xf8\xa9\x28\x52\xc4\x9d\x0b\x78\x07\x5b\x79\x0d\xc7\x6a\xfe\xd5\xa2\x41\x96\xba\xc6\x6b\x7f\xa7\x81\x7d\xdc\x04\xdd\x62\x63\xf1\x2c\x1f\xb6\xc0\xc9\x5b\x9d\xa4\xc2\xc8\x3d\xda\x59\xa1\x9c\xa7\xb0\xcc\xdc\x66\x69\xe0\xf3\x40\x14\xc5\xdf\x59\xe1\x3b\x76\x49\xc2\x7b\x3a\x80\xbd\xce\x0d\x1d\x7a\x98\x0b\x6b\xeb\x9c\x98\xde\xbc\x8b\x6f\xed\x14\xac\x9a\x7b\xdb\xf0\x25\x92\x9e\xb8\x7c\xb8\xb5\x0a\x48\xed\xa8\x88\xee\xbc\x42\x5f\x25\x1b\x2f\x4c\x38\xca\xa0\xc9\x6a\x62\xeb\x73\x79\xd7\x72\xc2\xf4\xf5\xa0\xbf\xf9\xbd\x9a\xbb\x63\xfb\x36\xe4\xa1\x9b\x1d\x7e\x34\x8a\x34\x6f\xf1\x3d\xe6\x46\x8b\x10\x56\x7e\x49\xc0\x53\x9b\x5b\xe0\x0a\x18\x76\x75\x8b\x02\xe0\xdc\xc2\x32\xb4\x53\x94\xc3\x64\x5e\xb3\xca\xd0\x4f\x81\xbc\x3c\xd1\x69\x97\x4d\x1f\x9b\xcd\x4e\xc8\x73\xbb\xe8\x00\xc3\x19\x7e\xa4\xa1\x04\xef\x9f\x0a\x76\x09\x3e\xbb\xbd\x2f\x92\xbd\x6d\x11\x9f\x04\x9e\xe7\xa4\x17\x25\x98\x87\x9b\xfb\xbf\xaa\x9f\x99\x90\xdc\x8f\x84\x13\x59\xca\x7b\xbe\xf5\x26\xe4\x5d\x7d\xf2\x87\x69\x53\x00\x5d\xe3\x0e\x2a\x4d\xf7\xce\xde\xb8\x82\x5f\x5f\xc0\xdc\x04\x60\x8a\x5c\xaf\x02\xd8\xf3\x95\x14\x1f\x26\xf3\x64\x1c\x77\xd3\x5b\x49\xf1\x80\xf9\x8a\x67\x1b\x6c\xf8\x13\x48\xaf\xf3\x42\xbc\x0e\x25\xf5\x5f\x1f\x63\x13\xa3\x10\x07\xfa\x0c\x1d\x6e\x66\x81\x21\x63\x80\x5f\x7b\xfc\xcd\x6e\xc9\x15\xff\x18\x62\x65\x66\x02\x19\x34\x4d\x95\xa4\xb8\x47\x95\x51\xf5\x55\x1f\x6a\x6f\xc5\x6c\xeb\xb4\xd0\xf0\xc2\x62\x59\xfa\xf6\x42\xca\xc7\x05\x67\x9f\x4f\x18\x6e\x99\x33\x5e\x24\x96\x60\x9b\xf3\x24\x6a\x1f\x86\xbf\xfd\xa8\x59\x09\xd8\x47\x04\xfc\x96\x71\xb7\x63\xbc\x9d\x4c\x10\x45\xa7\x0c\x83\xb6\xd7\xf6\x54\x2c\x20\xae\xd3\x47\x11\x8b\x9e\xe1\xfb\x2e\x7e\x69\x05\x0e\x58\xba\x0e\x21\xbb\xc2\x1c\xe6\x3a\xcd\x7b\x1a\xea\x24\xc4\x19\x6d\xc1\x26\x5a\xdc\x52\x18\x82\xf2\x6f\xe9\x6f\x0e\x95\x01\x6d\x16\x99\x22\xdf\xbb\x1e\xa1\x87\x0f\x9b\xfb\x33\x79\x61\x20\x83\x3a\xcd\x1e\xd6\xf9\x78\x39\x60\xe2\xfb\x52\xad\x2c\xe1\x36\x25\x05\x78\x9f\x69\x1e\x3c\xf3\x56\x49\xc3\xbf\x76\x03\xd3\x4e\x02\xc8\x65\x11\xc0\xbb\xf2\xc1\xc6\x25\xe8\x12\xea\x8e\xa3\x2a\xc8\xb3\xff\x6a\xcc\x55\xda\xa0\xeb\x5f\x5a\x7f\x33\xe4\xef\xe2\x51\x56\xe4\xef\xda\x3d\xb9\x8d\xd9\xc7\xa2\x25\x79\x61\x38\xba\xea\xb7\xf5\x99\x49\x9f\x50\x31\x4c\x74\xc4\x5a\x8a\xea\x91\x87\x22\x9f\xe8\x89\xa8\x25\x79\x01\x24\x95\x85\xad\x7f\x55\x7d\xfe\x7e\x39\x61\x07\x46\x5c\xd5\x0b\x18\x15\xfc\x8d\x2e\xfc\x4a\xab\x49\x0d\x19\x2f\x0c\xc7\x54\x55\xbf\x21\x8c\xd7\x80\x78\x8a\x7e\x23\x04\x88\xe8\x0b\x59\x44\x21\xc3\x0b\xe6\x29\x67\xdf\xa0\x52\x2a\x2a\x80\x02\xb7\x99\x42\x32\x36\x1c\xf1\xfc\x50\x20\x23\x13\xd1\xfb\x73\x0e\xd1\xec\xd0\xb2\x8d\x48\x48\x83\x92\x02\xa0\x32\x52\x51\x97\x8a\xbe\x5f\xd8\xd5\x24\x56\x9e\x91\x92\x99\xa9\x0d\x02\xbb\xd8\x76\x42\x45\x01\x48\x3b\xb3\x16\x76\x35\x73\xd0\x5c\x86\x57\x89\xb2\x61\x15\xf2\x4e\xc1\x94\x33\xed\x7d\x5c\x7d\xb8\x32\x00\xea\x5d\xbf\xc5\x94\x0c\xfd\xeb\x36\xf6\xa0\x78\x4a\x2a\x62\x6d\x2b\x7d\xda\x44\x07\x3e\x11\x7d\xd7\x48\x3f\x0f\x70\xb1\x16\xb7\xf7\xc9\xf0\xad\x5d\xdb\x55\x2d\x22\xbc\xb0\x36\x1c\x40\x7a\x4f\x60\xee\x1f\x14\x47\x0c\x68\xb0\x02\xc4\x9c\xc3\xc9\x75\xfc\xad\xae\x0b\x73\x7f\x5b\xe7\x3d\x55\xb1\xa3\x0b\x81\xab\xd5\xa8\xd4\xf0\x2a\x00\x2b\x0b\x2f\x17\x9e\x78\x5a\x94\x7d\xbe\xd2\x0e\x23\x52\xf5\xd8\x81\x7e\x24\xb0\xf0\x94\x17\xcb\x93\x68\x40\x49\x05\xda\xd4\x2b\xdd\x2c\xd3\x98\x0f\xc4\xf1\x7a\x94\x14\xc4\xb0\xdd\x83\x11\xd0\x19\x64\x68\xec\xa1\x77\x15\x80\xee\xfe\x51\x88\x1f\xad\x00\x9d\x16\x5a\xdd\x4f\x22\xd6\x94\xfd\xc7\x89\xef\xad\x67\xc6\x2f\xdf\x59\x65\x7a\x01\xa0\xff\x64\x06\x9d\x08\xb5\xf0\x96\xf9\x20\x88\xc2\x36\x27\xcf\xb5\x53\x01\xec\xc1\xdc\x3e\x15\x05\x40\xde\x26\xd4\x6f\x04\xe3\x2f\x51\x91\x01\x72\x52\x44\x80\xed\x2b\x25\x9b\x69\x8e\x86\x19\x4a\x0a\x80\x74\xf8\x55\x98\x70\xc1\x7c\x78\x51\xca\xfb\xe8\x09\xb1\x8d\x11\x17\xb7\x3e\x1e\xdc\xc6\x2f\x43\x0f\x89\xd2\x4f\x15\x0f\xb8\xd5\x98\x0e\x16\x56\x1f\x46\xc1\x01\x9c\x84\x41\xc9\x1f\x3f\x8e\x1a\x82\x7e\x0b\x71\x02\x60\xd3\xe1\xa3\x9e\x60\x6e\x53\x3e\x15\xe7\x45\x0c\xa8\xbe\x54\x03\xad\x43\x6f\x28\xc9\x00\xd2\x35\x28\x73\x03\x83\x57\x54\xef\x12\xc3\x25\x8c\x69\x50\x82\x73\x0e\xd4\x78\x73\x74\x28\xd3\xb9\x42\xa0\x01\x4d\x42\xd7\xcf\xfc\x7d\xa3\xaa\x18\xb3\xd2\x3b\x8b\x57\x5c\xaa\xc3\x9b\x21\xd5\xf2\x88\x79\x2d\xd6\xe7\xd9\xe3\xc1\xe1\xea\xfe\x2f\x5a\xc9\x89\x1d\x6e\x74\x79\xab\x74\xca\x12\xf2\xa7\x22\xf3\x4b\xca\x84\xde\x35\xe7\x98\xa8\x14\x85\x74\x47\x9e\xc5\x8d\xef\xf1\xff\x7a\xe0\x16\x7d\x36\x37\xb0\x7b\x91\xd3\x41\xfd\x22\xb5\x14\xe7\xd3\xd7\xf2\xed\x41\xef\x4f\xb9\x7f\x64\x6d\xd4\x64\xd4\x87\x09\x8f\x2d\x40\x82\xe8\x3e\x28\xed\xa7\x5a\xf5\x09\xe7\x56\xfc\x2f\x93\xd3\x39\x29\xa9\x61\xaa\x96\xf9\x7d\x32\x3c\x2b\x15\x91\xd9\x3c\x11\x8b\x1c\x0a\xbd\xd2\xbc\x19\x8b\xd1\x92\xed\xdd\x63\xb5\xb3\xfd\x87\x50\x0c\x3a\x31\x38\x73\x32\x68\x3a\x3b\xee\x7d\xdf\xa7\xac\x04\xa9\x2b\x29\x2e\x90\x02\x3f\x46\xdf\xec\x77\x81\x33\xd9\xd9\xfe\x45\x28\xf5\x78\x5c\x34\x98\x1f\x3e\x4c\xd7\x8f\x0b\xd3\xd9\x77\xc3\xd7\xfc\xe5\xc4\xc8\x6c\x36\xef\xf0\x31\x8f\x18\x2c\x8e\x35\x3b\xbe\x5e\xcf\x3f\x57\xe1\x62\x60\xa8\xca\x52\x7c\x74\x66\x82\x76\x94\x77\xe6\xbc\x8b\x77\xbd\x0b\xa3\x76\x17\x4d\xcf\x06\x84\x6f\xfa\x6a\xda\xfc\xf9\xcc\x1d\xed\xad\xd7\x01\xba\x9f\x0c\x7c\xb6\x79\x73\x98\xb9\x71\xd2\xc2\x43\x42\x84\x74\x7e\xe2\x9f\x95\x77\x0b\x01\x32\x14\x16\x19\x1f\xeb\xed\xa6\x69\xba\x7c\x4f\x37\x23\x83\xc7\xbc\xcb\x37\xb8\xc9\xaf\xa6\xc8\x8b\xd4\x85\xc6\x77\xfb\x40\xb4\x5d\xe2\x4f\xad\x3f\xdd\x13\x3c\x6b\x6f\x3b\xf5\xb8\xe0\x90\xc9\x1a\x37\xc8\x0b\x29\x14\x27\xb0\xa4\xf3\xc8\x68\xea\x10\x8b\x79\xa6\x3d\x2d\xea\x05\x5f\x59\xfb\x85\x36\x1d\xf7\xee\x05\x6d\x3c\x6d\x04\xf2\x98\x07\xef\x31\x1b\x85\x0c\x0c\x52\x9f\x9e\xbd\x96\x2e\xf9\xcf\xdc\x00\xae\xc9\xa2\xa6\xc8\x8d\x1f\xdf\x7d\x7a\x54\x14\x45\xd7\xb9\x2c\x1d\x6e\xba\xef\x8a\xff\x08\xcd\xfd\xed\x23\xe4\xbb\xe0\x77\xf5\x96\xf4\xb8\x50\xb4\xc2\xe3\xdb\x97\xb0\xa1\xe7\x26\x4a\xba\x4f\xa2\xde\x26\x17\x8c\xfc\x8a\x61\x54\xab\xd6\x24\x18\x34\x5d\x96\xf6\x28\x0e\x29\xe2\x89\x53\x7f\x31\x11\x97\xe9\x21\x10\xfa\xb8\x3e\xde\x99\x87\x97\xd8\xa5\xb8\xd7\x95\x72\x1f\x5b\x8d\x9a\x9f\x18\x69\xf6\x8c\xcd\x3a\x67\x9c\xf2\x62\xc3\xff\x74\x44\x09\x5a\xb8\x77\x6f\xb8\x95\xb3\x8c\x35\xb1\x57\x0e\x6c\xd6\x9a\x37\xab\x17\x06\xb0\xf2\x5f\x3b\xba\x77\x26\xe5\xfd\x21\x92\x38\x39\xee\x5e\x33\x53\xfd\xa5\x83\x4f\x8f\xf2\x5f\xa8\xb4\xaf\x66\x3b\x78\xa2\x17\x71\xfa\xae\x5e\x21\xa7\x36\x5f\x84\xff\x8a\xb1\x6c\x78\xd4\x65\xd7\x81\x07\x65\xc2\xd8\xa1\x5c\x9b\xce\x81\xa4\x89\xa7\xe7\xfa\xa4\x2d\x1f\x78\x91\x0d\x25\xa2\x29\x0a\xe9\x58\x15\x8e\xa8\x88\xc1\x6b\x7f\xdc\xc4\x07\xab\x3f\x1e\x1a\xae\x74\xfe\xd1\x5a\x58\x86\xb2\x79\x75\x28\xc9\x7b\x5f\xda\xf1\x42\xaf\xc4\xee\x45\x82\xf5\xcc\xec\x9c\x9a\xfb\xfa\x57\xf9\x05\xcc\x2d\x84\x72\x00\x7a\x06\x3a\xcc\xae\x1f\xa0\xc9\xfd\x17\xf8\x63\xc7\x9e\x77\xef\x8a\x6c\x6f\x09\x3f\xe8\xfc\x3d\xf6\xa7\xba\x3e\x7f\x49\xaf\x53\xf0\x09\xfc\xfd\xd3\xe8\x1d\xf3\xf4\xb8\xa0\xc1\xef\x62\x58\x42\x01\x7b\x8a\xf8\xa3\xaa\xb6\x57\x0e\xb2\xf6\x66\x4a\x47\xf1\x0b\xb6\x18\x62\xd7\xd8\x5b\x6f\xbd\x51\xb2\xb3\xc0\x5e\x60\xaa\x6d\xac\x5b\xf6\x38\xc6\x73\xd0\xdf\x56\xef\xf0\x11\x59\xcb\xe7\x25\x54\xa7\x3b\xc8\x42\xe5\xc6\xdb\xdb\xf1\x3d\x6e\x51\xc2\x94\x69\xbf\x3d\x8e\xef\x79\xe3\xab\x30\x4c\x44\xa6\xdb\x2c\xb8\xb9\x6b\x53\x08\xa1\x54\x5a\xcb\x95\x2f\x3f\x96\x92\x7e\x7f\x19\x81\xfc\xc1\xe1\x7d\xe4\x09\x9e\xdf\x5f\x45\xdf\x09\x61\xaf\xbd\xf1\xd8\x03\xd3\x90\x52\xdf\xfc\xc8\x9d\x59\xcb\x16\x87\x62\xbd\xd7\xd7\x8c\xf2\x34\x7d\xa9\xf1\x77\x70\x51\x2f\x50\x43\x43\xcc\xd1\x37\x9d\xfa\x78\xdc\xb9\x4e\x1f\x41\x6a\x45\x59\x51\xa4\x22\x0f\x32\x97\xcb\x83\xd8\x45\xff\x5c\xdf\xca\xee\x44\x4f\x2d\x28\xda\xa8\x14\xc4\x66\x53\x55\x42\xc1\x47\xd4\xcb\x1f\x60\x52\x08\xc0\xbf\xc6\x9c\xae\x5c\xcf\xf5\xaa\x50\x20\xb0\x70\xf0\x42\x7a\xb9\x2f\xc7\x3c\x0e\x19\xa4\xbf\xaf\x21\x59\x5c\xe0\xd2\xb3\xe5\x69\xbc\x7d\x69\x29\x01\x15\x3f\x80\x3e\x28\x52\x2d\x38\x94\x9f\x27\xee\x3d\x13\x1d\xc7\xe6\xed\xdd\x8e\xe8\x0e\xa6\xee\x5b\x2c\x07\x01\x3f\xb9\xdb\x61\xf7\x9d\xf4\x28\x86\xf6\xaa\x16\xd8\x42\xff\x84\x8e\xdf\x43\xeb\x31\xe6\xf4\xfe\x10\xc7\xd3\xb5\x6c\x13\x1b\x98\xb1\xea\xc5\x86\x00\x37\x69\xea\xc7\x5e\x2b\xdb\x77\x87\x8d\x1b\xee\xde\x7d\x68\xe0\xe8\x1c\x5d\x4f\xc2\x2e\x94\xdd\x5c\x53\x55\x7e\xf4\xe4\x1b\xe7\xc8\xae\x4e\x08\x95\x71\x91\xf4\xd8\x5d\x97\xec\xb9\x37\x0d\x38\x2f\xe2\x04\xe2\xa6\x33\x79\x69\xc8\x76\x73\xc8\x37\x22\xc9\x45\xb7\x81\x95\x9a\xc0\x09\xf6\x64\x84\xb1\xe4\x07\xe6\xa7\x47\xa9\xe8\x1d\x14\x57\xe1\x54\xc6\x8f\xe7\x69\x17\x8e\x9b\x07\x6c\xf3\x27\x46\x1b\x62\xa8\xa8\x3a\xcf\xa5\xca\x23\xc8\xb7\x3c\xe6\x3d\xa5\x78\xde\xae\x9a\xe0\x5f\x2d\x60\x8a\xe8\x18\xd3\x51\x09\x04\x60\x71\x25\x31\x56\xcf\x71\x4e\xb3\xa6\x6c\x63\x13\xba\x43\xa5\xe7\x3a\x39\x9c\x9d\x64\x43\x45\x66\x8f\x04\xed\x9d\xd0\x67\x65\x41\x6c\x24\xbd\x30\x0f\x7d\x91\x6a\x99\x95\xad\x35\xfb\xe8\x99\x29\x2d\x23\x0b\x8e\xca\x37\x7d\xc3\x74\xc1\x47\xd3\x7d\x4f\x23\x5b\x30\xd3\xc0\xe2\x66\xcc\x36\x85\x53\x36\xcb\x69\x92\x11\x11\xa0\x58\x02\x43\xdd\xb7\xfd\x2b\xea\xc6\x22\x62\xcf\x8e\x05\x3c\xaf\xba\x33\xcb\xeb\x0d\x87\x3d\xa8\x00\xef\xb9\x6e\xb7\xdf\xed\xab\x32\x43\x85\x5b\x59\xe3\x5b\xdf\x51\xe9\x15\x05\xe5\xd6\x3f\xb8\x98\xcd\x74\xae\x0d\x07\x50\xd9\xe2\xe8\xc4\xe2\x16\x0d\xe1\x9b\x0f\x05\x53\xce\x90\xfb\x8e\xde\x7d\xf4\x62\x8c\x7b\x26\xed\x24\xc3\x8c\xee\x8a\x5f\xa5\x17\xd2\x8e\xc5\xf8\xb1\x89\xcf\xb2\x29\xf5\x5c\x2d\xf4\xfc\x9f\x7a\xf2\x13\x3b\x91\xac\xf2\x2d\xc5\xf8\x93\x3e\x7e\xdc\x77\xa7\x23\x5f\x4e\x04\xf6\x1d\x81\xfe\x30\x46\x0c\xf8\xb1\x16\x0b\x1f\x98\xe0\xb5\xa1\xc5\xa8\xb0\x67\x32\x2a\xad\xfd\x6c\x65\xfa\xc2\xc4\x69\xc4\xe5\x6e\x49\xef\x99\xd4\x90\x88\x5e\x53\x44\x4f\x0b\x59\x9b\x3d\x5b\x15\x53\x27\x31\xba\x29\xc6\x78\xc8\xbf\x90\x76\x37\xdc\x62\xdf\x4e\x7d\xd4\xdf\x3d\x6d\x02\x72\xda\xd6\xfe\x6b\x80\xad\x65\x48\x37\xff\x21\xa1\x3e\x22\x77\x11\xe2\x40\xd9\xb1\x28\x1c\xfd\xa2\x3b\x53\x01\xcf\x79\xf4\x4c\xce\x5a\xdc\xc2\xf1\xb5\x0b\x22\xe4\xaa\x1a\x16\x0d\xbd\xb9\xa8\x1b\xcc\xe4\x6d\x38\xf0\x3c\x25\xb7\xf0\x74\x9d\xe7\xc5\x70\xb0\xbb\xef\x7b\x49\xc8\x8c\x49\x61\xf1\xa7\x22\x7e\x2f\x8a\x2c\xaf\xca\xfa\x6d\x48\x71\xbd\x4b\x4a\x68\xb1\x04\xbf\x80\x4d\x87\xed\x9a\xc5\xfd\x04\x71\x4a\x22\xd3\xbd\xf7\xb7\x0f\x8f\x42\xf1\x8d\x54\x5a\xe6\xf5\x76\xd3\xc9\xb4\xd9\xdb\x7f\x1e\x6c\xe8\xaa\x93\x30\x70\xb2\x42\x01\xe7\xcd\x5f\xad\x1f\x44\xbd\x11\x15\x13\xfd\x2e\xf8\xcd\x21\x8a\x84\x38\xc3\xba\x92\x2f\x79\x2c\x96\x9a\x33\x3e\x49\xd8\xf3\xc4\xe7\x40\x72\x5d\xe2\x93\x19\xba\x3a\xe0\xc1\xaa\x1d\x34\x1e\x2b\x9a\x7d\x62\xe3\x2d\x9b\x3b\x6c\x19\x21\x80\xd5\x26\x05\x70\x92\x61\xb2\x84\xf3\xe9\xb7\x2b\xc4\x5e\xad\xb1\xd5\x7a\xb6\x11\x66\x83\x26\x0c\xfb\x22\x05\x04\x80\xb1\x23\x47\x4c\x04\x6a\xba\x7f\x75\x3c\x2a\x7f\xdf\xd0\x49\x91\x37\x3d\x94\x9f\x12\x07\x83\xad\x81\xe6\x88\x7f\x8e\xc4\xd5\x47\xa4\x73\x0e\xa2\x87\x7e\xd3\x4e\xf0\x2c\xc2\x00\x77\x36\xe1\x38\xae\x7e\xba\x91\x16\xb5\xca\x98\x9c\xf0\xf3\x1c\x1e\x0e\x3d\xfc\x5b\x26\x4f\x5c\x64\xbd\x3d\x67\x03\x2e\x9d\xe7\xfa\xb8\x7b\xad\xe4\xf5\x04\x53\x3b\x26\x01\x54\x78\x7d\x37\x6a\x36\xb4\x26\x4c\xcc\x31\x24\x24\xfc\x94\x75\x60\x97\xb1\x47\x82\x73\x8b\x0c\xf8\x01\x68\x99\x4a\x6b\x7e\x02\xe3\xbc\xc3\x9c\x3e\xe7\x2d\x33\x0f\x70\xde\xf6\xd9\x71\x2d\x66\x35\x0d\x1b\x34\xed\x23\x8c\x25\x52\x6d\xa2\x54\x70\x7b\x24\x98\xea\xbb\xd4\xe9\x71\x97\xa2\xcb\xf1\x82\x59\x49\xd6\x84\xc9\x02\x13\x17\x0c\x08\xf5\x3e\x84\x1e\x76\x5e\xa0\x96\xe6\xdf\xbd\xc2\x7b\xf9\xf9\xd3\x14\xfd\x5a\x13\x5d\x1a\x12\x1a\x4a\xe4\xb3\x89\xb2\xa6\xba\xa2\x16\x43\xe1\x73\xcb\xe7\xbc\x43\x03\x9b\xac\xf7\x4d\xdb\x61\xc0\x63\x49\xc8\x53\x53\x2c\x66\xab\x79\x41\xfe\x5a\xd4\x6f\xd3\x83\x03\x9f\xdf\xed\x24\x34\x94\x6d\x02\x13\x96\xd3\x1c\xef\x69\xa9\xb4\x1c\x8e\x6d\xa6\xbf\xf5\x6c\x3f\x9a\xe9\x85\xe5\x05\x45\x88\x61\x9d\x3a\x24\x9d\x34\xcf\xbd\xba\xb1\x7b\x92\xe1\xfe\x04\xc1\x02\x23\x27\xcd\x0b\xdf\x82\x0e\xb3\x5b\x33\xd5\x8f\x2a\x7b\x2f\x87\x06\xa7\x04\x32\xcf\x03\x1c\x9d\x63\x6a\xb5\xea\xa5\xb2\x7a\x32\x3c\xcd\xb7\xa1\xfb\x0b\x98\x6a\xe2\xd0\x58\xfc\x27\x05\x6a\x65\x88\x56\xaf\xb7\x9d\x36\x89\x95\x43\xb1\x32\xd2\x81\x35\xbe\x87\x50\xe2\xd3\xdb\x32\x7e\x59\x1b\x8a\xea\xa3\xf2\x16\xb5\x34\x6c\x0c\x38\x69\xc7\xb1\x5d\x33\x95\x65\x0b\xf5\x91\x00\xb1\xc4\xee\x34\x4b\x0f\x5e\xd4\x5b\x18\xce\xc7\x21\x9b\xcd\x2a\xb5\x43\x10\x9d\x2b\xc4\xe9\xe1\xc0\xca\x63\x4a\x1c\x7e\x7c\xfd\x31\xa9\x13\x33\xcf\x8d\xde\x5f\xb8\xed\xe6\xb2\x2c\xa5\xc0\x92\xfe\x82\x12\x18\x61\x12\x8c\x4b\x5f\x1f\xca\xbd\xca\xb8\xc2\x83\x20\xc5\xc1\x60\x16\x52\x69\xce\x58\x0e\x8b\x52\x6d\xe1\xa9\x27\x82\xc1\x53\x26\xa2\xf2\xa4\x70\x9c\xc8\xcf\xd8\x8d\xf8\x85\x34\x8c\x8d\xe1\x55\xa1\xb8\xe5\xfb\x4d\x0f\xa4\x88\x63\x38\x42\xcc\xf2\xfb\x1c\xb4\x4c\xa9\x75\x3b\xe8\xba\x35\xbb\x4d\xe8\xc3\x3f\x8a\xed\x30\x70\xa1\x3b\x0d\xb3\x9d\x17\xd2\x58\x9f\x8e\x92\x8a\xa0\xe3\x23\xfa\xcc\xc8\x36\x45\xb5\xa2\x04\xa3\x5e\x8b\xbf\xc8\xb3\xb2\x9e\xd6\x7e\x90\xc8\x40\x07\x28\xa3\x72\x8b\xe4\x8d\x3c\xde\x35\xbc\xf4\x8a\x7b\x1a\xce\x3e\x07\x23\x27\xb5\xa7\x53\x33\x6e\x7e\x28\xf5\xfe\xd1\xbd\xae\xe5\xc1\xb0\x58\x23\x80\x6c\xb3\x2e\x9a\xd2\xd9\xd7\x52\x97\xc6\xb8\xbb\xee\xb1\x44\x11\x99\xe1\x8b\x3c\x7f\x90\xc6\x2d\xf4\x49\x16\x0a\x47\xdd\x2e\x3a\xd5\xba\x0a\x10\x4c\x2d\x79\x56\xd7\xfd\x55\x5f\xb1\x31\x4b\xf2\x93\xe2\x60\xf7\x33\x2c\x4d\xad\x5b\x3e\x7d\x8f\x72\x34\x99\x10\xb2\xad\xcd\xfe\xa1\x04\xcd\x31\xd2\x81\xd8\xa4\x4f\xe8\xa3\xe2\x5a\xf4\xcc\xcd\xab\x2c\xbd\x0d\x51\x40\x0a\xc1\x20\x9a\x5d\xfc\x9d\x45\x21\x9c\x8e\x79\xf5\x2a\xde\x11\x3a\x80\x72\xf8\x38\x01\x83\xa2\x79\x91\xbc\xe9\xf6\xe5\xa5\x16\x71\xca\x27\x4d\x80\x9c\xf4\x75\xa7\xbc\x66\x43\x82\xaa\xfc\xe5\x2d\x8f\x5c\x41\xfb\x08\xcd\x54\x26\x3a\x80\xfb\x50\xf1\xb6\xd9\xec\x24\xf1\x38\x89\xb0\x7e\x89\x18\x72\xa2\x42\xa6\x31\x52\x90\x26\xa5\x9d\xbb\xb0\x76\x96\x70\x53\x1d\x06\x2a\x8c\x5a\x10\xd8\xb3\xa7\xa1\x54\x5d\x52\xe1\x7f\x83\x31\xf3\x5c\x30\xc7\xb0\x0a\x75\xef\x43\xe8\x13\xf8\x05\x00\xba\xbb\xd5\xd0\xf7\x8a\x55\x5f\xb9\xfd\x3d\xab\x77\x76\xd4\xa1\xe6\x84\x68\x98\x17\x54\xf1\x86\x0b\x37\x2f\xa9\xea\x5f\x05\x40\xa8\x53\x01\xad\x02\x31\xf3\x27\x76\x6c\x65\x18\xca\x3f\xd3\x9f\xb0\xa5\x81\x93\x78\xfb\x54\x6d\xe8\xb4\x4b\xf1\xb6\xbc\xb6\xd2\xf3\xbf\xfc\x0a\x80\xbb\xd4\x3b\xe6\x1e\xe2\xdf\x97\x0d\xe3\xfa\x63\xbb\xc3\x9c\x33\xbf\xc8\x8c\x0a\x48\x23\x18\xf8\xcd\xd2\x4f\x8c\xda\xa5\xb0\x39\x68\x8f\xf2\x43\x31\xa2\xde\xb5\xf1\xd8\xd0\x0f\x7b\x78\xca\xa1\x93\xf5\x0c\x43\xf9\x37\xe5\x4e\x48\x84\xd2\x69\x7e\x88\xb8\x03\x9b\x42\xed\xbb\x4f\xa3\x90\x28\xf1\x38\xf9\x8a\xb3\x74\x4a\x63\x41\xc4\xe9\x74\xee\x6a\xdc\x8d\x64\xc9\xd6\x2a\xf6\x24\x31\x07\x2a\x16\x72\x52\xc7\xb6\x9b\xc7\x36\xa5\x53\xf1\x46\x71\x4f\x5b\x0b\x0b\x1e\x7f\x1b\x7b\x98\x2e\x0f\xc0\xcb\x8f\xb6\x69\xe2\xc5\x21\xd9\x9d\xcf\x78\x18\xbb\xfa\xc4\x65\xb9\x6a\x4a\xd6\x69\x28\xc3\x39\xe1\x24\x1f\xab\xf3\x37\x84\xf0\x66\x51\x8e\xd6\x61\xbd\x1c\xb5\xec\x51\x24\x20\x4f\xf4\x58\xbd\xa6\x69\x23\x1a\x37\xf4\x73\x0e\xfa\xe6\xe8\x3a\xdc\x70\x91\x21\x79\x58\x1a\xc1\xa0\x1a\xb0\xd8\x62\x59\x03\x7b\xc5\x26\x5b\xf7\x44\x94\x9e\xe0\xaf\x0e\x03\xc3\xfe\x39\xe6\x1e\x65\x87\x56\x79\xab\x81\xde\x62\xb4\xae\x54\x6b\x18\xa4\x4c\x3f\x05\x39\xe9\x03\x0c\x15\xbe\x06\x92\xa3\xec\xca\x50\xb4\xad\xc9\xac\xb8\xce\x02\x90\x93\x7f\xe2\x36\xde\x42\x8d\x24\xd7\xca\xab\x1d\xef\x36\x5d\x29\x5a\xee\x2b\xf7\x81\x27\xaf\x46\x56\x50\x52\xc3\x49\x78\x77\xf9\xbc\x75\x3d\xee\x31\x3d\x91\xf6\x8e\x4f\xc4\xcf\x13\x51\xbc\x9f\xf0\x59\xf0\xef\xf2\xb0\x67\x23\x69\x35\xb6\xb9\xa0\xb7\xb8\xff\x56\x83\x20\x46\x69\x8f\x44\xe8\x7f\x65\xae\xb3\x0d\x20\x53\x97\x16\x4a\x60\x32\x8f\x3c\x8d\x50\x87\x01\x23\x2a\x77\x78\x87\x41\xfe\x61\x35\xfe\x53\xd7\xb0\x45\x26\x9d\x9d\xc7\xca\x9b\x4b\x1c\xaf\x0f\x2f\x90\x93\x92\x74\xf9\xa8\x94\xb1\xd6\x1d\x9f\x63\xf1\xbf\x75\x7e\xd2\xd2\x9f\x48\x71\x21\x67\x5a\x93\x07\x21\x44\xad\x70\xed\xe7\x99\xe1\xfe\xb8\x30\x77\xed\x86\x62\xc8\xd8\xc7\xb0\xdf\x0f\x8f\xe9\x69\x28\xa3\x3e\xdd\x5c\xb8\x49\x10\xd7\x16\x66\xe9\x71\x59\x60\xfa\x75\x66\x28\x0c\x80\xc8\x00\x05\x9a\xa7\xf0\x1f\x6f\x9e\x0b\x31\x04\x9d\xdd\xaa\x46\x15\xd7\x87\x93\xf4\x34\x94\xa4\x9f\xa3\xa1\xb3\xd8\xe2\x6c\x3a\xea\x6e\xf9\xda\xa9\x91\x4d\xdd\x76\x18\x60\x20\x55\x43\xed\x17\x45\xa0\x9f\x2d\xaa\x98\x09\x7c\xc0\xa7\xbe\xa6\xb5\xac\x09\x23\xa0\xed\x7c\xd3\x04\x08\xb3\x3c\x6c\x0c\x34\x94\x51\x51\xe2\x8d\x55\x6e\xe6\x62\x8d\x56\x57\xd3\x9e\xb7\x56\xd6\x4f\xd2\x03\x40\xf9\x94\x17\x7f\x1f\xaa\x4b\x3b\xbe\x5a\x7a\x25\xe2\x7c\x35\x8f\x19\x01\x2a\x57\xbc\x66\x17\x91\x2a\x48\xe3\x20\x8d\x60\x60\x4a\xf3\xc2\x5e\x78\x61\x11\x50\xe3\x65\x68\x56\x5a\x1e\xf2\xdc\x08\x00\xd2\x81\x75\x68\xfb\xed\x8b\x6b\x85\xb7\xcc\xb7\x59\x9f\x12\xd6\x8c\x17\x47\xd2\x07\xdb\xc3\xec\x91\x08\xa9\x34\x63\x1b\x91\xfe\x30\xb1\xb8\xe8\x0d\x5a\x28\x90\xf1\x1c\xc0\xdd\xad\x08\xfb\x7c\xe1\x6d\x58\x70\x44\x63\xd1\x77\x2a\xc5\x1f\x69\x5e\xb3\x25\xf8\xb7\x39\x72\xce\x79\xd2\xb2\x92\x07\xed\xa3\xc5\x1b\x63\x1a\x94\x6d\xd5\x55\xf5\x2e\xe6\xa2\x8c\x4f\xc8\x7c\x6a\xdc\x02\xbd\x1b\xd7\x48\x00\xd2\x5a\x59\xb4\x6c\xf4\x95\x0a\x85\x7b\x6b\xfc\x7d\x09\xee\xbe\x87\x90\x38\x2a\xd1\x05\x96\xd8\x25\xde\x33\xdd\xaf\xed\xa9\x74\x9b\x3c\xab\xfa\x78\x68\x6b\x46\x31\x34\x12\xc5\x85\x41\xb6\x59\x18\x4e\x57\x15\xa3\xa9\xba\x48\x08\xd1\x6e\x1c\xfd\x14\xef\x3f\x2b\xb4\xf6\x2a\xb4\x2d\x5c\x67\xbb\x4b\xbd\x0a\xcf\xb5\xd6\x15\x85\x05\xb4\xcc\x33\x3a\x3c\x49\x51\x2b\xaa\x35\x51\x99\x79\x3b\x54\xf7\xb6\xb5\x31\x8b\x40\xa9\xf8\xb9\x76\xa9\x57\xa2\xf2\x72\x3c\xfb\x87\xdd\x4c\xfa\x00\xe5\x4f\x38\xa4\x94\x98\x04\x76\xfc\x0b\x9e\xb2\x6b\xed\x00\x89\xb7\x85\x6e\x31\x3d\x09\x22\xcf\xf1\x25\xcf\x2e\x8d\xb1\x49\xe3\xa0\x2b\x6e\x58\x38\x5d\x81\xb1\x71\x10\xb2\x2d\xb8\x18\xde\xda\xfe\xf6\x97\x1f\xe2\xbf\xe2\x60\x7f\x9e\xb9\x2e\xf6\x76\xb2\xbf\x43\x8c\xda\xb8\xaa\xa7\xbf\xb7\x96\x11\x89\x3c\x8f\x7f\xd1\x3b\xda\xcc\xa9\xa0\xeb\x21\x63\xaf\x8e\x43\x6f\x7e\x77\x44\x22\xc4\x4e\x0b\xac\x62\xa4\xe2\x9e\x08\x1e\x78\x14\x35\xc4\x1a\x91\x2a\x15\xbe\x28\x6e\x5a\x7c\x71\xdd\x39\x59\xee\xad\x7c\x49\xda\xbc\xbd\x17\x95\xef\x01\xd7\x1d\x9d\x8d\x51\xd4\x72\xb7\x40\x64\xfe\xe0\xfa\xad\x52\xc5\xf3\x87\x86\x15\x16\xa9\x25\xcd\x68\x8a\x22\x0c\xcb\xb1\x65\xed\xe9\x1a\xf2\x2c\x58\x83\xd7\xce\x3c\x40\xdc\x32\x55\x34\x7b\xbf\xe2\x44\xd5\x84\x69\x50\x1a\xc1\x90\x4f\x98\x78\x20\x15\xd7\xfb\x78\x41\xe4\xfe\x0c\x52\x58\x9d\x8f\xdd\x41\xa9\xca\x21\xc5\xf8\x56\xf3\xaf\x7b\xb2\x3c\xba\xaa\x3f\xbb\xf2\x18\xbb\x0d\x45\x30\xea\x21\xbb\xce\x96\x97\x4e\xa6\x5a\xea\x14\xea\x4c\xee\x59\xa6\xcd\x73\x53\x5e\xf7\x8e\x76\xcb\xda\x98\x81\xce\x6a\x08\x81\x6a\x62\x65\x6b\x3d\xa8\xa2\xc1\x1c\x01\x66\x59\x1e\xd5\xba\x0e\xa6\x81\x3d\x67\x5f\xb5\x4d\x4a\x36\x06\x4a\xea\xd0\xe2\x56\x59\x07\xb6\xd4\x87\xe8\x9d\x4b\x34\x30\xe5\xe1\xdd\x79\x5b\x8f\xa0\xcf\x77\xba\x5f\xa7\xc9\xed\x16\x85\xcb\x72\x8a\xc3\x17\x68\x3e\x4d\x6b\x6b\xb1\x09\xb5\x5f\x2d\xdd\xd6\x19\x73\x3b\x29\xcb\x1c\x4a\xf8\xb5\x84\xc9\x37\xde\x4c\xd5\x1e\xdd\xc4\xe8\xfd\x6a\x35\xb4\xea\x3b\x94\x6a\x98\x9f\xc6\x6a\x46\x88\x94\xe5\x3d\x15\xff\xd6\xec\x98\xdc\x3a\x64\xcb\xd0\x72\xd3\x1a\xbb\xd2\xc3\xf4\x87\x83\x51\xf6\x62\x6d\xa7\xff\x93\x8b\xf4\x75\x4b\x50\x34\x9a\x9e\x13\xb2\xef\xea\x91\x44\x97\x0b\xd1\xbc\xa9\x8a\xa9\x27\xd5\x28\xdc\x90\x92\xca\x94\xe5\x2c\x24\x2c\xa3\xf8\x29\x42\x0b\xdc\x35\x13\x28\x3a\xd4\x84\x07\x4f\x07\x79\xed\x72\x52\xcf\xf2\x24\x74\x93\x83\x65\x4b\xe4\x05\x0d\xf6\xca\xf7\x72\xee\xea\x9d\x30\x7d\x3c\x36\xcb\x7d\xda\x24\x66\xee\x74\x0b\x5f\xbb\x60\xc6\x31\xe1\xb3\x3a\xf2\x7b\xa2\x6a\x41\x28\x6d\xcc\xbb\x79\xe3\x26\xbe\x0b\x8a\x71\xa4\x4a\xcb\xa4\xcd\x0e\x0f\x78\xbc\xc2\xae\x57\x26\x85\x60\x10\xbe\x14\x7b\xfb\xc6\x39\x5f\x27\xbc\x66\x49\xce\xa1\x78\xd4\x6b\xc7\x8e\x26\x33\xc7\xd7\x0a\x6c\x1d\x0f\x1b\xc4\xb8\x2a\xc9\x5b\xf7\x0f\x93\xc8\xa4\x86\xe5\xee\x29\x1f\xe4\x89\xda\x55\xa5\x1e\x31\x56\x6e\x31\x6e\x96\x63\xb5\x25\xf6\xf7\x3c\x31\x3a\xa3\x61\xec\xe7\xa2\xf3\xab\x94\x11\x58\xb3\xa5\x77\xa7\xa1\xb7\x0b\x5c\x1e\x6f\xd6\x8e\x9b\x95\xbb\x19\xed\xbf\xa8\x87\xcc\x64\x17\x9a\x22\xb3\x09\x3a\x2e\x79\xd2\xa2\x91\xba\x51\x84\x36\x1c\x32\x23\xcc\x70\x1f\xd6\x2e\xc5\x33\x67\xcc\xa5\xcb\x26\xb2\xdb\xd6\x7b\xc3\x17\x6b\x24\xaf\x7c\x57\xcf\x54\xcd\x6b\xef\x42\x71\xf4\xd9\x6d\x1a\x8a\xe7\x73\x49\x4b\xd5\xfc\x35\x59\x57\xaa\x73\x14\x2d\x6f\x96\x1e\x0b\x1c\x35\xca\x5d\xe3\x73\x6f\x33\xf3\x2e\xa9\xe8\x99\x89\xfa\x78\x10\x2a\xc7\x11\x3e\xf0\xd1\x7a\x6a\x5e\x9a\x87\x8d\x81\xf2\x79\x07\xca\x4e\x80\x66\xef\xa7\x31\x3e\x90\x4a\x83\x2c\xfa\x5e\xc4\x74\xea\x90\xd7\x44\x15\x74\x85\x6b\x70\x4e\xa7\xea\x58\x8d\xdd\x50\xea\x8e\xe5\x05\xd4\x60\x5c\xdc\xda\x7b\x02\x67\xac\x60\x65\x31\xaf\xeb\xd2\xa4\x80\x6b\x4e\xdd\xf3\xec\xad\x2f\x1c\xc9\x51\x11\x74\x78\x41\x0e\x79\x9e\x6a\xd6\xaa\x21\x3a\x7b\x64\xde\xc6\xd6\xbb\x43\x46\x87\x8c\xc4\x83\x42\x43\x3e\x1a\xc1\x70\xe4\x24\xbc\x87\x5b\x3f\xf3\xb6\xa4\xe7\xd8\x2f\x39\x4f\x25\x77\xa4\x10\xbf\xfe\x8d\xee\x6a\x6a\x12\x79\x01\x03\x3b\x1b\xd1\x5c\xae\xa2\xb7\xa3\x29\x72\x28\x4c\x3b\x47\x59\x0e\x07\xfc\x6a\x21\x83\xfc\xd8\x48\x0a\x9d\x6e\x79\x56\xe2\xd7\x12\x8a\x80\x8b\x70\x92\xf9\xca\x37\x1b\xca\xed\x52\xac\x66\xe5\x33\x4c\x70\x49\xfe\xf3\x82\x72\x5c\xa5\xa4\x33\xd3\x7e\x34\xc1\x63\xcf\x06\xf6\xe6\x18\x25\x63\x3b\x93\x9c\x7d\xa1\xf7\x6f\x6b\xb8\xd9\xbf\xdc\x38\x48\xb2\x61\x7e\x9c\xc5\xe8\x5a\xef\x62\x15\xf1\xa6\x5f\xec\x19\x41\x5e\x87\x54\x38\x9d\x70\x57\xa7\x35\x8b\xde\xc1\xe9\x3a\x0d\x25\xa9\x87\xea\xa9\x21\xdb\x4a\xbb\x48\xca\x96\x16\x5b\xaf\xb3\x92\x7b\xd4\xf2\xdc\x83\xc9\xac\x03\x0c\x7f\x64\x47\xb6\x64\x31\x93\x42\xa1\x4f\x9f\x41\x90\x05\xac\x5f\x9a\xff\xf1\x95\x8d\xe6\xd1\xe7\xb6\xb9\xd4\xa9\x21\xfc\x0b\x65\x3c\xb2\x02\x69\xf2\xed\xdf\x47\x8c\x84\xf6\xa4\x7d\x26\x2f\x1c\xf8\xd1\x50\x46\x3d\xf6\xb0\xf2\x93\x71\xc8\x78\xda\x6a\xaf\xda\xeb\xac\x9c\x7c\xcc\xfb\x5c\xb2\xd4\x8d\x4e\xd7\xe6\x58\x1b\xe7\x3a\x96\x58\x9e\x3c\x3f\x53\x00\xb3\x8f\x70\xe3\xc7\x68\xbb\x47\x3e\xd3\x1e\x48\x9e\x38\x3a\x2e\xc8\x8a\x0f\x53\x7b\x14\x66\xd6\xb9\x73\x8d\x64\xb8\xe6\x48\x65\x05\x2e\x85\x18\xf9\x41\x81\x6f\x88\x72\x60\xeb\xdb\x0f\xa2\x77\x10\x8e\x59\xaf\xb8\x71\x4b\xdc\x63\xc9\xf4\x27\xc1\x3d\x46\x81\xeb\x77\x52\xbb\x17\x88\xcb\xfd\x6a\xab\x30\x18\xf7\xeb\xb3\x51\xb3\x79\xf4\xa8\xaa\x65\xd8\x0f\xc5\x93\xba\x82\xb9\x67\x5c\xfc\x24\x2f\xef\x7c\x7f\x41\xbf\x9b\x0a\xe0\x4c\x32\x77\x8a\x02\x10\x34\x1d\x9c\x6f\x95\xd2\xa4\xfc\xc6\xfc\xbe\xb8\x8f\xc3\xd3\xc7\x46\xdc\x6f\x7a\xb6\x74\xf6\x6e\x07\x27\xb5\xd2\x76\xf8\x81\xf7\x23\x71\x16\xdf\x9f\x4b\xa2\x5f\x3a\x7f\x18\x09\x1c\x7f\x1d\x57\xff\x75\x3a\xed\x85\x75\xb0\x51\x13\x81\x2d\x73\xef\x3e\x01\xd0\xe8\x14\x5a\x17\x86\xd0\x3a\xb0\x45\xbf\x1c\x68\x74\x51\x4e\x0e\x0b\x95\x33\xaf\x7c\xa7\xb8\xb4\xa7\x64\xc5\x41\xda\x40\xc1\xec\x3f\x07\x7b\x52\x73\x86\x51\x32\x51\xdb\x73\x30\xbf\x9d\x26\x17\x63\x47\x93\xdf\xf2\x5c\x52\x43\x5d\xb8\x37\xac\x62\xeb\x9c\x14\xc2\xdb\x4b\x60\xc5\x69\xb0\xf9\x56\x4d\xca\x86\x8f\xfa\x08\x21\xc6\x30\xc2\x57\x97\x63\xf4\xce\xd8\x77\x91\xbe\xed\x0a\x8a\x24\x8f\xfa\x34\xc9\x6a\x3e\x7d\xc0\xc5\x2f\x89\x17\xf5\x45\xff\xde\x6f\x2c\xbf\xd4\x21\x49\x5d\x2f\xf4\xaa\xf4\x2b\xeb\x1e\x8c\x2d\xe9\x6e\xc5\xc7\xdf\x75\x94\x1a\x83\x63\x90\x07\xfa\x8c\xf7\x3c\x57\xc8\xc4\x92\xa7\xe9\xbd\x0f\x23\x15\x31\x86\x2a\x1c\xbd\xb4\xb1\xe2\x95\x6e\x1b\x43\x1e\x27\x8a\xe0\xf9\x66\x16\x97\xbc\x70\x84\x99\x0c\xbf\x06\xe9\x14\x50\xe4\xc1\xc1\x1e\xc7\xf8\xa3\x5a\xf9\x69\x14\x31\x4a\xb5\xe6\x2a\xd7\x85\x95\xf6\xf2\x2a\x79\x9f\xa2\x67\xd6\x0d\xee\xac\xf6\x95\x84\x78\x34\x07\xa7\x2d\xd3\x73\xc7\x51\x20\xfd\xd9\x08\x39\x59\x0a\x5f\xa5\xbc\xf7\xae\x0f\x52\xd8\x23\x1d\xed\xc3\xf1\xf1\xd0\xe5\x28\x3e\x3b\xac\xd6\x6e\xf8\xc7\xf7\x22\x96\xf8\x63\xf7\x1b\xb7\x56\x14\xce\xfd\xa2\x5a\xc6\x52\xb1\xec\x18\xc3\x20\xac\xf6\x8a\xf5\x1e\x70\x92\xe5\x11\x6b\x24\xa1\xd1\xe1\xcc\x58\xff\xa3\xb2\xc2\xff\x69\x01\x79\xaa\x47\x11\x17\x23\x5e\xbd\xe1\x41\xb3\x52\xcd\xf5\xbb\x46\xc5\xc9\x44\x37\xda\x57\x2d\x68\x09\x44\x61\xb4\x01\xcb\xcf\xb0\xb6\x30\x40\x2e\x20\xd2\x02\x85\x30\x3a\x24\xc9\xa2\x28\x18\xa3\x1d\xa3\xb9\x8b\xe6\x74\x27\xc5\xab\xab\xa6\x13\x3e\x86\x75\x6b\xac\x40\x8e\x5d\xd7\x4c\x00\x8e\x8d\x77\x15\x2e\x85\xf0\xfe\x69\x86\x67\x8c\xba\x1e\xf1\x5a\x29\x4e\xea\x7d\xfa\xd7\x08\x98\x19\xc7\xbb\x77\xeb\x01\x28\x6c\xea\x48\xcd\x36\xd9\x68\xfe\x20\x3f\x39\x00\x7b\xcf\xb2\xe9\x7d\x54\x01\x9c\x89\xc2\xd3\xf8\xe4\x85\xd4\xe7\x71\x74\x2e\x1f\x0d\x19\x1b\xbd\xdc\xc5\xdf\xf2\x7d\xdc\x62\xf2\x7b\x0e\xcc\x1b\xeb\x3f\x24\x96\xfb\x03\x00\xb0\x57\xb5\x08\x20\x63\x4b\xca\x98\x30\xd9\xa7\x6e\x47\xe4\x9a\x87\x3f\x96\x7a\xbf\xe7\x60\x32\x14\x78\x89\xe7\x6e\x7f\xef\x9d\x6b\xbb\x2e\x66\xb5\xcf\x2c\x5b\x6e\x00\x7a\x16\x00\xbc\x92\x88\x0b\x50\x6f\xa1\xef\x2f\xe1\xf0\xf9\x8e\x4a\x8b\x21\xdb\xd4\x1f\xa9\x91\x98\x1b\xe5\xaa\xfa\x87\x63\x96\xc1\x8e\x84\x17\x36\xbd\xfb\x76\x19\x3f\x00\x00\xf4\x7f\xf9\x4e\x94\x2c\x34\x4b\x54\x26\xcf\x35\x0a\x4f\x29\x1b\x8e\x38\x1c\x9d\xfc\x40\xb0\xdf\xa1\x03\xc0\xa2\x82\x60\x9f\x4b\xdf\x86\xeb\x94\xff\xa1\x2a\xb3\xcb\x16\xc6\xb4\x67\xcc\x29\xff\x36\x07\xa3\xac\x0f\x80\xbd\xdf\xde\xc8\x66\xba\x0d\x55\x5f\x19\x80\x33\x91\x1d\x51\xe9\x25\xcc\xbe\x3b\x64\xb4\x81\x01\x90\x57\xfd\x37\xfe\x1f\x8b\xdb\xd3\xaa\xac\xd2\x7b\xb6\xf8\xc4\xf5\x73\x00\x80\x97\x8f\x5e\xd0\x0b\x3f\xb8\xc8\x2b\xac\x72\xa7\x98\x9c\x4f\xf5\x8c\x5f\x8a\x07\x00\x30\x23\xcb\xb3\x14\x86\x6c\x74\x20\xcf\x9f\x0e\x33\xaf\xd1\xea\x5c\xf5\xc4\x97\xb5\xdc\x50\x00\x00\xac\x89\x4d\x7a\x0d\x7e\xb2\xff\x7e\xed\x6f\xe6\x57\xaf\x22\xf7\x9f\xc5\x0e\x9d\x39\x41\x9e\x63\xb4\x00\x80\x06\x07\x55\xcc\xea\xca\xc3\x17\x44\x74\x1d\x4a\x50\xae\x56\xd8\xe9\x0d\x27\x55\x00\x80\xd2\x2d\xdb\x6d\x11\xae\xde\x81\x98\x6f\xf4\xe7\xf2\x4e\x86\xab\x7b\x7b\xca\x51\x27\xcf\x72\x8e\xa4\xa1\xf2\x51\x32\xa2\xdc\x53\x35\xc4\x67\x6f\x1e\xb2\x81\x9d\x27\x93\x45\x2c\x2f\x2a\x40\xe2\xfc\x2a\x81\x7a\xf2\x67\x57\x6c\xc0\x7f\x61\x7f\x19\xc5\x9e\xe4\xe3\x5d\xe8\x96\xab\x33\x74\x82\xf2\x5e\x0e\x20\xe6\xb4\xb8\xe2\x54\x5b\x1e\xf0\x88\x80\x5b\x70\x20\xcf\x57\x16\xbb\xf4\x13\x2b\x1f\x94\xb0\xc1\xe5\x07\x03\x00\x37\xa8\x3e\x48\xe1\x07\x0f\xb1\x0a\xbe\x3a\x90\x9d\x34\xf1\xe7\xe9\x06\xed\x15\x35\x00\x90\xab\x03\x14\x8a\x3c\xc3\xb4\x19\xb0\xcb\x14\x6a\xa8\x66\xa5\xf6\xbd\x16\xcb\x1a\x8a\x01\x7a\x00\x86\x83\xff\x2d\xd8\x85\xe5\x6d\xe8\x40\x2b\x68\xf6\xa0\x38\xa0\x36\xf4\x9f\xa5\xc8\x54\xbc\x70\xee\x81\x28\x00\x80\x8d\xb6\x8f\xb0\xe6\x44\x64\x5e\xb3\x2f\x0b\xe2\xd1\x0a\x9a\x95\x2c\x0c\x30\x56\x31\x60\x25\xd2\xc2\xb9\x14\x86\x64\xcf\x5b\xf5\x67\xfd\xb6\x7d\xad\xfb\x44\x35\xc0\x74\xc6\xa6\x53\x72\x50\x80\x9d\x05\x80\xce\xc7\xcd\xf3\x43\x6c\x0b\x71\x6e\xaa\x9f\x89\x13\x60\xba\xe9\xc6\xfe\x47\xca\xa1\x6f\x18\xd5\xb2\x02\x02\x0c\xe4\x6d\x77\x6b\x24\x1f\x5f\xf8\x82\x74\x8a\xfe\x52\x1d\x4d\x57\xbf\xd9\x94\x74\xd1\xa1\x57\x6c\xf5\x4d\xab\x74\xe8\x55\x33\xc0\x96\x54\x3f\xa1\x3f\x5d\x10\x5a\xf9\x93\x11\x2f\xf8\x32\x8c\xc1\xfb\x21\x19\x88\x1d\x8a\x9a\xb8\x7d\x7a\x39\x9e\x35\xbf\x55\xd1\xb4\xd3\x87\x93\xcf\xce\xad\x53\x95\x07\x07\x83\x2d\x3e\xa7\x1c\x22\xdc\x86\x16\xef\x86\x00\x20\x7c\x31\xfd\x5b\x92\x8e\x9d\x6f\x9a\x3e\x7b\xc8\x75\x37\xcb\xac\xa1\xe8\xce\x8b\x4f\x73\x18\x15\x79\x32\x88\x8b\xd3\x23\x0d\x89\xf3\x5f\x5b\x95\x45\xf3\xec\x7c\x8d\x59\x95\xe5\x2d\xf1\x27\x03\xb1\xe7\x1a\x77\xb2\xd7\x0b\xef\x0c\x84\xc9\xe7\xd7\xa1\x7f\x5e\x7e\x3d\xc9\xe0\xa3\x9a\x57\x62\x44\x56\x5c\xbd\x55\x76\x88\x72\x5e\x3d\xa6\xc6\x7f\xeb\xf5\x16\xd6\xc5\xde\x00\x00\xc1\xed\xce\x80\xa5\xf6\xf1\x50\x34\xcb\xc2\xbb\x08\xaf\xa7\x60\x46\x45\x4b\x1f\x35\xf0\xe6\x2a\x1c\x85\x21\x2d\x1d\xc8\xf3\xab\xc3\x2e\x57\xed\x85\x23\xad\xab\xc2\x2f\x7b\x79\x46\xd6\xc3\xe0\xa0\x33\x3a\x9b\xaa\x5c\x57\xdc\x63\x45\x3b\x5f\xe1\xe5\x72\x24\xf7\x8a\xd4\xe7\xed\x3d\x69\x9d\x41\x8a\xe7\x2c\x18\xa4\xd2\x27\x56\xd4\x37\xcd\x80\xc1\xa3\x62\x4c\xda\x66\xc1\x16\xb6\x5d\xb7\x5b\x9f\x12\x20\xfd\xb4\x3b\x25\x5b\x37\x06\xc8\xdf\xce\xba\xf7\xda\x97\xda\x8d\x5a\xa9\x0c\x31\x52\x3d\x52\x3c\x0a\xeb\xc7\xe4\xd2\x0b\x8b\xff\xea\x1f\xfc\xe1\x83\x5f\xe5\xbf\xb6\xaa\x50\x5c\x26\xba\x0c\x8f\x55\xb8\x0e\x80\x37\x07\x23\xd7\xe9\x97\xaa\x02\x9a\x7c\x79\x0e\x99\x8c\x48\x9e\x76\x77\x4a\x62\x3b\xdd\x67\xd1\x2b\x1a\x8c\xdf\x7a\x41\xcf\x94\x1e\x64\xbb\x91\x7d\x45\x9b\x14\x20\x1c\x99\x93\xd5\x28\x3a\x53\xdf\xa1\xf9\x4d\xfa\x0e\x68\x8b\xbe\x57\x08\xbb\xe4\xd2\x17\x32\x88\x7d\x14\xc9\x61\x46\x17\x6b\xf9\xb5\x98\x6d\x6f\xc4\xb9\x29\x87\x59\x24\x90\x01\x06\x85\xb2\x9b\x8e\xe2\x1e\x3a\xad\x57\x5c\x74\x0e\xf3\x8d\x37\x7b\x36\x53\x51\x97\xaf\x37\xa7\xee\x8d\x64\x11\xda\xc2\x90\x93\x0e\xe4\xf9\x16\xb3\xc2\xd8\xcb\x26\x62\xd6\xbc\xd8\xd6\xc4\x8d\xe9\xf7\x93\x25\x0c\x00\x11\xb2\x3b\x99\xd4\x39\x14\x7d\x05\x73\x94\xf5\x18\xcf\xc6\x17\x6f\x1d\xd0\xb5\xa5\x6a\x8f\x6c\xfb\x83\xd4\x5c\x75\xeb\x59\x89\x41\xed\x7d\xec\x18\xb8\x08\x80\xf5\xdb\x92\x90\xaf\x9f\x15\xa4\xde\x73\x3e\xab\xa2\x5f\xe9\x21\x00\x1a\xca\xfe\xa7\xa9\xd3\x33\x97\x93\x7d\x6b\x42\xa2\x6f\x17\x7f\x87\x36\xa8\x7e\x7c\xa5\x04\xc0\x6a\xe8\xa1\x80\x9e\x2f\xb3\x23\xd5\x86\x36\x7b\x2e\x3d\xb1\x19\x4b\x46\xb9\xf9\x01\x79\x7e\xb5\xfb\xbb\x43\x77\xcd\xd5\x7b\x7a\x03\xd8\xa2\x43\x5d\xe7\x0e\xa1\xa8\x17\x0c\x00\x97\xe1\x7d\xad\xe0\x92\xc9\x2d\x0e\xc2\x96\x3a\x5f\xd1\xa9\x5d\xa9\xe6\x27\x73\xdf\xbe\xae\xdd\x70\x55\x8b\x9b\x34\xf8\x87\x02\xbf\x1c\xff\x44\x68\xae\x1e\xba\xe2\x77\x48\x82\x97\xd6\x0c\x9a\x25\xe4\x69\x73\x49\x51\xcc\xdc\x00\x08\x61\x35\x77\x6d\xbe\x8c\x4d\xca\xa0\x36\x4d\x99\x47\x53\xb2\x9f\x61\x9b\x0a\xdd\x2c\xe3\x50\xb9\xa6\xcd\x21\xca\x69\x7e\xdc\x3f\x55\x79\x4c\x3b\xb7\x4b\x6b\x2b\xdd\x68\xf1\x37\x17\xa0\x84\xdf\x87\xdd\x95\xae\xaf\x6e\x74\x79\xc4\x86\xd5\x6d\x60\xf0\x1e\xbf\xee\xd2\xe8\xac\xc1\x77\xc5\xf9\x14\xcd\xbf\xad\x2e\x66\xb4\x71\x2b\x7c\x37\x48\xce\x7d\x40\x01\x70\x9f\x0d\x62\xaf\x32\x3b\xf6\x55\x66\xe9\x8a\xc4\xe7\x5f\xaa\x83\xbf\x2c\x4b\x5e\xf6\x51\x4e\x0e\x5b\x79\x23\x19\x2f\xb3\xea\xa4\x81\xcf\x46\x95\x9f\xaf\x6b\x9d\x7a\xee\x7d\xba\xb3\x63\x7e\x82\xde\x0f\xc5\x3f\x82\xd6\x7f\x61\x69\x74\x84\xb7\x4a\x0e\xdd\x04\x56\xdd\x3c\x59\x7e\x53\x1d\xdc\x5f\x14\x79\xfd\x45\x9a\x17\x80\x0c\x06\xb5\x33\x7b\xaa\x8d\xb4\x17\xb3\x85\xfb\x37\x4d\x37\x0e\xf3\xd7\xfa\x65\xf9\x72\x1f\x1b\xb7\x8e\xcd\xbd\xb8\xac\x52\xeb\xed\xa8\x1c\xfc\x94\xa3\x50\x95\x4f\xe2\x5d\xc0\x1b\xdd\x53\x89\xec\xcb\xc1\x8d\xe9\x03\x49\xd6\x6f\x95\x6c\xfc\xab\x2a\x7e\x37\x2c\x26\xc1\x47\x6d\x13\x62\xd7\xac\x0f\xcc\x55\x98\x76\x17\x0b\xd0\x3c\xdc\x00\xe4\xb9\x68\x5a\x55\xf3\x62\xb4\x95\x1c\x48\xac\x4d\xc2\x84\x4c\x2f\x8e\xed\x3d\x31\xaf\x25\x15\x25\xd9\xab\xcc\xd8\xe0\xc4\x6f\x43\x07\xb5\x1f\xc3\xfa\xfb\x70\xf5\xe9\xdd\x97\x8a\x72\x52\xeb\xa1\x34\x47\x24\xc9\x22\x1e\x0a\xe7\x57\x1c\xef\x40\x9b\x77\x7b\xbd\xfe\x1d\x4d\x0d\x80\x7d\x3e\x95\x74\x48\x35\xef\xba\x31\xb3\xcc\xee\x9d\x6d\xc1\x9e\x01\x6d\x95\x7b\x2b\x2b\x6f\xd2\xde\x56\x2e\x85\x4d\xc4\x7d\xf2\x85\xc6\xfd\xd7\xf6\x58\xcc\x5f\x22\xb0\x96\x84\x90\x5f\x5e\x34\x3a\xf8\x3f\x01\x02\xab\x04\x3d\xfc\xcf\x4a\x15\x77\x26\xcc\x1d\x18\xb0\xef\xf4\xfd\xe8\x5c\x8d\xa8\x15\x80\x24\xd6\x63\xe3\x3d\x2e\xd9\x19\x48\x4b\xd2\xe6\x0a\x04\x5f\xfe\xa7\xc8\x4d\xd5\x9d\x80\x26\x5d\x71\xb2\xf1\x96\xe5\x9e\xbb\xb0\xde\x7b\x7e\x68\x05\xba\xd6\xe9\xf1\x06\xb0\x25\xdd\xb4\x37\x0d\xe2\xd0\xf2\xca\x09\x70\x0a\xd2\xd3\xa7\xfd\x26\xc3\xfd\xfc\x2a\x29\xc0\x8d\xc4\xc5\xaa\x5c\x72\x73\xe5\xb7\xe3\x76\xa9\xbe\xa0\x6b\xdb\xef\x4c\xa2\x78\xd1\xf2\x34\x5b\xa0\x14\xbf\x1f\x28\xe7\xdc\x3b\x4c\x3d\x5a\x4e\x2e\xf0\xd4\x49\xf1\xc7\x33\xe8\xec\x49\x1f\x61\x4d\xbe\x36\xbe\x7d\x91\xe9\xd6\xf5\x57\x65\x48\xa6\xc3\xa5\xca\xb7\xe6\x3b\x4f\x96\xac\xe7\xf4\x7c\xe1\x00\xf4\x7b\xa8\xc7\x29\xf3\xaa\xe8\x09\xee\x69\xb7\x9f\xcb\x74\x26\x84\xda\x1e\xec\xb8\xda\x3a\x78\x7f\x37\x3f\x9a\x8c\x55\x64\xe6\x37\x86\x8f\x8d\xb3\xf5\xc6\xdf\x38\x6d\x7d\xec\xd4\x83\x77\x85\xea\x52\xb7\x32\xd2\x4c\x6d\xde\x4c\xa1\xf7\x03\x43\x14\xc9\xf3\xe3\xc2\x64\x93\xf7\x8e\x69\x58\x79\x01\x68\x6b\x8f\x8f\x95\xe5\x1f\x08\xbb\x60\xb6\x52\xec\x9c\xf9\xac\x02\x7a\xb2\xff\xfe\xf2\x40\xfe\xa5\x33\xcf\x81\x0a\x0b\xad\xd2\xb4\xe0\xa2\xf5\x56\xcb\x9c\x98\xcb\x4f\xef\xf8\x7e\x7c\x8a\x0e\x7d\xfe\x6b\xa2\xff\xc4\xe6\x75\x48\xf3\x86\x75\xc8\x55\xf2\x7c\xfd\x30\x8b\x1a\x5d\xd2\x55\x57\xb9\xea\x56\x6d\x22\xb0\xb8\xa1\x38\xb6\xd2\x5e\xcb\x5a\xdf\xe0\x6a\xb3\x03\x35\xd3\xb7\x99\x71\xfd\xac\xd2\x6f\x98\x46\x56\x1e\xb0\xa6\x4e\x84\xc5\x75\x42\xde\x96\xea\xc7\xc1\xbf\xb6\x7e\x37\x5c\xcb\x60\xab\x85\x0d\x3e\x63\x7c\xb1\x6a\x00\x35\xdf\xc5\x02\x80\x7b\xcc\xc1\xf4\xad\xf1\xcd\xfa\xc1\xce\xe7\xdd\x93\x2f\xe8\x9a\xa9\x8a\xf5\x58\x77\xf3\x3d\x9e\xa7\xb7\xdb\x6d\x2f\xb8\x93\x2f\xc9\xfd\x72\xa6\xd1\x61\xaf\xa0\xa5\x30\x4f\xfc\x47\x79\x4e\xc8\x7d\x18\x0e\x00\xd8\x9e\x37\x85\x0e\x50\x3f\xea\xcf\x24\x19\x2d\x5b\x52\xab\x65\x2d\x1d\x90\xf6\x7c\x4d\xa8\x85\x09\xbf\x61\x28\x74\x46\x9d\x08\x09\xc9\x51\xc1\x35\x90\x58\xb4\x56\x59\x8e\xc0\xae\xfa\xdd\x85\x2f\xe1\xf4\xe3\xca\xb5\xbd\x12\x02\xa9\xae\x3d\x24\x01\xe0\xbc\x1e\xd3\xc0\x91\x57\x5f\x8b\xda\x87\x85\xa7\x22\x01\xe3\x8b\x75\xcb\x07\x73\x05\x8b\x86\x74\x18\x64\x77\xe2\x36\x09\xf7\xa1\x52\x5b\x26\xa4\x82\xd6\xb8\x42\xdc\x7d\xdf\xdf\xcf\x2d\xfe\x4a\xf5\x8f\x72\xcb\xdb\xa9\x9c\x95\x17\x25\x1c\x8f\x7e\x56\x24\x77\x1a\xd3\xf6\xfe\x96\xfb\xf0\x74\x85\x1c\x00\xe1\x84\x58\x26\x31\x05\x5d\xcd\x59\xce\x61\x42\x06\xd5\x64\x34\xb7\xb2\x77\x06\x8c\x9d\x47\xfe\x48\x5a\xfc\x87\xaf\x32\x7a\x5f\x2f\xeb\x22\x00\x60\xaa\xf3\xd5\xfd\x97\x43\x5f\x37\xb8\x0f\x92\xcd\x2e\x2c\x3f\xa6\x84\x93\x38\xe5\x9b\xef\xa7\xb5\x0d\xfd\xb4\x7c\xfc\xe6\xbd\x14\x00\xc0\x2f\x3a\x15\xbd\x43\xff\xa3\x49\xb8\xef\x29\x6c\x9d\xb2\x76\x91\x70\xf1\x7e\xee\xe2\x08\xf4\xee\xae\x1b\x00\xe0\x2e\x33\x8f\x31\x2d\x69\x90\x6d\x4c\xd1\xd7\x82\x60\x69\x84\x56\x55\x69\xbd\xcd\x90\x46\xf7\xcd\xbe\x97\x48\x53\x62\xba\xd9\x16\xea\xd6\xb6\xae\xb1\x5f\x9a\xa9\x60\x34\x3a\x0e\x61\xaa\x3f\xf6\x42\xf5\x85\x3f\x50\x13\xc9\x72\xb1\xc3\xcb\xc0\x72\xe7\x22\xae\x48\x93\xe7\x0b\xdb\x8a\x96\x09\x78\x7c\x0e\xd3\xb1\x3e\xa5\x00\x00\x20\x1b\x29\xc3\x8f\xdf\xdf\x37\xa2\xa5\x86\x9b\x80\x70\xa6\x53\x8c\xec\x1c\xfa\xa5\xd6\x5f\x87\x1c\x99\xaf\xa7\xf8\x1f\xec\x4d\xa7\x17\x74\xe3\xde\x73\x14\x53\xd6\x18\xb6\xad\x1e\xe0\x36\x16\xaf\xc8\x12\x29\x61\xcf\x66\xb7\xe0\x7d\xb0\x37\xfd\x8c\x28\xcd\x1e\xa7\x88\x88\x90\x6f\x1c\xcb\xcf\x24\x1e\x0f\x06\xdc\xb9\x7b\x82\xb1\x90\x55\xdc\x4a\x37\xee\xfd\xd3\xba\xa2\x5a\xca\x3f\xc7\xa7\x65\x4a\x09\x18\x72\x00\x70\x24\x13\x88\xe4\x3d\x6b\x93\x1a\xee\x81\x78\x98\x2b\x45\xed\x37\x42\x25\x2c\x77\x6e\x0f\xd2\xb8\x8b\x01\x00\x08\xc7\x66\x90\x2f\xdf\x1b\x9e\x66\x4b\x0a\xf8\xa1\x88\x17\x81\xe5\xce\x85\xa2\x0f\x46\xfa\x01\x00\x46\x0c\xa2\x37\xfc\xca\xee\x8d\x4c\xb3\x25\xf5\x54\x35\xd4\xdb\x5c\xd3\x58\x26\xc1\x4b\xba\xfe\x6b\xc4\xed\x9d\xcd\xd0\x4d\xa2\x88\x60\x4b\xd2\xdd\xd3\xf5\x5e\x0e\xd4\x58\x66\xbe\x22\x0d\x00\x38\x1f\x1b\xff\xa6\x40\xd3\xaf\x05\x7e\x45\x91\xdc\x59\xc6\x5d\xdc\x61\x87\x32\xe2\xf5\x06\x5d\x16\x3b\x00\xe0\x9c\x80\xe9\x5b\xc6\x97\x92\x17\xb4\xa4\x11\x29\x0b\x5c\xb0\xdc\x6f\x27\x50\xe2\x68\x27\x31\x92\xd4\x43\x28\x93\xf1\xe5\x8e\x7b\x16\x27\x5c\xc6\x38\xcd\xa4\xf9\xf2\x3f\x7b\x47\x19\x6e\x2c\x03\x34\x00\x0c\x93\x55\xe9\x27\x07\x0d\x7e\xc5\x90\xe6\x24\x14\xfa\xe7\xbe\x7e\xe8\x84\x14\x7a\x22\x98\x23\xc9\xb5\xf6\xe1\xc4\xd0\x5f\xde\x80\xa8\x12\xdc\x1f\xe4\xac\x6b\x90\xda\xe9\x37\x95\xa8\xe5\x57\x46\x3f\xdc\x27\x8d\x60\x9e\xd7\x82\x6e\x51\x84\x60\x87\x9e\x88\x36\x12\x17\x64\x06\xd1\xe7\x28\xcb\xd3\xbd\xcd\xf8\x72\x53\xc5\xcf\x87\xe6\xb3\xe6\x9f\x26\x48\x61\xd8\xb7\x3a\xf3\x65\xcc\x5d\x47\x00\x70\x12\x21\x0c\xba\x3e\x82\xc1\x11\x01\xe7\xa7\x99\x7a\x82\x55\x0b\x0f\xe9\x55\x38\xe1\x32\xb6\xf2\xc6\x5c\x9c\x6b\x1f\x6c\x4a\x95\x52\x85\xc8\x01\x58\xe3\xc6\x28\x99\x70\xf9\xbc\xd5\x45\x75\x94\x45\x6a\xfb\xe4\x28\xdc\xb4\xbe\xd0\x2a\x85\xf0\x58\x88\xc5\x0d\x6d\xfb\x65\xb1\x02\x90\x77\x34\xc1\x24\xd6\x07\xd7\xad\xba\x8b\x41\x96\xb1\x2a\x5c\x63\x50\x32\x1f\x6e\x94\x46\x2c\xba\x88\xe2\xaf\xc1\x55\xea\xf4\x50\x9f\xc6\xba\x60\x00\x34\x24\xba\xe0\xae\xbc\xe5\x36\x95\x88\x1d\x38\x67\xcd\xf9\x31\xf8\x34\x6d\x36\x1e\xc6\x2e\x49\x41\x11\x86\xe5\x79\x1d\x0a\x07\xe0\x79\x27\xce\xb9\xe8\x4a\x4a\x03\xc4\x62\xca\xfd\xd9\xf2\x7e\xee\x5c\x2a\x14\x39\x42\x74\xf4\xea\x46\xcd\xad\xbc\xd5\xdf\x5c\xf8\x52\x3f\x4f\x00\x70\xbb\x49\x92\x1d\xc9\x21\xfa\x7d\x15\xa7\x85\x0d\xfc\xff\xec\x5d\x7b\x68\x4b\xf4\xb3\x63\x5c\xca\xf8\x4f\xf0\x64\xb7\x9a\xdd\xab\x7b\x44\x67\xd4\xb2\xdc\xf1\x56\x89\xf9\xde\xa9\x4b\x27\xc1\x79\xab\x72\x36\xfb\xa2\x21\x72\xe4\xce\xca\xfa\xcf\xbc\x0e\x4e\xfe\x54\x74\xd6\x1c\x09\x03\x80\x94\xa3\x89\x75\x26\xc8\x94\x5c\x59\x7f\x66\xc5\x62\x30\x9f\xbf\x28\xd0\x6f\x40\x15\x99\x17\xf2\x82\xe8\x91\x3e\xa6\xd8\x8c\xf6\x47\x93\x44\x8a\xd7\xdc\x15\x00\x00\xe9\xfd\x4c\x86\xc7\x77\x98\x96\x82\xf1\xd2\xb0\x9c\x71\xc5\x5f\xce\x34\x9f\x83\x86\x8b\x6d\x67\x59\xd7\x3e\xbc\xd4\x4a\x27\x76\xe7\xcf\x36\x51\xbd\x3d\x17\x0b\x83\x6c\xb2\xc7\x77\x8e\x28\x39\x72\x69\xc8\xfc\x54\xef\x14\xdf\x6f\x12\x52\x78\xc6\x7c\x81\x5c\x40\x89\x0e\x5d\xca\xfe\x4f\xf0\x4c\x81\xd2\x7d\x09\x5a\x00\x8c\xb0\xee\x37\x7e\xbd\xb2\xca\x15\xc8\xfc\x73\x32\x22\xe8\xa7\x52\x12\x19\xae\x90\xb4\x72\xaf\x50\x55\x4b\xb2\x1b\x17\x17\x13\xd2\xf6\x72\x85\xb2\x41\x16\x00\x24\x19\xb9\x9d\x3c\x75\xf2\x17\x97\x80\x52\xbb\xd6\x84\x02\xbe\xaf\x97\x04\xe3\x0c\x8e\xb6\xb4\x7e\xcf\xfc\x5a\xe8\x19\x61\x9e\x24\x4c\x15\x3c\x94\x3c\xf7\xa3\xa9\x84\x66\xba\xcb\xef\x0e\x00\x38\x28\x23\x49\x9f\x7c\x33\xdc\x64\x28\x6b\x34\x45\x5e\xc0\xe0\x75\xd0\xa5\x63\x6d\x6f\x51\xf9\xb4\x92\xb5\x9f\x91\xb7\x04\x78\xc7\x6b\xb9\x4e\xd4\xaa\xf6\x66\xe4\x86\xf7\x0e\x65\x6c\xd8\x01\xc8\xbb\xe9\x1c\x6c\x39\x6b\xa9\x02\x0f\xb6\x9c\xd5\x8c\x8f\x5d\xe2\x38\x4f\x5e\x7a\xe3\x57\x22\x5c\x64\xca\xde\x6c\x2d\x06\x2f\xc4\x96\xe4\x5d\xfd\xc4\xed\x0c\x0c\x6d\x92\x9e\xc9\xc3\x00\x00\x22\x51\xcb\x91\x16\xe4\x9f\xb7\x0e\x71\x7d\x64\x8f\x9d\x14\xd3\x4a\x27\xfe\xdc\x25\x4b\x3c\xfa\x11\x60\x25\x4d\xa3\xa3\xcc\x59\xb4\x41\xbd\xf5\x22\x07\x15\x9e\x80\xa5\x01\xc0\x68\xe4\x7e\x46\xf9\x13\xb9\xea\x3b\x59\xb2\x82\xde\x19\x0c\x7a\x3a\x6a\x2d\x7c\x9f\xdc\x5c\xa2\xea\x8c\x67\x74\x3c\xbb\x70\x71\xe9\xa9\x68\x1e\xca\x1f\x4d\x83\xe7\xe5\xb9\x48\x01\x28\x6c\xa2\x62\x87\xf6\x7b\xfb\x67\x8b\xa4\x33\x19\xbe\xa5\x6c\xaf\x25\xf3\x2c\x9e\xa1\x38\x8a\xca\x0a\xd2\x1d\x91\x42\x0f\xd0\x62\x6b\xf4\x3f\x9a\x22\xd4\x59\xc9\x01\x28\x54\x4d\x8b\xc3\x72\x9c\x5f\x11\x12\x78\xdc\x1d\x15\x86\xde\x4f\x48\xe6\xfe\x36\x00\xed\xa3\xe8\x47\xae\x49\x23\x52\xa4\x11\xaf\xbc\xa1\x0d\xa1\x06\x29\x00\x90\x88\x87\x55\x4d\xca\x9e\x89\xfd\xbd\xbe\xea\xa3\x16\xfa\xb1\xf1\x77\x02\x2e\x4f\x4a\xdb\x14\x4f\x19\xee\x93\x34\x33\xc1\x65\x8c\xdd\xd7\xd1\x77\xdf\x06\xde\x81\x54\xf5\x0e\xc8\x00\xa0\xa4\xce\xa6\x72\x9d\xf0\x29\xc9\x29\x4c\x73\xb2\x79\x6d\x65\xe3\x1f\x92\x9e\xd8\x81\xb9\x36\x5b\x30\x75\x53\xee\xe5\x6c\x2c\x2c\xb3\x04\x46\x15\x5f\x5e\xcc\x9d\x7f\x44\x02\x00\xe9\xd5\xab\x7d\xcc\x63\x47\x8e\x7d\x54\x95\xde\x03\xb7\xd1\x1c\xc5\x65\x9b\xa3\x13\x6e\x72\x78\xc9\xb5\xfb\x6c\x49\x3d\xbb\x56\xde\x3d\x1a\xbc\x3f\x9f\x6f\x5c\x6d\x90\x00\x00\xf9\x59\x48\xa0\xf7\x05\x43\x47\x2d\xcb\x84\x89\x7f\xec\xc6\x63\xba\xb0\xd9\x47\x11\x25\x7f\x2e\x87\x70\x91\xe7\xdb\x34\xc9\xb5\xf9\x56\x55\xf9\x0f\x0d\xfb\xc3\x00\x50\x57\xe0\x2d\x7d\x91\x74\x59\x7a\x39\xea\xfd\x55\x83\x9a\x26\x37\x3b\xfc\xdc\xd4\x71\x63\x0c\x6a\x8e\xb5\x6e\xeb\x9e\x27\x7e\xfb\x57\xed\xe0\x28\xf3\x8f\x0f\xe2\x65\x53\x8a\x15\xbe\x55\x35\x8f\xe7\xf2\xbe\x91\x00\xd0\x79\xbf\x8f\x6a\xbd\xc7\x57\x9d\xfc\x62\xb5\x0f\x73\xb2\xa0\xae\x3e\xef\x9f\xd2\xf1\xe8\x08\xeb\x3a\x68\xe3\x2d\xb4\x8d\xd6\x8b\xff\x19\x38\x2d\x2a\x31\xb4\x34\x07\x35\xa2\x22\x99\xea\x5a\x29\xec\x91\x53\x83\xf7\xa1\x65\x92\x6b\xef\xf6\x50\xb2\x6b\xb5\x00\x80\x9f\xc3\xbd\x54\x99\xf8\xdb\x29\xf7\x5f\xb1\xbb\xa9\x9b\xc8\xf1\xd6\x4c\xb4\x7b\x35\xf6\xab\x98\x3a\x64\xeb\x95\xbf\xb1\x32\xad\x79\xed\xc6\x8e\xc7\x41\x97\xcb\x2c\x86\x9c\x16\x6c\xa7\xb3\xe6\x83\xa2\x6c\xa3\x60\xeb\xe7\x3d\xe9\x7f\xbc\x30\x7c\xdb\x47\xc4\x10\x33\x10\x95\xaf\x6b\x63\xf0\x19\xb5\xee\xd9\xcf\x59\xc9\xd9\x77\xf6\x52\xe0\xb4\xf8\x2e\xe6\x06\x79\xd7\xf2\xd3\x69\xed\x9d\x36\xdc\xf3\x47\x1e\xcd\xea\xed\x18\xb5\xb2\x37\x7f\xf5\x1f\x0f\x84\x2d\x09\xe5\xdf\xb9\x99\x93\x8f\xfd\x32\x2a\x36\x44\x5f\x94\xd9\xff\x7c\x2d\x52\xf6\x53\x92\x00\x29\xad\x14\x82\x6b\xa9\x02\x0c\xad\x5b\x34\x88\x02\x80\x7c\x31\xb1\xa5\xbd\x60\x10\xcb\xfe\x14\x53\xaa\x70\x16\x9c\x55\x1f\xf9\x25\x37\xd6\x32\xc1\x6a\xa3\x5f\x07\xab\x26\x93\x5b\x9f\x43\x89\x21\x95\x42\x90\x39\x65\xd3\x71\x33\x4d\x28\xbe\x7c\xdd\x10\xfd\x9d\xf8\xfb\x97\xe0\x28\xda\x4a\x2a\xca\x6e\xcc\x26\x5a\xc7\xed\x9f\xce\x61\x72\x2f\x93\x49\x8e\xb7\x36\xac\x78\xe5\x8e\xb6\x14\x1f\x0e\x76\x39\x9a\x41\x6f\xe7\x14\x57\x46\x54\x7d\x2a\x2f\xe4\xcb\xc1\x54\x34\x19\xa6\x93\xf8\x65\x14\xd3\xe2\x5e\xfc\x3d\x1d\xeb\xa0\x09\xe0\xa3\xb6\xb3\x9c\x13\x04\xeb\xbc\x86\x9c\xbf\x6a\xcc\x72\x02\x03\x56\x36\x5f\x22\x74\xc6\xf4\x63\xc5\xc7\x7a\xa7\x93\xc5\xfb\x29\xed\x91\x42\x43\x11\x4c\xb3\x83\xab\x73\x05\xd9\x24\x00\xb4\xe5\xf7\xeb\x14\xbb\x99\x99\xa4\x68\x37\x0b\xd5\xbc\xff\xae\xaf\xb3\xe2\xf3\x37\x5a\xe6\xd5\x1d\x9a\xad\x30\x09\x33\x1b\x6d\x05\x32\x00\x70\xb5\x49\x8a\xd9\x0e\x91\x53\x12\x9b\xbf\x0d\x54\xee\x2d\xe9\x55\x67\x30\xc2\x68\x3e\x77\x4e\x88\x55\xec\x11\x38\x6c\xce\x13\xb7\x0e\x2f\xbe\x0e\xf9\x8e\x9b\x47\x53\xdd\xd1\xa5\x51\xfe\xb2\x7c\x19\x0c\x6d\xb8\xb8\x78\x95\xae\xed\x68\xf6\x73\xb5\x8b\x84\x22\x3f\x63\xe2\xae\x94\xfc\xb5\xff\x46\x5f\x6c\x52\x09\x1d\x5b\x52\x25\xb3\xd5\xfa\x0c\x33\x3a\x71\x54\x8b\xb8\x3d\xea\x44\x1f\xb0\xfd\xb4\x93\x4b\xc9\x99\x0e\xb2\x58\x9f\xed\x5c\x8d\xa1\xd4\x26\x95\x42\xec\x55\xd6\x6e\xb4\xe1\xa6\x5c\x6a\x37\xae\xf9\xdd\x22\xfe\xb4\x7d\xcf\x25\x5d\xfc\x4c\xa8\xc6\xda\x5f\x74\x25\x5b\xfe\xc6\xc4\xf9\x0c\x9a\x52\x5a\x3e\x69\x84\xc3\x8f\x82\xb6\xa9\x65\x56\x28\xe6\x83\x3e\xd1\xd9\x3d\xf8\xf2\x74\xc0\x97\x7c\x4b\xdf\xbe\x2a\x7d\xb1\x9e\x2c\x4d\x7d\xf1\x4f\x98\x25\x6d\x71\x46\x53\xea\x25\xe5\x59\x06\x8b\xc6\x17\x9a\xe3\xa4\x00\xe0\xb0\xc9\xb4\x67\x99\xba\xb2\x45\xab\x6e\x99\xcc\x6c\xad\x84\x0a\x9f\x4f\x99\x94\x23\x29\x52\x18\x64\x80\x91\x07\xbb\x51\xf6\xf1\x75\x7f\x39\x1b\x66\x00\xc0\x4d\x59\xdc\x57\x87\x6a\xf1\x9e\xac\x14\x8e\x76\xa9\x90\x12\x6f\xdf\xd0\x8a\xfa\x5e\xc7\x7e\x1e\x45\xf5\x0c\x58\x70\xa8\xbd\xc7\xae\x41\x83\x20\x00\xe0\xb9\xb7\x94\xc7\x7b\xc8\x45\x51\x8a\x8f\x3a\xce\x3c\x6d\x60\x12\x30\x3d\x90\x41\xe8\x41\xbf\xe9\x0b\x55\xb0\xa8\x93\x54\x2c\x15\x00\x60\x59\xb0\xcf\x57\x63\x34\x4c\x97\x65\xe7\xd7\x0d\x2e\x7b\x59\xbd\xf3\xef\x61\xc1\xa9\x6e\xeb\xb8\xa9\xc5\x9b\x0d\x02\x00\x00\xd4\xc7\xa8\x0c\x82\x4e\xb8\x2d\x65\xbf\x87\x2a\xc2\x1d\xbe\x7b\xd8\x36\xb5\xa8\xff\xaf\xe4\x53\x54\x7d\x72\x73\x7f\x54\xbd\xa0\x5b\x46\xe2\x55\x9a\xcf\x2c\xb0\x9a\x2e\x1e\x74\xe4\x3b\x3d\x12\x00\x90\xfb\xfa\xb1\x74\xad\x29\x41\x06\x3a\xc9\x54\x04\xee\x67\x6c\x49\xdb\x68\xc9\x73\x85\xe2\x11\x86\x81\xc4\x34\x37\xac\x18\xe5\x10\x8c\x59\x49\x02\xd9\x4e\x9d\x88\x30\x38\x93\xc9\x2e\x41\xa3\x7d\x57\x14\x00\x40\xd9\x16\xd5\x79\x85\x79\x54\xa4\x92\xfa\x27\x5b\x52\x38\xdc\x2d\x26\xb7\x28\x7a\x2d\x01\x00\xc0\xd0\x56\xa1\x7c\x8e\xb9\x3d\xb9\xf8\x0f\xcd\xe7\x08\xc8\x1f\xee\x0a\xef\x33\x3b\xa4\xb2\x61\x04\x00\xa8\xf3\x39\x33\x3f\x20\xc4\x8e\xe1\x9a\x84\xf2\xe4\xaf\xde\xf0\xe7\xf9\xfb\x54\x8a\x37\x83\x9e\x46\x47\x71\xdd\x74\xfb\x82\x11\xc7\x8b\xeb\x0a\xa4\x00\x00\x7d\xca\x15\x38\xdc\xc4\xd6\xfd\xb7\x53\x2a\x72\x21\xf2\xdd\x86\x72\x03\x2f\x00\xc0\x5e\x5d\x8a\x87\x2d\x69\x77\xb7\x1b\xb7\x10\x49\x65\xc3\xf0\xdf\xb6\xc1\x96\xd6\xfb\x6e\xff\xfe\x6b\x5d\x88\x74\xef\x3e\x6c\x9d\xb4\xb1\x28\x8d\x4e\xe0\x77\x62\xd1\xe0\x5b\x6a\x92\xff\x3c\xbd\x2c\xc9\x8b\x6e\x55\xd2\x93\x4b\x91\x20\x6a\x66\x30\xf4\x53\x90\xe7\x37\x35\x29\xe7\x4d\xe4\xea\x1f\xc0\x01\xc0\x65\x18\xe8\x28\x7a\xe8\x3c\x20\xb4\xe1\x68\xaa\x93\xdd\xde\x20\x17\x22\xe2\x37\xb4\x1b\x78\x00\x00\x9d\x58\xf5\x9b\x77\xd4\x88\xb1\x19\xb7\xf8\xb0\xf4\x49\x0c\x57\x9f\x96\x11\xcf\x7a\x23\x1c\x49\xc9\x99\x49\x02\x7a\x27\xc6\x30\xf2\xce\xca\x5b\xc8\xf1\x8b\x3d\xab\x44\x10\x84\x36\xe1\x67\x57\xd6\xbf\x27\x5d\x19\x79\x53\xb8\xbc\x02\x97\x42\xf8\x5a\x08\x21\xe0\x3e\xb5\x1b\xdc\x0d\xdc\x00\x80\x36\xce\xfe\x28\x67\x9b\xcf\xe7\x2a\x05\xcd\xc5\x1a\x37\xc4\x54\x2e\x28\x0e\x72\xa1\x9f\x92\x31\xed\xcd\x8d\x6e\x13\xcd\x57\xde\xd5\x70\x8a\xae\x0f\xbb\x93\x56\x73\xcf\xbc\x12\x91\x45\x94\xd3\x08\xcc\x0e\x15\x45\xdc\xa8\x23\x1e\xd4\x2d\x70\x54\x95\x64\xc6\x1d\x7a\x55\x4f\x32\x32\xbd\xd0\x65\x44\x50\x5a\x95\xa1\x88\x9f\x2d\xa8\x7d\x9a\x19\x3a\x22\x49\xf3\x42\xf9\x99\x5f\xc4\x65\xdf\x94\xb6\xca\xf2\x1c\x63\x0c\x8e\xb6\x49\xd9\xe1\x55\x46\xee\x04\x3c\xf9\xfd\xce\x23\xab\x06\x4e\x22\x82\x09\x29\xe6\xd1\x9b\x46\xb7\xb4\x8f\x15\x19\x37\xdc\x94\xdd\x2c\x35\xa6\x4b\x6e\xaa\x7b\x49\x23\xa8\x5d\xea\x70\x0b\xe1\x8c\x36\x7f\x1d\xb9\x5b\xf8\x8b\x64\x93\xf5\xc4\xeb\x60\x2f\xca\xb0\x1f\x55\x95\x08\xe4\xee\x57\xa8\x6d\xba\x8e\x49\x7e\x68\x0f\xb2\x47\x76\x77\x0f\xde\xef\x3c\x54\x83\x22\x47\x97\x89\xa0\xbb\x1f\xca\x72\x0e\x64\x0d\x44\x7f\xf1\x65\x7e\x26\xf6\x25\x4a\x20\xe2\x03\x7a\x05\xa3\x32\x5a\x70\x26\x9e\x91\x58\x65\xf4\x5b\xc4\xa2\xb8\xd8\x96\x51\xa7\x64\xe8\x55\x23\x71\x67\xd5\x8f\x0b\x93\x17\xa8\x9c\x64\x38\x11\xd1\xdb\x63\xa7\x55\xd0\x48\xee\x77\x91\xda\x65\xa7\x3f\xaa\x0b\x3e\xe5\x92\x42\x38\x75\xa5\xd9\xe1\x49\x1e\xcb\x35\xe6\x12\x33\xd6\x3f\xa7\xc6\xb1\xe0\xab\xd1\x1f\x95\x31\xc9\x66\xeb\xe6\x42\xb5\x62\x29\xef\xae\x4c\xcc\xfb\x71\x85\x29\xc2\xfb\x34\x7d\x43\xa8\x81\x83\x98\xd3\x92\xee\x8a\x34\x5f\xf8\xc0\x75\x39\x1e\x5a\x4f\x63\x29\x6e\x97\x77\x5b\xd5\xd4\x9b\x14\x4c\xab\x73\x63\x78\x22\xc0\x29\x4f\x4d\xeb\x22\xdb\xba\x6c\xc5\x6e\x38\x5c\xc6\xb2\x00\xfa\x4a\x2d\x30\xb8\x3a\xfa\x57\xf4\x04\xb1\x17\xe9\xa8\x2a\x85\x48\xb9\x13\x8a\xf7\x81\x75\xfe\x91\xc7\xa7\xfa\xc9\xfd\x7d\x23\xc2\x87\x23\xc9\x08\xb2\x3b\xc9\xc4\x92\x13\x6f\x8d\x22\xe0\x55\xe1\x08\xe9\x53\xf8\x0c\x0d\xf1\x36\x6f\x9a\xdc\x99\x1d\xff\x15\xd6\x79\x20\x8d\xb7\x5b\xc7\xfc\x7d\x2d\x22\xa1\x2a\x6d\x7e\xc6\x52\x4e\x1c\xf7\xc7\x36\x3f\x4b\x4b\x81\x88\x1f\xc7\x32\x5e\x56\x6d\x59\x7e\x5a\x93\xe9\x66\x8a\x7f\x2a\xd0\xf7\x95\x29\xfd\x68\x3a\x37\x76\x22\x60\xe7\x21\xf4\x0e\x9d\x08\x71\x33\xf4\xb8\x5f\x8b\x29\x46\x49\x4e\x9c\x45\xfc\xf2\x3b\x1a\x09\x8c\xb9\xc5\x72\x3a\xd4\xe1\x1e\x31\xd4\xfa\x46\x01\xf1\x8d\x7c\xb4\x15\x3b\xcf\x44\x74\x04\x5c\x5c\xf1\xf7\xd0\xe5\x66\xdb\xdf\x5b\x79\xe8\x35\xa0\xcd\xae\xd2\x32\x45\x03\xff\x50\x34\xdc\xd8\x0c\x5e\x65\x80\xe0\xda\xc6\x96\x11\x51\x0b\x53\xdd\x8b\x0d\xdd\x6c\xb9\xef\xe6\xa1\x06\x6a\x3d\xe8\x99\xd4\xea\xc3\xcd\xf6\xeb\x79\x5a\xa7\x0b\x1b\xd0\x16\x3d\x23\x74\xf2\xa8\x70\xad\xfd\x43\xdd\x53\xee\x6c\xb9\xc9\xa9\x4d\x61\xbc\x1c\xb4\x88\x6a\xed\xc4\xe9\xe7\x5c\x40\xdd\x26\x1f\x9e\xc4\x14\x96\xfd\x93\x45\xec\x07\x89\xca\xaa\x8d\xae\x85\xd9\x86\x9d\x37\x56\x1e\x24\x4e\x99\x9b\x28\xd6\x90\x19\x5e\xac\x2b\x43\x5c\xbc\x0d\xca\xce\x68\xdb\x62\x78\x67\xee\xa6\x7f\xc3\x86\x26\xfe\x12\x5a\x0d\xba\x69\xdf\x9b\x11\x85\x8d\xbf\xc2\x80\x7c\xd7\x38\xd1\xaa\xf5\xf7\x7d\x17\x01\x4f\x93\x99\xa2\x10\x0b\x6b\xb9\xc1\x03\x83\xb6\x30\x36\xf9\x6b\x55\x0f\x37\x2c\xbc\xfb\x7a\x3d\xa2\x97\x50\xf8\xc3\xa8\xa0\x57\x4d\x9a\xbb\x4d\xf1\x61\x45\x5f\x12\xb8\xfe\x34\x09\x36\x51\x55\x8a\x25\x26\x3a\x20\x85\xba\xbf\xde\xf7\x6b\xd1\xfb\x70\x4a\x64\xb8\xa3\xbb\x83\xbc\xe5\x0e\xf4\xf5\xf2\x3f\x07\xdf\xa8\x17\x34\x50\x67\xc6\x27\xa8\x9a\xf3\xbc\xb9\x89\x3b\x4f\x6e\xb7\xd4\x5a\xa5\xab\x9e\x65\x2f\x60\xa0\xaf\xdd\xb8\xb8\xc4\x74\x8a\x51\x98\xe4\xe2\x45\xe2\xd4\xa2\xab\x48\x50\x20\xbb\x13\xe0\xf5\xcf\x91\xa1\x37\x3a\x2b\x81\xef\x58\xb1\xf8\x8f\xfc\x1f\x1d\xaa\x04\x17\x15\x6f\xc2\xb5\xb7\x03\x45\x12\xd9\xb0\xca\x13\xb5\x5a\xca\x3c\xe6\x59\x7e\xec\x00\x71\x44\x22\x9f\x85\x19\x4d\xfb\x14\x63\xc5\x9f\x1e\x66\x6d\x60\xf0\x10\x63\xdd\xfd\x01\x79\x6b\xfe\x65\xab\x2c\x4c\xdf\x6a\xd9\xaf\x13\x38\xbc\x8a\xb2\xe4\xf8\xbb\x23\xcc\xaf\x53\xcd\x47\x8d\x18\x84\xa4\x72\xc9\xa7\x4f\x4e\xa5\x85\xf4\x93\x63\x6a\x0d\xf7\xf9\x74\x2f\x2e\x0e\x4f\x46\x73\xb9\x92\x12\xf2\xfe\xc3\x4f\x3c\x52\x08\xea\x98\x65\x73\x22\x0d\xd4\x77\x2e\xa5\x7a\xe8\xd7\x59\xf7\x24\x6c\xee\x41\x7b\xfc\x6e\x31\x70\x74\x6b\x61\x9b\xf7\xf7\xcb\x12\x77\xde\x5d\x79\x5e\x4a\xb3\xd3\x47\xb2\x9e\x64\xee\xe3\x49\x8a\x3b\x27\xad\x35\xfd\xad\xf1\x02\x5a\x94\xd0\x2a\xfe\xc1\x4f\x5a\x52\x4f\xb9\xe6\x65\xf0\xf6\x5b\xb4\xc6\x74\x04\x4c\x16\x3d\xe6\x32\xd8\x02\x4b\x24\xb4\x6e\x8b\xaf\xbd\x89\x3a\x9f\x27\xe5\x5e\xfc\x40\x2d\xf5\xcf\x9f\x92\xa5\x9d\x9d\x2e\x8f\xda\x71\x45\xa6\xf5\xad\x7b\xfb\xfa\x01\x29\x6e\xdb\xad\x0e\x8a\xd7\xea\xd6\xee\xf3\xc4\xc0\x32\x73\x53\x49\xea\xa5\xa7\x11\xee\x48\x4a\xb0\xfc\xe6\x4e\xd4\x87\x0a\xd2\x2e\x83\xae\x52\x73\xdb\xa1\x7b\x56\xdf\xb8\xfb\xf8\x0e\x9e\xf6\x3d\x6a\xfc\xa6\xf2\x63\xf7\x89\x14\xe6\xe6\xe9\x25\x09\xd7\x0b\x40\xa8\xfb\x37\xd4\xaa\xa7\xf8\x94\x32\x7e\x09\x0d\xf1\x14\xd3\x51\xff\x89\x38\x3c\x39\xc7\x7d\x70\xd0\x89\xd6\xbd\xc6\x0a\x97\xa1\x68\xcc\x30\xa3\xce\x33\x3d\xcd\x3c\xe2\x07\xcf\xa3\x68\x4f\x90\x6d\xce\x64\xaa\x4a\x95\xd6\x1d\xb3\x1a\x65\xeb\x35\x7b\xc2\x2b\x9d\x50\xa7\x45\xce\xf4\x1c\x2a\xbd\x30\xe7\x55\x66\x5e\x92\x6d\x06\x59\xa0\xd9\x11\x24\x51\x38\xfc\xb3\xe5\xc6\xb4\x76\xec\x51\xc0\x42\x47\xd5\xbc\xf6\x2d\xa5\x9f\xde\xf2\xf0\x1a\x63\xad\xa3\x11\xc5\xd3\xd9\xe3\x40\x9a\x58\x27\x66\x6f\xc1\x7e\x68\x50\xad\x7e\x0f\x8e\x64\xad\x34\xe8\x28\x31\x6c\x2d\x25\x88\x7f\xd3\x7b\xd9\x99\xcd\x37\x36\xcf\xff\x3d\xb3\x36\xa5\xbc\xf9\xd9\x11\xcf\x00\x45\xca\xa6\xbd\xa5\x2a\xc3\xc0\xd6\x4b\xcc\xd7\x2f\x3c\x02\xaf\x5e\x4c\x59\x41\xd5\xa2\x41\xd3\xb5\x47\x87\x75\xf9\xff\x0c\xfc\x94\xf1\x58\x15\x2b\xd2\x4d\x16\x22\x8c\x93\xdd\x7e\x79\xab\xef\x58\xd2\x1c\xea\xee\x39\x55\x9d\x5e\xfb\x0a\x7b\xee\x7a\x6e\x47\x10\x36\x8d\x30\xc1\xd7\x28\x93\x80\xbc\x0e\x8b\xd2\x03\x9e\x27\xb7\x57\x9c\xb3\xf3\x5a\x4c\x21\xd9\x37\x4d\x2f\x37\x28\xa0\x1b\xc7\x27\x7b\x1a\x0b\x3e\x26\x40\x68\x3b\x00\xbe\x50\x0d\xb5\x3c\xe1\x3e\x7a\x06\x29\xb0\xb8\x9f\xb3\x3a\xb3\xbb\xc2\x51\xdc\x72\x11\x19\x59\x15\xee\xa4\x8a\x1f\x80\x0b\xa7\xc0\xa8\x78\x61\x33\xbf\x4f\x83\x62\xbf\xa9\x02\x3f\x9c\x9c\xcb\xd5\x22\x29\xc9\xb0\x9f\xaa\xf8\x73\x17\xd4\x2e\xe9\x95\xd5\xf8\xe3\xd3\x2e\xf9\x40\x1b\xa9\x50\x97\xab\x1b\xdb\xb8\xd1\x15\x5d\x01\xf1\xf0\x27\x9d\xf5\x57\x91\xfe\x77\xbb\x86\xe6\x33\x3a\xb3\xdb\xf9\x50\x7b\x01\xb2\xa2\x16\x0b\x01\xec\xf4\x64\x9b\xa6\x36\xb7\xa9\xd0\x05\xa2\x7e\xd9\xe0\xe2\x9e\x09\xf6\x04\x18\x49\x99\xf9\xce\x26\x53\xee\x5c\x30\x37\xf3\x1e\x03\x43\x95\x76\xd3\x32\x32\x7d\x45\xa1\x86\xfe\xc9\x6e\xfe\x59\xdc\xdd\x37\xb3\xbe\x50\x73\x7e\x0f\x40\x99\x09\x2f\xc4\x81\x2c\xe7\x97\x8e\x14\x3b\xa5\x1f\x12\xd5\x57\x9b\x67\xcb\x42\x0c\x90\xe9\x8f\x3d\x72\xfe\xec\x4f\xd0\xc6\x36\xcf\x4f\x5d\xc5\x75\x37\xe5\x7e\x53\x05\xe7\x71\x2a\xe8\xb9\xe2\x10\x0b\xeb\x01\x02\x9e\xef\xda\x59\x20\xe1\xa8\xd8\xa3\x60\x5f\xa6\x01\x2e\x76\xec\xd8\xf3\x05\xf7\x45\x29\x89\x7a\x98\x31\xe1\x99\x97\x59\x4a\xb8\x7e\x36\x26\x45\xbd\x40\xc8\xc4\x3b\x58\xad\x4b\xdb\x2d\x17\x48\xa6\x1f\xe8\xa5\x8b\x0c\xa7\x75\xe1\x2c\xf8\xfa\x4d\x60\x57\x96\x1e\x4e\x1f\xc2\xf2\x06\x9a\x0c\xa6\x23\x38\x2e\x3d\x29\x16\x66\x96\x4d\xb3\x88\x6c\xae\x57\x68\x17\x1d\x93\xb3\x47\xc1\x93\x15\xe1\xc9\x2b\xd4\xbe\x22\x36\xe7\xee\xdd\xc0\x6f\x92\xdc\xcb\x79\x43\x6d\x27\x80\xa6\x29\x26\x73\x43\xba\x27\xbe\x0b\xfc\xe4\x8e\xb4\xe5\xd4\xd1\x98\x6d\x2f\xe5\x01\x53\x51\x06\xfb\x73\x90\x92\x81\x4e\x6f\x4e\xba\xc2\xd3\x6c\xda\xc3\xc7\xf5\xd6\x6c\xb8\x0f\x52\xf0\x51\xfd\x8d\x0f\xec\x45\x52\x3c\xd4\xbf\xa6\x66\xaa\x1e\x7c\x0a\xaf\x80\x14\x86\xfb\x96\x93\x32\x68\x3f\x9b\xdd\xcf\x48\x3c\xf3\xf9\x46\x81\xd3\xdd\x0d\xc1\xbb\xe3\x1f\x2d\xf4\xa6\x74\x3c\xa8\x54\x08\x3c\x78\x92\xcd\xb8\x7e\x89\x53\x2a\x19\x53\x6a\xbb\xdc\x31\x67\xd3\x1e\xb6\x88\xe5\x44\x7f\x74\x8a\xb8\xd3\x96\xde\xab\x34\xcb\xa6\xed\x8a\x54\x0f\xfa\x6c\x3b\xb4\xcd\x0d\x84\x3e\xca\x40\x73\x45\x11\xe2\x78\xf1\xba\x49\xf1\xad\x79\xc2\x83\xa8\xc6\x4d\x99\x38\xe6\x6c\xc2\x5d\x21\x15\xa8\x57\xa2\x23\x04\xdd\x36\xe0\xd4\xd7\x6b\x8b\x7a\xb5\x18\xae\xd5\x95\x10\xc8\xb7\xc5\xfe\x06\x56\xf9\x96\x8c\x83\x7c\x38\x68\xdc\xbb\x8f\x02\x47\xe5\x18\x6a\xa7\x5c\x34\xf5\xd4\x48\x9f\x4d\xf4\x12\x81\x1f\x1f\x0f\x2d\x53\xdd\x58\x22\xef\xbc\xf4\x3a\x9b\xea\x99\x98\x68\x93\xf2\x3d\x58\x26\xcd\x6d\xd2\x59\xcd\x50\xf3\x35\x8b\xc0\xc4\x7f\x92\x27\x05\xb5\xe1\x55\xf7\xdd\x26\xc1\xc5\x9d\xdc\xe9\x5d\x98\xfd\x0b\x31\x21\xec\xd7\xc5\xa3\xa8\xd7\x1e\x13\x05\xb5\x81\xc5\x74\x7c\xe7\x87\x0b\xf7\x51\xde\xa7\x1d\xbb\x59\x01\xed\xb8\xb8\x44\x92\x6f\xc1\x31\x94\x12\x17\x36\x7d\xb3\x3f\x61\x90\xea\xc2\x45\x7f\xea\x37\xc8\xb1\xfb\x40\x8a\xce\xfd\xce\xe2\xea\x23\xcb\xc4\xd7\x71\x33\xeb\x0b\x37\x0f\xb0\xda\x57\x17\xf2\x57\xd2\x1d\xde\xd6\x84\xe0\xd3\x1c\x9a\x85\x1e\xac\x4c\x56\x6c\x3b\x0d\x77\x5a\x7d\xd8\xf6\x0f\xf2\xc8\x8e\x15\xe7\xff\xe0\x5c\xfb\x74\x00\x17\x55\x71\xdc\x2b\x82\xef\x5f\x08\xa0\x07\x4e\xf6\x54\x78\x35\x94\x1d\xdf\xf9\x47\x4e\xd9\xac\xb3\x62\x12\x95\x3c\xaf\xf9\xfb\x0e\x48\x5c\x85\x9a\xd1\xc5\xd1\x35\xe1\x02\xe3\x98\x6f\x22\x13\x82\xc1\xf7\x2e\x75\x6c\xcf\xae\x48\x6f\x30\x3d\xb3\x96\x2a\xee\xc4\x20\xd5\x27\x70\x3f\x30\xd8\x5f\x40\x8a\xdc\xec\x7c\x9d\xb5\xef\x6d\xf5\x11\x63\xb1\xca\x33\xea\x28\x5e\xd5\xfe\xa0\x09\x19\xb1\x3e\x8a\x67\x1b\xfd\x0f\x9a\x04\x92\x57\x8a\xda\xb7\x96\x44\x18\x6d\x24\xf4\xba\x31\x48\xf9\x73\x79\x23\x16\x11\x64\xe0\x69\xfb\x4d\xb7\xa9\xe4\xbc\x7d\x4a\x2d\xf3\x3f\x4d\x1b\x8e\xde\x7a\x22\x08\x16\xb8\x63\xcf\x9a\x89\x39\xdc\x24\x53\xe5\x7a\x5a\xca\x0f\x51\x89\x9a\x89\xf7\x24\x9f\xea\xc9\xc9\x05\xf4\xe1\x55\xb5\xf5\x87\x1d\xe8\x55\x2b\xec\x1e\xa8\x60\x18\x44\x9f\x68\x0b\x97\x7f\xf3\xf8\x6d\xa4\xf2\x6e\x2a\xda\xa8\x53\x23\xad\xde\xf9\x57\xfe\xc5\x98\x7b\x8f\x82\x1d\x27\x83\xde\x9f\x93\x74\x4a\x7b\xba\x66\x92\xc9\x92\x02\xb3\x14\xc5\x91\x1f\xe5\x6e\x18\x62\x7f\x82\x0a\xe0\x4e\x18\x3a\x8d\x7a\x85\xb2\xa0\x1b\x94\x88\xe2\xa5\x5b\xd9\xa2\x32\x79\x6c\x99\xe4\xc2\xe7\x96\x85\x9f\xc2\xc8\xdc\x38\xbe\xbc\x5d\x93\xa5\xc2\x58\x73\x43\x7c\x82\x9e\xe3\x11\xc3\xae\x1a\xd6\x9c\xd6\xe7\x29\x05\xce\xb8\x62\xa6\x5f\x17\x27\x31\x9f\x81\xda\x37\x5f\x6f\xff\xde\x3a\x1c\xdf\x3d\xb8\x2b\x68\x11\x6f\x55\x1e\xf1\x32\xed\xc4\x2b\x3d\xbe\xd0\xb5\xa0\xa6\x3a\x7e\x26\x57\xb7\x51\x34\x47\xd0\xfa\xba\xc3\xc5\x24\x5a\x92\xd8\x79\x71\x3f\x7e\x90\x41\x21\x0a\x0f\x8d\xef\x34\x36\xac\xee\x7d\xf1\x4a\xe9\x81\x94\xa6\xbd\x7a\x15\x8a\x56\xc7\x4e\x95\xd9\x64\x37\xb9\x09\xce\x28\xd7\xf7\x25\xe0\x54\x46\x96\xc7\x6c\xbf\x64\xa0\x3f\xa1\x50\x45\x69\x63\xb0\xd1\x03\xa9\xae\xf3\xde\x11\xae\x0e\xd8\x1e\x0f\x6c\xa9\xbe\x0a\x51\x7c\x55\x48\x3a\xc7\x58\x77\x89\x3a\xca\x1d\xb9\x6b\x99\xa4\x19\xbd\x71\xe2\x62\x17\x9d\xaa\xfd\x45\x0c\x7d\x75\xfc\x06\xbf\x5b\xe2\xba\x34\x7b\x12\x43\xc1\xc5\x9d\x7f\xbe\xd2\x81\x1c\x5b\x7c\x26\x14\xa1\x6e\x7c\xd9\xfd\x56\x1a\xb8\xa3\xce\xe4\x40\xd6\x13\x0b\xbb\x95\xd6\x6b\x54\x7a\xe9\x96\x4e\x5d\xb9\x5e\x6f\x5c\x6c\x56\xfe\xb9\xd5\x43\x7b\xcd\xed\x9f\xee\xfa\xe4\xce\x3d\x4f\x14\xbe\xea\xd3\x50\x82\x38\xb6\x6d\x1b\x09\xbc\xb0\x38\xd5\x9e\x93\x2c\xef\x0e\x7d\xb1\x46\x01\x61\xf4\x0d\x49\xda\x5b\x94\x92\x88\x46\x8d\x09\xeb\x9b\x50\xe5\xd7\xdd\x19\xb6\xf7\x9d\xc2\x00\x9c\x29\x07\x56\xa9\xf0\x08\x5d\xfe\xfb\x07\x0f\xde\x74\x7a\x18\x86\x24\x64\xbb\x89\xb6\x1b\xb9\x46\xe4\x85\x98\x53\x5e\x72\x2c\x78\x93\x26\xb7\xa7\x70\xc2\x5e\x8d\xf0\x25\x57\xb9\x98\x88\x29\x55\x18\x22\xbb\xbc\x2e\xa6\xa3\x4f\xbe\x94\xf3\x24\x6e\xcf\xd1\x35\x25\x21\xab\x14\x7b\x31\x69\xbf\x6b\xfb\x9c\xb5\x0b\x76\x39\x80\x8e\x41\x25\xfc\xd4\xb6\x82\xf9\x15\xe5\x83\x14\x54\x39\xf5\x22\x8a\xa9\x95\x44\xf4\x0d\xfa\x46\x96\x2c\xde\xbe\xf9\x7d\x35\x42\xfe\x9f\x70\xa1\xe4\x82\xfa\x6a\x1c\xf7\x1c\x16\x53\x54\x96\x90\xaf\x52\x16\xdb\x85\x8b\xaa\x68\x3e\x09\x9f\xee\x85\x69\x87\x9e\x13\xf8\xa9\x93\x7c\x36\xa6\x26\xff\x6a\xe4\xe1\xc2\xaa\x92\xbe\xcd\x10\x2d\xba\xb8\x58\x3d\x40\x8b\x12\x67\x65\xcb\x58\x6c\x1e\x8d\x12\x7c\x41\x96\xf9\xdd\x40\x87\xe6\xfd\x89\x20\xf6\x7a\x75\x78\xfa\x8d\x61\x96\xc0\x62\x6c\x42\x17\xae\x84\x07\xf9\x50\xa5\xbb\x94\xd3\x7e\x96\x02\xa9\x6c\x42\x67\xc6\xa5\x59\x4c\x11\x93\x4a\x51\xa3\x62\x2d\xd2\xc4\xef\xcf\xb7\x5f\x92\x69\x1e\xe6\x48\xf5\xf5\xee\x48\x8f\x73\x85\x6a\x92\x79\xb7\x88\x83\xe5\x2c\x07\xff\xdd\x07\x05\xe7\x2b\xe2\xaf\x5f\x17\x27\x8c\x53\x4e\x2d\x26\x27\xb4\x52\xae\x2d\xf4\x94\x71\x23\x1f\xaa\xf4\x78\x70\x22\xac\x02\x50\x27\x71\x52\xa4\x7d\x21\x4a\xee\x6a\xad\xe8\x1b\x90\x5b\x2f\xcf\x0f\x4b\xab\xdf\x2a\x92\x0d\x77\x90\x32\xa2\x7d\xb7\x53\x78\xe5\x78\x05\xc5\xfa\x42\x2d\x49\x0d\xec\x45\x75\xb8\xa1\xcf\x95\xb6\xc5\x87\x81\xff\x6c\xff\xfc\x96\x41\xf3\x39\x1a\x76\xc5\x42\x7f\xff\x15\xcc\x9e\x4e\x12\x7d\xf2\x52\x8a\x74\x88\x1b\xda\x13\x51\x6c\x63\x39\x48\xe3\x39\xaa\x4c\x82\x25\x5d\x7c\xff\xd1\xca\xae\x85\xb3\xd8\x59\xaf\x52\xc2\x44\x85\x27\xe8\x8f\xa7\x48\xd9\x2a\x6b\xbb\x2e\xac\xae\xab\x15\xb5\xfa\xc9\x19\xf9\x95\x32\x6f\x44\xf8\x23\x35\x03\x8f\xca\xc2\xef\x43\xdc\xd5\x89\x5b\x37\x7e\x96\x17\xcf\x5e\xfc\x28\x56\xfe\xa0\x6b\xa1\x58\x8b\xd6\x7c\xc6\xa4\xa4\xc4\x5a\xaf\x32\x27\xed\x47\xfa\xc9\x71\x59\x86\xdd\x6d\x0b\x8e\x53\x13\xc8\x58\x3e\x88\xcf\xcf\x45\xa8\xf5\x36\x79\x7e\x99\xd5\x87\x05\x5a\x4c\x35\xcf\xd9\xe2\x6f\xda\x7f\xb8\x17\x7f\x0a\xcf\x49\x3a\x86\x4f\x29\x8b\xb4\xbc\x83\x67\x77\x41\x69\x6f\x35\x4f\x3f\xb1\x7d\xb7\xbe\xf8\xa6\x40\xbc\x0b\xda\xd7\x55\xb1\xab\x32\xcb\x12\xf4\xe3\x35\x9f\x7c\x3f\xf9\x92\x5a\x24\xa0\x3f\x6d\x2f\xd4\x01\xe7\xe1\x10\x1a\xf9\x82\x33\x05\x66\x89\x86\xec\x1e\x8c\x8b\x90\xd3\xf8\x1c\x91\xc7\x3e\xa1\x45\xf1\x20\x68\x46\x1c\x14\x9f\xaa\x95\xf5\x7e\xcc\x5a\xaf\x10\xd4\x4a\x8b\x1a\x14\x8a\x72\x92\xe5\x7d\xb8\x1f\xe1\xfa\xfc\x9e\x67\x92\x2f\x9c\xee\xc3\x80\x10\x4a\x3a\xe6\xf7\x31\xf8\xb6\x70\x34\xfa\xf6\x64\xab\xc1\x05\x69\x96\xbe\x61\x4e\xee\x4c\xb8\x80\xb4\x7e\x2f\xc2\x8f\xa7\xd4\x7a\x6e\x51\x53\x3d\x84\x76\xd2\x7c\x99\x84\x53\xcd\xf1\x7a\x9c\x7d\x39\x6b\x52\x56\xee\x96\xbe\xe4\x63\xaa\x0f\xb6\xfe\x6e\xb8\xf9\x5a\xd6\x3a\x3b\xd1\xc1\x30\xd6\x90\x50\x55\x0d\x7f\x43\xa4\xc7\xcf\x72\xec\xec\x58\xc3\x3e\xc2\xe6\x1a\x2e\x3a\x14\x09\x10\x42\x2d\xef\xac\x62\xa4\x34\x07\x58\x99\x9f\x95\xf6\xd9\xc1\xfa\x52\xff\x71\x61\xfd\xe5\x4d\x13\x7d\xc5\xcc\xd5\x24\xdd\x72\xff\x72\x47\x41\x3e\x69\x98\x4a\x9b\xd1\x37\x8e\x83\xa3\xa7\x72\xcf\x1f\x49\xc4\x1f\xd5\x43\x8c\x3a\xb7\x5f\x8c\x0e\xd0\xef\xac\x2f\xc5\x34\x47\x96\xcf\xbb\x60\x44\xc9\x87\xbd\x2a\xdd\xcf\x93\x02\xbe\x50\x68\xd6\x80\x0d\xa9\x68\x58\x63\x90\x49\x3f\x1c\x3d\x28\xe7\x40\xee\x7c\x2c\x94\x9f\xe9\x69\x78\xb5\x58\x15\x01\x1f\xb0\x74\xb1\x68\x09\x68\xdc\xf1\xe4\xa1\x13\xe8\x4c\xf3\xf4\x72\xf7\xa6\xb6\xd7\x66\x79\x25\x11\x17\xda\x44\x45\xc0\x76\x7d\x6b\x87\x92\xc2\xdf\x15\x8f\xdf\x4e\x57\x55\x88\x52\x41\x72\xcf\x07\xd0\x4a\x33\x4f\x46\x3f\x9c\x2b\xe8\xfa\x58\x5d\xb3\x31\x2c\xc3\x93\xc7\x4e\xaf\x70\x04\x5b\x54\xe0\x2d\xea\xa3\x28\x4a\x15\xe2\xe9\x4c\xfb\x1c\x55\xb5\xfe\xf3\x4e\x8d\xaf\xaa\xe5\xd6\x79\xfb\x1b\x39\x94\xf2\x1c\xb6\xfb\x51\xbf\x02\xfd\x4e\xac\x36\x47\x57\xcb\xd8\xdb\x1e\x69\xd2\x51\x22\x39\xc3\x4c\x6b\xa8\x1c\x70\x8c\x61\xda\x14\x7c\xcd\x2e\xef\xfb\x32\x79\x34\xc7\xab\xc9\xfb\xca\x85\xee\xce\x8a\x5d\x0e\xc7\x84\xbb\xd9\x72\xf5\x61\xb4\x1a\xa6\x0b\x86\xd6\x79\xca\xe9\x11\xef\xcf\x86\xab\x15\x5b\xd6\xee\x5a\xd2\x25\x6e\x1e\x3c\xfa\xb6\xd3\x8c\x56\x40\xbd\x17\x0f\x10\xef\xa8\x0c\xec\xc3\x95\xa0\x7e\x52\xaf\xeb\x3a\xb0\xfa\xe1\xd8\x2a\x3a\xf7\xea\x98\xc8\x33\x62\x58\x75\x75\x99\x47\xab\x95\x61\xcd\xf3\xa2\xf6\xc6\x92\x0e\xaf\x85\x3a\x17\x26\x6e\xde\xbc\x95\xbf\x29\xcb\x9b\x5e\xdc\x62\xf2\xb3\x22\xa2\x82\xff\x64\xce\xf2\xb3\xa1\xe5\x8e\x88\x99\xa6\xb2\xc5\x7e\x9d\x0c\xa7\x8e\x42\xdf\x0f\xb3\xcc\x50\xb4\x6c\xbd\x81\x46\x49\xe2\x6a\xec\xef\xe3\x3f\xcf\x51\x67\x8f\xa8\xce\x3f\xdc\x8f\x37\x61\x41\x15\x11\x1c\xd8\xf4\xf9\xa2\x83\x4d\x42\x12\xb3\x92\x5c\x09\x50\x8e\xd5\xc1\x62\x70\x1c\x4f\x28\x8a\xb1\x2f\x77\x73\x98\x23\x50\xe1\x21\xfe\x55\xcd\x07\x73\xe8\x77\x91\xd1\xb5\x89\xd1\xca\xdc\xf4\x55\x55\x7c\x70\xda\x0f\x48\xe6\x96\x57\x28\x39\x25\x77\xa8\xf1\xae\x77\x3b\xa0\x6e\x7b\x52\xcf\x89\xee\x66\x25\xed\x80\x4b\x65\xe4\x53\xb9\xde\x34\x35\xf8\x4c\x23\xc7\x5b\x5b\x1d\x96\x6e\xf0\xb2\xf9\x57\x58\x3c\xca\xf3\xac\xd2\xb3\x30\xe2\xa2\x97\x42\x25\xd7\xcc\x01\xd4\xe6\x6d\x45\x35\xcf\x7f\xd3\x3f\xdc\x7f\x5e\x76\xdc\x48\xdc\xf2\x27\xdd\x8d\x53\x0a\xe4\x1f\x8b\x47\x49\xb0\x76\x40\xfd\x71\x76\xeb\xbb\x6d\x99\x46\xef\xee\xb2\xf9\xd5\xa4\xdf\x99\x49\xda\xa5\x43\x43\x51\x7e\x33\x51\xd3\x42\x12\x31\xbf\x67\x9f\x44\xed\xf0\x43\xb7\xb4\x87\x0d\x24\x4c\xc4\xed\x16\x2a\x5f\x89\xf3\xab\x16\xfa\x8d\x9b\xb1\xaa\xfa\x16\x01\x25\x0e\x59\x04\x70\x70\x72\x31\x9b\xd3\x64\xb3\xa7\x09\x6b\xd0\xa7\x70\x7a\xe8\xac\x87\x64\x65\x1a\xfe\xe6\xa6\x1e\xed\xc3\x2c\x53\x43\x23\xb4\x14\x09\xa5\xdf\x24\xd8\x45\x71\x4b\x96\x45\x79\x89\x4d\xd4\x7b\xe9\x79\xf7\x55\xf5\xfa\xe9\x73\x14\x19\x4a\x2e\xfb\xe3\x1f\x0d\x59\x2b\xe2\x12\x02\xe8\xeb\x9c\x71\x79\x8a\x0f\x18\xda\xd8\x26\x2d\x63\x0e\x1b\x53\x79\x9d\x7a\x92\x07\x43\xfd\x2a\xfe\x3f\x26\xbb\x32\xae\xe9\xf7\xfb\xfb\x33\x7a\x74\x87\x08\x6c\x74\x77\x08\x0a\x0c\x10\x69\x24\xa4\x4b\x3a\x24\x44\xba\x27\x22\x25\xc2\xa8\xd1\x0d\x22\x29\x21\x9d\x52\xa3\x46\x4a\x97\xb4\x74\x83\xa4\xf7\xcb\xef\xef\xff\xe0\x7e\x7c\xce\xf5\x8e\x53\xaf\xcb\x59\x04\xe2\x18\x0a\x72\xec\x00\xef\x08\x7c\x02\x57\xdf\x8b\x96\x27\x8c\x17\xb0\x11\xcd\xd0\xbc\x8a\x50\x9a\xd5\xc8\x36\x70\xe1\xd8\x34\x4c\xbf\x7e\xe9\x3e\x45\xef\x26\x70\x20\x36\xf5\x71\x94\x10\x9a\x97\x48\x47\x0a\x7f\xeb\x57\x2d\x78\x0b\x5a\xb7\x1e\x15\x7e\xfc\x1c\x79\x04\x5f\x3e\xbe\x35\x78\x0d\x8b\x16\x81\x16\x19\xc6\x5e\x20\x1a\x37\x0d\x43\xb8\x8c\x52\x2f\x75\x83\x84\x4e\x2b\xdf\x95\x37\x7a\x7e\x30\x69\x3e\x9e\x43\xf2\xd8\xdc\x52\xb6\x99\xaa\xb6\x87\xa8\x4b\x10\xf6\xd7\x80\x3c\x2b\x71\x1b\xa9\x30\xb1\x86\x56\xc3\x80\xbe\xa8\xcd\x50\xde\x99\x83\x0f\xca\xac\xd6\x7f\xe3\x62\x53\x11\x13\x1b\x61\xc3\xfa\x07\xec\xae\x03\x0e\x0d\x06\x76\x99\x45\xa5\x65\xfc\xb9\x29\x84\x71\x14\x07\xb6\xd3\x43\xaf\x3a\x0e\x3b\xb7\xa5\xbf\x4a\x69\x89\x69\x5c\x84\x24\x37\x22\x9b\x8f\xd3\xf4\x2c\x42\x6d\xa9\x38\x19\x37\xe7\x31\xf0\x90\x66\x78\xa0\x98\x44\x36\xc5\x1a\x85\x96\x36\x50\x5e\x5a\x5c\xf6\xf7\xf8\x23\x4b\x6d\xb2\x9b\x9e\xcd\x8f\xfc\x7b\x56\xa9\x06\xd4\x65\x08\x30\x57\xef\x3b\xde\x75\xa7\x29\x1c\xb3\x47\xbe\x32\x1b\x1a\x63\xa0\xd2\x24\x93\x1f\x81\x8b\x5f\xfd\x0b\x98\x6e\x1f\x94\xa7\x1c\xce\x8e\xfe\xb6\x35\xd2\xcd\x4e\xe9\x75\x94\xea\xbc\x6e\x76\xaf\x16\x30\x38\x19\x39\x8f\x69\xf4\x0a\x06\xb4\x49\x8d\xf8\xb2\xee\x29\x1a\x06\x1e\x77\xfa\x4a\x3e\x37\x1d\x18\x3f\x34\x2d\x76\x92\xda\x45\x7f\x59\xe9\xc8\x4f\xa2\x27\x9d\x5f\xf8\x65\xf0\x55\xfc\xe2\x83\x2d\xbd\x20\x1f\x9f\x6b\xed\x68\x33\x53\x6a\xdb\xaf\x9c\xea\x4b\xf1\x2b\x6a\x59\xdf\xdb\x88\xdd\x91\x77\xe9\x88\x87\x40\x4a\xb1\x22\x21\x16\x8b\x93\xe9\xcd\xb4\x62\xa8\xbb\x9a\x9b\x73\x77\x97\xdb\x5c\x5b\xf9\xaf\xd1\x0c\x7e\xd7\xfa\x3f\x94\xfc\xf7\x42\x96\xbd\x98\xcb\xc5\x37\x55\xbb\x53\x6b\xaa\xdc\x1d\xaa\x8b\x3a\x15\x27\xc7\x49\xbb\xdc\xee\x6a\x47\xc3\x6f\x9f\x99\x4e\xc1\x3d\xbb\xe1\xaf\xda\xb0\x8e\x58\x4a\x8d\x4c\xd5\x48\x89\x84\x2a\xb6\xfa\x37\x18\x44\x9f\xa8\x23\x3e\xf7\x1e\xe0\xbe\xb5\x6c\x20\xee\xd4\xeb\xe0\x9e\xe2\xf9\x50\xa1\xe7\xa6\xdf\xa6\xdf\x57\xef\xb8\x6e\xb5\x76\xfa\x5c\x82\xf2\x4a\xbf\xed\x23\x9f\x80\x94\x86\xa9\x58\xce\x5f\x2b\x79\xea\xc1\xa5\xd2\x99\x92\x69\xbd\x20\x15\x53\xcd\xbe\x24\xf1\x87\x87\x0c\x3d\x59\x4a\x89\x05\xe1\x7e\x5b\x59\x57\x5e\x3b\x9a\xfe\xcc\x22\xa7\xcb\xae\x37\x22\x53\x52\xcb\x31\xbc\xdb\x0b\x43\x52\x09\x7c\xd5\x01\x3a\x8b\xa5\x19\xb7\x41\xfb\x6e\x78\x6c\xa4\x4b\x82\x10\xbd\x97\xf2\x21\xd1\x7b\xb8\x10\xe5\x7a\x84\xd3\x81\x13\xc1\xe6\xfa\x87\x25\x41\xc8\xf5\xbe\xd2\x7c\xd2\xb2\x27\xe7\xb7\xb0\x29\x5b\x7d\xed\x20\xcd\xc5\x76\xcc\x4f\x0d\x3b\x3e\xe9\x7e\xd7\xad\x33\xeb\xa5\x67\xbd\x07\x02\x27\x9e\x7e\xea\xca\xf9\xec\x36\xfe\x46\xea\x91\xee\xc5\x6e\x98\x26\x5b\xf5\x48\x27\xdc\xa9\xf6\x52\xb4\x5e\xd9\xe7\x13\x9f\xd6\x5f\xb8\x6d\xf5\x3d\x7b\x2f\x1f\xdc\xfa\x60\x07\x12\x31\x3e\x28\xdf\xb5\x2c\x71\x88\xb7\x7d\xf9\x8d\x0c\x24\xce\xbd\x0d\xf6\xec\xb9\xd8\xbd\x3b\x70\x40\x94\xd8\x83\x7c\x65\xb8\x74\xbf\x20\x35\xef\x71\x31\x6e\x3c\x8a\x73\xf6\xe3\x6d\xfa\xcf\x16\xaf\xc3\xfa\xe6\xd5\x96\xd2\x7c\x7b\x32\x97\xee\x06\x9f\xdb\xd1\x6a\x89\x3b\x0b\xfe\x08\xf0\xb8\x7b\xf0\x4b\xfd\x2f\x69\x08\xea\xcb\xbe\x7b\xe2\x6f\x89\xf7\xa3\xfa\x54\x12\x43\x36\x7d\x3d\xc8\x1f\x73\xf4\x3e\x7b\x4f\x2e\xfb\xee\x8d\xdc\x4e\x0f\x75\x96\xb8\x87\xdf\xc1\x20\x38\x36\xa5\x34\x38\x58\xc0\x60\x1f\x3d\x1e\xe8\xfb\x0f\xa2\xfd\x19\x47\x4c\x61\xfb\xab\xb3\x4a\xcb\xbd\xb9\x10\x9e\x2c\x3e\xe7\xc9\x75\xa2\xc8\x83\xb9\x33\x6a\xf7\x81\x46\x33\x71\x68\x91\x49\x6c\x1d\x84\xf1\x14\xe3\xf7\xb2\xd8\xe4\xea\xa8\x48\xb1\xd9\xc5\x63\x84\xfd\x8e\x38\xf0\xa3\xba\x36\xc6\xe5\xb3\x54\x67\xfe\x6c\x43\xed\x34\xcb\x00\xc5\xa8\xd9\x45\x59\x25\x6f\x87\x94\xde\x62\x4d\xad\x6b\xc5\x7d\x8d\x7b\xaf\xe2\x72\x8c\xa7\x0f\x4c\xaf\x12\x8d\x0f\x12\x84\xb0\x18\xd6\x7f\x92\x28\xf1\x96\x03\x9b\xc3\x8f\x9f\xa4\x92\xc2\x32\xaa\xa4\xe9\xcc\xc7\x85\x30\x13\x58\x27\x12\xc5\x0a\xf9\xd1\x9a\x1d\xee\x0d\x74\x0a\x65\xad\x9e\xca\x2a\x6b\x0f\x46\xee\x53\xb5\xe2\x02\x11\xe0\xb4\x70\x30\x88\x33\x1e\x94\x46\x0e\x1b\x9e\xc5\x66\x80\xf0\xfa\x17\xb1\x3e\x35\x52\x10\x74\x1e\x6f\x8a\x53\x5d\x3c\x2d\x2b\x2f\xc0\x34\x2b\xab\xf1\xac\x4f\x72\x5b\x21\x1e\x72\x69\xd4\x8c\x16\x90\x7b\x8a\x43\x31\x11\xf1\xdf\x23\x23\x61\x78\x6a\x35\x2e\x1e\xcc\x70\x76\x61\x57\x0f\x0f\xf3\x7b\xbc\x17\xb9\x3b\xdb\xe3\xe8\x64\x93\xe0\xa9\xd5\xa5\x51\x17\xdd\x3a\x0f\x55\xc6\xbf\x1e\xbd\x7a\x41\xdc\xef\xc1\x96\x92\xd4\x30\x3a\xc2\x7e\x72\x50\xcf\x3e\x5d\x33\x11\x4c\x6b\x5f\x1d\x2f\x17\xed\x69\x73\x9c\x51\x8f\xb4\xf0\xe2\xff\xdb\x7d\x79\xf6\xa4\x8c\xd9\xe5\x6d\x3c\xf1\xcd\xcc\xcb\x1e\xa2\x87\x16\xa8\x48\x38\x91\x9b\x3c\x16\x05\xc6\x98\x1e\x66\x8d\x3a\x20\x54\x80\x23\x0e\x33\x6c\x0d\x23\x85\x65\xf8\xa5\xed\x16\xf5\x86\xc4\xa0\xe1\x8d\x68\x5c\x91\x78\x79\x36\xfe\x99\xf5\x3b\xfc\xba\xf7\x2e\x4e\xbe\x2d\x4e\x43\x95\xc4\x35\x77\xea\xfd\xaf\x83\x60\x09\xbc\x9b\x83\xc0\xef\x04\x50\x9a\xfe\x89\xef\xdc\xd2\xba\xe4\x3f\x4e\xad\x7b\x7c\x7c\xc8\x82\x26\x7e\x3d\x76\x14\xb1\xab\xd9\xf5\x52\x57\x8a\x85\x0b\x73\xe5\xbc\xde\x54\x55\xe7\xdd\x8b\xe6\xd6\xbb\x85\x79\x87\xaa\xe5\x9c\x0c\xc4\x23\x76\x2c\x00\x53\x18\xe4\x9c\x98\x9d\xe6\x49\x0f\x7f\x5d\x55\x38\xa5\x01\xc6\xa4\xec\x14\xff\x38\x4f\x9f\x71\x8f\x10\x0d\xe9\x76\x4d\xae\xc2\xdf\xaa\xa5\x72\x8d\x48\xd6\x93\xdd\x6b\xa6\x18\x14\x4e\x33\xcb\x61\x56\xa8\x5b\x6e\x45\x03\x82\x10\x5a\xc4\xc9\x6b\xf0\xef\xc9\x7f\xfd\x7b\xad\x66\xbb\x1b\x06\xc2\xcf\x1d\x2b\x92\xb5\x93\xda\x47\x37\xb7\x69\x0b\x3c\x01\x2d\xa9\xbe\x62\xd2\x3a\xa9\xaf\x5a\x4c\x36\xf0\x9e\x82\x6f\x88\xe8\x97\x0c\x1f\xa6\x71\xa3\x17\xc3\x04\x29\x30\x68\x11\x9a\x35\xbe\x00\x8e\x8d\xf8\x12\x0e\x84\xb6\x9e\x05\x4b\x8b\x94\xbe\x64\x9a\xcf\x53\x2b\x83\xc4\x8a\xa0\xa2\xd6\x76\xfb\xb8\x16\x36\xbf\xae\xe4\xb4\xb0\xab\xe3\x5b\x3f\x2c\x8f\x1c\xde\x2c\x6b\xac\x7d\xc6\xd5\x96\xf6\xb3\x1f\x0c\x22\x54\xc6\x35\x2a\x5f\x3b\x49\x97\x4b\x01\xe1\x45\xa3\xc1\x20\xca\xfe\x4f\x9f\x44\x98\x8c\x64\x30\x75\xde\x9a\x15\x7d\xc3\xfa\x49\x6d\x87\x13\x77\x78\x29\xc7\x7a\x1d\x93\xdc\x58\xe8\x59\x49\xd2\x09\xf7\x8c\x29\xa1\x8a\xa3\x19\xfa\x06\x74\x59\x99\xc9\x03\xd8\x35\xee\x64\x1d\xa2\x43\x3e\xc0\xc0\x3b\x0a\xe6\xde\xcd\x10\x67\x01\xd7\xee\x1f\x88\x3f\x5f\x5f\xbc\x99\x1b\xd9\x1f\xaf\x79\x3d\x35\x15\x26\xfa\x46\x5a\xf8\xd5\x91\x35\x17\xf5\x6b\x98\xd4\x73\xb7\xde\xf5\xde\x53\x1e\xf8\x5b\x43\x85\x3a\x62\x4b\x38\x86\x51\xc7\x57\x8b\xc5\xf7\xe8\x03\x99\xc7\xaf\x03\x66\xcd\x6d\x8e\x04\xba\xdf\x1b\xde\x1a\xd9\x96\xdb\xe9\xa0\xc2\x00\x9c\x42\x4c\xf5\x12\xdf\x56\xf3\xdc\x21\x00\xab\xbb\x2f\x0c\xc0\xb7\xab\x65\x0e\x2e\x61\xcb\x6d\x10\x6f\xe1\xe1\x04\x2d\x21\xd9\xdb\xa1\x63\xe2\x92\x3a\x75\x9e\x33\x44\x91\x12\x71\xb5\x01\x5f\x94\xd3\xb7\x3f\x54\xa9\x40\x5f\xc3\xa2\x6d\x72\xd7\x4e\xd2\x15\x53\x40\x78\xe1\x53\x78\x20\xcf\xdc\x38\x2a\x9d\x7b\x21\x81\xcd\x74\xaa\x7a\x90\x65\x7f\x93\x76\x3d\x47\x7f\xc6\xd0\x5b\x88\x9d\xd4\x70\xe0\xac\x3a\x1e\x80\x53\x68\x58\x1a\x9c\x5c\x8d\x45\x00\x79\x3c\xcd\x82\xa5\x25\x38\x54\xa2\xcf\xbb\x46\x43\x73\xd7\x7e\x37\xf5\xbe\x61\x68\xd9\x8c\x37\x5c\x2c\xc5\xc9\x91\xfb\x73\xa1\xc4\x28\xd8\xf2\x9f\x8d\xe8\x82\x5d\x49\xc8\x30\x1c\x08\x13\x7b\x82\xc5\x99\x9e\xbc\x70\x4f\x90\x78\xb7\x6a\x96\x8a\x5d\xbd\xa9\xd2\x82\xbd\xcc\xde\xf2\x15\x29\x30\xf4\x83\x75\x3e\xa9\x5e\xce\x12\xa9\x3c\xee\x27\x0d\xd0\x92\x12\xe2\x01\x9e\x69\x75\x60\x90\x27\x7c\xea\x13\xdd\x77\x6a\x71\xad\x3a\xa2\x5b\x24\x5e\xab\x06\x2f\x93\xd7\x87\x09\x5a\x52\x95\xa2\xb4\xf3\x7e\xad\x89\x97\xfc\x78\xaf\x61\x82\x90\x82\x89\xff\x2c\x0b\x87\x01\xa5\x73\xa3\xf8\x0c\x85\xae\x14\x2a\x2d\xe5\x46\xa5\x3f\x52\x1f\xc5\xe5\x19\xe7\x88\xbe\xf1\xea\xb0\x84\xaa\xff\x1c\xb1\xdd\xaf\x0a\x05\xd1\x7d\xcc\x8e\x46\xbd\x89\xe4\xc7\x24\x25\x54\x23\xc5\xf8\x0d\x0c\xd5\x07\xc0\x6d\xdd\x06\xf8\xc0\xd2\x3c\x76\x24\x08\x0d\x66\xc7\x14\x9a\x94\xbd\xb7\x35\xad\xd2\x2e\xd4\x58\xec\x81\x8e\x84\x26\xa4\x9d\xf0\x61\x02\x11\x08\xa0\x85\x53\x2e\x3c\xbe\x16\x06\x92\xea\xd4\x39\x60\xf8\x42\x3d\x12\x1e\xff\x5d\x6d\x67\x64\x32\x61\x8c\x5e\x25\x4e\x34\xd1\x9c\x21\x53\x88\x40\xb8\x7d\xaf\xab\x29\x6e\x79\xeb\xb5\xeb\x58\x1a\xf6\x0f\xb8\xe7\xed\xd9\x3c\x91\x0f\x16\x5c\x30\x95\x1b\x3b\x59\x09\x3b\x35\xa2\x77\xfe\x7a\x08\x9f\x51\xdf\xa8\xb7\x32\x99\xd9\x31\x45\x6c\xc8\x57\xeb\xf2\x32\xb8\x6a\xfa\xdb\x87\xcf\x52\x6e\xa7\x28\x95\x10\x6b\xe4\xf9\x17\x05\x45\x34\x21\x46\x78\xee\x10\x3b\x3d\x20\x9f\xfb\xb2\xd4\x82\xfa\x71\xa9\x5c\xf2\x65\x87\xb1\x5c\x69\x87\xc5\x8c\x61\x35\xb7\x61\x91\x09\xb5\xeb\x97\xee\x4b\x9c\x6a\x86\x09\x15\x65\xa6\xbd\x4e\xde\x01\xfb\x98\x5d\xa3\xe8\xeb\x4e\x38\x2f\x42\x0a\x8a\xdb\x69\x91\x02\x6f\x3e\xc6\xc0\x91\x52\x90\x53\x8b\x4b\x64\x16\x25\xd5\x6e\x99\x25\xfc\xfd\x53\x98\x31\x95\x8e\xa4\x2c\x3a\x59\x08\xc9\x38\x33\x49\xd0\xa2\xcf\xe7\x8f\x07\x62\x11\x05\x66\x9a\x12\x53\x5d\xd7\xc4\xb2\x0f\xc6\xe4\x6a\x4d\xa8\xac\xd2\xa9\xf6\xf9\xf6\x68\xfb\x0f\x7b\x34\x72\x08\x26\x12\x89\x37\x45\x98\x01\x5a\x44\x23\x14\x17\xab\x4b\x94\x29\x4a\xe6\xf4\x1c\x6a\xf0\xa9\x38\xf1\x4c\x18\xe4\xeb\x3a\xfc\x52\x3d\x99\x31\x63\xd3\x95\xde\x00\xd9\x80\x14\xbb\x3b\x88\x36\x60\x87\x83\xa2\xe8\xcc\x15\x60\x9d\x2c\xa7\x5f\x19\xdf\x6a\x64\xef\x6a\x1d\xc8\x05\x41\xcf\x92\x45\x58\x9c\x52\x76\x4a\xe9\x6c\xa5\x9f\x48\x10\xe8\xa4\x84\xa7\x23\xda\xb7\x9c\x55\x06\x5c\xe0\x97\x9e\xe5\x13\xcf\x2e\xa5\xa4\x73\xb7\x2a\x58\x60\x51\x7c\xca\xcf\x09\x4b\xed\x26\xb7\xc6\x40\x76\x7a\xbf\x0d\x73\x4e\xb7\x9e\xe1\x30\x5e\x5d\x81\x5c\x87\x00\x32\x5a\x44\xe9\xca\xac\x2f\x36\x88\x74\x24\xf7\x2d\xb5\x25\x9c\x78\x4c\xbf\xc0\xe4\xd8\xf7\x9c\x6c\xca\x3a\xfe\xfb\x10\x85\xad\xcc\x93\xa1\xdb\xaf\xf6\x44\x3b\x1a\xf6\x89\x98\x18\xb4\xa4\x38\xc7\xbc\x3f\x42\xdf\x46\x0d\x9b\xc9\x7e\xf3\x8f\xd5\x8f\x20\x3e\x7e\x25\x34\xe3\x08\x35\x28\x6f\x63\x6d\x65\x49\xf0\xbe\x36\x48\x3b\xea\xd3\x07\x0f\x21\xcd\x4f\xe6\x29\x04\x21\x07\x79\x72\xad\xc0\xa0\x8a\x8d\x24\xe4\x92\xf9\xda\xd1\x98\x41\xaa\x73\xfd\xe0\xb0\x59\x5f\xb0\x6b\x39\x9a\xe6\xfb\xcb\x1e\xbe\xf8\xef\x43\x44\xb6\xd2\x82\x43\x57\xbf\xd1\x38\x67\x74\x88\x18\x4b\xdc\x7f\xe3\xa6\x63\x28\xed\x03\x17\x7e\x76\xee\x54\x3d\x95\x15\x82\xd4\x8f\x20\xd6\x12\x2b\x08\xf0\x62\x3d\x78\x67\x40\x47\xc2\x7d\x56\xcb\x74\xf1\x3d\x9e\x5e\x03\x20\x54\x0e\xf8\xea\x1f\x25\x5b\x1a\x2e\x37\xdb\x93\x7c\xfc\x87\x94\x88\x98\xe1\x57\x54\x34\xc3\x11\x55\xfc\xf7\xa1\x0f\x45\xad\xd8\x24\xa3\xc1\xa2\xd6\x19\xc9\x38\x84\x78\x38\x36\xd0\xf3\x71\x5b\xc8\xf3\xfd\xcf\x19\x1a\x17\xf6\xee\xc9\xfe\x81\xa9\xc8\x08\xe2\xb7\x6e\x64\x47\x60\x7c\x75\xf5\x76\xa5\x8b\x99\xce\x85\x0d\x6e\xae\x55\xc2\xc8\x3a\xc7\xb8\x97\xcf\x46\x39\x5b\x08\x68\x11\xf5\x3a\x17\x6c\x86\x98\x9e\x74\x78\x54\x57\x9d\x6a\x77\xc1\xbf\xb5\xdf\x72\x54\x10\x63\x5b\x0f\xdd\x31\xf2\x6d\x55\xc8\xe5\x61\xfe\x3c\xc3\x70\x4b\xa9\xed\x59\x3a\x54\x2d\x28\x47\xfe\x86\xf3\x26\xb7\x6f\x0d\x2f\x5a\x0a\xdf\x82\xf2\x26\x77\xd8\x14\x3f\x50\xc5\x19\xc8\x9a\xe1\xc8\xf7\x30\x7a\x5d\x76\x7a\x14\x31\x59\xcf\xe1\xc0\xe9\x48\x39\x33\x71\x5f\x8d\x52\x7a\xb5\xa5\x83\xb9\x1c\x52\xfd\x75\x3b\x5d\xac\x24\x1a\x3d\x06\xbd\xb5\xa6\xb3\x83\xd0\x46\x3a\x43\xc2\x83\x87\xf2\x94\x9e\xcd\x29\x06\x41\xeb\x02\x76\x30\x88\x56\xcd\x1d\x68\x56\x15\x1e\x13\xf6\x77\xec\x50\x4b\xd0\x87\xc6\xa3\x69\x17\x32\x85\x54\xf7\xe7\xd1\x01\x52\x4a\x5c\x89\xbf\x6b\x8c\x68\x2d\x59\x7c\xc1\x1c\x4c\x31\x2f\x52\x98\x28\xeb\x0a\x04\x70\x0a\x69\xed\xf4\x9f\x99\xeb\xfe\x16\x26\x2d\xc7\xae\xb6\x05\xdc\xa5\xef\x9c\xdf\x2a\x33\x4b\x51\x0e\x54\xf4\x9a\x7d\x7b\xf8\x28\xe7\x8e\x7a\xd8\x84\x2d\x6c\x94\x15\x35\x1f\x39\x11\x4c\xd7\x88\xae\x9c\x7d\xb0\x35\x80\x83\x7e\xc0\x79\x23\x1d\x3d\xe9\xf0\xd2\xfa\x97\xdb\x8d\xb4\x09\xed\xe4\x72\x95\xf1\xd3\x14\x95\x7b\xa8\x3e\x2b\x27\xfa\xc7\x8b\x20\x3b\xf4\xef\x25\xab\x2e\xff\x64\xbf\xd8\xbb\x54\x5f\x6c\xd5\x6e\x48\xde\x1a\x32\x37\x51\xfb\xa6\x43\x3e\x0a\xc2\xd4\x39\xc6\xec\x18\xac\xc2\x22\xe8\x12\x87\x88\x7f\x8f\xda\x83\xfa\x52\x54\x10\x63\xeb\xcc\xba\x2e\x18\xf1\xbc\x6f\x32\x94\x61\xd2\x32\x31\x94\x83\xbf\x43\x07\xb3\x8a\xed\x18\x9c\x8d\x27\x8a\x1b\xfa\x63\xd3\x22\x42\xd3\xcc\x4f\x7c\x35\x8a\x86\x60\x5f\x59\x59\x1e\x7a\xe0\x80\xfa\x23\x93\x65\x83\xdf\x84\x26\xc6\x77\x17\x37\x24\x53\x51\xef\xbf\xa3\xec\x2f\x1e\x2e\x9f\x1b\x0d\x9a\x17\xa9\xbc\xcc\x3e\x1b\x9f\x79\x3c\x6c\x2f\x07\x08\x42\x7a\x4f\x03\x7b\xd7\x7b\xc9\x79\xf1\x68\x16\x08\x6c\x7c\xcd\xfc\x44\xa3\x7e\x1b\x4c\x1e\x6b\x91\xce\x28\xbf\xaf\x7d\x10\xb7\x71\xd9\x85\x88\xe7\x80\xb9\x3c\xf3\x10\xad\x2b\xf4\xf1\xdc\x1e\x59\xbb\x7f\x6a\x1e\xab\xf3\xec\x04\xe6\x0a\x59\x37\xde\x49\xfe\xbb\xab\xe6\x5f\x7d\x5b\x91\x9d\x61\xb0\xaf\xac\x0f\x3f\x66\x79\xbd\xcd\xfc\xe6\x1a\xcd\xbc\xe8\x2b\x48\xb0\xdf\xfa\xe5\xcd\xbc\x41\xaa\xd6\xea\x5f\xcd\xbc\x31\x3e\x6f\x0a\x6c\xed\x3a\x78\xbd\xf9\x77\xc5\x94\xfd\xcc\x52\xc0\xf7\x26\x43\xa4\xad\xb7\x3b\x10\xc0\xc1\xc2\xac\x71\x70\x06\x53\x27\x57\x41\xb4\x6a\x56\xdb\x60\xcc\xeb\xe6\xf3\x8c\xf8\x55\x78\x06\xd4\x6d\x31\xf6\x4f\xc8\xda\xfe\xd0\xa9\x65\x80\xae\x4d\x15\xe9\xd7\x00\xae\x81\x2f\x05\x7c\x67\x42\xb6\x0e\xcd\x2f\xa5\x38\x8e\x30\x05\x21\x59\x56\xfa\xbd\xeb\xb6\xf4\x64\xc2\x98\x18\x72\xd6\x98\xe9\xfd\xcb\x83\x4b\x0a\x65\x0a\x19\xd5\x1a\xfc\x7f\xe7\xa2\x48\x6a\x6c\x0d\x19\x8c\xbb\xac\x6d\xfd\x5e\x56\x1a\x3e\x0d\x7c\xee\x15\x3c\x37\x1c\xe1\x72\xa9\x3a\x21\xf9\x1a\x26\x35\x24\x02\xea\x71\x76\x6c\x26\xc2\x0a\x50\xa8\xb2\x65\x70\x82\x4d\x18\xf3\x7d\x79\x86\x58\x99\x3c\x1d\xb3\x7b\x60\x66\xf8\x7a\xe3\xa0\xc6\x86\x86\xcf\xaa\x7d\x98\xae\x0f\x53\x1c\x38\xe3\x2f\x19\x79\x80\x20\x5b\xde\x99\x1a\x0d\x2b\x69\x68\xa0\x7e\xe6\xd1\x08\x32\xfd\x77\xef\x3b\x43\x19\x91\xf1\x9b\xef\xef\xf4\x2e\x9e\xf0\x91\xb8\x6c\x7c\xd1\xdc\x67\xb1\x0c\x99\xaf\x9b\xff\x7a\xe1\x7d\xea\x5f\x57\x64\xc8\xc4\xed\x77\x27\xcb\xcd\x56\xb2\x2c\xf6\xec\x6c\x3c\x35\x3e\x83\x74\x18\x17\xe6\x43\xd8\x5f\x0b\xea\x71\x76\x6f\x26\x0a\x73\x93\xdf\x15\xca\x3a\x24\x9c\x5a\x71\xf4\x72\x28\x06\xed\x6c\x44\x88\x3d\x0d\x69\xcb\xce\x95\x2a\x2d\xac\x5e\xb1\xb8\x58\xd2\x49\x23\xc9\x39\x23\x9b\x0b\xa2\xca\x7d\x85\xb3\xf1\x11\xb0\xaa\xa7\x5c\xc2\x91\xef\x5b\x2e\x14\xbf\xab\x89\x8d\x44\x5a\xde\x23\x91\x11\xe2\x27\x91\xbb\x13\x23\x66\xdf\x1c\x65\xc6\xea\xde\x55\x32\xb4\x9b\xc7\xe9\x1d\xec\x12\x05\xd2\x55\x3d\x3f\xa3\x01\x4b\x32\x01\xb4\x08\x6d\x5f\x7e\x78\x6a\x85\x72\xc3\xfb\x5c\xa2\x48\x19\xd1\x03\xcb\xb9\xaf\x8a\x75\x84\x7b\x33\xa5\x28\x87\x20\x07\xcc\xe2\x4f\x3c\xf7\xf3\xd5\x7b\x75\x50\x69\xe1\xa4\x73\xef\x75\xff\xfb\x8c\x46\xdb\x81\xa5\x61\x82\xea\x47\x3d\xf5\xbc\xce\x41\x5c\x2a\x72\xe0\x77\x32\xc0\xa0\x3d\x2c\x1b\xb9\x6b\xd0\x65\x8c\x74\xc5\x14\xfa\x55\xba\xf7\xfc\x43\x5b\xaf\x74\x84\x7e\x84\xf8\x93\xd0\xda\xa7\x6d\xd5\xde\xfa\x6a\x85\x46\xb5\x7b\x75\x3c\x02\x84\x38\x6d\xa0\x59\x65\x2f\xc5\x08\xd9\x5b\xc2\xa9\xd3\x65\x20\x79\xcd\x65\x60\x51\x92\x89\x6b\x0b\x33\x97\x15\xa7\x27\x61\xac\xac\x9d\x5e\x4a\xe5\x37\xe9\x03\x2d\xf7\xb7\xf0\xa9\xf5\x84\xf1\x22\xae\xde\xe2\x49\xa4\xdc\x29\x8f\x31\x23\xfb\x80\xde\x9a\x37\xec\xe8\xf8\xc3\x22\x5b\x81\x8f\xdf\x5c\xa1\xcb\x6e\x53\x9b\x13\x0f\x97\x4c\xf1\xee\x3b\x37\x5f\x62\x1d\x69\x3d\x64\x5f\x8e\xec\x36\xe6\x19\x48\x8b\x1a\x53\xd8\x64\xb0\xd6\xdc\x33\xbf\xfc\x79\xc3\xfb\x5f\x44\x91\x21\xa9\xcd\xbb\x52\xe3\x99\xf5\x15\x0b\x1d\x69\xd3\x11\x2a\x6f\xed\x1a\xcc\x69\x45\x9d\xa4\x6d\x4b\xcc\x7d\x2a\x9c\xec\xdd\x9e\x6b\xc6\x5f\xea\x75\x04\x6a\x5d\x68\x4c\xf9\x97\x32\xb4\xae\x72\x11\x6d\x04\x02\x31\x71\xae\xe5\xd5\x55\xef\x52\xde\xe8\x3f\xb1\x1b\x1a\x77\x81\x10\x53\x24\xa0\xe7\x92\x04\x19\x29\xac\x6e\x71\x32\xd5\xf7\xba\xb1\x7c\x5f\x5d\x4c\xba\x06\x35\x9a\x15\xdb\xc9\xfb\x4f\xfe\xa8\xe9\x59\x37\xfe\x76\x55\x6a\xce\xcf\xaf\xd4\x7d\x6e\xe5\xc6\xac\xaf\xab\xc1\xb0\x19\x62\x5f\xc6\xca\x1b\xff\x97\x7a\xea\x73\x69\x40\x2f\x5b\xaa\x85\xde\x74\xb8\xdb\x66\x60\xd5\x3e\x7e\xee\x22\x4e\xe1\x6e\x54\xf6\x06\x1c\xf6\x18\xa7\xc7\x4d\x35\xb5\x64\xd7\x91\x05\x19\xb1\x2b\xd0\x53\xc1\x61\xf1\x91\x11\x58\xef\x89\x79\x33\xc3\x2d\x3d\x2f\xcc\x9b\x51\xed\xcc\xd7\x3d\x28\x55\xfb\xf4\xc6\xb0\x8a\x88\xee\xef\xaa\x58\x02\x5b\x6f\xdb\x58\xc6\x1a\x8a\xf9\x72\x45\x83\xe6\x2a\xe1\x9d\xbf\xde\xa3\xa0\x87\x20\x19\xce\x3a\x02\x2d\x7d\x4c\x9d\x0b\x55\xc3\x7a\xac\x37\x60\x70\x41\x3e\x4d\x67\x28\x91\xf2\xc3\x5b\x0d\x9b\xaf\xd3\x89\xf4\x08\xe5\xaa\x19\x54\x7d\xfb\x9d\xc6\x39\x40\xbb\x4d\xe5\xa1\xea\x63\x41\x6b\xd3\xed\x67\xd2\xb6\xa3\x65\x8e\x6c\xd8\x78\xc6\x43\xb5\x42\x1f\x13\x24\xf3\x3a\xa1\xbc\x7c\x5e\xbf\x2e\xcf\x89\xcf\x5d\xa0\x9d\x77\xb4\x71\xe5\x6f\x0b\xdd\x09\x47\x0f\x1a\x6f\x99\xc7\xf5\xc5\x58\xcc\x5d\x0c\xa9\x66\x36\x1d\xe2\xa4\xb6\x91\x06\x07\xab\x8b\x49\x67\x33\x20\x74\xd6\x64\xea\x47\x4d\x9b\x1e\x5f\x82\x85\x35\xec\x75\xa6\xe1\x21\xca\xcc\xd6\xd7\xe5\x35\x7b\xa1\x01\x8e\x63\xbc\x66\x6a\xdc\xb0\x9d\x0c\x77\xca\x99\x50\xae\xb1\xc2\x22\x79\xa3\xed\xfd\x95\xb7\x75\x0e\x57\xa5\x4e\x09\x91\xf7\x51\xa2\xe0\xa5\x0b\x0f\x8b\xc9\xd7\xe5\xdc\x79\x85\xba\x6b\xac\x87\x2b\x6f\x77\x93\xbc\x4f\xb2\x65\x9a\x89\x09\x49\xd9\x95\xd1\x20\xbf\xc6\xb5\xac\xe2\x2d\x81\xe5\x88\xc6\x58\x88\x2f\xe6\xda\x15\x16\x5d\xf9\xc5\x00\xcc\x43\x9f\x6a\xb9\xb4\xfe\x43\x6d\x2f\x5b\xe1\x91\x32\x09\xdc\xfd\x3c\x8d\x1c\xb1\xb9\xe9\x5b\x9b\xf4\x38\x2c\x1f\xad\xa4\xf8\x4e\x66\x3f\xdc\x25\x43\xb1\x5d\xd5\x74\x19\x5d\x5a\xea\x65\x3b\x4e\xcf\x9d\x41\x57\xcd\xfa\xf7\xf6\xde\x10\x75\x19\xd0\xa4\x8c\xe1\x77\xb6\x8c\x2d\xae\xcd\xf0\xc5\xff\xb3\x53\x96\xca\x43\xa5\x8c\xfb\xd4\x96\xba\xfe\xc3\xfc\x69\x39\xbf\xee\x3d\x6c\x91\x17\x8c\x63\x03\x7d\xc6\x00\xb3\x37\xce\xde\x03\x5b\x09\x43\x15\x9c\x60\xce\x46\x4a\x1a\x13\x86\x76\x72\xb1\xbd\xf0\x4e\xda\x26\x28\xcf\x10\xa3\x70\x9a\x79\x59\x30\x1d\x92\x2f\x63\x58\x39\x9c\xbf\x27\xf0\x15\x64\xbb\x9b\xb0\x0f\xf5\x8a\x89\xbc\xc1\x26\xb0\xd5\xd0\x7c\x64\xa8\x35\xe6\x2a\x40\xd7\xca\x4f\x73\xc5\xe0\x3e\x25\x5b\x90\xbd\xfc\xd7\x44\x9c\x5e\x00\xf5\xf9\xed\x01\xc6\xca\xfc\xd0\xfc\x6d\x44\x29\xc9\x2b\xb6\x27\x4b\x8d\x4f\x3f\x0a\x7a\x54\x71\xcf\x50\x3d\xb7\x86\x79\x6a\x59\x63\xd2\x89\x40\xc9\x0e\x62\x1e\x02\xdc\xdd\xee\x01\xea\xde\x86\xc1\xf3\x9a\x4e\x3b\xae\x8c\xa5\x25\x12\xd6\xc0\x33\xed\xe5\x4c\x12\xfa\xe3\x6c\xfe\x43\xc5\x23\x7b\x76\x07\x19\x6a\x3b\x55\x99\xaf\xcd\x0a\x8b\xf4\x57\x29\x93\x2c\xd4\xd1\x74\xef\x03\x08\x44\x99\x0a\x2c\x5f\x8c\x97\xf6\x33\xc0\x41\x74\x59\x28\xcc\xdf\x86\x65\xee\x2e\x72\xa6\xec\xac\x7a\x98\x13\x3c\x68\xe3\x57\x98\x19\xd6\x0e\x7e\x86\x58\x7f\x5f\xdd\xd7\xa8\xe3\x26\x45\x89\x40\xb4\xe0\xd7\xfd\xaa\x6d\xa3\xa8\x94\x7b\xf8\x55\x2e\x71\x20\x92\xef\x6f\xf5\x33\xac\x0c\x32\xba\x5c\x9f\x61\x09\x99\x56\x39\x2f\xf9\x14\x99\x10\x21\xf7\x8c\x5d\xe3\xd8\xfe\x35\x5a\xc4\x31\x21\x1e\x9b\x14\x94\x1f\x73\x6d\xa5\x9c\x78\xfa\xc6\x3a\x1d\xfb\x3a\xd1\xd3\xdd\x02\xf7\x2b\x16\x13\xd7\x76\x9d\x31\x45\x94\x75\x89\x0d\x6a\x38\x82\xaf\x21\x7d\xde\x37\x2f\x66\x6b\x3d\x28\xd8\xd4\xcb\x93\x46\xe6\x56\xcb\x3d\x79\xb8\x9d\xcf\x83\x5b\xa2\x77\x58\x49\x8f\xe4\xab\xb9\x71\xa8\xb5\x5f\x51\x23\xfa\xe9\x55\x27\x7c\x78\x75\x15\x50\xef\xff\xd4\x38\x02\x91\xa2\xb0\xa2\xaa\x3e\x5d\x42\x2e\x75\xcf\x1e\x68\xd2\x36\x9f\xda\x12\x8e\x4e\xde\x08\xe2\xcb\xea\x98\x69\x0f\x82\x6a\xe7\x10\x58\x98\x13\xfc\x67\x42\x3e\x23\x4a\x8e\xc3\x28\xf8\x51\x48\xfd\x61\x47\x06\x3d\xeb\xd5\xf5\xfb\xab\x8a\x9a\xdf\x1b\x97\x88\xeb\x76\x09\x2b\xdb\x2e\xe4\x2f\xb3\xf2\x1b\x2c\x9c\x1e\x21\x13\x6e\xf3\x5b\x13\x65\xf9\x08\x5a\xa2\x48\x81\xee\xa7\x86\x71\xbb\x8a\x29\xc9\x44\xb2\x9f\xa6\x23\xfc\x04\x75\x6f\x7a\x6b\xda\x39\xab\xd0\x0a\xba\x25\xf1\xb8\x13\xfc\x67\xda\xed\x99\x71\x8e\xa5\x3c\x7a\x0b\xc9\x9c\xa6\xfa\x66\x43\xaa\x5d\xae\x8f\x2c\x0d\xaa\x89\x9c\x65\x5f\xad\xad\xdf\x36\x37\x76\x71\x8f\xd3\x93\xae\xb7\x47\xfb\x88\xf3\x74\xb7\x88\x36\xd8\x47\x7e\x36\xce\x26\x98\x48\x39\x6a\xdc\xb7\x93\xcb\xef\x74\x5d\x8c\xd9\x78\xcd\xca\xf1\x5b\xeb\x6f\x88\x6b\x9a\x6e\x93\x4d\x88\x31\xb1\x72\x76\x64\xe5\x0c\x8f\x7a\x57\x60\x92\xc8\xb6\xb5\xd7\x54\x96\x4e\xac\xad\xcc\x99\x95\x08\xa4\xe1\xab\x77\xdc\x70\x60\x6b\x11\x06\xea\x5a\x65\x2a\xfe\x53\xf6\x39\xc9\x0a\xfc\x99\xf1\x09\xb1\xbd\x1b\x53\x3f\xe6\x7b\xce\x6a\xd0\xc8\xfe\x4d\x52\x60\x96\x1f\x9a\x66\x93\xc8\xf4\xb2\x4a\x36\x06\x89\x3b\x8a\xa9\xd3\xd5\x10\xc5\x52\x5d\x26\x8c\xe6\xb1\xfc\xf1\x1c\xad\xd4\x96\x29\xc9\x54\x9f\xfd\xd7\x7c\x4a\x95\x8d\x64\x95\x49\x2f\xc2\x67\x73\xf5\xa7\x4a\xd3\xa6\x9b\x5b\x89\xd6\x4c\x7d\x74\x90\x1b\xcf\xd0\x0f\xcf\xbd\xd2\xe6\xa7\xf0\x80\x9f\xc6\x8b\x5f\xa0\xaa\x98\x6b\x29\xcc\xa9\xe0\x28\x4e\xe8\x3d\x2b\xd7\x90\x39\xc9\x98\x4b\xf9\xcf\x4d\x0f\xdb\x10\x15\x84\x9b\x72\x24\x76\x1a\xc2\xaf\xd6\xd6\x00\x73\x73\xe8\x7a\x56\x67\xd1\xff\xa1\xd4\xf9\xf0\x5d\xa6\x53\x04\xbc\x65\x70\xa1\x97\x0a\xf8\xfa\xa8\xd8\x51\x60\xa5\x88\x50\x17\xb2\xb4\xdb\x0f\x7d\xd5\x65\x9c\x68\x22\xd6\x13\x2d\x9d\x5a\xc1\x7b\xa4\xd5\x4e\xc9\x93\x6e\xcb\x58\xdf\x97\x12\x76\xde\x28\x69\xc4\x34\xde\xc1\x13\x72\x1d\xa6\x9e\xce\x9a\xff\xb2\x3f\xd0\x70\x18\xe7\x91\x48\xd0\x88\x52\x5c\x92\x35\xa3\xf8\x36\x2e\x15\xe1\x0e\xf6\x44\xde\x14\x33\xc3\xe1\x0e\x7d\x89\x66\xc9\x5b\x83\x86\x89\x55\x33\x01\x5a\x18\x31\x1e\x0e\xd6\xeb\xae\xef\xe4\x13\x2c\x2a\xde\x41\xcf\x17\x5f\x98\x92\x72\x5c\xa9\x34\x51\x68\x6c\x13\xf6\xdd\x6d\xe5\xb1\xe6\xbf\x1c\x0e\x3c\x2f\xfc\x5c\xe3\x22\xec\x9b\xef\x54\x86\x1f\x3e\xf5\xce\x76\x94\x7f\x39\xb0\x11\x83\x2b\xed\xa7\x94\x2d\x5e\x08\xf7\x54\xa5\x87\x8b\xda\x9f\x60\xda\x32\x50\x93\x2c\xfc\x76\xea\xc5\x62\x0d\xd4\x6e\x9f\x28\x8f\xad\x79\xa4\x94\xa4\xe7\x3b\xe5\x9e\xe8\x54\xda\xf7\x60\x4f\xc3\x8b\xbe\x36\x3d\x11\x1e\x4b\x98\x27\xa7\x9d\x5a\x84\x71\xd4\xcf\xaa\xdf\x91\x51\xe9\x71\x0f\x5b\xbc\x3b\x1a\x11\x83\xf5\xa3\x28\xb2\xd2\x2b\xfd\x27\x8d\xfa\x25\x7b\xf6\x0c\x42\xf1\x2a\xb8\xf8\xb5\x2d\xd1\x3a\x0b\xd8\x63\x3b\x24\x94\x0d\x31\xbc\x52\x98\x56\x6e\x09\x5f\x0c\x5a\x4f\xf4\xb7\xbf\x10\x8d\xcb\xd6\x4f\x85\x0d\xeb\x63\xae\x21\xad\xc4\x58\x13\xda\xe4\x64\x20\x95\xcf\x04\x7a\xba\x71\xeb\x1a\x56\x8c\x8b\x26\xc0\x97\xe2\x8d\x7a\x2f\xa8\xa9\x35\x4b\xb7\x0a\x1a\x24\x39\x83\xd0\x73\xb6\x22\x4c\x02\xda\x41\x1c\x70\x52\x26\xde\x29\xd5\x69\x73\x52\x13\x65\x95\xab\x9f\xa9\x90\xa3\xe8\x71\xf8\xb3\x4d\x3d\xdb\xf2\xad\x8b\x84\xc5\x66\xa8\x13\x66\xc2\xca\x73\x9d\x34\xbd\x9c\x04\x01\xa3\x48\x56\xa6\x8d\x01\x18\xe3\x17\x41\xf1\xca\x89\xd8\x87\xc9\xdd\x64\x37\x8f\xe4\xaa\x2a\x26\x02\x14\xf2\x70\x36\xa8\x4c\x82\xe1\xfc\x69\x7f\x4a\xb4\x35\x06\xfe\x05\x0a\xf3\x49\xc4\x15\xd6\xf4\xbd\x45\xde\xbc\xac\x38\xa6\xd5\xa2\xee\x49\xb8\x89\x7a\xdd\xa3\x06\xb7\xc8\xe5\xb0\x8d\x3d\x34\x45\xda\x9c\x88\x46\x8f\x01\x22\x0a\x2e\x5b\x16\x9b\x7f\xf1\x01\x15\x4d\xfc\x58\x0b\xfd\xde\xab\x2c\x9f\x82\x77\x38\x30\x55\x9b\xde\x61\x64\xd0\xde\x43\x4d\x5f\xcc\x59\x60\xaa\x0c\x13\xff\x4a\x4d\xb4\xb9\x85\x2a\xbb\xd4\xe2\x31\x92\xf2\xbc\x14\x10\xf8\xc0\x62\x25\x0a\x21\xc1\x1a\x7b\xbb\xf7\x96\x00\xd7\x61\xf3\xc3\xf9\x57\x70\x5a\xa9\x85\x7d\xf5\x3e\x89\x55\x80\x5c\x60\xdc\x34\x09\x12\x3a\xe5\xaa\x33\x9e\xa9\xb8\x57\x70\x69\x05\xd7\x69\x25\x20\x48\x18\xba\xfd\xba\xa9\xb2\x5d\xf7\x8e\xef\x9c\x77\x3c\x98\xc8\x65\xc3\x83\x4a\xc6\x7b\x81\xc0\xe9\x33\xb0\x60\x13\xe1\x4a\xb7\xe4\xfa\x08\x11\x82\x3d\xf6\x96\xe7\x2d\x2e\xae\x43\x1a\xc2\xae\x5d\xad\x59\xaf\x2f\x9a\xf3\x64\x6a\x99\xf1\xfe\xfd\x34\x49\xc2\xd2\x77\x1a\x0b\xdd\x25\xe7\x22\xf5\x47\xf5\x58\x3c\x2a\xfd\x98\x74\xd8\x26\xd9\xd3\x89\xc4\xaa\x2f\xaf\x4f\x65\x08\x4d\xd6\x82\x60\x70\xcb\x15\xb9\x96\xb5\xbd\x4f\xde\xae\xd8\x27\xed\x70\x81\x88\xca\x57\x3e\xfb\x5b\x7a\x57\x6f\x81\xcf\xf5\xa2\x0d\xee\xf0\x26\x8d\x48\xbd\x5e\xa7\x9f\xfe\x45\xd9\xe2\xd6\x92\x07\x0a\x6c\x31\x6d\x9f\x5f\x13\x33\x91\xaa\xf0\x57\xdc\x3c\x36\x7b\x03\xa2\xbe\xb4\x76\xad\x09\x2c\x3e\x7b\x91\xed\x69\xde\xd5\x4a\xb2\xfe\x0b\xde\x1d\xa2\x6c\x39\x52\xd0\x18\xe4\x56\x8e\x75\xfa\x05\xd4\x10\x85\x86\x7b\x06\xbe\x89\x72\x35\xf7\xf3\xc1\x19\x73\x18\x72\xe7\xc1\x4d\x55\x58\x2b\xab\x1e\xdd\x4f\xcb\x67\x2f\xac\x64\x2f\xcc\x1b\x0d\xe7\x75\x56\xb1\xbb\xfd\xd0\xaa\xb3\x98\xc0\xf0\x55\x66\x5b\x15\xec\xb4\xd1\xe0\xf8\xf5\xe0\x96\x73\xa8\x6a\x2b\x2a\xfa\xbc\xf4\xba\xff\x6c\x66\x90\x2e\x63\x06\xfb\xf1\x43\x50\xa1\xff\xd0\xcc\x15\xf1\xc3\xf8\x41\xb6\xe5\x38\x2d\x29\x4f\xaf\xc9\x85\x41\x61\x06\x3e\x10\xe3\x5b\xc5\x11\x7c\xad\xc7\x2c\xe2\x4f\x33\x94\x62\xa3\xa8\x43\xb7\x47\x3d\x85\xd4\xb9\xdf\x0d\xae\xb6\x7e\x8a\xd5\x21\x93\x44\xf6\xd1\xe5\x79\xaa\x76\xb4\x0f\xbf\x73\x93\xde\x4b\xa9\xa4\x8e\xc7\x2a\x43\x92\xb7\xd5\x65\x4e\x89\x9d\x19\x96\x1d\xcc\xea\xb6\xef\xdb\x02\xbf\xe1\xf1\x7f\x8e\xcd\xb1\x96\xf8\xd6\x8e\xdb\x7b\xc0\x6b\x6a\x2b\xbe\xe1\x4d\x2c\x38\xf8\x8b\x43\x82\x61\x24\xcc\xf0\x9d\xbf\xf4\x27\x2b\xc9\x69\x74\x29\xfa\x55\xdc\x04\x26\xf7\x00\x98\x5c\xc7\x6f\xb3\x55\xca\x4c\x7a\xd4\xeb\xb5\x48\xd7\x34\x64\x2a\x79\xb1\xae\xc8\x80\x2d\x9b\xca\xdf\x05\x4b\xa3\x3a\xe4\x63\xac\x17\xdf\xd4\x16\xd9\xf7\x28\xb6\x82\x2b\x94\x15\x2c\x86\x83\x67\xf9\xf5\x1b\x82\x22\x5f\x10\xb5\x83\x3c\xb9\xca\x54\x98\x7a\x62\x78\x3a\xc2\xf8\x31\x7b\xcf\xbb\x85\x65\xf5\x3d\x83\xd8\xc4\x57\x4c\xf8\xee\xfd\x1a\x38\xfd\x91\x0e\x1b\xf4\xc4\xc4\x9b\xc9\x37\xa6\x87\x4a\x74\x1e\x3e\x36\x0b\x78\xe9\x5d\x76\x9f\xca\x74\x7a\x38\x90\xc9\xfc\x43\x65\xe2\xb1\x03\xf0\x67\x06\x17\x42\x48\x27\x16\xd7\x3d\x80\x40\x18\xea\xfa\xf9\x22\x26\xfb\xab\x9d\x3c\xbf\xf6\x81\xca\x9e\x41\xf8\x10\x6b\x2b\x51\xdf\x6b\x46\xe7\xa6\x64\xaa\xbe\xaa\x4d\x03\x36\x33\x7f\x5b\x5e\x9a\x01\x78\x43\x87\xfc\x76\x93\xfb\xf3\x94\x01\x7f\x21\x3a\x04\x0a\xc3\xa1\x0a\xdd\x58\x87\xc9\xbb\xc1\x6e\x3d\x54\xfd\xb3\x74\x74\x3f\x8b\x5a\x57\xb3\x9f\xe9\xbe\x6d\x55\xc6\x1f\x56\x72\x1d\xe5\xa4\xd4\x45\x2a\xee\xba\xa3\xb7\x95\x62\x9e\xfc\x88\x3e\xe9\x65\x54\xa1\x91\xb9\x7e\xfc\xba\x29\x4b\xbe\x9a\xed\x41\x2a\x61\x7f\x05\x48\x74\x56\xad\xb1\x0d\x93\x37\xb3\x27\x83\x78\xe1\x6b\x15\xdd\xe8\x3b\xde\x96\x8e\x8a\xa2\xe6\x4c\x46\x2d\xd5\x65\x36\x57\x0f\x21\xbc\x25\x38\x6b\x94\xda\xb3\x99\x5b\x4d\x64\x52\x33\xb3\xa1\x3a\x0f\xf7\x74\x59\xbf\x7b\x25\x83\x76\x06\x2f\x59\x22\xa8\xe9\x29\x1c\x67\xe1\x39\xf0\x9a\x90\xbd\x50\x2f\xbf\xc1\x56\x7e\xc2\x50\x73\x09\x69\x6d\xa6\x44\xc2\x49\x85\x2c\xf6\x10\xb6\x8c\xec\x0c\x9c\x85\x29\x1d\x49\x4b\x1b\x29\xd4\x18\xeb\x5c\x56\x98\x58\xcd\x2f\xfa\x56\x44\x3f\xde\xb6\x22\xab\x53\x79\xa5\xf2\xfb\x2f\x38\xf7\x47\x39\xf9\xb4\xce\xe2\x16\xa8\xcf\x4e\xde\xb9\xf6\x6b\x9a\xf4\xe4\xcf\xb0\x9f\xd6\x03\xe0\x34\x28\xff\xce\x69\xca\x39\x5c\xe7\xb5\x5e\xf8\x08\xe1\x5f\x2b\x0f\x3f\x92\xea\x23\x60\x62\xde\x53\xb0\x7a\x2e\xee\x54\xc9\xfa\x3a\x32\xdd\x2e\x97\x19\x35\x47\xa3\x9d\x71\xde\x63\x03\x3b\xd4\x6a\xd3\x3a\xc1\xc9\x60\xdf\xc7\xc5\x10\x24\xa6\x48\x90\xa2\x48\xd8\x0e\x3b\xef\x13\xa5\xb0\x62\x33\x27\x49\xd8\xa5\x59\xf9\xca\x9d\x12\xb9\x70\x70\x25\xf1\x83\xa4\xf9\x1e\x99\x7b\x8f\x36\xb2\xb2\x85\xa8\xb6\xef\x7f\x1d\x7b\x32\xbb\xaf\xe4\x26\xf5\x6a\x83\x7f\xee\xc0\xe6\x24\x32\xbd\xb8\x83\x19\x95\xf6\xc2\x6b\xe0\xb9\x0d\x2c\xfb\x92\xbd\x70\xd7\x79\xa0\x96\xe1\x75\x26\xfb\x73\x53\x4d\x65\x96\x12\x54\x02\x85\x55\x26\x94\xff\xfa\x14\xea\x2f\xa7\x74\x5d\xe8\x44\x33\x75\xaf\x1d\xc3\xec\x59\x25\x3d\x96\xc9\xa5\xfb\x48\xa4\x90\x4b\xda\x8f\x6e\x9f\x56\x82\x65\xd8\x43\xb6\x26\xef\xee\x21\x41\xcf\x9a\xff\x2b\xb5\xf6\xd9\xf7\x36\x39\x7c\xa7\xf5\x39\xb2\xba\x81\xd7\xce\x59\xd2\x58\x98\xf2\xcc\x52\x9d\x58\xea\x91\x44\xd1\x76\xa8\x14\x0a\xab\x26\xb7\xfa\x90\xb1\xd1\x1d\xec\x8f\x93\x5a\x6d\x9a\x17\x9f\x0d\x35\x67\x91\xe2\x97\x45\xb5\x67\x73\x24\xb7\xf3\x95\x42\x0b\x64\x6d\x17\x5e\xea\xeb\x26\x2d\xc5\x86\xa7\x7e\x1f\xed\xe0\x56\x8f\xf6\x89\xf5\x3a\x27\x69\x5f\x2a\xfe\x64\x9f\xb4\x16\x81\x34\x60\x8d\x39\x08\x6c\x49\x92\x08\x3e\x44\x28\xf2\x70\xd8\xe8\xbb\xca\xe7\xa7\x83\x85\x88\xf5\x0f\x38\x18\x82\xf7\x28\xc9\x52\x22\x4d\x74\x43\xcc\x9d\xb7\xac\x73\x85\x26\x8f\xbc\xe2\xff\xf0\xf0\x25\x7e\xf9\x59\x20\x0c\x75\xbd\x2c\xc8\xfb\x90\xf9\x9d\xbb\x96\xa9\x6f\x92\xcc\x2c\x07\x7b\xf1\x0a\x7f\x67\xe1\x4a\xe9\x27\xbb\x88\x95\x08\x24\x2f\x69\xcd\xec\xe3\xb6\x74\x27\x96\x73\xe4\x0a\x87\x8d\xfe\xd1\x2b\xc7\x9f\xfe\x11\x29\xf6\x8a\x5d\xd8\xa5\x17\x7a\xdb\x93\x14\xf3\x7d\xb5\xa5\x98\xbd\x7c\x4d\xfe\xec\xd1\x3f\xea\xcd\x61\x76\x4f\x8c\x87\x2a\x9d\x8f\xa5\x8f\x72\x17\xd2\x48\x25\x28\xc8\x15\x9e\x25\x4c\xef\x2b\xd5\x4d\x1c\x33\x7d\xfe\x2d\x15\xd4\xc8\x8c\xf2\xb3\x7f\xee\x72\x7a\x34\x4b\xd8\xdf\x81\xe1\x20\xda\x52\xe0\x36\xe2\xc1\xf4\x3a\x9f\xbd\xa7\xad\x69\x30\xc5\x7a\x2a\xdf\x38\xd6\x76\xd6\xee\xe3\xed\xa7\x0c\x95\xb6\xcf\xcb\x82\x5c\xb1\x06\x7c\x15\x37\x7a\xea\x1c\x07\xef\x64\xec\x36\x71\x6c\x44\xcf\x84\x50\x61\xca\xed\x8f\x87\xf4\x50\x83\xa1\xb1\x11\x69\x71\xc6\xe9\xaa\x48\xb6\xc3\x5e\x5f\x31\xcf\x80\xe7\x4b\x97\x95\xd1\x8f\xb7\x35\xc8\xea\x54\x94\x50\xeb\x75\x09\x9e\x5d\xa4\xde\x04\x7d\x70\x40\x7d\x3e\xcc\x46\xb8\x45\xe6\x57\x8a\x75\x51\xf5\xc7\x4e\x64\x81\x6b\xb9\x54\xf4\xb2\xa0\xeb\x43\x89\xb1\x81\x57\xa3\xb2\xe9\xdc\x74\x85\xad\x41\x90\xcc\xb6\xb5\xb6\xdb\x5d\x62\x2b\xbf\x3e\x0f\x07\xeb\x58\x40\x54\xb6\xa5\xa2\x5a\xe0\x0a\x83\xf6\x4c\xc5\xe0\x90\xbd\x08\x44\x88\xf7\xf3\xad\x4f\x31\x6a\xad\x8e\x3c\xcb\x77\x6a\x2e\x54\x08\x80\xd1\xab\x47\xf2\xa1\x76\xd3\xc8\xcb\xc0\x42\xb1\x54\x29\x85\x0f\x26\xfe\x3d\xcc\x69\x9b\x1a\xa8\xa1\x22\x29\xb7\x57\x0b\xf2\xe2\x13\x81\xa2\x76\x2a\x52\x95\x45\x7a\x69\x39\x60\x95\x50\x11\x68\xda\x28\x5f\x6d\x80\x12\xf6\x10\xc9\x02\xe1\x6f\x4c\x5a\x84\x8e\xa5\x89\xa2\x29\x85\x5c\x80\xe9\xdc\x0e\x09\xef\x27\x50\x93\x10\x29\xa6\x0e\x0d\xe0\xf0\x09\x9c\xb6\xf4\x94\xcd\x22\x36\xb9\xc7\x51\xbe\x5c\xfd\xa8\xbd\x14\xfd\xaa\x23\xd7\x60\x38\x02\xed\x1b\xa8\x65\x9a\x70\x7d\x52\x9d\x15\xd8\x3e\xaa\xa4\x33\xc4\x63\x76\x21\x61\xa7\xe9\x10\xf7\x49\x72\xaa\xba\xab\x06\xd2\x3d\xf4\xad\xe6\xbb\xd3\x35\x13\x9f\x85\x9f\x23\x96\xd9\x6c\x8c\x7e\xb2\xf9\x33\xd4\xb1\xf0\xef\x7c\x43\xa2\x7e\x2f\x90\xe8\x72\x69\x17\x2f\x1e\xec\x56\x3d\x52\xb8\x45\x86\x2d\xa4\x96\x7e\x47\x3d\xd2\x52\x51\x6a\xf9\x8b\xb1\xdc\x45\x90\xbb\xad\xad\x75\x9f\x9d\xe4\x32\xc4\xb5\x6f\x1d\x57\xe7\xfe\xb3\x33\xc7\xb3\xfe\x11\x34\x8a\xf9\x9d\x4c\x9f\xab\x5d\x42\xee\x21\x03\xff\x75\xab\x58\xf6\xb7\xf4\x8d\x35\xbc\xe6\xb7\x53\x23\x27\x77\x9d\x47\x6d\xfa\x3b\x7b\xa1\x86\x44\xfd\x1d\x98\x8e\x3d\x17\xb4\x52\x18\xdf\x27\xc3\x6c\x84\x0d\x7d\x86\xaa\x13\x7c\x35\x22\x4f\x1a\x77\xbb\x4b\x1d\x4b\xbf\x95\xa6\xc7\x67\x75\xb4\x51\xd5\x97\xea\x23\xb7\xdd\x35\x87\x19\x7e\x10\xfa\x59\x78\x68\x89\x2d\x08\xb4\xa4\xb7\xfa\x39\x1c\x64\x9a\xbb\x9b\x20\x39\x66\x66\x6a\x5f\x64\xff\xd5\xb6\xd4\xbd\x98\xc1\x33\x17\xbd\xab\x4f\x65\xd4\x32\xcc\x90\x65\xb5\x34\xe0\x6e\xcd\xa5\x1f\x4d\xaa\xa1\x45\x68\x4d\x4b\x57\x0e\x56\x91\xe5\xb6\xb1\xf7\x38\x47\xb2\x7d\x51\x92\xa1\x98\xe8\x72\xda\x66\x3a\xf8\xdc\xdf\xc2\xb6\x8f\xcf\x57\xaf\x9d\xa6\x57\x3b\xaf\x5a\x97\xd8\x18\x24\x9d\xdf\x57\xf9\xde\x3c\xe7\x6d\x36\xdb\x41\x50\xa0\xc1\x4a\x58\xa3\xf5\xb7\xe2\x64\xa6\x96\x85\xd7\x57\x12\x20\x9f\xf5\xbf\xfe\x89\x7a\x6c\x98\x56\x99\x8f\xde\x66\xdc\x59\x48\xc8\x7c\xd7\xcf\x07\x16\x49\x61\x2c\xae\x5d\x08\xb2\xdc\xa5\xee\xe8\xe9\x77\xe5\x20\xc7\x0d\x49\x28\x9d\x9c\xfb\x53\xf6\xbf\xaf\x2e\x74\xa6\x90\xa5\xd6\xaf\x42\x92\x76\x47\x63\x9e\xed\x33\x9d\x47\x94\x22\x29\x1a\x72\x50\x75\xd5\x12\xde\x6f\xd2\x92\xe8\x48\xd4\x9e\xe4\xec\xd7\x94\x91\x6a\x44\x32\x34\xa0\x03\x67\xb7\x3e\x80\x78\xb9\x6e\xdd\x3b\x97\xae\x37\xac\xf8\x1c\x2c\x4d\x39\x2d\xd9\x0b\x72\xc6\x2b\x4e\x7c\x5e\x46\x85\xbe\x26\x6a\x71\xeb\xa5\x3f\xa5\x8a\xf9\x04\x44\x0b\x41\xc5\x3b\x69\xcb\xaf\xd4\x42\xc4\x9f\x5a\xd8\xc5\xb3\x8b\x61\xac\x37\x6a\x6e\x6d\x8c\xf3\x41\xf9\x95\xba\x4e\x5f\xd4\x0b\xcc\x49\x07\xcb\x3d\x5b\x63\x0a\xad\xff\xbe\xcb\x24\xba\xed\x40\x03\x4b\x30\x68\xd9\xad\xb3\x35\xb8\x16\x2c\x6b\xdc\xd5\x4b\xeb\x58\x2b\xad\x7f\x19\x99\x16\x6b\x3c\x3f\x6c\xaf\x82\xd9\x28\x31\x3b\x14\x36\xf4\xea\x29\xd6\x74\x22\x53\x62\xab\xc3\x73\xb2\x36\x09\xae\xe5\xd0\xc8\x4c\x2e\xd7\x17\xe2\xac\x32\x33\x15\x24\xfc\x93\x7a\x8f\xe4\xd9\xca\xbd\x5e\x65\x9c\x7e\xc7\xe2\xec\x0b\x9b\xfd\x9b\x01\x86\x72\xd8\xbc\x7f\x56\x2c\xa5\x68\xda\xde\x23\x5c\xda\xd6\xcb\xf6\x6d\x45\x3b\xdf\x3a\xb3\xf2\x26\x6b\xd7\xba\x34\xa5\x44\x5f\x9b\x21\xea\x9a\x96\x81\x5e\xfd\xea\xcb\x87\xa6\xd3\xf7\x5e\xb8\xcb\x87\xf6\xdd\x98\xcd\x4e\x96\x22\x90\x81\xc8\x3c\x87\xe4\xa2\x3b\x68\xe7\x61\x60\x68\xf6\x62\x4c\x3e\xa6\x01\x64\x25\xb1\x6a\x30\xe8\xaf\x7a\x73\xe3\x64\x40\xda\x72\xec\xd2\xda\x51\x80\x5e\xce\x53\x31\x9f\x40\x9e\x38\x0d\x78\xa8\xba\xb2\x0c\x85\x30\x42\x40\xa9\x1a\x84\x2b\x02\x25\xd8\xf0\x73\x1f\xc2\xe1\x3f\x5f\xf9\xc6\xeb\xda\x34\xad\x6f\x4e\xff\x55\x3f\xc5\xca\xe2\x39\xfa\x78\x0b\x35\xb8\x35\xaf\xf6\x65\xaf\x57\xe3\x6a\x34\xdf\x8f\x7a\x69\xc1\x25\x27\x76\xd9\xb3\x3f\x2d\xae\x35\x4d\x4a\x82\x47\xbb\x22\x0d\xc1\x9a\x73\xfd\xb5\x18\x8d\xe0\xf6\xcf\xfa\xad\x71\x33\xf1\x3e\x73\x94\xe0\x21\x13\xff\x10\xdc\xdb\x4e\xa2\x15\xa4\x73\xb1\x07\x9b\xdf\x28\x74\x0d\xf6\x4d\x23\xec\xbf\x5f\x36\xaa\x34\x39\xc1\xa9\x93\x88\x2b\x3e\x3e\xc6\xe2\x1c\x09\xfb\x8e\xb4\x9e\xeb\xe4\xad\x92\x53\x8a\x9f\xd5\x29\x5e\x19\x5c\xa4\x72\xd0\x7f\x55\x71\x64\x2b\xc2\xae\xab\xf7\xa9\x8c\x5a\xf7\x22\x40\xe3\xa2\xd4\xcf\x28\x3b\x8a\xad\x7b\xf4\xbc\x26\x30\x69\xc7\x5c\xa4\xf5\xa4\x69\x66\x65\xf4\xe8\x44\x36\xc2\x9d\xe8\xc1\x2c\xc4\x15\x1d\xe8\x79\x65\x38\xf8\x57\x7f\x6c\xcd\xb6\x89\xa9\xae\xf5\x46\x4f\x50\x80\xd5\xf9\xea\x80\x85\x35\x73\x63\x3b\xc7\xc1\xc2\x3f\xbf\x3f\x78\x1e\x5a\xe6\xac\xa6\xe8\x72\x94\x47\xa2\xd7\x2a\x2d\x53\xd0\x8c\x81\x29\x1c\x11\x81\x21\x08\xc9\xab\x98\xc3\xe2\x2c\x01\x93\xd1\x95\x5e\xa9\x24\xa0\x89\x5d\x7e\x8d\xab\x30\x5e\x34\xc7\x68\x25\x95\x7e\x50\x73\xf3\xe8\xa9\x29\xab\x24\x39\x1e\x72\x91\x3f\x5d\x1f\x32\xf5\x56\x7f\xcd\xc6\xed\x1c\x35\x5c\x59\xfa\x81\x27\x98\x51\xbf\xe2\xa8\x7f\xe4\x22\xbc\x4b\xd2\x74\xf1\xdd\xad\x19\xf7\x3c\x63\x71\x59\xfb\xf4\xc1\x07\xce\x05\x8a\xdb\x76\xc0\x95\xf6\x4d\xa9\xf8\x36\x18\x5f\xab\x15\xec\x2e\x09\x0d\xf2\xf3\xd3\x29\xb5\x96\xc3\x6b\xcc\x8c\xfb\x6b\x7f\x24\xf3\x6b\xa3\x74\x50\x26\x56\x56\xa4\x36\x03\x3d\x01\x3d\x67\x2c\xf5\x94\x6b\x4e\x02\xa2\x7f\x42\xa2\x49\x61\x85\x51\x9c\xca\x7a\xd1\xc7\xd1\xa2\x64\x94\xbe\xf1\x5f\x7e\xf1\x68\xc4\x7f\xf1\x2c\xe4\x6a\xf3\x29\x54\xf4\x3f\x6a\xb3\x49\xdc\x1f\x59\xbc\xf2\x3b\x94\xa4\x17\x1f\x60\x5f\xb0\x3b\x5c\x0c\x18\x39\xba\xf5\xfb\x0b\x0b\x15\x48\x0b\xd8\x3a\x3c\xbc\x1f\x6d\xdb\xce\x1c\x11\x7d\x66\x3e\x7b\xd4\xfe\x85\x46\xe4\xc7\x08\x78\x41\xed\xcc\xff\x47\x9c\xe5\x95\x73\xbb\xf7\x22\xb7\x2b\x9d\xb4\xf8\x93\x17\x67\x72\xa0\x15\x82\x05\x1f\xb7\xed\x67\xad\x88\xd6\x20\x1f\x02\xdb\x28\x11\xfd\x6e\x8c\x1a\x6e\xe8\x83\x3b\x6f\x8b\xa1\x75\x0e\x69\x98\x96\x8c\x31\x27\x13\x66\x52\x63\x4b\xee\xc7\xc5\xeb\xd6\xd1\x59\x96\x98\xa7\x94\x7f\xd0\xd5\x4a\xc9\x8c\xc4\xc7\x85\xb5\x54\x6d\xc4\xdc\xb3\x6f\xea\x15\x55\xc5\xa7\x72\xd2\xa6\xec\xd0\x6b\xa3\x1e\xa0\x26\x09\x04\x85\x07\xa5\x2c\x29\x9c\x57\x2d\x52\x3a\x76\x8a\x5d\xef\x12\x2c\x07\x15\xc8\x59\xe2\x68\xb0\x18\xb9\x7e\xad\xa9\xfb\x17\xc5\x1f\x3d\x5e\xa3\xc4\x7a\xc5\xfd\x6b\x4f\x46\xd5\x79\xb3\xac\xfc\x65\x64\xf9\x9a\xf8\xf1\xad\xe5\xfb\xf6\x57\xed\x7c\xae\xed\x5e\xfc\x1b\x15\xf0\x59\x7c\x2e\x01\xdc\x63\x74\x57\xf6\x5c\x66\x1a\x13\x11\x6c\x9a\xcd\xc6\xf0\x66\x40\x48\xed\x3c\xff\x35\x47\x15\x0f\xd3\x54\x54\x7b\x0c\xa0\x5b\x4d\x55\x18\xac\x9b\x3b\xf3\x26\xc0\xee\x31\xdd\x8f\xdb\x53\xfb\x10\x74\x8a\xbd\xf7\x76\xf7\x56\xf9\x62\x7a\x31\x4d\x32\x2a\xa0\x15\xba\x8f\x2b\x9c\x61\xc7\xd7\x6e\x81\x31\x87\x24\x6d\xb9\x1d\xd7\x73\xf4\xf2\x90\x6f\x8c\x51\x00\x19\x5a\xba\x96\x78\x15\xad\x56\xf3\x9c\xaf\x0a\xa2\xc1\xd8\xbe\x59\xf5\xa3\xa3\xa9\x91\xcb\x29\x26\xf7\xd8\x0f\xf6\x92\x81\x2e\xd6\xbd\x7c\x87\xe7\x9e\xcb\xe6\x86\x8c\x1d\x0b\xd2\xb4\xfd\x60\xc9\xe8\xa3\x64\xd8\xf4\x22\x79\xdb\x4e\x16\xe9\xfd\xa5\x3e\xf9\x61\x18\x04\xb5\xa9\x30\xb8\x13\x48\x22\xb1\xfd\x01\x55\x89\x83\x0a\xfa\xa9\x75\x59\xf6\x5a\xf1\x97\x96\x7b\x80\xf6\xc6\x94\x5f\x3a\x1f\xcb\x33\xb2\x1c\xf2\x86\x8e\x09\x13\x49\x7f\x0d\x09\x47\xe4\x78\x6b\x0a\x0a\x34\x64\x0d\x6a\x62\x41\x24\xba\xeb\x06\x0b\x02\xe8\xe6\xc7\x64\x3b\xdc\x0b\xeb\x86\x7c\x8b\x60\x39\xe2\x37\x35\x39\x67\xf1\xea\xea\x1c\x59\x1c\x1a\xa9\xc0\xa3\xf9\x99\xdb\xb0\xc1\xb7\xb2\x4c\xac\xd1\xdf\xae\x56\x9c\x5e\x2c\x34\x34\x65\xb6\xf1\x9b\x1c\x38\xcd\x44\xbe\x54\x6a\x59\x10\xd4\x39\x53\x73\x3c\x5c\x22\x35\x31\x5e\xda\x22\x0c\xe2\x19\xfd\x90\x8c\xc2\xb0\xa2\x18\x5f\x21\xfc\xf5\xfc\xae\xb4\xd1\xe4\x1d\x50\xd3\xce\xa9\x72\x27\x03\x2d\xd2\x97\xe0\x08\x7b\x0a\xed\x4f\x43\x16\x8a\x68\xc8\x9f\x7c\x1d\x9a\x09\xb0\x6f\xd2\x90\x32\xb6\xfb\xe9\x4d\x83\xe6\x7d\xb4\xa0\xe5\x19\xb6\x85\x7c\xdc\x8a\xdc\x16\x53\x23\xc8\x10\x2c\x36\x33\xf4\x28\x0f\x71\xab\x74\xee\xca\x09\x89\xb1\x33\x1f\x78\x3d\x73\x4d\x4a\x10\x79\x50\x73\xab\x05\xe1\x58\x8b\x0e\xe4\xc3\xd0\x68\xe6\xdc\x69\xa7\xc8\x67\x63\x25\xdb\x0a\x83\x30\x91\x07\xec\x73\xef\x24\x44\xb3\x93\x6d\x05\xfe\xdc\xf9\x24\x6d\x16\x3e\x73\xe8\xef\xfd\x7d\x98\x52\x17\x5c\x3d\xd0\x4b\xef\x58\x3f\x13\x38\x5e\x38\x73\x4c\x80\x4e\x48\xb7\x97\x24\xe3\x98\x2c\x99\x33\xae\xfd\x62\x53\x3b\xbe\xe7\x95\xde\x2b\xa6\x44\x69\x0b\x3f\xbd\x59\x3a\x6a\x87\x69\x76\xc6\x07\x12\x61\x48\x72\x42\x37\x91\xe7\x56\x71\xe4\xa1\x76\x29\x71\x83\x85\xa7\x3f\xb2\xe2\x9a\xe3\x5c\x8d\xe5\x8d\x27\x9f\x42\x8b\x58\x4b\x2f\x7a\xf8\xa7\x79\x73\x9b\x44\xbb\x65\xcf\x2c\xd2\x25\xc5\x50\x1e\x87\x1a\x33\xf7\xe9\x17\xa2\x6a\x8e\x0f\xdc\x17\x4b\xa5\xf7\x0a\xee\x4f\xd3\x05\x0a\xe7\xe4\xcf\xac\xe2\x71\xbe\xb0\x15\x7f\xdb\x9b\x86\x69\xb6\x6a\xa7\x5b\x9c\x5d\xe0\x8a\x36\x84\xcd\x16\x45\x9a\xa5\xce\x7e\xb4\xe0\x2a\xc1\x1f\x5d\x28\xa0\xd3\x6b\x4c\x90\xf1\x9e\xaa\x0d\xd4\x8a\xdc\x93\xec\x4b\x4c\x41\xd0\xd9\xf8\xce\x3c\xa9\x6e\xba\x8f\x4f\x6a\x7b\x29\xba\xe0\x48\x3c\xe3\xcc\xe2\xca\xfc\x67\xde\xeb\x41\xc4\xb9\x2c\x8c\x5e\xcc\x40\xf9\x09\x01\x8e\xed\xa6\x24\x5a\x33\x3d\x27\x32\x83\xc5\x39\xee\xf7\x42\xc4\xcf\xcb\xc6\xf6\x25\xb9\x47\xcb\xa8\xbf\x1d\xd2\xf3\x17\x8d\x21\x24\xce\x14\xcf\x17\x16\x4f\x70\xd0\x3d\xf9\xc4\xca\xe6\x04\xfd\x41\xed\x03\x7c\xfa\xc7\x14\x87\xf4\x6b\xae\x51\x6d\x9d\x33\x8c\x88\x0f\xe4\x3a\x4e\xf1\xe7\xe6\xca\x3a\xeb\x14\x0e\x36\x7d\x4e\xe1\xe8\xab\x5f\xd5\x65\xce\xb3\x33\x0d\x68\x70\x3c\x32\x01\x89\x10\xb0\xe2\x86\xf6\x6d\x59\x3f\x3e\xaa\x6d\x15\x60\x11\xa7\xf3\x13\xdb\xeb\xfc\xf0\xe7\x68\xee\xb4\xc2\xbb\x61\xdd\x6d\x4d\x06\x8d\x1a\x0b\xac\x6c\x1a\x2e\x5e\xe0\x4d\x57\xec\x5d\xea\x4d\x57\x98\xe4\x3e\x04\x17\x11\xbb\xf3\x18\xb6\xf1\xb9\xc6\xb5\x8e\x2a\x3c\x8a\x44\x3e\xee\xa8\x0f\xc0\xe4\x84\xd8\x51\x62\x63\xf5\x2b\x81\xab\x3b\xf4\xeb\xc2\x22\xcd\xf1\x90\x1f\xc9\x43\x79\x07\x95\x54\x3e\x29\x89\x11\x6d\xb2\x0c\x91\xaf\x1d\x86\xc5\xb8\xa5\x8d\xaf\x80\x55\xac\xee\xfc\x43\x26\xb6\x95\xdd\x13\xf3\x67\xc8\x1a\x78\xcb\xcc\x4c\xf8\x7e\x87\x7c\xab\x40\xf5\x1e\xa2\x1e\xac\x66\xbc\x87\xea\x5f\x2e\xb8\x1c\x76\x3d\xcd\xd4\xf8\x5c\x3d\x4f\xf0\xd2\xf3\x6f\x01\x7a\xf3\x3a\xee\xa5\xe8\xa9\x29\xec\x70\x62\x9f\xb6\x93\x76\xc1\x0c\x21\x7b\x56\x84\xb3\xb1\xfe\x6e\x8c\x5f\xbe\x74\x93\x9a\x6b\x4a\x8a\x63\x89\x0e\xf4\x48\x4f\x66\x5f\xbe\x71\x38\x33\x8e\x3d\x05\x41\x57\xd8\xb6\xf7\xe9\x9c\xab\x22\x72\x25\x82\x44\xd4\xe0\x1a\x40\xff\xbd\x19\x3e\x79\xd3\xc2\x86\x10\xaa\x37\xc9\xa9\x7d\x57\x0a\xba\x1e\x93\x16\x9a\x52\x55\x4e\xe0\x1f\x27\x10\xfd\x12\x38\x6b\x46\x92\x71\x06\xdd\x3f\x1b\xdf\x20\x9f\x48\x40\x92\xde\x4e\xd8\x43\xf1\xe1\x18\x13\x34\x26\x13\x07\x4d\x40\x9f\xaf\xb7\x3b\x3d\x0e\xa8\x7f\x7c\x33\xaf\x5a\x12\x5a\x8f\x29\x46\xc3\xf6\x35\xe4\xfa\x75\x5d\xd9\x5d\x12\x69\x06\x85\xb0\xba\x9a\x72\x80\xba\xda\x39\x06\x25\x02\xea\xcb\x87\x70\x5f\x4e\xd5\x25\xea\x67\x6a\x21\x2d\x49\xe6\xd6\xa1\x50\xc5\xdb\x35\x92\x69\xde\x0e\xd4\x92\x39\xd5\x95\x6f\x0f\x7c\xfc\xe9\x29\x14\xc0\x2e\x14\x88\xc3\x15\x1e\xa1\xef\xff\xa5\x9f\x03\x20\xe4\x88\x4a\x8a\x6e\xc3\xb4\xe4\x05\xcf\x4f\x2d\x73\xea\x6b\x07\x8d\x83\xd5\x22\xa5\xfd\x25\xdf\x3f\x85\xfe\x08\x16\xc0\xc5\x2e\x34\x97\x9f\x23\xe9\x41\xea\x2f\xc4\x4c\x12\xf5\x6f\xdb\x16\xfc\x89\xda\x11\x0b\x86\x5b\xe2\xd1\xc8\xda\xba\x53\x8c\xc4\x6f\x93\xeb\xa8\x19\x74\x65\x18\xe6\x85\x85\x5d\x5e\xa4\xf0\x73\xeb\x70\x5f\x5b\x9c\xb4\xeb\xc0\xc2\xb7\xec\xc0\xf6\xe0\xc6\x03\xc9\x25\xf8\xb3\x14\x52\x15\x26\xd4\xee\xf2\x18\x21\xad\xd6\xf5\x71\x9c\x99\xfb\x8e\x6e\x98\x4f\x19\x7b\x56\x91\x7e\x9a\x56\xda\xfb\x4f\x53\x5d\x21\xdb\xde\x1f\x59\xb2\x3c\xf4\xca\x9c\x9a\xca\x0b\x3f\x11\xcf\x26\xcc\xb4\x7e\xa3\x44\xe4\xd1\x7e\x6b\x92\x46\x54\xd7\x6f\xfa\x2e\x48\x6e\xc2\x5b\x53\x10\xc2\x6c\x58\x98\x3c\x4c\xfe\x72\x43\xed\xc2\x8a\x2d\x7f\x4a\x8a\x68\x4a\x29\x06\xbb\xb9\xa0\xd8\xf7\xcd\x6a\x2b\x4a\x26\x8e\x95\xd3\x9b\x43\x21\x6b\x1d\x89\x29\x93\x4f\xe7\xa7\x74\x6c\x6b\x8e\x0e\x72\xe1\x84\x3f\xd1\xef\x63\x2e\x4c\xd7\x90\x1b\xd8\x08\x8f\x45\xb0\x5c\x88\x40\xe8\xfe\xe4\xb9\x8e\xd4\x36\xe6\xc7\x16\xa0\x06\x55\xcd\x9e\x4c\xca\x88\xe2\xc6\x37\x38\x7f\xb3\xc3\x10\x87\xfc\xee\xab\xde\xd4\xa1\x96\xc0\x3e\x7e\xb4\x6e\xc1\xdf\x30\x12\xa0\x06\xa2\x6b\x34\xc1\x7c\x74\xe4\xf6\x76\x10\xd4\xcb\x05\xdd\x37\xfd\xdc\x3e\xa4\x94\x9c\xc7\x79\xda\xf2\x95\xad\x87\x3a\xef\x77\x61\x18\xe5\xda\x9b\x11\x2a\x94\x93\xb1\x8c\x6a\xd0\xb2\xd7\x79\x80\x8c\x97\x2c\xb2\x37\x61\x8f\x12\x01\xf2\x97\x5b\xac\xfc\x0d\x35\x4c\xd6\x25\xe6\x24\xbe\xdd\x88\x61\x32\xf8\x7d\xdf\x55\xb7\x3b\x84\x1b\x67\xf6\x51\x4b\xde\x39\x6a\x19\xbc\xe9\x1d\x92\x36\x64\x10\x74\xd8\x4e\x63\xb2\x7a\xd5\xdb\x7d\x68\x7a\xc1\xcb\x1a\x34\x83\x14\xf8\x84\x17\x67\xab\x0d\xc3\xe1\x4e\x42\x55\x4d\x8f\xf1\x0e\x39\xe2\x52\x96\x85\x01\xba\xe6\x63\x49\x77\xbb\x8e\x78\xc5\x61\x3f\x53\x29\x12\xba\xd7\x56\x67\x1f\x93\x64\x34\x88\x20\xd6\xc6\x17\x66\x2a\x96\xb0\xaf\x4f\x0f\xc5\x8f\x84\xb0\x0b\xdd\x24\x70\x44\xb7\x32\xde\xce\x83\x7a\x6f\x4e\x94\xc0\x3f\x6c\x36\x59\x56\xbb\xd8\x7e\x92\xeb\xf0\x19\xd8\x58\x35\x7d\x26\x4f\xc8\xf8\xf4\x93\x95\x8f\x29\x91\xe6\x21\xaf\x43\x40\xc5\x58\x7e\x36\xfb\x33\xc6\x44\xc3\xad\xd8\x28\x96\xf0\x96\xf5\x93\x03\x38\x86\x3e\x99\x2a\x1e\x27\xd3\xaa\x05\xe5\x35\xf9\x84\x11\xe3\x0b\xb0\xa3\x3f\x54\x7d\xe2\x9a\xf1\xf3\x8d\xb1\xb7\x8f\xc2\x9f\x76\x4d\xd0\xce\x82\xd7\xfb\x98\x6b\xa7\xf4\x8b\x27\x17\xf0\x7c\x24\x29\x63\x4b\xd4\x85\x55\xe4\x29\xd9\x68\x80\x8b\x87\x7c\x23\xc5\xc4\x22\x73\xea\x94\x75\x6c\x9d\x67\x25\xd3\xca\x0c\x17\x64\x92\x7a\xc2\xda\x70\xe1\xdd\x2e\x48\x91\x0f\x1a\x23\x17\x43\x53\xf8\x4c\x80\x71\x05\xbb\x0a\x0d\xce\x0b\xb3\xb9\xab\xb3\xab\x15\x61\xd7\x10\x1e\x3d\xbd\xf5\x8f\x22\x97\x07\xa5\x7d\x79\x2a\xea\x86\x2b\x7c\x68\xf2\x76\x17\xa4\xc8\x0f\xbd\xcb\xc5\xe8\x12\xc8\xd6\x97\x4f\xa5\x48\xb0\xbd\x76\xd8\x32\xeb\xfb\x1e\x76\xac\x4c\x8d\x5d\x48\x43\x21\x36\x8a\x23\x7c\xf8\xc9\xa1\xbd\x7b\x07\x57\x4b\x1e\xf1\xf7\x13\x73\x8f\xa9\x7c\xc2\x39\x19\xc3\x56\x58\x98\x99\x0c\x7b\x90\x05\xcd\xd6\xad\x36\xcc\xdf\x47\x09\x66\xfd\x57\x41\x53\x36\xf7\xb7\xac\x18\x17\x14\x64\xa0\xce\x2f\x2e\xb4\xb3\xd6\xc8\x4d\xb5\xc3\xeb\xce\x51\xa8\xcd\x26\xe0\x76\x56\xc6\x09\xa5\x44\x70\x99\xd1\x8f\xcd\xba\x95\x1a\x85\xea\x92\x72\x3e\x6c\x82\xe1\xc7\x6a\x91\x2d\x14\xf2\xe0\x92\x80\xeb\xfe\x9d\x37\xeb\xfc\x12\xd8\x85\x1c\x26\xb1\x57\x25\xf0\xbe\x10\x1e\x4d\x39\x00\xc0\xd7\x91\x0f\x43\x55\xef\x1a\xc9\x4c\x10\xdc\x07\x4e\x93\xa8\xe2\x61\xdb\x70\xcf\x60\x8b\x3e\x58\x6c\x53\x62\x01\xb9\xca\x6c\x85\x09\xfc\x93\x6a\x60\x3a\xff\x6b\x4e\x0c\x55\x3c\xec\xc2\x85\x15\x8c\x47\x21\x26\x44\x6f\x40\x9a\x0a\x00\x10\xad\x23\xef\xe4\xaa\x89\xe7\x23\x1f\x2a\xc0\x94\x44\x8a\xaf\xfc\x32\xee\x0d\x23\x91\xcd\xdd\x01\x0b\xa5\x7e\x37\x06\x90\xab\xc5\x16\x86\xaa\xb6\xe2\xfa\x5f\x68\x06\xf7\x9c\x71\xbf\xc7\x11\x0f\x80\x09\xa9\x29\xd3\xb0\xb1\xfe\x39\x95\x03\xe7\xc1\x3d\x5b\x44\x73\xaf\x5e\x8b\xa1\x71\x32\xa3\x01\x80\xb2\x2e\xec\xbb\xb7\x45\xbe\x30\xe7\x7b\xe4\x3f\x1d\x3d\xb3\xd6\x86\xd0\x03\x70\x0d\x4d\x31\x33\x00\xf4\x0a\x40\x17\xc1\xe0\x86\x40\x2d\x79\x4e\xc8\xd6\x29\x7c\x39\xe2\xc8\x89\x7a\xd3\x13\x0b\xc8\x6d\x64\x2b\x54\x05\x83\xdb\xff\x0b\x18\x60\x5f\xb4\xa9\xd9\x28\x69\x2a\x01\x40\xb4\x99\xbc\xef\x63\x9e\xbb\x53\x39\x70\x54\x0b\xbc\x95\x77\xb5\x3c\xdc\xd6\x5b\xe0\xcf\x2d\x08\x00\xd8\x7a\x0e\xc3\x92\x8c\xd9\xb6\xd4\x26\x75\x74\x3e\x6d\x19\x9a\x81\xf3\x22\x7b\x5e\xc1\xd4\x95\xcf\x60\x2f\x9c\xbc\xd7\x93\xb0\x80\xdc\x59\xb6\x1e\x7e\xd5\xb2\x22\xe4\xa1\xda\xab\x41\xa5\x63\xb6\x9e\x65\x5b\x55\x65\x75\xec\x8d\xd3\xce\xe5\xb8\xcf\x4f\xd8\x40\x00\xe7\x1d\x9b\xa3\x3f\x47\xa1\x7e\x69\xe4\xad\xe7\xb3\x58\x72\x9d\xd8\xaa\xc0\x73\x87\xec\x67\x09\x54\xda\xa0\xea\xa7\x90\x97\x38\xe7\xc1\xb3\xef\x5a\x0f\x32\x91\x00\x40\x79\xeb\xf4\x5d\x54\x0f\x0c\xfe\x33\xf8\xf4\xf2\x54\xa8\xc4\x1b\x79\x7e\xbf\xe5\x78\x43\x8b\x1f\xd9\xc4\x9a\x7b\x65\xcd\xe8\xee\x21\x07\x00\xb0\x55\x01\xb4\x19\x58\xe5\x6e\x53\xdf\x37\x6e\xa7\x31\x5f\xf1\x3a\xf5\x31\x1b\x6b\x2c\xc6\xbb\xec\x2f\x8f\xc6\x02\x6a\x64\x8b\xd9\x00\xc0\xb2\x0a\xf5\xae\x3c\xf4\xbb\x1e\x0a\xd7\x40\x5e\x55\x45\x6c\x50\x92\xe9\x9e\x0f\x3a\x4c\x00\x6e\x81\xb7\x56\x36\xb1\xe7\x5e\xd9\xb8\xa3\x69\x35\x35\x00\x00\x83\x0b\x9a\x8e\x2c\x54\x0b\x37\x78\x8a\x6f\x21\xdf\x6c\x5f\x3b\x6b\x16\x97\xa0\x25\x73\xc3\x9d\xb3\x48\x04\x6e\x80\xa7\xaa\x61\x04\x58\x5c\xfe\xfa\x89\x05\x40\x1e\x7b\x43\x8d\x55\x4a\x27\xf4\x6b\x9f\x42\x8b\x42\x91\x08\x9d\x9b\xd2\x83\x27\xac\x7c\x4c\x81\x5d\x2b\x2b\x57\x32\x27\x71\x65\xd0\x72\x0c\xab\x32\xcb\x36\xb2\xb1\xdb\x9a\xbc\x46\xf0\x0e\x00\x40\x72\x09\xc6\x91\xc6\x29\x3c\xd0\x22\xe6\x64\xd2\x2b\xa9\x83\x78\x1e\x03\x99\xb0\x53\x21\x58\x54\xfb\x95\x58\x89\x20\xe9\x7b\x2a\x44\x54\xba\x2c\xee\xe5\xf2\xe3\xc1\x1d\x30\x00\x83\xb3\xb1\xee\x78\xc6\x59\x53\x59\xfd\xc5\x0b\x08\xf2\xdf\x29\xef\x2d\xe9\x0a\x8c\x83\xa6\x20\x9c\x4a\xba\x16\x49\xc1\x6f\xb6\x0f\x3e\x61\x04\xb8\x89\x4f\x97\xff\x48\xe1\x01\x80\xf7\xc9\xa4\xd5\xa8\xea\xe6\xc2\xb6\xa1\x51\xf0\xc0\xea\x03\xd9\x21\x73\x53\xd2\xf2\x85\x43\x89\xde\xe4\xca\x6a\x97\xdf\xef\x02\xa7\x52\xb6\xc3\xb0\xb0\x57\xb0\x3e\x55\xc3\x80\xd0\x54\x86\x3f\x56\xd8\x00\xe4\x27\xb9\x4e\xf2\xaa\x24\x0f\x34\x2a\x27\x27\x41\x46\xf0\xd5\x9e\xba\x45\x41\x8b\xf3\x97\xc0\x9f\x04\x1e\x72\x5d\xdc\x90\xad\xd8\xce\xd8\x6d\xfa\xc0\x34\x0c\x80\xd4\x01\xfc\xef\x4a\x27\xd4\x57\x9e\x24\xf2\xdf\x65\x78\xc8\x2d\x06\x19\xed\x23\x09\x2b\x0b\x7d\xa4\x9b\x27\x42\xb6\x2a\x71\x39\x21\x41\x4f\x45\xaa\xd6\x8d\xf4\x6b\x39\x8a\xb9\x00\x60\x15\x89\x98\x36\x2e\xfe\xee\xf3\x59\x2d\x24\xeb\x22\x8b\xf4\x96\xb7\x1d\x89\x8c\x61\xe5\x53\x38\xac\x54\x32\xd0\x25\x20\xe3\x84\x28\x9e\x25\x6d\x59\xbc\x67\x98\x5c\xce\xfc\x02\x00\x61\x66\xf2\xfb\xb1\x0a\x52\x1c\xac\x03\x95\x61\x9e\x34\x84\x3e\xa8\x02\xdd\xc1\xe0\x8f\x3c\xd1\xb8\x9c\x10\x4c\x1f\xb9\xd7\xa8\xda\x50\x3b\x7a\x4d\x3d\x00\xe8\xe2\x87\x26\xab\x64\x50\x21\x1f\xe9\xcb\xfb\x2f\xcf\x55\xad\x59\xfa\x58\xec\x8f\xe0\x26\x0e\xcb\x81\xe8\x1e\x2d\x24\x1d\x5f\x74\xc6\xee\xd8\x67\x96\x02\x40\x98\x85\xfc\xbe\x66\x64\x46\xaa\xf9\x8a\x52\x6e\xf9\x98\xa1\x33\xee\xd9\xe1\x53\xc6\xfa\xc7\x55\x1a\xe2\x47\xe6\x27\xf8\xb9\x70\xc2\xec\x03\xf0\x3b\xff\xd7\xa8\xef\x5f\xec\x0c\x34\x0d\x00\xc0\x8a\x13\x9a\x65\x2c\xbf\x2b\xc2\xc1\x7a\x42\xcf\x88\x7c\xa3\xe7\x58\xe1\xdd\xbc\xa6\x7d\x5b\xe3\xfb\x76\x06\x93\x12\x71\xd3\xa4\xa5\x4b\xb4\x9f\x7a\xb9\xee\x89\x0d\x40\x90\xe4\x6b\x47\x61\x7f\x24\xa1\x98\x25\xe0\x44\x69\x3b\xdb\xde\x02\x71\xed\x70\x47\xee\x9d\x02\x7d\xf9\x13\x00\xbb\x50\x6e\x9f\xac\x5c\x0d\xf3\xe9\x97\x64\xd1\x85\x77\x83\x18\x00\xa9\x0a\x78\x27\x9b\x22\xe1\x5c\x46\xe8\xd9\x8e\x36\x7b\xf3\x91\x67\x61\x11\x4b\xd6\x82\x90\x5c\xb8\x1e\x47\xe1\x66\xf7\xc1\xa6\xdc\x0e\x80\xcd\x4a\xb0\x8d\xe5\xab\xae\xfe\x02\x17\x80\x7c\x21\xd7\xd9\x4b\x12\xe7\x83\xba\x12\x2b\x29\xea\x66\x9f\x1b\xea\x73\xb5\x21\xca\x34\xe6\x1b\x0a\x5a\x3c\x09\x27\x3b\x16\xb2\xe2\x12\x72\x0c\x35\x4f\x60\xcb\xdf\xb1\x02\x9d\xeb\x1f\x1f\xad\xaf\x1d\x3e\x0e\x5b\x0b\x48\xff\xe6\xc8\xb8\xf5\x13\x1b\x80\x84\x93\xeb\xc4\x53\xf3\xd1\x6e\x56\xba\xeb\x24\x47\xaf\x28\x3e\x55\xf9\xa4\x64\xcc\x43\x7e\x95\x92\xd0\xa2\x91\x50\x9f\xf0\xfd\x6d\xd8\x82\x24\x35\xa9\x84\x84\xb7\x17\x3a\x21\xdd\x4f\x8c\x45\xb4\xdb\xff\xce\xad\x7d\xac\xb5\xc4\xcf\xe8\xac\xbc\xc3\xb5\x59\x6d\x72\x80\x4e\x11\x34\xd0\xe5\xf2\x9e\x8a\xd4\x03\x61\x47\x58\xcc\x0f\x00\xee\xca\x1c\xf1\x26\xe0\x13\x8f\x27\x3a\x0f\xfc\xca\x6b\xc1\x64\xfe\x3b\x86\xa6\x67\xd6\x68\x07\xb4\xce\xfd\xdd\x5f\x23\xd7\x68\x8b\x90\xfc\x26\x45\x8f\xa2\xad\x77\xe8\xed\x4c\x23\xb4\x2e\xf1\xdd\x9f\x11\xa2\xe3\xd4\xfa\xc9\xf2\xae\x12\x02\x00\x66\xca\xd6\x23\x1d\xbc\x29\xb2\x33\x5e\x9a\xcb\xf4\xad\x86\xc4\x94\x69\xe2\xd9\xb7\xeb\x6b\x60\x50\xc9\xcd\x6e\xca\xb9\x42\x72\x25\x25\x5e\x57\xd4\xc3\xdd\x4e\x1b\xf6\xe8\x07\xe3\x8f\x1b\x7b\x38\xca\x8b\xf3\x1f\x29\xde\x4f\xbb\x74\x09\x51\x9a\xa8\x80\xf3\x56\xb2\x99\x8e\xfa\xe6\xdf\x2d\x6b\xe2\x55\xe6\x61\xd0\x62\xf8\xcf\x85\x6a\x10\x63\x22\x1a\x7b\x2e\x7a\x92\x06\x00\xb0\x6c\x68\xd0\xf6\xe9\x7b\xa2\x67\xf6\xe7\xf6\x87\xac\xae\x95\x91\x2e\x36\xd2\x99\x0d\x70\x0c\x1d\x81\x2b\x27\x57\xa2\xe3\x46\xe2\xad\x73\x6c\x00\x00\x7d\x8d\x34\x79\xd6\xcf\x98\x95\x53\xa2\xf2\xed\x47\xbd\xd4\x1f\xc3\x5a\x36\xb7\x7f\xff\x96\x11\xe2\xe3\xd4\x69\x6a\xe4\x26\x36\x00\xf4\xda\x95\x19\x4b\x57\xcc\x71\xe2\x7e\x2b\xd2\xf0\xa8\xdb\xf2\x5c\xa6\xc6\x57\x96\x36\x2d\xf7\xe3\xef\x5c\x9f\x7f\xaf\x4b\x0b\x00\x94\x3f\xc3\xd3\x53\x6c\x1c\x12\x87\xe8\x2d\xdd\xc0\x1e\xb2\x92\xf8\xca\x14\x8f\x69\x7e\x09\xb9\x1c\x74\xf8\x82\x00\x20\x7a\x63\x26\x3d\xe4\x8d\xb1\xc7\xcd\x8d\x37\x95\x8f\xbd\x9d\xfe\x32\x37\x7e\xbf\x56\x66\xb1\x1f\xb4\x73\xfd\x86\xad\x58\x08\x00\x38\x49\x4d\xcc\xaf\xaa\x30\x5a\x47\x6c\x45\x49\x1c\xe6\xfd\x86\x38\x21\x0a\xee\x41\x70\x94\xa8\xea\x62\x16\x29\x00\xc0\x5b\x4d\x14\x16\x4f\x9b\x15\x2d\xe3\x22\x96\x86\x17\x5e\x80\xe8\xa2\xcb\x30\xa5\x2b\x2d\xdc\xb9\x31\x01\x78\x66\x86\x92\x87\x06\xc8\xe2\x6a\x46\x2c\xe2\xec\x52\x1b\x86\x33\xf4\x68\x7f\x13\xc4\x38\xa3\x9a\x5e\x20\x99\x05\x02\x38\x53\x75\xb8\x90\xdf\x77\x2c\x0e\xe3\xd7\x0e\x65\x82\xcb\x19\x7b\xbd\x97\x02\x46\x49\xc4\x28\x11\x7f\x32\xa9\x7f\xbb\x33\xe4\x1b\x21\x74\x1f\x01\xc0\x06\x82\xcf\xa5\xc5\xf0\x47\xdc\x6a\x39\x06\x0d\x27\xbe\x72\xe2\x12\xbb\xa5\xab\xfa\x13\xf5\x5a\xa6\x62\x51\x00\xe8\x45\xf4\x24\x16\x5d\xb8\xc9\x12\xfe\xe2\xcb\xd0\x8b\xdb\xea\xb9\x89\xc1\xc7\x66\x7d\x51\x8c\xe5\x6f\xba\x70\xcd\x8c\x01\x00\x08\x1a\x59\xa2\xdf\x86\xc1\x10\xe7\xf7\x30\x10\x1d\x6b\x46\x4c\xb0\x0b\x1c\x55\x87\xa8\x0a\xe0\x00\x80\xfe\x38\xed\x7f\x93\xc2\xed\xc6\x83\x6d\x53\x25\xdf\x46\x50\x13\x61\xa7\xa1\xe9\x02\x00\x08\x4c\x5c\x2c\x5f\xf5\x21\x15\x66\x93\x53\x2c\x6a\x6c\x1b\x41\xe7\x2b\xf4\x53\x4c\xe9\x7a\x6b\xc9\x3a\x10\x00\x4b\xe4\xfb\x46\xc7\xf0\xbb\xfa\xf3\xda\x41\x11\x9c\x70\xfa\xe2\x3d\xe3\xcc\x8b\x74\x86\x27\x6d\x20\x00\x46\x71\xf0\xf8\xb8\x5a\xe8\x08\x89\x21\xec\xc0\xe1\x68\x4e\x72\x3e\xfb\xf0\x52\x44\xb6\xf8\x09\x00\x38\x84\xd2\x89\xb6\x60\x05\x06\x12\xe0\x31\x5d\xea\xc0\x70\x1c\xf3\xc3\x9e\xd2\x14\x9a\x79\x90\xfe\x2f\xf6\x59\xcc\x03\x27\x38\x26\xe3\x58\x5c\x17\x86\xb3\xa7\x8e\x36\x79\xcf\xb8\x10\x9b\x9e\xe6\xf7\x09\x04\xc0\xfa\x5e\x28\xbe\x8d\xd9\x73\x34\xf6\x2b\xe3\x82\x7c\x18\x87\xae\x2e\x63\x57\x2f\x49\xc5\xad\xf3\xe1\x00\x00\x9d\xc9\xd3\x50\xeb\xcc\x97\xb5\xf8\x6e\x62\xd8\x36\x55\xc1\x65\x7e\xcf\xc6\xac\x6b\xeb\x1a\x1a\x56\xff\x0b\xa6\x29\x38\x97\x18\x47\x53\x73\x42\x82\xa4\xa0\xc7\xa1\xbd\x7c\xf2\x00\x90\xfe\x85\x52\xf7\x45\x64\x46\x18\xe3\x07\xdb\x27\x0d\x5c\x10\x05\xf7\xf8\xad\x6a\x58\x9c\x4b\xe1\x16\xe7\xb2\x15\x00\x20\xde\xa7\x31\x4b\x4d\x2b\xfa\xb6\x70\x41\x14\xbc\x14\x3b\x51\x97\x04\xab\x92\x8a\x00\x30\xe6\x2b\xc4\x07\x17\x91\x70\x93\xc0\xb6\xf9\x1a\x3b\xd3\x4a\x7d\x7c\x92\xd5\x6b\x42\x08\x00\x8f\xca\xa5\xf3\xad\x19\x7e\x2c\x68\x80\xe8\xb8\x17\x68\x36\x1a\x40\x4c\x2b\xa5\xe9\xe3\xad\x68\x00\xc8\x7d\x1f\xae\xe4\x59\xee\xd2\x15\xfb\x9b\x12\x21\xf5\xc4\xec\xcc\xb4\x13\x65\xaf\x46\x2c\x02\x65\x00\xe0\xbc\x6c\xda\x0c\x2e\x7c\x35\xd6\x15\xee\xa1\xba\xb0\xdd\xd5\x59\x78\x1c\x9a\xbd\xf0\x6f\x6c\x03\x2d\x00\xef\xe3\x61\x8b\xf2\x8e\x4b\x60\x2d\x4a\xb8\x17\x43\x76\x33\xd2\x8c\x9b\x38\xdf\x0e\x78\xb9\x7f\xf9\x97\x87\x81\xd6\x03\x31\xad\x04\xa7\x1f\x9d\x89\x63\x02\x63\xbe\x75\x3a\x92\x7c\x50\xb2\xa8\x12\x78\x2b\x9a\x4e\x13\x54\x52\x6c\x81\x1b\x1c\xd8\x31\x33\x3c\xb2\x40\x08\xc0\x70\xf2\x77\x99\x4e\x1d\x9f\xa3\x6e\x64\x38\x24\xb0\x0b\xb3\x19\x93\xaa\x52\x36\xeb\xcc\x54\x5f\xae\xb9\xe0\x00\xb9\xf1\x6d\xdd\xd2\xa1\x7a\x93\x49\xe4\x19\xdc\x88\x1e\x52\x1e\x48\xf5\xf0\x27\xdf\xf0\xda\x4c\x0c\x1d\x37\x1a\xdc\xe0\xc0\x16\x07\xe4\x7f\x59\xee\xce\x0f\x11\xd2\xe1\x54\x64\x01\xbc\x3b\x66\xf8\x78\x9c\x90\x0f\x1e\x25\x5b\x09\xf0\xb8\x51\x57\x3c\x8b\xff\x28\xac\xf5\xd4\x92\x53\x89\x1b\x74\x3d\xdc\x58\x51\xfe\x34\xf6\x12\xd8\x85\x64\xb1\x84\x77\x7f\x90\x89\x55\x57\x32\x20\x20\xb7\xc4\x99\xad\x3c\x9d\x9a\xb4\x85\x80\x7c\x5c\xd5\xb0\x41\xe9\x6d\xcc\x4b\x87\xec\x6d\xc2\x62\xb8\x68\x97\x21\x7a\xe0\x3d\xd3\xba\x5c\xba\x97\x5f\x19\x08\x70\x80\x81\xe2\x59\xf9\x98\x1c\x41\x2a\xf9\x5c\x90\x86\xe7\x6f\x63\x1a\xdc\xbd\x75\x61\x8f\x76\x68\xc1\x21\xc9\x1f\x64\x1d\x8d\x7d\xff\xe5\x0c\xb3\x19\xd4\xd9\xc8\xda\x15\x70\x41\xbc\x7d\x7e\xc5\x77\xc6\x9d\xe0\x8f\xbc\xc1\x57\x66\x09\x2a\x9f\x13\x39\xb6\x36\x35\xee\xca\x3e\xc2\x00\x60\x93\xb3\xf8\x86\x59\x9b\xd3\xe7\xda\xe5\x91\x8c\xdd\x37\xd6\x9d\x28\xef\xe2\x2d\xfd\x11\x67\x7c\xe5\x82\x39\x9b\x83\x31\x37\x8e\x60\xa5\x5a\x6a\x37\x31\x00\xf0\xe2\x87\xec\x58\x1b\xf2\x4d\x14\xb1\xf5\xf0\xa1\xe8\x3f\x76\xa8\x34\x96\x59\xde\x67\xd5\xa6\x63\x24\x24\xab\xb1\x3c\xe9\xab\xf5\xcb\xf8\xa7\x0a\x7c\xe2\x23\x97\xe0\xa9\xb2\xcc\x79\x18\x1a\x08\x3d\x24\x3b\x22\x5d\x1a\xa1\xd3\x00\x0d\x0c\x1a\xa5\x47\x60\xc8\xf6\x6d\x8a\x15\x9f\xe9\x63\x02\x5a\xdb\x18\xf9\x45\xdd\x5b\xef\x3d\x1d\x07\x4f\x16\xb1\x25\x15\xcf\x54\x5e\xa3\x3c\xf3\xda\xd3\xe2\x8a\x33\xe8\x08\xc5\x29\x49\x09\xc7\x46\xc8\x1e\xaf\x2f\xa7\x63\xfe\x73\xfa\xb5\x63\xe4\xb4\xca\xd3\xe7\x5c\x79\x96\x59\xe6\x16\xd7\xf3\x19\x93\xc3\xe5\x2a\xef\x17\xb8\xcd\x81\x23\xfa\x84\xec\xf1\xb6\x4a\xba\x9e\x6f\x0b\x08\xf8\xba\xfe\xd1\x40\x27\x91\x9f\x0f\x82\x54\xd5\xf9\xbc\x59\x25\x30\xdd\x4a\xd5\x5f\xfd\xf8\xcb\x75\xa4\x48\x1a\xc6\x04\xa1\xd2\x9b\xe5\x98\x5f\x4f\x5e\xae\x57\xe0\x00\xb9\xed\xce\xfc\xfd\x61\x83\xc7\x9e\x16\x88\x9a\x0e\x1a\x72\xdf\xbe\x4f\x0b\x1e\xe5\xbf\x2b\x67\x0a\x24\x5b\x64\x0a\xe4\x41\x3f\x3a\xbd\x1c\x88\xe3\x7e\x3d\x99\x99\xde\xef\x59\x20\x02\x60\x0c\x04\x91\x2b\xa9\x6f\x03\x8b\xa4\x97\x52\x05\x13\xd0\x60\x81\x9f\x99\x26\xbf\x66\xdc\xce\x0c\xbd\xb7\xf7\x8b\xe0\xa2\x0b\x7e\xe9\x6f\x98\x9f\x8c\x10\x88\xd2\x1f\x7b\x63\x02\x5a\x28\x02\xc1\x0e\x66\x7d\x1f\x70\x3c\x2d\xf3\x80\xeb\x4d\x4a\x08\xe5\x39\xdf\x82\x79\xdc\xaf\x8a\x73\xce\x5d\x52\x7c\xbc\xf0\xb5\x18\xe5\xd8\xc9\xec\xa5\xcc\x0f\x0d\xf4\x00\xfc\x06\x89\x00\x27\x8b\xa7\x19\x3a\x26\xab\x56\xf0\x20\x89\xf0\x1b\xc6\x17\xf5\xaa\x66\xee\x3c\x54\x98\x3a\x30\xb0\x59\x99\x5c\xcf\x69\xb6\xf3\x32\x4c\xfe\xbb\x8e\x5a\x33\x04\x42\x3c\xd0\x03\xe1\x3c\x5b\x5f\x7f\x0e\xd6\x84\x4d\xbf\x0e\x8e\x5e\xa3\xf4\x2b\x43\x77\x82\x33\x38\x46\x02\x4f\x44\x64\x86\x29\x55\x33\x5a\x2c\xe2\xf4\x9f\x06\xd9\x9d\x75\x03\xb6\xf8\x58\x24\x9d\x6d\xe6\x17\xe3\xca\x42\x36\xd6\xe3\x16\xa8\xdb\x9b\x69\xaa\x06\x6d\xcb\xec\x7b\xd5\x33\xb5\x11\x1d\x7c\x65\xc6\x36\x6e\xf7\x7d\x22\xab\xe0\x02\xa3\xe4\x86\xc7\xff\x49\x51\xad\x48\x77\xd5\xfa\xa3\x38\xa4\xbe\xb3\x44\x0a\xfe\xeb\xda\x4f\xb1\xc6\x78\x34\xb2\x97\x49\x1a\xf0\x6a\xdf\x61\x44\x13\x5f\x39\xdb\x6c\x97\x02\x33\x60\xc3\x99\xd6\x4d\x12\x00\x2e\x9c\xa1\x87\xee\xe5\x9e\x51\xcb\xa7\x6f\x77\x1c\xb2\x06\x56\x88\xc0\xfe\xdf\x10\x51\x0f\xf2\xb2\x2f\x5f\x1a\xb6\xe6\x19\x69\x46\x3f\x35\xca\xc6\x20\xa7\xcb\xc8\xa5\xec\x2e\x30\xfc\xa4\x66\x73\x26\xa7\x5a\x6e\x00\x02\xfa\x2b\x23\x0a\xe9\x29\xf5\xd5\xa8\x76\x1c\xd2\x54\xa4\x78\x5c\x84\x9e\x25\x78\x85\xda\x7d\xb7\x33\x4d\xb4\x40\x19\xa5\x63\xf7\xba\x48\x11\xe1\x2b\x43\x5b\xb7\x5e\x2e\xd2\x3a\x6f\x13\x18\x1c\xef\x47\x00\xd8\x58\x00\xe2\x1a\x3b\x5d\x3a\x38\x99\x75\x62\xdc\x3a\xd4\xff\xd7\xed\xc7\xd9\x69\x9c\x5a\xc7\x11\xe7\xae\x9c\xfb\xbc\xc6\xb6\xd1\xe0\xe1\x34\x25\x10\x17\x73\xcb\xc7\x3f\xf2\xac\xa8\x9b\xa7\x68\xc6\xbc\x90\xb3\x86\xd3\xf8\x2a\x6b\x2e\x20\x17\xbc\x6f\xaf\xa5\x18\x42\xad\xc1\x4b\x92\x18\x3b\x4d\xc7\x56\x9d\x35\xd9\x9d\x4d\x33\x51\x32\xb7\x40\x13\xcf\x22\x9a\x23\xf6\x67\xb4\x45\x67\xd1\xdc\xbe\x7e\x7e\xbb\x2d\xd3\x9d\x12\x91\xff\xe8\xa8\xe3\xad\x95\x7b\xbe\x5d\xe5\x58\xfb\x92\x89\xea\x8e\x48\x83\xd8\x20\x2e\x90\x3b\xb0\x68\xe3\x19\xc0\xfa\x26\x70\x8f\x70\xa7\x15\xa1\xf3\x47\xed\x62\x9e\xbc\x0d\xe5\x60\x37\x15\x33\xbe\xa8\xbd\xfd\xf7\x72\x2e\x5d\x51\xcc\xe4\x8d\xeb\xe4\x2b\xc9\x51\x4e\x88\xa2\x7d\xc0\x87\x3b\xc9\x04\xeb\x2c\xc5\xd0\x0c\x12\xab\xe4\x82\xdb\x6a\x9e\x41\x5c\x00\xc2\x41\xe3\x6c\x2c\xb5\x0f\x2e\x8f\xf5\x2c\x59\x46\x1a\x5e\x12\x54\x33\xf5\xa5\x38\x4c\xd3\x48\xe0\x5e\x00\x68\xaa\xf4\x19\xdc\xe3\x95\xaa\xa8\xc3\xb8\xe8\x80\x77\xdd\x0f\x4f\x6b\xdf\x5c\xfe\x6c\xed\x32\x9a\x7a\xc6\x47\x28\xa7\xf0\xf8\xeb\x9c\xbc\xc8\x4b\x2c\x54\x73\x54\xe3\x80\x75\x04\xe5\x5f\xad\xfd\x11\x25\x9a\x4d\x4c\x00\x31\xc4\x73\x72\xbe\x9d\xf8\x60\x21\xc5\x51\x58\xc6\x62\xd6\xdc\xa0\x1f\xbd\x55\xbb\x41\x23\x56\xfc\x27\x95\x4d\x54\xcd\x71\x6b\x72\xb8\x24\x4d\x7b\x11\x77\x4f\xff\xc9\x3e\x7f\x44\x85\xdd\x45\xc2\x96\x91\xe3\x5d\x81\x69\x2e\x7c\xa3\xab\x78\x0d\x99\xdc\x22\x92\xb0\x2e\x6d\x38\x99\x27\x59\x33\x76\xc1\x92\x75\x06\x4d\x22\x01\x60\xc1\x21\xfa\xd7\x4d\x51\xeb\x26\xf3\x45\x15\x6f\x5a\xbf\xff\x6c\xb6\xe2\x86\x4a\x4b\x1f\x7d\xc0\x58\x23\x2b\xef\x6b\x52\xf3\x70\x7d\x8e\x7a\xd3\xf2\xf1\x21\xb7\xca\x02\x6f\x55\xc0\x1d\x0f\xc0\x2b\x0a\xfb\x83\xfa\xc6\xee\x00\xde\xe1\x6d\xe8\x3b\x7d\x42\xcd\x09\xf9\x5d\xbc\xa2\xe8\xdd\xca\xf1\x29\x43\x50\x3f\xd3\x6d\x2d\xe1\xf8\x33\x3d\xa0\xd5\x49\x9e\x50\x38\x74\x3e\xbf\x6e\x68\x76\x32\x0c\x06\x61\x63\xdd\x1f\xc7\x6c\xd9\x93\x31\x1c\xe1\xa1\x3f\xb6\x1e\x00\x80\x8d\x96\x7c\xcf\x01\x91\x15\x5b\x8f\xfe\x40\x7e\x18\x1c\x23\xd4\xd5\xdb\x00\xf2\x25\xab\x5b\x62\xc6\x54\x2f\xd2\x6d\x71\xd5\x6d\x17\x0b\x88\xcc\x0d\x4b\x3d\xa9\x38\x58\xfc\xf7\x3a\xb1\x3a\x4b\xcc\xe2\xd3\x6f\x5f\xa5\x37\x0f\xa9\x7b\x14\x39\x92\x4c\x00\x5c\x4b\x35\xf2\xaf\xa0\xcb\x33\x0f\x79\x18\x48\x8e\xa4\x5e\xfe\xe7\x4b\xe6\xa7\x76\x26\xd6\xb7\x9d\x77\x41\x89\xd4\x87\xfe\x00\x10\xca\x0b\x65\xdb\xfa\x07\xcd\x65\xca\xe1\xba\x8d\x4e\xcd\x2c\x34\x92\xb4\x10\xe0\x5a\x1d\xc1\x05\x20\xc3\xe4\x5d\x99\xa4\x5a\xb0\xb1\x4f\xdd\xa2\x47\x4a\xde\xc3\x0d\x9f\x16\x38\xbf\x5e\xaf\xa4\x4e\xba\xf5\xfc\xab\xc7\x2c\x5b\x8f\x20\x07\x16\x25\xa9\xe7\x2d\xec\xac\xa0\x3f\xd6\xcf\x0e\xdd\x21\x56\x7b\x76\x89\x09\x20\xe4\xc0\x27\x71\x8f\x16\x64\xa0\x66\xff\x59\xda\xc5\x47\x33\x31\x3f\xdd\xc2\x16\x93\x10\x3b\xa0\xaf\xae\x9a\xa7\x02\x20\x5d\xe4\xf9\x74\xa3\xff\xa0\x7f\x1d\xf0\xb9\xc6\x21\x52\xcb\x4b\x9b\x12\x1a\x18\x01\x78\x8c\x2a\xde\xff\x84\x5e\xba\xdf\xb1\xa7\x8f\x32\x3f\x3d\xac\x10\xe5\xb0\xbb\xf9\x9c\xf2\xcf\x49\xbf\x5a\xa4\xa5\x26\x1e\x27\x44\xf0\x9b\x13\xf1\xe7\xe3\x46\x17\xfb\x3f\x16\xc7\xff\xd8\xb4\xc1\x3b\x42\x1c\x61\x41\xf2\x30\xd0\x8f\xb4\xf4\x08\x96\x67\x87\xeb\xa2\x2d\x62\x1b\x19\xe5\x1d\x7b\x3f\xb2\x48\x00\xe0\x0b\x27\x74\x9f\x02\x03\x1f\xaf\x95\xe9\xb9\xff\x62\xc8\xb4\xf3\x8f\x05\x12\x00\xf6\x82\x2d\x4c\x12\x9a\x0b\xef\x0c\x30\xae\x75\x2c\x44\x05\x7f\xb6\xbb\xcf\xfb\x6b\xdf\xb8\x07\x02\x60\x21\xff\xc7\xd2\x28\xe7\xf1\xbc\x07\xd5\x2e\x5a\x0c\x00\x00\x5d\x32\xe9\xe5\x3f\x27\xcb\x42\x13\x3d\x6d\xc2\xe9\x0e\x8d\x5b\x9a\xe8\xbb\x4c\x0c\x00\xb0\x31\x94\x9f\xfd\x57\x82\xaf\x05\xcc\xd2\x87\x4d\xa2\x57\x78\x2d\x45\x98\x00\xc2\x0c\xfc\x1f\xc2\x31\xcd\x6a\x8b\x92\xff\xfe\x27\x87\x3e\xa7\xad\x2d\x51\x00\x80\xb4\x90\x5b\xa5\x52\x60\xe0\x2b\x2f\x8e\x8c\x67\x52\xef\x54\x9b\x5c\x37\x86\xeb\x02\x00\x9c\x50\xed\x3f\xd3\xef\xe7\x0d\x3c\x42\x0a\x51\xed\xcd\x5b\xde\x9a\x20\x00\x10\xe6\x87\xfe\xab\x1e\xab\xbf\xb5\x28\x43\x3c\xe3\xad\x3f\xf9\x76\x58\x20\x00\xa4\x1b\xc8\xff\x07\x71\x6e\x3e\xbd\x4f\x7b\x72\x12\xa2\x7b\xc6\xe4\x5e\x66\x03\xfa\x57\xb9\xff\xc9\x3e\x69\x96\xf7\xf0\xef\x41\x75\x84\x6e\x09\x6b\x62\x02\x80\x30\x2f\x34\x58\xb3\xff\x0f\xd2\x7b\xc7\xe6\x5f\x54\x7b\x5e\xc9\xc3\xa7\x07\xd5\xf1\x71\x8b\xfb\x5f\xb4\x86\x0f\xba\x14\x67\x2d\x24\xc4\x40\x89\x78\x12\xf4\xf2\x4c\xbb\x07\x25\x6b\x6c\xc8\x40\x00\xc0\x9d\xd5\xfa\x0b\x25\xa1\x2e\x3a\x7c\x22\x1c\x58\x94\x88\xd9\xd6\x22\x23\x85\x33\xa3\x1e\xeb\xd7\x3e\xff\xd8\x01\x58\x1f\x5b\x4f\x8c\xdb\x7f\x74\x42\xfe\x9a\x67\x93\xfd\xa8\xce\xad\x30\x53\x74\x09\x00\xc0\xc2\xff\x57\xd7\xe7\x07\x18\xe8\x15\x16\x26\x4c\x13\x86\x3d\x62\x4d\xec\xff\x88\xfe\x33\x63\xbe\xe0\x94\x1d\x1d\x48\xf8\xef\xd2\x5a\x7f\x9c\xfc\x4f\xb6\xf2\xa8\xe4\x7f\xfd\x51\x7e\xb5\x2f\xf3\xfb\x26\x9d\x86\x85\x09\x77\x41\x28\xa8\xdc\x4e\x53\x13\x0c\x00\x35\x3c\xd0\xf0\x7f\x78\x3d\xdb\x98\xe8\xf0\xf4\x51\x16\xa6\x08\x36\x51\x92\x37\x5b\x6b\x49\x00\x00\x29\x20\xb7\xf2\x90\x57\xfd\x0f\xf6\xc5\x37\x87\x4b\x3b\x5a\x1b\x4b\xf4\x64\x7a\x3c\x21\x36\x00\xcc\x25\x93\xfe\x1b\x69\x72\x8e\x8c\xa4\x07\x9a\x70\x68\x10\xe1\xd0\x56\x6f\xf9\xb0\x16\xf0\x6f\x56\xfe\x93\x3d\x7e\xf3\x7e\x4b\x38\x5c\x6e\x5e\x2c\xce\x41\xdc\x8a\x13\x00\xfa\x2b\xc3\x68\xff\x7b\xc1\x64\x42\xb7\xb7\x42\xa8\xb0\x6b\x91\xce\x40\x87\x03\x00\xc2\xdc\xff\xd3\x6d\x6c\xe2\x94\x6d\x4f\xab\x13\x32\x75\x17\x63\xf9\x5f\x23\xff\xdb\x8b\xb5\xc9\xbc\xb9\x44\xcb\xd4\x8d\xe7\x4c\x00\x80\x50\xfc\x1f\xb2\x76\xb3\x62\x2d\x45\xb7\x60\xd4\x12\x76\x13\xc2\xf2\xff\xeb\xb9\xe9\xfe\x49\x01\x93\x10\x61\xe2\x7e\xae\x9f\xf2\x22\xab\x17\x00\x8c\xfd\xfe\x1f\x48\xfe\x39\x07\x7a\x9c\xb0\x9b\xd5\x82\x42\x42\xd6\x8e\x2c\x1c\x03\x80\x3b\xff\x6f\x09\xa2\x46\xbf\xf5\x2c\x11\xbd\x17\xe9\x10\x80\xf2\x08\x52\xfe\x77\x0a\xfe\x43\x4a\xf2\x9e\x79\xd6\x2f\xa8\x3e\x91\xdf\x64\xb1\x58\xd3\x0b\x00\x90\x0f\xff\x47\xf1\x8c\xdd\x69\x9a\xba\x41\xed\xc9\xe3\x0c\x82\x77\x51\x5b\xaf\xfe\x41\x11\xfe\x1f\x94\x66\x8a\x5d\xd2\x96\x46\xb8\x95\xf0\xad\x83\xab\x15\x2d\x00\xf4\x7f\x09\xfb\xb7\xba\x88\xc6\xd6\x6f\x73\x30\x91\xec\xbc\xd4\x61\x09\x31\x09\x41\xc2\xff\x48\xbe\x64\x52\xe8\x94\xcd\x7d\x26\xd3\x82\x91\x56\xd9\x8b\xed\x89\x10\xea\x5e\x23\xb7\xf8\xd0\xe1\xff\x0a\xfb\x59\x00\xda\xc7\x88\x4a\x9f\x15\x56\x27\x50\x71\x99\x38\x82\x32\xf2\x11\xca\xbd\x62\x1c\x8b\x99\x36\x45\x6b\xa9\xdb\x99\xa3\x3b\xc4\x94\x1c\x63\x6d\x9e\x00\x80\x97\x0d\xd3\x65\xe5\x57\x23\x7d\x91\x38\x3b\x6a\xb4\xa0\xfb\x99\xa8\xec\x78\x2b\x9f\x6b\xe5\x56\x62\x3a\x67\x65\xcf\x01\xbf\x72\x7e\x9d\xb5\x95\xad\xaf\xb1\xca\x7c\xe9\xfa\xa4\x24\x33\xf8\x4a\x81\x13\x82\x37\x2d\x96\x6e\x26\xba\x2d\x44\xa9\x5b\x5d\xf4\xc9\x7e\x72\x7f\x54\x0b\x00\xc2\x5f\xcb\xa0\x63\xd3\x3f\x8b\xbe\x71\xb0\x3b\x42\xfd\x1d\x8d\x58\xd3\x77\x6a\x35\x3a\xa3\x71\x8f\x7b\x19\x61\x22\x3f\x81\xaa\x2e\x35\x96\x0f\x57\xc9\x6f\xb3\xf6\x4d\x09\x50\x7d\xc6\xa5\x2d\x6f\xe5\xb8\x19\x39\x7a\x9d\x8e\x49\x1b\x6e\x7e\x50\xdc\x14\x6b\x09\x00\x84\xa1\x2e\x81\xb7\x24\xee\x04\x1d\x77\x9a\xb5\x2a\xb2\x43\x11\x69\x0a\xb5\x25\x5b\x36\xe8\xa7\xe9\x6a\x62\x3c\xb8\x21\xd0\xf4\x9f\x85\xb5\x8b\x48\x99\x04\xdb\x2b\x58\x6a\xa6\x26\x48\x6e\x56\x73\x7c\x1f\x2d\x78\xee\x24\xe2\x9e\xf3\xcc\xa5\x57\x0b\x00\x6e\x56\x5b\xd6\x18\xf3\xfc\x95\xcf\xb2\xa4\xcc\x72\x82\x5e\x9e\x45\x6e\xc9\x3e\xe4\x60\xf2\x43\xa7\x3c\xfd\x96\x63\xa7\xe9\xe6\x78\xc2\x30\x42\xf1\x32\x4b\x24\xe3\x2d\x7f\x4f\xe1\xa1\x93\xd3\xbb\xe9\xf0\x81\x4e\xd1\x61\x6e\x57\x95\xab\x8e\x37\xc8\x37\x63\x39\xd5\xa1\x8d\x2d\xd0\xcb\xed\x61\x72\x57\x70\x49\x11\x8f\xb5\xd7\xf7\x61\x08\x05\x8f\xcb\xce\xb7\xb4\x7f\x74\x8d\xc4\x13\x99\xbd\x82\xea\x93\xd5\xe9\x1d\xc2\x84\x00\x9c\x6b\x76\x5d\xe7\x28\xca\x64\x42\x9a\xe0\x72\x7b\x76\xe9\xfa\xb3\x02\x3f\x74\x47\xb8\x2d\x79\x75\x27\x18\x7a\x39\xba\x48\x94\x07\x87\x98\xca\x4e\x9b\x76\x0a\xaa\x27\x6a\xb0\x06\xca\xd5\x72\x2a\x80\x00\xad\x08\x87\x87\x12\x47\xf4\x9f\xd1\x3a\xd9\xa3\x17\xe8\xec\x3c\x62\x67\xae\x2c\x5c\x9d\xe4\xa8\x4d\x4b\xe1\x4a\xaf\xbe\xf3\x4a\x65\xc5\x10\xf4\x12\x29\x3e\x5e\xd7\xf7\xda\xc6\x28\xb7\xdf\x4b\x56\xe9\x29\xf2\x0f\x5f\x48\x80\xdf\x93\xa1\x6b\xe2\x55\xd2\xed\x03\xdf\xd6\xe3\xd2\x31\x3f\xb4\xc3\x34\x9c\x26\xf4\x9c\x54\xd4\x22\xa5\x91\xb6\xf7\xdd\x4b\x44\x96\xc9\xe5\xa4\x55\x84\x02\xfe\x37\x69\x76\x85\x76\x6f\xc2\xad\x9a\x57\xce\x0f\xea\x5b\x34\x84\x37\xda\x05\x81\x1e\xeb\x98\xad\xfc\xc7\x6d\xd9\x89\xa2\x22\x48\x72\x49\xf6\x9f\xa0\x6f\x0e\xab\xca\x57\x04\x5c\x75\x2a\x3a\x5c\xc5\xb7\x1f\x93\x8a\x4a\x6d\x0b\x51\x4b\x08\x9d\x81\x23\x26\xab\x55\x7e\x15\x4b\x7c\x76\x05\x38\xd7\xec\xc7\x8b\x3a\xc2\x6e\xcf\xb9\x5d\xc3\xfa\xe7\x6b\x83\x84\xd8\xc0\xf3\xd5\xb0\xcc\xe4\x38\x57\xa5\x4f\x01\xea\x4f\x0c\xf5\x05\xf6\xc9\xca\x9d\x4a\xd8\xda\x28\x84\xdb\x85\x15\x9a\xdf\x5b\xd6\x2d\xa6\x6f\x0d\xa1\x09\xb8\x98\x28\x49\x29\x97\x90\xe9\x7b\x74\xe1\x3b\xe9\xba\x8b\xa7\x91\x4f\x85\x28\x01\xd2\x72\xcb\x87\xed\xd5\x1f\x92\xc1\x9f\xeb\x1d\x57\x6b\xf2\x3a\xc8\xd8\xdc\xe3\x2c\xbc\x1c\x77\xaa\x54\x76\x19\x92\x2f\x45\x2d\xbe\x8f\x24\x3d\x98\x4b\xe6\xc1\xb5\x60\xa4\x18\x0b\x04\xeb\xce\xe1\x79\x2f\xc5\xfd\x56\x0e\x69\xf9\x86\xb5\x00\x98\x56\x30\xb7\xeb\x54\x89\xc6\xbb\x10\x97\xc3\xcb\xcb\x68\xf8\x41\xb6\xb9\x1a\x47\x49\x0b\xee\x37\xf2\x0a\x36\xdb\x92\x93\x3f\x54\xd8\x58\x72\xd5\xe0\x99\x19\x41\xc2\xa0\x79\xd3\xb3\x68\x3b\x83\x70\x0c\x20\xf4\x6d\xc6\x96\x28\x7a\x18\xdb\xaf\x6d\xe5\x27\xc1\xb1\xd0\x21\xf3\xb3\xf0\x73\x67\x0b\xf0\xe4\x04\x17\x04\x6f\xcc\x01\xed\x45\xa8\xd0\x91\x59\x20\x99\x6c\x09\xc0\xbb\x6a\x9a\x82\xdc\x9c\xa6\x05\x7e\xbd\x91\x8d\x6e\x20\xa1\x24\x0d\xb3\x21\x58\xd5\x54\x0e\x39\x28\xf0\x93\xaf\x25\x55\x00\x01\x1f\xad\xca\x54\xe6\x16\xdb\xaf\xf1\x6f\x6e\x52\x26\xf6\x7f\x2c\xe0\xe1\xe3\xc9\x5b\xf9\xc8\x6b\x5a\xd2\xde\xd8\xfa\xb9\xc7\xd9\x64\xe5\xa5\x7d\x5c\x05\xe0\xa6\x26\x2a\x67\x16\xe8\xbf\x58\x6f\x79\x65\xb7\x0f\xb0\xb0\xb1\xf2\x24\x61\x1e\x32\xdd\x63\x02\x97\xca\xbb\xe6\xe9\x1c\xbd\x2e\x56\x78\x40\x3f\x93\x89\xf9\x95\x90\xbb\x0f\x89\xfc\x6b\x94\x50\x78\x03\x15\x25\x69\x98\x1d\x0d\x3a\x87\x36\x3c\xb8\x56\xa9\xda\x7c\xec\x2e\x34\x0f\x80\x2f\x1a\x6a\x9e\xe5\x6f\x04\xf8\x2d\xfd\x78\x84\x5e\x20\xc0\xc7\x93\x3f\x67\x59\x75\x2f\x7f\x2f\xa5\x79\x96\x54\x65\x2a\x00\x88\x2e\x10\xaf\x1d\x6a\xc6\x11\x9e\xff\x79\xe1\x68\xec\x97\x21\x07\x92\x8b\xdc\x77\x2f\x0f\xa2\x0b\x07\x55\x7f\xce\xef\x73\x8a\xfd\x15\x81\x09\x88\x6e\x76\xdd\x59\xa2\x3f\xbe\x67\x2a\xd6\xc8\xb7\xf8\xd0\x40\x4f\x49\x1a\xb6\x2b\x6a\xf1\x7c\x2c\xe4\x60\x0d\xa9\x1a\xa8\x56\x0b\xea\x06\x01\x69\x55\xb6\x13\x6e\x53\xe5\xe4\x03\x27\x95\xbd\x26\xc4\xf8\x78\xf2\x76\x71\x56\xd5\xa0\x95\xce\xcf\x63\x8b\x6b\x6a\x8f\x81\x5c\x21\xe7\x8f\x65\xdb\x2c\x77\x92\x62\x4c\x6e\xd2\x9c\x10\xbc\x25\xbf\xae\xc2\x86\x1f\x37\x25\x8d\x2a\xbb\x3c\x22\x94\x80\x96\x44\x3d\xf9\x6a\xda\x9a\x7e\xa3\xf1\xb3\xae\xf5\x9c\x2c\x5d\x80\x92\xb4\xa7\x53\x9c\xdb\xd4\x4c\xe4\x7d\x1e\xad\xa0\xc9\x97\x19\xf1\x8e\x66\xed\xc5\x41\x5e\x00\xfe\xe3\xb6\x7d\x4b\x1a\xfd\x92\x99\xf1\xc3\x6a\x26\x4e\x2e\x1c\x42\x4d\xe2\xa4\x3f\x16\xd8\xaf\x45\x38\xd8\xb7\xa6\x6f\x67\x69\x4e\x04\x10\x66\xf2\x9d\x9f\x84\x6d\x09\xac\x31\x7a\x7c\xa6\x23\xc8\x82\x63\x84\x7e\x7d\x56\x6c\x34\xf1\x97\xe1\x83\x47\x4d\xa3\x3d\xd2\xc0\x9a\x13\xc8\xb5\xd0\x24\x6f\xf8\x79\x7d\x4a\xa8\x58\x3a\x48\x0a\xc7\x08\x9d\x9d\x65\x40\xd8\x8a\xfa\x88\x50\x7e\xb0\x1b\xe5\x95\xcd\x95\xcc\xca\x03\xe0\x8e\xc6\x7a\x67\xe5\x5b\xb0\x70\x2b\x61\x0a\x3a\x0c\x2d\x18\x29\xcb\xed\xb9\x2d\x03\xba\x97\xb0\x17\xb1\x5f\xe1\xa7\xb0\xa8\xb9\x7b\x40\x88\x0b\x14\x4e\xcf\x2c\x42\x0f\xc7\x57\xd8\xe8\x62\x4b\x02\xfb\xfe\x41\xa5\xba\x7c\xbb\x26\xea\x16\x64\x3d\xfb\xb4\xa0\x72\xcf\x82\xd6\x27\xc4\x85\x47\x12\x4d\xde\x69\x7b\x64\xd8\x99\x85\x5b\xa7\xcb\xbc\xc6\x83\x81\xe4\xf6\x89\x27\xef\x52\x2d\x69\x6b\xc4\xd1\xc9\xe9\x65\x62\x1e\x22\x8f\x01\x66\x6b\x59\x25\x99\xa9\xfd\x01\xad\xf3\x1d\x70\x38\x40\x49\x0a\xdb\xe0\x45\x53\x13\x2a\x98\x39\x97\xf8\x29\x79\x60\x58\x74\x03\xcc\x55\xdf\x1b\x3f\x4a\x3e\x40\x0e\x3f\xd0\x9e\x1f\x68\xff\x4b\xe9\x6c\xd2\xac\x2d\x39\x76\x76\x6a\x7b\xbc\x1f\xc2\x79\xc4\x3a\x4c\x02\x22\x65\x5c\xc8\x9d\x42\xfe\x64\xe0\x71\x77\x65\x7f\x62\x28\x2e\x10\x9e\xcc\x29\x07\x02\xf9\x37\xca\x89\xa4\x6c\xc9\x84\xe7\xf3\xbf\x70\xe2\x27\x6d\xd8\xf9\x7f\x74\x9c\x7d\x38\x93\x8d\xdb\xc7\xaf\x0d\x91\x56\x4d\xc9\xbb\x99\x77\x7e\x88\x98\xc9\x2d\xda\x2f\x79\x4b\x8b\x6e\xa5\x84\x58\x98\xd7\xc6\xb8\x23\xb1\xb6\xbb\xa4\x50\xb8\x25\x7e\xa6\x98\x94\x97\x88\x58\x31\xd1\x54\xac\x79\xd9\x22\x42\x72\xc9\xdd\x30\xc5\x36\x37\x0b\x21\xf6\x1c\xeb\x39\x8e\xdf\x7d\x3c\xf7\x71\x3c\xff\x7c\xfe\xb8\x8e\xe3\x3c\xbf\xe7\xf7\x3c\xcf\xeb\x3a\xce\xbf\x2e\x95\x1c\x43\x40\xe1\xd5\x5d\xea\x18\xeb\x7c\xff\x1a\x29\x3d\xe4\xe5\xe9\x1f\x72\xca\x70\x9a\x6a\x93\xff\xda\x19\xaa\x58\x3d\xf3\x79\xd1\x71\xb0\x93\xa3\x8a\x32\xdb\xa7\x05\x28\x56\xb9\x88\xa3\x89\x3a\x55\xb5\xec\x38\xd8\xc7\x3b\x30\x88\x09\xf2\xe5\x53\xe1\x7d\xfb\x1c\x5c\x55\x0d\x0b\x95\x13\x59\x37\x64\xce\x89\x03\x4c\x14\xfc\xe3\x41\x44\x9f\xe3\xcd\x32\xb5\xbc\x5e\x94\xa5\x35\x8c\x46\x01\x06\x9b\x6b\xf0\x07\xb1\xaf\xbd\xdf\x0f\xf1\xa9\xa7\x50\xaa\x99\xc5\x2f\xb7\x02\xc9\x36\x74\x86\x5b\x2d\x42\xa5\xf9\xeb\x6c\x5c\x7a\x68\xd7\x31\x69\x2b\x20\x6b\x33\x27\x88\xa5\xc3\xed\x9d\xde\xef\xc7\x77\xf0\x8c\xe2\x36\x3d\x41\xd1\x37\x20\x57\xbe\xe9\x46\xba\xf0\x24\xee\x36\xe7\x14\x6e\xff\x2c\xcf\x20\x88\x0f\x28\x2a\xf4\x7b\xd5\x67\xad\x3f\x28\x79\xd6\xab\x19\xa2\xcf\x1d\xa4\xf6\xda\xd2\xad\xb4\x00\xea\xd4\x18\xcf\x29\xa6\xd1\x6b\xd6\x5f\x3d\xfb\x79\xf2\xa9\x04\xe5\x0e\x40\x51\xc1\x2a\xee\x1e\xcf\xc8\x7b\xa2\xcb\x1b\xc5\x19\xa6\xe6\xd8\xb6\x8f\x70\xde\xc4\x01\x5d\x4f\x2e\x7e\x00\xd3\xcc\x50\x59\xd6\x5a\x17\xc2\x53\xce\x37\x74\x3a\x9a\x20\x5f\x22\x47\x03\x72\xb1\xa8\xf5\xe8\x47\x30\x37\xe7\x7c\xd4\x7a\x94\xd3\xc0\xdd\xc7\xab\x8a\xce\x50\x1a\x44\xe0\x9c\x2d\x64\x59\x54\x47\xb3\x42\x0c\x9c\x07\xe0\x76\x91\xd9\x71\x13\x1f\x43\xb6\x9a\x20\x31\x21\x1f\x8c\xbf\x35\xdd\x1f\x94\x87\xb9\x38\x0b\xcb\x92\x5d\x13\x9a\xf9\x73\x30\x79\xca\x2f\x81\xfe\x5a\x95\xc9\x41\x62\x3b\x9c\xc7\xb8\xeb\x73\x3b\xa5\xd5\x02\x52\xbc\xaa\x33\x06\x02\x69\xfc\xeb\x11\x23\x63\xd0\x6b\x9f\xf2\xf6\xe6\x26\xfe\x5e\xae\x0c\x75\x5a\x6d\x07\x70\xb5\xbf\xc2\xfe\x84\xb8\x8c\xaf\x4a\x55\x74\x1e\xf0\x5e\xfe\xfc\xce\x15\xfc\x0e\xc8\xc9\x56\x1d\x1c\xcb\x8d\x4a\xe6\xda\xc3\x5c\x8c\x7c\x07\x0f\x54\xb7\xb8\xd9\x64\x7e\x06\xfa\x77\x76\x74\x62\xff\xd5\x6c\xaf\xd0\xfe\x8e\xd3\x93\x8b\x02\xb7\x6d\xae\x5f\x90\x77\x86\x28\x2a\xf4\xef\x6f\x8d\x7e\x13\x11\x05\x73\x31\x8a\xa9\x5c\xf3\x67\x59\x7c\xfd\x2e\xc3\x0d\x80\x6d\xa5\x98\xd6\xd6\xdb\x1f\x07\x15\x8f\x36\xd5\xee\xad\x39\x13\x36\x49\x38\xb8\x1c\x64\xa5\x4c\xa3\x00\xb7\x92\x32\x18\x43\x3e\x25\x61\x26\xd6\x21\x73\xe2\xd2\x79\x4b\xab\x18\x9f\x0e\x43\xf5\x5d\xc8\x4b\x4d\xf7\xef\x38\xea\xa5\x14\xf3\xc3\x5f\x6b\xe7\x98\x8f\x66\x2f\xcc\x45\x7c\x0a\x36\x91\x96\x2e\xa6\x32\x36\x0e\xbd\x0d\x33\xb1\x6e\xbe\x6a\x49\x2e\x8c\xf4\x0d\xdd\x4f\xa9\xe2\xd0\xec\xbd\xc5\x15\x8c\x3d\x8f\x55\xce\xb9\x5b\x2f\x55\xf3\x6b\xa8\x36\xea\x8a\xde\x18\x0a\x7f\x14\x4b\x37\xeb\xe8\x57\x1e\x8b\x40\x8c\x1c\xa8\x18\xcd\xfb\x0c\x5c\xc1\x27\xd9\xc5\x5c\x66\xcf\xf0\x12\x3f\x96\xe4\xe8\x76\xdf\x15\x96\x36\xe6\x49\x98\xdb\xbc\x31\x14\x23\x07\x2f\x30\xe1\x89\xa5\xb5\x32\x16\x77\x10\x5e\xaf\x62\x17\xb9\x01\xe7\x6a\xc0\xb6\xc2\xd3\x46\x6d\x27\x46\x02\xcc\x09\x93\xbf\x16\x4f\xbc\xd2\x38\xcc\xc5\xdd\x5e\x2b\xec\x6f\xe3\x78\x53\xa0\xd0\x29\xb6\x36\x95\xb5\x61\x17\x89\xba\x6e\x31\x96\xd2\xc6\x77\x22\x9a\xd1\x6f\xe2\xdc\x29\x87\x1a\xb1\x1e\x7d\x70\xbb\xf6\x3f\x2d\xa9\x42\xb5\xbc\x8a\xe4\xb3\xf4\x27\x7c\x2b\xdc\x36\x98\x37\x86\x02\x36\xc6\x0e\x68\xda\xc0\xb0\xe1\xc5\x6e\x67\x0d\x08\x85\x4b\xb7\x59\xa4\x78\x79\xe4\x04\x7a\xe4\x80\x1e\x21\x28\xe3\x05\x4a\x08\xf3\xf0\x19\x95\x8f\x46\xf7\x89\x6c\xd3\xa1\xca\x70\xa4\x84\xa0\xb2\xb2\xf5\x93\x19\xcc\x65\x90\x5b\x61\x8f\x11\xdf\xe5\x5f\x6a\xe0\x36\x02\x53\x19\x58\xbd\x83\xae\xe2\x02\xfe\x19\x6e\x0f\xcc\x63\xef\x87\x2d\xd9\xcb\x11\xfb\xd6\x53\x90\x11\x16\x30\x08\x54\x1c\xc4\x75\xe7\xbe\xe3\x25\x4e\x4d\x6b\xc5\x32\xb1\xa9\x9f\x54\x9a\xf3\xe7\x6f\xf1\x0a\xe6\x05\xa1\x11\x94\xa3\x16\xe5\x7e\x3e\xa0\xf5\xf3\x72\xf5\xec\x80\xe4\x43\xf4\xc7\x78\x73\xe7\xdf\xd5\xe2\xe4\x65\x75\x1b\x67\xc2\xc8\xd5\x45\x85\xb1\xfc\x96\x73\xf3\xd7\x85\xea\x71\xb7\x19\xda\x22\x49\x95\xdf\x1d\x1c\x44\xa3\xc7\x28\x67\x2c\x6d\x51\x12\x51\x32\x7c\xd7\x79\xb5\x4b\x7b\x8c\x43\x74\xb9\x7c\xf6\x77\x28\x34\xed\xb3\x0c\xb7\x91\xe7\x1b\xff\x6f\xe6\x87\x81\x92\x94\x28\xc4\xfb\x03\xff\x22\x24\x58\x24\xfa\xcb\xcf\xb2\x11\x29\x4f\x33\xa6\x4a\xd7\xdb\xeb\x5f\xe6\x4e\xbd\x5d\xa7\x3e\xb3\x95\xdf\x27\x9d\x35\xae\xa1\x55\x77\x2c\x9a\x59\xf3\xf5\xdc\xfe\xf8\x6e\xf4\xc8\x2f\x81\x20\x61\xae\x59\x21\x25\x0b\xb8\xfa\x2c\x9f\xd1\xda\x6e\x19\xb9\x69\x28\x7a\xcb\x86\xc1\x3c\xf7\x8e\xb6\x69\xae\xf7\x4f\x9f\x4d\x87\xee\xe3\xad\x5e\xec\xe4\xc5\x73\x15\x88\x09\xf0\xa6\xe0\xfd\xf1\xd1\x32\x3a\x63\x4b\x2b\x8a\x92\x8e\x55\x5f\xa2\xc3\x13\x99\xff\x80\x47\xa9\x17\x3a\xb1\xc8\xe6\xe9\xfa\x53\xa1\xee\xf1\xf3\xce\x5c\x25\x5e\x81\xc3\x16\x13\x24\x46\x56\x70\x7f\xd8\x29\xb0\xd9\xd0\xd8\x72\x77\x01\x95\x43\xf7\x43\x39\xac\xab\x8d\x09\xfe\xd2\xa1\x7a\xb2\x1c\xd9\x3b\x3a\x39\xcc\x9c\x0d\x6f\xb1\x05\x56\xb3\xe3\xb8\xda\x4c\x54\x62\x88\x1a\x80\x78\x75\xe8\x6e\xdd\xee\xe6\xc1\xf9\x3b\x30\x17\x9c\x79\xfd\xea\x1d\xbe\x29\x31\xc1\x35\xa6\xba\x67\x5a\x4d\xe5\xf0\x6b\xd1\x6f\x1f\xca\x1f\xa0\x4b\xb9\x4e\xee\x2d\x67\xc0\xc3\xf1\x3d\x6e\x44\x01\x66\x15\x60\x76\x6a\xc3\x3b\xa3\xae\xe0\xa3\xb9\x4c\xea\x84\x8d\xd6\xb5\xc5\x93\xa5\x93\x28\xcb\xe8\xbd\xfd\x01\x86\x04\x7d\x5b\xa4\x32\xfa\x60\xb0\x0d\x31\x29\xc6\x82\x33\x6d\x62\xb4\xce\x0c\xed\x45\xd0\xab\x91\x18\x08\xc4\xc8\xfe\x24\xd8\xf8\xc4\x78\x55\x67\xd9\xa4\xc0\x85\xe5\xe8\x75\xbe\x81\xe4\x2a\x10\x0d\x6f\xf0\x12\x7f\xbb\x8c\xb1\xf9\x43\xf7\xd0\xbf\xcd\x2b\xfc\x02\xe9\x14\x4b\x2d\x4d\x2b\x83\x6b\xcb\xd9\xfc\x60\xa2\x4e\x2e\x40\xa3\x00\x3e\xea\x73\xe4\x3f\xeb\xf5\x08\xb7\xdb\xec\xd5\xf3\x0e\x35\x92\x5c\x13\x57\xf6\x2d\x57\x65\x62\x83\x9b\xe5\x14\x62\xec\x96\x57\xd4\xf4\xa6\x04\x33\xf3\x1a\xbc\x82\xde\x8d\x6c\xbc\x61\xba\x81\xda\xf2\xc5\xf9\xc4\xd7\xf2\x48\x40\x4e\xf6\x8b\x7c\xeb\x49\x42\x6b\x55\x90\x41\x6d\xfe\x1e\x68\x71\x17\xf3\x4e\x4e\xc3\xad\x0f\x31\x45\x41\xfe\x9b\x8b\x89\x38\x3f\x7c\x68\x9f\x28\xbe\xd6\x8c\xb0\x6b\xd5\x88\xaa\xae\x9e\x47\x4b\xd5\x23\xd4\xbd\x5d\x82\xc9\x61\x20\x90\x2d\xbc\x04\x32\xf1\x49\x35\x3f\x96\x3a\xaa\x96\x17\x5c\xfb\x85\xde\x8e\xbf\xcb\x30\xbc\x3c\xdf\x0f\x22\x45\x44\x0b\xda\x27\x41\x1d\x78\x86\xe7\x5b\xd3\xe8\x76\x40\xf5\x9c\xfb\x95\x30\x33\x33\x42\xaf\x15\xa0\x0c\x0f\x36\x11\xec\x36\x2f\x96\xbd\xd4\x88\xd7\x49\xd7\xdf\x8f\x2e\x4b\xd2\x2f\x2d\x47\xe9\x44\x8a\xde\x1f\xa8\x4d\x76\x11\xb7\x31\x1c\xce\x69\xc3\xf6\xac\x45\x6e\x0d\x8a\x13\xae\xbf\x69\xa4\xde\xb2\x0d\xc2\x9d\xbe\x12\x2e\xe6\xc6\x88\xd9\x64\x2b\x65\x8c\xe4\x4e\x9e\x01\x4e\x99\xf2\xf5\x43\x38\x9d\x7e\xfe\xd7\x2a\x0b\x72\x4b\xf6\xd8\x69\x52\xa6\xa5\xde\x7a\xef\x83\x09\xd1\xc6\x5c\xb5\xc1\xc6\xea\x8a\xe3\x66\xa0\xf5\x74\x7b\xe9\xa7\x91\xc8\x81\xc9\xf6\x83\xab\xf3\xad\x96\x8b\x9f\xc8\xe4\xc5\x11\xdb\x25\x9d\x5f\xbe\x4e\x18\x7a\x4c\xd4\x27\x5d\xaa\xb7\x2d\xda\x8c\x36\xc7\xce\x5d\xf0\x0a\x09\xf0\x1c\x24\xbd\xe8\x3e\x21\x79\xb4\xd2\x50\xfc\xa6\xb4\xf8\x28\xda\x68\xf2\x9b\x5d\x6d\x1a\x58\xd6\x9e\x94\x63\x69\x10\x8b\x5d\x3a\x93\xf7\xe9\x6c\x90\xf5\x06\xd1\xa3\x62\xe9\xe3\x25\x72\xe0\xc3\xea\xcd\xdb\xdd\x28\xf6\xfd\xf7\x93\xa7\x2b\x56\xa8\x97\x36\xe8\xb7\x99\x6f\x4c\x8b\xf8\x2d\xfb\xc6\x47\xac\xc7\x43\x44\x7d\xd1\x5f\x27\x2f\x7c\xdb\xff\xe9\xb2\x76\xf4\x40\x69\xc3\xfc\xc2\x5c\xe8\xa3\x83\x74\x2c\xf9\x7c\x02\x9a\x59\xe1\x77\x92\x1c\x4b\xda\x58\xe2\x0d\x3a\xbc\x8d\x64\xd6\x85\x9a\x4c\x3a\x6e\x88\xeb\xf2\xbf\x89\x49\xf3\xd3\xd1\x8f\xdf\x8f\xb4\x14\x7c\x9b\x74\x9c\x5f\x21\x2e\x2f\xa6\x78\x0c\xb4\x8b\xa3\xac\xd8\xbf\xb0\x16\x8e\x49\xc0\x59\x61\x8a\xf3\x5a\x7b\xc3\xaa\xf6\x41\x90\xd7\xad\x29\x79\xed\xe5\x11\xfc\x27\x43\x06\xfa\x4d\xb8\x9d\xd8\x77\x3e\x56\x9f\x60\xbc\x84\x83\x79\x28\xe3\xe3\x1e\xda\x60\x9b\x55\x6d\x93\xb2\x52\x42\xe7\x0e\x3a\xe9\xd8\x9c\x78\xe5\x7f\x84\x4e\xc5\xcb\x11\x3d\x31\xf5\xd5\x45\x77\x70\x19\x05\xe3\xa6\xe3\x03\x24\x24\x84\x02\x85\xa2\x86\x27\x36\x58\x33\x86\xcc\x5c\xa4\x53\xd6\xaa\x60\x8a\x1c\x38\x78\xc0\x48\x24\xba\x21\x1c\x26\x68\x1a\x3a\xed\xad\x65\x9c\x3c\xb1\xe7\xd6\x78\xf7\x69\x16\x1b\xdd\xfa\x94\xfd\x48\x25\x34\x82\xf6\x26\x7a\xb9\xff\xc7\x9d\x32\xc0\x04\x89\x29\x10\xec\xae\x5f\xea\xc4\xfe\xcb\xf1\x57\xd0\xb8\xec\xc6\xa9\x16\x36\x2b\xaa\xf9\x11\xc3\xde\xc0\xd7\xbd\x64\x69\x86\x23\xcf\xcc\x6f\x43\x12\xc4\x9d\x1a\xce\x23\x28\x21\x75\xda\x76\x5b\x96\x7f\xe8\xb9\x44\xa2\xd8\x4e\x20\x7a\x63\xbd\x39\xf2\x32\xff\xd8\x3b\x2d\x23\xce\x36\x19\x13\x24\x66\xf7\xf8\x17\xfa\x55\x06\xbb\x91\x42\x58\x36\x5d\x1b\x70\x7a\xd1\xb0\xbd\x27\x86\xf7\xc8\xf1\xed\x52\x1e\xdf\xbe\x74\x24\xcd\xc1\x78\xc9\x3a\x80\x7e\x83\x71\xb2\x52\x30\x8f\x36\x4d\x35\x95\xf4\x25\x5e\xbf\x1a\xc8\x7a\x17\xd4\x84\xec\xde\x4b\x4d\x52\x57\x94\x7e\x6b\xaf\x59\x0c\xa5\x5c\xe3\xc3\xb8\x75\x30\xf9\x35\x1c\xa2\xf4\xb8\xcf\x0f\xe6\xb8\x7d\xb2\x0f\xa8\xbd\xcb\xcc\xa8\x7e\xbd\x6d\x56\xb2\xd9\x64\x69\x02\x3a\x2a\x15\x79\xd8\x94\x32\xc2\x08\xc2\x79\x7d\x52\xcb\x13\xb7\x87\x31\xef\x14\x5a\xcb\xf7\x6d\xeb\x48\xd3\x7d\x32\xf4\x97\xe0\x78\xaf\xc3\xff\x66\xfb\x63\x3c\x6f\x02\x9b\x70\x85\x81\x15\x15\x04\xbb\x5b\x29\x24\xce\x84\xea\x96\x7e\xe2\xab\xf9\x2d\x5c\x0c\x02\xf5\x03\x7d\x5d\x05\xc7\x7a\x5a\x9d\x96\xa3\x53\x38\x73\xce\x44\x4f\xc5\xb1\x89\xf3\x3e\x4f\xef\x0b\x3a\x03\x96\x1f\xbe\x3e\x72\xd5\x11\x1a\xe6\x39\x9a\xdd\xcf\x29\x2b\x1a\x2b\xcc\x6c\xd9\x98\xef\x9b\xcc\x72\x75\xa8\x84\x69\x4c\xed\xa4\xbe\x50\xdb\x42\x81\x42\x95\x5f\x91\x59\x8e\x89\xe2\xdd\x5c\x26\x0f\xb1\x0a\xcc\x26\xff\xe1\xd4\xdc\x77\x84\xf4\x23\xd6\x81\x04\x69\x48\xfd\xa8\x5f\xba\xe4\x7e\x5d\x32\xe1\xf7\xbc\xc2\x9d\xcb\x16\xf5\x18\x38\xea\x6d\xce\x8f\x9b\xe5\x15\xa4\xf6\x38\x0e\x0c\xe8\xfb\x3e\x3a\x43\xfa\xd8\x29\xfc\x71\xde\x25\xc4\x37\x08\x2d\x28\x0d\x5f\x7e\x18\x82\xc6\x85\xc7\xa1\xfa\x64\x89\xdb\x6e\x6a\xcd\xb4\x17\xca\xd0\x28\xc0\x35\x9c\xea\xf9\xf0\xef\x31\x95\xf6\x9e\xa7\xeb\x76\x8f\xd2\xb7\x6d\xda\x93\x80\xa3\x13\x24\x6a\x6c\x56\x6b\x8d\x02\x52\x26\x2c\x1d\x88\x50\x5b\x47\x71\x11\x7b\x5a\xfe\x23\xbd\xb6\x1b\x5a\x4e\x16\x47\x0d\xdf\x4f\x05\x94\xe1\x48\x83\xd2\xe8\xa6\x91\x54\x17\x10\xa1\x07\x50\xf8\x0e\xee\x60\x6a\x8d\xa6\x9a\xb4\x25\x69\x3d\x25\xa6\x4d\xda\xcf\xda\xcd\x08\xe1\x17\x00\x4c\x53\x0c\xf3\xb6\x45\x31\x21\xa9\xc2\x2b\x74\x3f\xa0\xa8\x00\xcf\xea\xdd\xd8\xd9\x3e\xc4\x12\xd2\xb6\x03\x11\x6d\x41\xd1\xe9\x91\x4c\xcb\x54\x05\x59\x6f\x0c\xc5\xdd\xb1\xca\xcf\x0f\x74\x4d\xdf\xad\xb6\x03\x88\xb8\x31\x87\xca\x8a\xda\xbc\x2e\x5d\x1e\xe0\x6e\x56\xa7\x85\xe3\x9a\xa7\xe9\xdb\x92\xed\x40\x6e\x12\x7a\x86\xe0\xc7\x55\xe1\xa1\xf7\xc8\x62\x20\x90\xfe\xab\xc2\x67\x71\xb5\x8c\x0d\xf8\x31\xa5\xe6\x9d\x32\x40\xf0\x9f\x25\xca\x49\xe1\xa3\x7c\xd0\xb1\x23\x0e\x50\x86\x03\x83\xe1\x49\x98\x1d\xf0\xe6\xeb\x1d\x25\xbc\x44\xfa\x16\xe0\x9b\x50\x83\x28\x9e\xf3\x85\x27\x85\xab\x03\x72\xb2\x2f\x81\x7b\x8f\xd5\xcb\xec\xef\x4a\x8f\xe1\x4b\xee\xf4\x3a\xfc\x53\xab\x16\x2d\x1a\x05\xa8\xca\x9a\x44\xd1\x23\x2e\x9b\x1d\xa0\xca\x01\xe3\x88\xe1\xda\x6a\x3f\x6c\x82\x6a\x07\xc4\x1b\x03\xbc\x1f\x09\xa7\x3a\x77\x72\x95\xec\x3d\xc4\x72\xce\x50\xe4\xa1\x0c\x86\x03\x22\x04\x55\x13\x25\x0a\x77\x07\x14\x15\x28\x6f\x34\xea\x57\x5b\xf0\x46\xc4\x1c\xcd\x03\xdc\x5c\xe0\x46\x67\x35\xd5\xbe\x73\x7c\x81\x91\xf6\x59\x6a\xa2\x31\x7c\xf7\xde\x42\xb1\xcb\x14\x36\x5d\x06\x43\x7b\x3b\x64\xfe\x60\xd4\x4b\xbc\xef\x67\xd6\xa9\xf2\x1b\xe6\xb4\xd1\x00\xb1\x49\x07\x04\x09\x37\x8e\xc2\x0f\x0a\x2a\x92\xef\xfd\x8c\x59\x9c\x29\xa5\x9e\x44\x69\xde\x18\xa3\xd4\xdc\xd6\x85\x78\x5b\xd5\x47\x6d\x9e\xb2\xa9\xe7\x23\xb9\xc6\xb0\xad\x18\x08\x24\x97\xdc\x9c\x31\x46\xe9\x35\xaa\x9d\xaf\x49\xce\xd2\x85\xe4\x26\x24\x65\x8e\xb5\x87\x28\x71\x7f\xa7\x26\xa9\xed\xa2\x40\xa1\xb4\x8b\x46\x11\xc7\x06\x39\xf5\xa3\x9e\xa0\x71\x16\x90\x6b\x4c\x1e\x32\xaf\xf1\xf3\x02\x77\xf0\xa5\xb9\xa1\x0b\xf2\xc4\x52\x73\x42\x55\xcb\xf5\xcf\x40\xff\xe1\x93\x5c\x75\xea\xa8\xad\x43\x64\x09\xee\xa7\x93\xb8\xf1\x47\xab\xcf\x19\x81\x57\x2d\x07\xdb\xd8\xb9\x40\x57\x97\x3e\x75\x83\x65\xa1\xbf\xe9\x83\x73\x31\x43\x46\x59\xc0\x20\xf0\x7b\xad\x53\xbd\xf7\xae\xba\x65\x8c\x85\x91\x6c\xd3\xe5\x30\xf7\xfc\xba\xf7\x7b\x26\x3c\x7f\x92\xb7\x87\x82\x60\xc8\x40\x3b\x85\x68\xee\x2c\xf5\xe1\x86\x0b\xb4\xb5\x56\x46\xed\x51\xb8\xed\x58\x66\x0a\x67\xd6\xbb\x47\x5e\x9a\x3b\x32\xd0\x4a\x50\x5e\xe4\x93\xf0\x84\xbf\x27\x5d\xf6\x25\xf0\x01\xcc\xce\xb2\x8d\xce\x58\xc7\x4c\x5a\xa7\xcb\x02\x72\xb2\x18\xf2\xcd\x91\x1f\xc7\xe8\x55\x8c\x55\x3d\xd5\x28\xa7\x73\xa7\x81\x6f\xe7\xee\xf3\xb7\x72\xdf\xf1\xd0\xdb\xc1\xb3\x09\x3a\x1d\x50\x9a\x25\x07\x02\xb1\xb2\x58\xe9\x2a\xac\xc1\x3f\xae\x1e\xf5\xa1\xdf\xab\xb8\x57\x06\xb9\xbf\xdc\xc8\xb7\xe3\x15\xbc\xd3\x66\xc7\x01\x6a\x26\x22\x0a\xf0\x65\xe7\xfa\x89\x84\x53\x5c\x05\xa2\xe6\xb5\x86\xdf\x8c\xe0\xaa\xc5\x3a\x89\x75\x0c\x87\x72\x7d\xdb\x70\x1f\x27\xc0\x1b\x03\x84\x96\x39\x8b\xdb\x79\xe8\x9d\xeb\x99\xfc\x15\x1e\x62\x0c\x0a\xaf\x60\xdb\xb6\x46\xe3\x87\x05\x46\x02\x43\x59\x69\xf3\x32\x36\xcd\x08\x81\x12\x3f\xdb\x10\x94\x04\x6e\x54\x2f\xe3\x32\x52\x9d\x7c\x22\xe1\x01\xc3\x41\x3b\x68\xe8\x6e\xb9\x87\x9a\x06\xb0\xf4\x5a\x0b\x0e\x38\x87\xed\x3e\x6e\xb9\xa0\x44\x7e\xd5\x48\xe7\xa7\x50\xe5\xd4\x10\x34\xf8\xa6\x29\xe1\x18\x7b\xe8\x75\x3c\x08\x68\xdc\x74\x40\x02\xb3\xc2\x7d\x5c\x08\x55\x8e\x25\xdc\x17\xff\xfb\x5f\xb5\xfb\x73\xdd\x76\x46\x5c\x16\x1d\x34\xf9\x10\x90\xa0\x34\x2d\x23\x35\xfc\xce\xd1\x44\x44\xe8\x32\xa7\xc6\x66\xa4\xe4\x97\x5f\xc5\x41\xa8\xf8\x5a\x7e\x1c\x37\x95\x6a\x8b\x32\x8e\xfc\x14\x7a\x1a\x08\xcd\x70\x7b\x02\x84\xbe\x42\x9b\xb6\x76\x87\xc7\x72\xf1\xd4\xc7\x2c\xc7\xba\xa5\x3d\x4c\x55\xc8\x76\xf1\xef\x7c\x53\x62\xce\xe9\x51\x3e\xc5\xd2\xda\x40\x3a\xd4\x73\x21\x35\xf8\x40\x51\x48\x4c\xe4\x84\x05\xca\x3f\x0a\xad\xd2\xfc\x71\x07\xe5\x55\xca\x31\xd0\xe8\x3e\xba\x74\xf2\x78\xba\x54\x0e\x30\x0a\x2f\xed\x2f\x99\xf7\x59\x70\x99\x1a\xe3\x21\x46\xa9\x85\x9f\x21\x6b\xa1\x66\x27\xc6\x75\x45\x7b\xd9\xcf\xa8\x95\xea\xbb\xa4\xef\xcd\x17\x9d\x94\x13\x73\x47\x74\xe8\x99\x78\x7f\xe2\xee\xd0\xc2\xf0\x8b\x14\x0f\xa7\xf7\x3f\xfc\xc1\x90\x5b\xbe\xbf\x7c\xc2\xbb\x4b\xfb\x17\xfc\x05\xb1\x60\x7f\x02\x7c\x30\x8a\x65\x8d\xeb\xfa\x1d\xa2\xdf\xf8\x8b\xa1\xc2\x0b\x4e\xda\x7f\x76\xb8\x4d\x97\x70\xc7\x3e\x25\x75\xc1\x37\x5d\x4e\xaa\xa7\x31\x67\x41\xac\x89\xb8\x37\x49\x96\xee\x14\xfe\x29\xde\x99\x7b\x04\xa6\x04\x5d\xac\x63\xb0\x1f\x99\x27\x5e\x9f\x34\xfc\x39\x75\x80\xda\x9b\x18\xc3\xe4\xb2\x39\xd5\x7e\x6e\x60\x60\xde\x2d\x54\x96\xcd\x61\x93\x5c\x2f\xd4\xca\xda\x87\x80\xec\xeb\x6a\x3f\x8b\xea\x6a\x5e\x09\x5b\x5c\xd5\x6f\x6a\xf9\xf8\x91\xe7\x3b\x7c\x26\x88\x6e\xe0\x9c\xa6\xd5\x60\xaf\xb5\x92\x35\x66\x36\x83\xe7\x8e\xf3\x10\xcf\xa0\x80\xa2\x02\xa0\x9c\xef\x68\x49\x2e\xca\x69\xd8\xf3\x2c\x26\x7c\x39\x36\x33\x25\x20\x7a\x07\xf7\x10\x0f\xed\x21\xab\xd1\x8d\x5e\x4b\xc1\x8a\x9f\xf3\x71\x5c\x0b\x66\x2a\x20\x95\x85\xe2\x6b\x64\x03\x85\x83\xe2\x14\x9a\x70\xcb\xf9\xa4\x23\xcc\x59\xba\xb9\xf3\x35\xdd\x2f\xfd\x07\x68\x2d\x6e\x20\x42\xab\xe9\xc6\xeb\x6d\xb0\x6d\x52\xbb\x2f\x7f\xcb\x48\xf9\x36\x2d\x42\xb4\x87\xd7\x9c\x1f\xbd\x97\xb7\x87\x65\xb1\xd1\x4a\xc5\x1b\x38\x5f\x3b\x9b\x5a\x97\xec\x0a\xa6\x6e\x6f\x2d\x5f\x48\x63\x04\xb2\x8d\xad\x50\x00\x06\x02\xa1\x6c\x36\x0e\x35\xd5\x2d\x7e\x6d\xa2\xe1\xe5\x88\x49\x6e\xbe\x0b\x92\x98\x84\x23\xe9\x36\x01\xef\x2e\x8e\x17\xde\x6a\xe0\x89\xa2\x0e\xcc\x4a\x8a\x1a\x21\x52\x5b\x11\x5d\xac\xca\xe9\x35\x44\xbb\xdd\x6d\xbc\x69\x90\xab\x79\x93\x5d\xb7\x02\x31\xc1\x93\xbf\xf8\x6f\xe2\xcd\xc1\xb6\xf2\xd5\xd3\xa0\xec\xc2\xa9\xd4\xcf\xdf\xeb\xf9\x44\x6e\x0d\x4c\x49\x5a\x0b\xad\x48\xb0\x50\x2c\xba\xb5\xab\xf2\x84\x4a\xd2\x48\x27\x62\xfc\xcc\x47\x36\xfa\x58\xc0\x69\x70\xf1\x65\x82\x55\x2a\x16\x97\x03\x8e\xf2\x64\xfb\xa2\xcf\x2a\x37\x37\xa7\x6f\x90\x6a\x25\x2f\x2c\xd5\xf4\xa4\x37\x1f\x46\x69\xa8\x93\x74\x8e\xd0\x42\xca\x24\xdb\x71\x0a\xff\x58\x25\x79\xf8\x71\xd8\xfc\x12\x8e\x3e\x21\xac\x4e\x09\xf6\x99\x76\x54\x39\x49\x75\xf2\x64\x10\xca\xbc\x69\x2d\x1f\x0b\x25\xb3\x24\x6b\xa4\xf4\xad\xd2\xad\x82\x8f\xb9\x2c\x26\x38\xbd\x50\xe7\xf7\x76\x83\x4e\xcb\x7d\xdb\xbe\xc7\x0f\x6c\x44\x14\x6e\x6c\x0a\x9c\x1e\x2b\xdd\x1c\xad\xe4\x21\xb2\xd6\xba\x54\x15\xfc\x87\x87\x13\x15\xc9\x5e\xe0\x2c\xbe\x7e\x95\xb7\x90\x2d\x99\x80\x48\x63\x29\x10\xe5\xfc\x42\x52\x45\xa5\x9e\xe8\x78\x9d\x7d\xaa\x52\x11\xb7\x72\x7d\xc4\x66\xfd\x37\x49\x42\x96\xa5\xd9\x63\xe6\xd4\xd3\xef\x12\xd7\x95\xf9\x53\xa9\x3d\x4e\xe3\x12\xf0\x31\xd8\x1b\xed\x9e\x1a\xe5\xb4\xdc\x37\x74\x76\xe0\xeb\xe0\xb4\xcd\x3b\xc9\x47\xa3\x38\x32\xdf\xf3\xaa\x50\x96\x90\xf3\x8c\x24\xf0\x7c\xe3\xb6\xb9\xe2\xb4\x1c\x16\xa2\x55\xb9\x05\x48\x2b\xcb\x37\x88\x69\x53\x04\x00\x00\xa9\x19\x96\xfe\xf3\xb7\xfb\x72\xb2\x7f\xd3\x04\xf9\x37\x31\x10\xc8\x3f\x28\xdd\x93\xff\xd2\x1b\xf3\x4f\x52\xa0\xd0\xff\x52\x3a\xa3\x7f\x90\x46\xf9\x9b\xff\x47\xf4\xff\x93\xce\xf5\x94\x58\xbe\x04\x56\x07\xfc\xca\x9f\xda\x40\x4a\xa5\xcf\x3d\x5c\x8e\x1d\xae\x3b\x14\x7c\xe5\x7f\x02\x00\x00\xff\xff\xf4\xb0\x35\x31\xf3\x95\x00\x00") func web_uiStaticConsulLogoPngBytes() ([]byte, error) { return bindataRead( @@ -191,12 +191,12 @@ func web_uiStaticConsulLogoPng() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web_ui/static/consul-logo.png", size: 38387, mode: os.FileMode(420), modTime: time.Unix(1471050089, 0)} + info := bindataFileInfo{name: "web_ui/static/consul-logo.png", size: 38387, mode: os.FileMode(420), modTime: time.Unix(1485366992, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticFaviconPng = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x57\x77\x54\x53\xe9\x9b\xa6\x88\x74\x08\x45\xa5\x28\x86\xd0\x55\xd2\x48\x80\x84\x84\x12\x02\x1a\x9a\x10\x3a\x82\x12\x48\x84\x10\x52\x48\x42\x11\xa4\xa8\x30\xe0\x50\x46\x1d\x94\x2a\x2a\x10\x01\x67\x14\x18\xa4\x23\x44\x04\x45\x04\xb1\x80\x52\x05\xa9\x22\x82\x02\x52\x14\x91\x0d\xf3\x1b\x67\xf7\xec\x99\x33\x7b\xce\x7e\x27\xb9\x5f\xb9\xcf\xf3\xbc\xef\xf7\x96\x3f\xee\x79\x67\xa7\xc3\xb2\x52\x6a\x52\x42\x42\x42\xb2\x84\x23\x78\xa2\x60\x86\x6f\xff\x25\x76\x0a\x9e\x1a\x16\x29\x95\x82\x49\x95\x6b\xe3\xc5\x75\x65\x9e\xe4\x46\x92\xd8\x14\x21\x2b\x32\x33\x80\x02\x24\xd0\x49\x41\x14\x22\x85\x44\x3e\x15\xf6\x98\x82\x11\x12\x12\x0d\xa6\xba\x79\x71\xbd\x1c\x1d\xd0\x81\x4c\x3a\x98\xb4\x8d\x01\x47\xd1\x59\x42\xdb\x03\x63\x11\xc5\x22\x05\xd2\x28\x5c\x60\x00\x25\x88\xca\xc0\x82\x3e\x36\xb6\x80\x80\x54\x32\x16\xe4\x89\x74\x84\x3a\xb2\xac\x29\xc1\xd4\x23\xd1\x6c\x8a\x6b\xb4\x93\x5b\x60\x34\x2d\x10\x45\x06\x59\x98\x03\x31\x51\x68\x81\x00\x9d\xc2\x25\x01\xa3\xe8\xa1\x0c\x0e\x3a\x0a\x0b\xfa\x53\x17\x2d\x58\x6f\x1f\x43\x40\xc0\x3f\x21\x5c\x1a\x16\xf4\x1f\xa7\xbc\x1c\x9d\x81\xd6\x4c\x36\x05\x88\x04\x1b\x19\x06\x42\x61\x30\xa0\xb1\x31\x18\x86\x40\x1a\x1b\xc3\x0e\x01\xe1\x50\x18\x1c\x02\x15\xfc\x8c\x0d\x61\x08\x34\xd2\x18\x0d\x37\x01\xfe\x35\x40\x02\x6b\x6c\xf2\x49\x34\x11\x6f\xfb\x97\x2d\xc1\x0e\x0b\x0a\xe6\x72\x59\x68\x08\x24\x32\x32\x12\x1c\x69\x04\x66\xb2\x83\x20\x30\x14\x0a\xb5\xad\x01\x87\x1b\x0a\x10\x86\x9c\x53\x0c\x2e\x29\xca\x90\xc1\xd1\xfa\xa1\x80\xa7\x70\x02\xd9\x54\x16\x97\xca\x64\x00\xb7\xf7\xa4\x00\x66\x38\x17\x0b\x02\xfd\xb8\x02\x9d\xe5\xe8\xf8\xb7\x30\x83\xf3\x57\xa0\x04\x21\x83\x44\x91\x58\x10\x18\x18\x0a\xa1\xd3\x21\x3f\xd0\x1c\x2e\x91\x72\xf2\xdf\xd1\x1c\xb7\x53\x2c\x0a\x84\x48\xe1\x30\xc3\xd9\x81\x82\x7c\x9c\xd4\xfa\x1f\xa6\xfe\x9d\xba\x0d\x14\x78\x83\x3e\xca\xa6\x0a\x92\x42\x0a\xc5\x33\x03\xc3\xe9\x14\x06\x97\x80\xc7\x82\x04\x6f\xc0\x64\x2a\x19\x8d\xb0\x86\xe1\x8d\xad\x8d\xf0\x56\xc6\x70\x98\xb1\x29\x0c\x66\x0a\x35\x35\xc2\x23\xf0\x46\x26\x38\x2b\x53\x6b\x1c\xca\xea\x87\xc6\x3f\x71\xa1\x08\x5b\x38\xca\xd4\xd6\x0a\x67\x63\x6c\x0d\x83\xd9\x18\x59\x99\xc0\x6c\x51\x38\x23\x6b\x04\x12\x86\x34\x81\x23\xa1\x3f\xb8\x04\x06\x87\x4b\x62\x04\x52\x7e\x70\xa9\xff\xcd\x45\xfd\x2b\x17\x6d\xcd\xa6\x90\xb8\x4c\xb6\x1b\x93\x19\xfa\xa3\x02\x9c\x83\x99\x5c\x26\x27\x98\xc9\x02\x5a\xbb\x1a\x03\xf5\x1d\x49\x81\x54\xc6\xf6\x81\xc1\x76\x82\xfe\xf2\x95\xc2\xa6\x46\x50\xc8\xb6\x6c\x26\x1d\xf8\x67\x84\xd1\xd4\x7f\xf0\xe0\xff\xbe\xf9\x7f\xb8\xe4\xff\x4f\xd4\x20\x02\x67\x20\xff\xab\x5c\x7e\x1c\x09\x6a\x70\x7b\xf9\x77\xf1\x0b\x36\x7f\xb7\x0f\x85\x21\xe8\x19\xb6\xa0\x39\x32\xdf\x5d\x32\x17\x12\x92\x8a\x24\xe0\xad\xdc\xa2\x06\x87\x7d\x62\x58\xee\xed\xaa\x5b\xab\xf9\x9c\xfd\x84\x23\x38\x5c\x87\xa8\xc4\x2f\xfe\xd9\x67\x29\x3e\xc2\x37\x30\x76\xa7\x78\x1e\x89\x07\x52\x88\xf9\x95\x32\x62\xbf\xed\x7a\xe2\x36\x68\xd1\xd9\xff\xb3\x9b\x8b\xed\xef\x11\x37\x79\x7d\x97\x70\x17\x85\x15\xa4\xab\x0b\xdb\x0f\x78\x38\xe7\x17\x82\x52\xa4\x6a\x34\x81\xbd\x42\x9a\x9a\x6d\x89\x93\xd3\x6f\x62\x34\x86\x46\x0b\xaa\xf4\x50\xa7\x86\x63\x7e\x55\x97\x74\xe8\x99\xcc\x1a\xc1\xce\x0c\x8f\x6c\x16\x6c\xcc\xd7\x26\x87\x3d\x9d\xdd\x7a\xfb\xa2\x61\x79\xa2\x4a\x8f\xd6\x91\xa2\x56\x0c\x7d\x3e\xde\xc6\x57\x6e\xb4\xc3\x28\xad\x84\x36\x6a\x4b\x41\xc7\xf7\xce\x03\x06\xab\xf5\x69\x2a\x45\xac\xa7\x29\xf7\x3d\xe5\x35\xd5\x3d\x9a\x71\xc8\x5d\x7b\x3a\xca\x89\xcd\x9d\xdd\x04\x29\x93\x92\xc2\xbd\x3c\x76\x60\x45\x48\x8e\xb7\xbe\xa8\x10\xf5\x0a\x41\xcd\xae\x57\xdd\xdd\xb5\x7c\x09\x56\xf5\x7b\xdd\xe4\x57\xd1\xfb\x9f\xc7\x2c\x16\xf3\xd6\x94\x19\x49\xc2\x8a\xfe\xe4\x4b\xc7\x6a\x49\x46\x47\xcc\x7f\x55\xa9\xe0\x4a\x96\x7d\x39\xb5\x28\x49\x2d\x4d\xbd\x40\xf1\x2e\xad\x94\xd3\x93\x5f\x18\xe4\x29\x54\xf3\x83\xcc\x1d\x5d\x32\xdb\x1d\x6e\xa8\xf3\x67\xcd\x6b\xf0\xa1\x50\x07\xa1\x31\xc5\xd2\xd4\x18\xcb\x5c\x5c\x27\x40\x06\x5a\xfc\x81\xb9\xc1\x70\xee\x7e\x67\x07\xf0\x9c\xae\xea\x9a\xd7\x37\x29\xbb\xe2\x72\x87\x7d\x95\xbf\x83\xad\x0a\xb4\x03\xa4\x2a\xee\xf0\x29\x9d\x38\xfe\x66\xbe\xb6\x4d\x4f\xfb\x05\xf9\xc5\xe0\xb5\xf9\xc2\xaf\xb9\xba\x44\x24\x0f\xab\x50\xf3\xbe\x7f\x38\x67\xe7\x53\x8c\x3f\xc2\xe6\x26\x35\x37\x84\x73\x91\xf0\x62\x1f\x54\x69\x8b\x96\x80\x06\xca\x8c\x19\xcf\x89\x91\x85\x73\x0a\xcb\x78\x3b\x34\x75\x1c\x1d\xb8\x2a\xba\xdf\xa4\x33\xd7\xce\x5d\x70\xd4\xdf\xff\xa8\xf8\xa8\xb4\xc8\xb3\x1a\x49\xe7\x21\x40\xab\x1b\xb2\x32\x04\x89\xc4\x1b\xf4\x02\xce\xdb\x1c\xd1\x90\x38\x25\x93\x78\x48\xb1\xf0\x95\x4a\xe4\xc9\x05\x89\x59\xfd\x0a\xf1\x28\xf5\xf9\x40\xfd\x83\x49\x09\x49\x9f\x26\x7b\x44\x2d\x99\xd7\x01\x75\x72\xd9\x3b\x1d\xc4\xd8\x53\xcb\x88\xb1\xe3\x63\x11\x63\x9a\xfe\x7e\xb5\xa1\x78\x17\x6f\xa3\x41\xdf\x0b\x22\x97\xcf\x0e\x59\x87\x86\x57\xaa\x68\xab\x20\xf9\xd5\x7b\x80\x5f\x57\xc6\xfa\xe3\x58\xf6\x9e\xfb\x8e\x55\xf4\x59\x0f\x8a\x21\x1e\x83\x1f\x58\xea\xd4\xa6\xd9\xa5\xce\x7d\x3c\x28\xbc\xf2\x8b\x3f\x4e\x2e\xa5\x20\xbd\xf9\xa3\xf0\xc3\xce\x30\x76\xc2\xe8\x19\xb3\x97\x2e\xe0\x9d\x21\xf5\x93\xbb\xb6\x14\xd3\xfc\xb8\xeb\xe2\xfc\xa0\x0d\xed\xec\x0b\xd3\xae\x91\x23\x4d\xe4\xce\x5b\x77\x8f\x7f\x97\xef\xf0\x30\x09\xd2\x7f\x6d\xba\x0f\xc9\x75\x77\x79\xa3\xd4\x33\x55\x25\x7f\xed\xbb\x74\x52\xcf\xd5\x96\xeb\x07\xee\x2a\x58\x0c\xef\x38\x2d\xef\x25\xe6\xab\x35\x65\x21\xbe\xb5\x2a\x7a\x34\xba\xaf\xc6\x2c\xf1\xdb\x8e\xa8\xce\x97\xdf\x45\x6c\x9b\x7d\x9f\x67\xa6\x4f\x04\x1d\xb7\xff\x9e\x39\xb9\x77\xb4\xe4\x58\xa4\xab\xab\x98\xe9\xf8\x3a\xe3\xad\x5f\x8d\x48\xe3\x99\x47\x09\x8d\x3a\x5b\x4f\x3a\xb4\xd2\x17\x8e\x90\x09\xea\xa0\xc4\x05\x88\x10\xcd\x9c\x9d\x7f\xae\x00\xa1\xf9\x14\x37\x9c\xf1\xa8\x9a\xd8\x5d\x33\x96\x53\x71\x3b\xde\xe5\xa0\xde\xa5\xbd\x9a\xad\x80\x6b\xab\x77\xe5\x45\xaa\x78\x0a\x27\x16\xe6\xe6\x21\x34\x2b\xe5\x82\x49\x6f\xfe\x0a\xe7\x9a\x48\x55\xc2\x32\x76\x0f\xf7\x93\x47\x35\xfe\x16\xaf\xad\x0e\xd2\x4b\x4d\xa0\x29\xf1\x6f\x63\xed\x77\x54\x13\xb5\xcb\x3c\x5c\x73\x02\xcb\xad\x95\xec\x12\x61\x1b\x8f\x8c\x2c\xbf\xee\xcb\xd0\x18\x0a\xf5\x3a\xa0\xf3\xa2\x55\x31\x75\xa8\xe0\xb7\x18\x99\x19\x76\x82\x13\x81\x8c\xae\x38\x6c\x47\x41\xc5\x99\xec\xec\xbb\x95\xad\x68\x15\x0c\xc2\x4c\x69\x81\x8d\x2c\x5f\xa7\x4a\x58\xd4\x88\xf4\xaa\x75\x81\x1b\xdb\x99\xf7\x11\x6f\x2b\x55\xe6\xd2\xf0\xba\x8f\x53\xac\x00\x27\x3a\x1c\x69\xc1\xc9\x8a\x65\xd6\x47\x96\xba\x1e\xc4\xe8\xab\xc1\xec\x70\x59\xa0\x09\x80\xc5\x45\x0d\x98\x56\xe4\xa1\xbc\xcf\xcb\xe3\x17\xbf\x14\x5c\xbe\x97\xe4\x1a\x95\x14\xbd\xe2\x44\xc8\xbd\x50\x46\xcb\xba\xa8\x7a\x9e\xf8\x65\xd5\x73\x76\x7d\x3a\xeb\x88\xec\xd7\xf1\x7b\xcd\x4a\xeb\x0a\x0f\x9f\x8a\x8a\xbe\x09\xc8\xfd\x1a\x96\x9c\xf8\xae\x81\x50\xd2\x79\xeb\xf1\xb3\xee\x98\x4d\xe1\xee\x93\x8a\xb5\xeb\xaf\x9a\x84\x73\xb6\x66\x4d\x4a\xd7\x28\x95\x09\x9f\xcf\x38\x3d\xcb\x1a\x34\xc9\xe3\xbf\xc5\xdf\x5a\x81\x41\x73\xcd\x56\x17\x9b\x53\x8a\xd1\xda\xf8\x94\x81\x19\x4f\xf1\xeb\xfa\xd4\x8c\xab\x2a\xb7\x8d\x64\xe7\x96\x36\x74\x5f\xa6\x55\xe2\xee\x1a\xad\x1a\x89\x5c\x5d\xf4\xd1\x49\xf8\xed\xa0\x84\xd9\xbb\x67\x97\x47\x96\xdb\x23\x5a\xec\x42\xec\x7c\xcb\x91\x0f\x5c\xe3\x51\x67\x86\x16\x0c\xd6\xcc\x84\xf5\x2d\xe9\x26\x80\x3f\xf6\xed\x70\xfe\x52\xd2\xad\xf4\xad\x1e\xa5\xd4\x81\x38\xd1\x93\x13\x3f\xa7\x50\x0d\x6c\xc9\x01\x54\x7e\x4a\x5f\xfa\xfc\x07\x24\xe7\xc6\x4a\x85\xd5\x31\x0f\xcc\xd1\xb7\x83\xd1\x2f\x94\xcd\xa5\x15\x16\x71\xf8\x87\xed\x6a\x26\xd6\xfa\xa3\xf8\x98\xab\x7d\xfd\x51\xab\xea\xf6\x33\xcf\xc6\x66\x8b\x94\xc2\x4d\xf6\xf7\x4f\x93\x3e\xf8\xc2\x76\x48\xa8\x72\xee\x70\x5f\x9a\xb7\x3f\x43\xee\x96\x7d\xcd\xfb\x65\x1f\xf6\x40\x35\x70\xab\x78\xda\xfb\xb1\xb8\x9d\xaa\x3f\xd3\x71\xcb\xc9\x69\x14\xe5\x7e\xe5\x5a\x89\x73\xf8\x7c\x79\xac\xd4\x89\x85\x9f\x3e\x9b\xeb\xa5\xed\x97\x1f\xa6\xfa\x35\x20\x4a\xca\x6a\xbe\x9f\x73\xfa\x6c\xdc\x53\xe4\x53\x95\xb0\x77\x6c\x6f\x6e\x51\x5f\xaf\xf2\x27\xc9\xa1\xbc\x8a\x5c\x49\x75\xf5\x8c\x18\x3d\xba\xfa\xf9\x9f\xd2\x4f\x3f\xa8\x20\xf2\x8e\x5a\x48\xbb\xe9\xfd\x26\x9b\x7b\x62\xb3\x79\xfa\xf5\x15\xd1\x49\xdc\xca\x86\xaf\xb2\xc8\x90\xb2\xbb\xe3\x47\x7c\x90\x19\x66\xa4\x59\xc4\xf7\xc2\xf4\xd6\x01\x56\x6b\x73\xb9\x7e\x72\xa6\xff\x27\xcb\xaa\x4a\x93\xde\xe4\xaa\xf4\xd2\x59\xf4\xcf\x21\x3d\x77\xc0\x39\xfd\xf3\x25\x92\x6f\xea\x1f\xc2\xbb\x8e\xf9\x0c\xa7\xc3\x25\x30\xa3\x49\x83\x8d\x7c\x87\x5f\xf0\x89\x3e\x8e\x22\x8c\x73\xda\xd3\xa2\x0d\x88\xc1\x97\x7c\xd3\xb1\x3c\x7e\x6d\x42\xee\x95\x70\xed\x80\xe2\xa5\x69\x37\x39\xa4\x2e\xad\xc0\xb6\xb7\x03\x19\xce\xc9\xd6\x1a\xe8\x6f\x2e\xfc\xbe\x7c\x6b\x51\xdf\x78\x28\xda\xf7\x14\x69\x17\x28\xc9\x7b\xc9\xc5\xc0\xf9\x43\xd7\xfd\x82\x6e\x33\x58\xeb\xba\x5a\xfd\x6c\xc8\x4c\x9c\x77\x72\x5c\x79\x50\xd3\xef\xe3\xaa\xc7\x09\x15\xf3\x29\xfb\x37\x71\xe5\x79\x5e\xf6\x5d\xbf\x5e\xe1\x5e\xea\x2a\x77\x2f\x33\x5f\x31\xd5\xe9\x38\x7e\x52\x79\x5a\x83\x35\x57\x26\x86\x92\x67\x3f\x19\x34\x7c\x7d\x47\x07\x4e\x7a\xbb\xe4\x1a\xec\x10\x22\x4e\x6a\xca\x0e\x6d\x89\x48\x2c\xe6\x89\x43\x02\xe4\x17\x32\xae\x4d\x0c\x24\x73\xbd\x1b\xdb\x34\xcc\xee\x9b\xe9\x29\x3b\xc6\x3e\x57\x2a\x2b\x68\x6d\x4a\xa4\xa7\x5d\x64\xbc\xba\x3a\x17\xce\x36\x8a\x94\xa9\x6a\x7e\x59\xe4\x13\x10\xc7\x3c\xd2\xd3\xd0\xed\xd7\x46\xc7\x9d\x2d\x6b\xb6\xeb\x2e\x49\xd4\xe9\x16\xb3\xbc\x56\xac\x2c\xd3\x02\x2b\x9a\xbe\x26\x3b\xb2\x2e\x6b\x29\x72\x33\xb5\x14\xcc\xda\xe9\xe5\x9f\xe3\x11\xab\x87\x3e\x76\x3e\xfe\x84\xe8\xce\x1b\x43\x7a\x67\x10\x28\x5e\x3d\x7b\x2d\x57\xae\xb1\xa0\x27\x3c\xf6\x74\x55\xe5\x84\xed\x65\xca\x92\x54\xce\x7d\xc0\x9d\xb0\xec\x94\xb5\xa4\xcc\x86\xc9\x58\x77\xdb\x7a\x9b\x58\x83\xfc\x5d\x4d\xfb\x33\xe2\x20\xbb\xef\x27\x79\x99\xfd\xec\xfe\x44\xaa\x8c\x9c\xb2\xca\x3c\x15\x18\x68\x53\x11\x59\x7e\x65\x34\xd8\x47\xa6\x8a\xdc\xa7\x81\xbd\x25\x2c\x73\x18\xf4\xe1\xae\xaa\x9c\x92\x49\x85\xb1\x6d\xd1\x27\xe7\x0f\x4d\x5d\xf5\x61\x2f\x8a\x76\x6f\xc6\x4d\xd1\x20\x7b\xb1\x5e\xb0\x9e\xfd\x6e\x36\x2d\x07\x0f\xa5\x96\x1b\xa8\x5d\x3c\xac\xea\x6d\x40\x87\xa7\xfb\x96\x8a\x8a\x7d\x93\x1a\x89\x18\x25\x4b\xad\x2e\x3d\x92\xfe\xd5\x37\x96\x11\x39\x73\x4f\xaf\xc6\xb9\xb4\xf0\x12\x6e\x0b\x6b\x2d\x3b\x55\x22\x29\x5d\xda\x75\xa8\x61\xc0\x46\x6b\xcf\x7c\x5f\xe9\x8c\x50\x21\x26\xb8\xc4\xa9\x32\xf9\x71\x0e\x6a\x42\x1c\xa3\x96\x93\x1f\xb6\xf9\xee\xea\x00\xa7\x79\x43\xf1\x49\x17\x4b\x7b\xfc\x41\xf1\xd7\xdd\xe4\x26\x52\xee\x2b\xcc\x10\x46\xa5\xdb\xc3\xad\x66\x7a\xfd\xf0\x0c\x59\xa3\x2e\xbc\x53\x19\x26\xc7\xbb\x59\xca\x5d\xf6\x53\x42\xeb\x26\xb6\x6b\xda\x1f\xbf\xd6\x12\x9e\xfd\x3e\xe3\xb2\x2b\xb4\xfb\xb0\xb0\x6c\xa0\x0f\x3d\x0b\x0c\x8e\x48\x88\xac\x96\x52\x83\x99\x27\xe7\xae\x6e\x2d\x62\xd5\x4f\xdb\x9c\x33\xe1\xaa\x20\x72\x75\xe3\x65\x33\xec\xb3\x08\xa6\x95\x63\xbe\x73\xd2\xa5\x87\xef\x45\x8c\xe2\x52\x70\xc2\x80\x56\x15\xfb\xc1\xb9\x10\x03\xe1\x17\x80\xf6\x03\xb9\xfd\x1b\xd9\x57\x25\x27\xf2\x3e\x7a\x39\xdf\x36\x25\x61\x2c\x24\xff\x58\x8b\x3e\xdb\xd1\x58\xfe\x07\xd4\x9c\x7f\xb5\x29\xac\x70\x33\x45\xe2\xe2\xb1\xa9\xca\xdd\x03\x67\x26\x2f\xcb\x4e\x8c\x0c\x02\xc6\xfc\xa6\xeb\x86\x83\xd0\x5d\xde\xb5\xd4\xd4\xec\x19\x25\xef\x3d\x77\xa6\x3c\xb9\xe1\xbe\xa9\xc5\x07\x9d\xc4\xe2\x24\xd2\x52\x4a\x7c\xc6\x8f\xf6\x77\x9c\x2b\x98\x91\x3e\xa3\x5e\x2e\xd2\x87\x5e\xf0\x1e\x68\x57\xe3\x6a\x5e\x0c\x39\x3f\x57\xce\x1f\xc5\x7e\xcc\x8c\xbe\x14\xee\x69\x57\x5d\x23\xb4\x26\x3c\xf7\xbc\x89\xc0\x40\x06\xd0\xc3\xeb\xb3\x24\xed\xa7\x0a\xb0\xf6\x0f\x11\x43\x67\x98\xb5\x6d\x56\x58\xb0\x82\xb4\xd7\xeb\xc7\x99\x06\xcb\xf0\xb7\x99\x32\x63\xc3\xf6\x89\xc2\x66\x93\xb7\xe2\x79\xc4\x9b\x61\x0f\x02\x74\xac\x88\xa1\x49\x25\x86\xda\xa0\xc2\xde\x56\x8d\xeb\x01\x75\xc3\x59\x5c\xc3\xb4\x8f\x96\xd5\xc3\x34\xd9\x4f\xa5\x25\xd8\xe7\x6f\x9e\xb1\x8e\x1d\x25\x68\x2f\x37\x5c\x86\xd3\x2d\xae\x4b\x28\x69\x88\x64\x8c\x0d\x28\xa8\xee\x8d\x58\xb9\x9e\xdc\x7e\x69\x44\x94\xfd\xba\xce\xa7\x46\x7c\xfc\x5e\x96\x02\xf9\x8a\x06\xf6\xd3\xc0\xfb\xbb\x69\x7c\x83\xc3\x1f\x9c\x88\x83\x28\xc6\xc4\xed\x8c\x37\xf9\x46\xae\x3d\x61\xf9\x29\x1f\xd5\xf2\xda\x0a\x86\xcc\xee\xcd\xb2\xd3\xc2\xd8\xe6\xa0\x56\xc0\xcc\xcf\xcc\x88\xc5\xeb\xc9\x8f\xb4\xbe\xb8\xd4\xbf\xdd\xa3\x77\x3b\x56\x79\x07\xa3\x7f\x02\x32\x70\xf7\xeb\xfe\x65\xc0\x30\xdd\x12\x5a\xab\x60\x35\xa2\x17\xe1\x1c\x54\x6d\x21\x13\xfe\xf4\x49\xb8\xb7\xc9\x87\x8d\xb8\xf4\xf3\x9c\x0e\xa1\x80\x43\x61\x0d\x07\x9d\x38\x41\xd5\xb0\xd5\xcd\x85\x88\x3a\x7b\xc5\xe7\x45\xba\xc8\xa4\xc2\xc5\xe3\x71\x1a\xf9\x98\xae\x8e\xd3\x76\x5a\xe6\x46\x2a\xce\xf8\xdc\xea\xda\x4e\x6a\x7d\xeb\x00\xfc\x72\xd5\xa6\x7e\x64\xd1\x69\x71\x7d\x4f\x43\xde\x4e\x9e\xb0\xff\x92\xd4\x79\xe2\x94\x9d\xd4\xfb\x2f\xfa\x2d\x21\x4a\xfc\x59\xb3\x77\x6b\x07\xe1\xcb\xcc\x92\xa3\xe9\xce\x81\x89\x1c\x8e\xe1\xcc\x43\xad\x28\xbd\xb3\x79\x80\xbb\x84\x08\x49\x5d\xd6\xcb\x0b\xd4\x57\x2a\x89\x69\x10\x83\x9b\xad\x85\xa1\xc4\x58\x3b\x8c\x05\xf1\x27\x0d\x66\xc8\xef\x74\x9f\x8a\xc8\x47\x37\x76\x91\xb3\xb5\x78\x4d\x36\x16\xae\xda\x6d\x3a\x72\xc9\x6d\x0a\x23\x36\x39\x2c\x0f\x72\xf1\xb3\x3d\x80\xd9\x4d\xff\xa1\x66\x43\xbf\x92\xae\x33\x9b\x11\xbb\x0d\xeb\x16\x49\x49\xcb\xf2\x7e\xee\xa1\xe6\x3a\xab\xf9\xbb\x37\x36\xd6\x68\x16\xb5\xe4\x16\x39\x74\xcc\x78\xc0\xf5\xcf\x59\x8d\xd3\xaf\xdc\xfb\xc0\x0f\xc1\xfe\x70\xb7\x27\x25\x88\x78\x9e\x3f\x22\xfe\xa7\xb7\x9b\xca\x0f\xdc\x0d\x5d\x96\x9c\xb5\xde\xd7\x34\xb8\xd3\x6e\x56\xa6\xaa\x41\x6e\x43\xf2\x8d\x57\xf9\x6d\x41\xfb\x8f\xa2\xe5\x2f\xf7\xf6\x31\x83\x23\xda\xc6\xbf\xd5\x07\x7b\xc5\xcb\x55\x2e\xb1\x00\xce\x22\x0e\x95\x75\xa8\x17\xe3\xb6\xf1\x4f\xe0\xae\x87\xfa\x93\xd6\xbd\x2c\x13\x67\x7d\x1d\x34\xf8\xcd\x6b\xd2\x01\xd3\x41\xe7\x74\x63\x37\xfd\xa1\xdd\x5b\xe8\x94\xd1\xe4\x7d\xe4\x5d\x36\x79\xfa\x31\x51\x2e\x4b\xc7\x2b\xcc\x46\x69\xfb\x2c\x7c\xad\xa2\xbd\x22\x9b\x11\xd4\x45\xb7\xf1\xaa\x9b\x98\x2f\xf5\x87\x77\xbf\xb7\x82\x49\x74\xee\xdc\x50\xd2\x63\xb8\xb7\x7a\xba\xc9\x66\x9b\xc2\x9f\x52\xdd\xe5\x95\xd8\x48\xbf\x2d\x25\x7f\x21\x45\xda\xfb\x4b\x98\xd1\x06\xdd\xed\x8f\x3b\x82\x8d\x13\xfe\x0e\xce\xff\xec\x7f\x05\x00\x00\xff\xff\xe3\x77\xc1\x4f\x49\x0e\x00\x00") +var _web_uiStaticFaviconPng = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x57\x77\x50\x13\xd8\xba\x0f\x20\xd2\x21\x14\x95\xa2\x18\x42\x57\x49\x23\xa1\x84\x24\x40\x08\x68\x68\x42\xe8\x08\x4a\x48\x22\x84\x90\x42\x12\x8a\x20\x45\x85\x05\x97\xb2\xea\xa2\x54\x51\x81\x08\xb8\xab\xc0\x22\x1d\x21\x22\x28\x22\x88\x05\x94\x2a\x48\x15\x11\x14\x90\xa2\x88\xbc\x61\xef\x7a\xef\x9b\x37\x3b\xfb\x66\xee\x37\x73\x66\xce\xf9\xe6\xf7\xfb\x7d\xe5\x7c\xe7\x8f\x73\xde\xc5\xf9\xb0\x9c\xb4\xba\x34\x00\x00\x90\x23\x1e\x21\x90\x00\x00\x00\x62\x7b\x49\xee\x04\x00\x00\x9a\x96\x29\x95\x00\x00\x40\x8d\x6f\xeb\xcd\x77\x63\x9f\xe4\x47\x92\xb9\x34\x80\x35\x95\x1d\x48\x03\x11\x99\xe4\x20\x1a\x89\x46\xa6\x9e\x0a\x7b\x4c\xc3\x00\x00\x62\xc1\x74\x77\x6f\xbe\xb7\x93\x23\x9a\xc2\x66\x42\xc8\xdb\x18\x48\x14\x93\x03\xd8\x36\x8c\x65\x14\x87\x4c\x61\xd0\xf8\xa0\x40\x5a\x10\x9d\x85\x05\x7f\x6c\x6c\x01\x83\xe8\x54\x2c\xd8\x0b\xe5\x04\x73\xe2\xd8\xd0\x82\xe9\x47\xa2\xb9\x34\xb7\x68\x67\x77\x4a\x34\x83\x62\x4e\x05\x5b\xe2\x40\x98\x28\x74\x14\x93\xc3\xa4\xf1\xc9\xa0\x28\x66\x28\x8b\x87\x8e\xc2\x82\xff\xd4\x45\xb3\x78\xe8\x6d\x37\x14\x0c\xfa\x13\xc2\x67\x60\xc1\xff\x4a\xca\xdb\xc9\x05\x64\xc3\xe6\xd2\x40\x28\x88\xb1\x11\x05\x06\x87\x83\x4c\x4c\x20\x70\x24\xca\xc4\x04\x7e\x08\x84\x80\xc1\x11\x50\x18\x02\x0a\x33\x31\x82\x23\xd1\x28\x13\x34\xc2\x14\xf4\x97\x81\x71\x20\x0c\x97\x7a\x12\x4d\x22\xd8\xfd\x15\x8b\x4b\x3d\x89\x05\x07\xf3\xf9\x1c\x34\x14\x1a\x19\x19\x09\x89\x34\x86\xb0\xb9\x41\x50\xb8\xb9\xb9\xf9\xb6\x06\x02\x61\xc4\xa5\x9e\x34\xe2\x9d\x62\xf1\xc9\x51\x46\x2c\x9e\xf6\x0f\x05\x02\x8d\x47\xe1\xd2\x39\x7c\x3a\x9b\x05\xda\x3e\x93\x03\xd9\xe1\x7c\x2c\x18\xfc\xa3\x04\x26\xc7\xc9\xe9\xdf\xc2\x2c\xde\x5f\x8d\xa2\xb0\x99\xd0\x28\x32\x07\x0a\x87\xc0\xa0\x4c\x26\xf4\x07\x9a\xc7\x27\xd1\x4e\xfe\x33\x9a\xe7\x7e\x8a\x43\x83\x92\x68\x3c\x76\x38\x97\x42\x23\xd1\x4e\x6a\xff\xaf\x50\xff\x4c\xdd\x06\x72\x9c\x9c\xd0\x47\xb9\xf4\x20\x3a\x8b\x1c\x4a\x60\x53\xc2\x99\x34\x16\x9f\x48\xc0\x82\xa3\x98\x1c\x08\x95\x4e\x45\x23\x6d\xe0\x04\x13\x1b\x63\x82\xb5\x09\x02\x6e\x62\x06\x87\x9b\xc1\xcc\x8c\x09\x48\x82\xb1\x29\xde\xda\xcc\x06\x6f\x6e\xfd\x43\xe3\xef\xb8\x30\xa4\x1d\xc2\xdc\xcc\xce\x1a\x6f\x6b\x62\x03\x87\xdb\x1a\x5b\x9b\xc2\xed\xcc\xf1\xc6\x36\x48\x14\x1c\x65\x8a\x40\xc1\x7e\x70\x89\x2c\x1e\x9f\xcc\xa2\xd0\x7e\x70\xe9\xff\xe1\x9a\xff\x23\x17\x6d\xc3\xa5\x91\xf9\x6c\xae\x3b\x9b\x1d\xfa\x63\x02\x5c\x82\xd9\x7c\x36\x2f\x98\xcd\x01\xd9\xb8\x99\x80\x0c\x9c\xc8\x14\x3a\x6b\xdb\x61\xb8\x7d\x41\x7f\xe5\x4a\xe3\xd2\x23\x68\x54\x3b\x2e\x9b\x09\xfa\xb3\xc3\x68\xfa\xdf\x64\xf0\xff\x57\xfe\x2f\x2e\xf5\xbf\xe9\x1a\x14\x07\xc2\x40\xff\xcf\xb8\xfc\x70\x91\x08\x76\xdb\xdb\x7f\x0f\x3f\x0e\xf4\x9f\xe7\x43\x63\x51\xb1\x60\x2e\xd8\x12\x97\xf9\xee\x12\x0e\x00\x90\x8e\x24\x12\xac\xdd\xa3\x06\x87\x7d\x63\x38\x1e\xed\x6a\x5b\xab\xf9\xbc\xfd\xc4\x23\x78\x7c\x87\x98\xe4\x2f\x01\xd9\x67\x69\xbe\x22\x37\x30\xf6\xa7\x04\x9e\x89\x07\x52\x48\xf9\x95\xb2\xe2\xbf\xed\x7a\xe2\x3e\x68\xd9\xd9\xff\xb3\xbb\xab\xdd\xef\x11\x37\x05\x7d\x97\xf0\x17\x45\x14\x65\xaa\x0b\xdb\x0f\x78\xba\xe4\x17\x82\x53\xa4\x6b\xb4\x40\xbd\x00\x2d\xad\xb6\xc4\xc9\xe9\x37\x31\x9a\x43\xa3\x05\x55\xfa\xe6\xa7\x86\x63\x7e\xd5\x90\x72\xec\x99\xcc\x1a\xc1\xce\x0c\x8f\x6c\x16\x6c\xcc\xd7\x26\x87\x3d\x9d\xdd\x7a\xfb\xa2\x61\x79\xa2\x4a\x9f\xd1\x91\xa2\x5e\x0c\x7b\x3e\xde\x26\x54\x69\xb4\xc7\x28\xaf\x84\x36\xea\x48\xc3\xc6\xf7\xce\x03\x07\xab\x0d\x18\xaa\x45\x9c\xa7\x29\xf7\xbd\x14\xb4\x34\x3c\x9b\xf1\xa8\x5d\x7b\x3a\xca\x49\xcd\x9d\xdd\x44\x69\xd3\x92\xc2\xbd\x02\x2e\xa5\x22\x24\xc7\xc7\x40\x0c\x40\xbf\x42\x54\xb7\xef\xd5\xf0\x70\x2b\x5f\x82\x57\xfd\x5e\x37\xf9\x55\xec\xfe\xe7\x31\xcb\xc5\xbc\x35\x15\x56\x92\x88\x52\x00\xf5\xd2\xb1\x5a\xb2\xf1\x11\xdc\xaf\xaa\x15\x7c\xa9\xb2\x2f\xa7\x16\xa5\xe8\xa5\xa9\x17\x68\x3e\xa5\x95\xf2\xfa\x0a\x0b\x83\x02\xc5\x6a\x61\x10\xce\xc9\x35\xb3\xdd\xf1\x86\x86\x70\x16\x57\x43\x08\x85\x39\x02\xc6\x94\x4a\x53\x63\xac\x72\xf1\x9d\x40\x59\x58\xf1\x07\xf6\x06\xcb\xa5\xfb\x9d\x3d\xd0\x6b\xba\xaa\x6b\xde\xc0\xb4\xec\x8a\xeb\x1d\xee\x55\xe1\x0e\xae\x1a\xc8\x1e\x98\xaa\xb4\xc3\xb7\x74\xe2\xf8\x9b\xf9\xda\x36\x7d\x9d\x17\xd4\x17\x83\xd7\xe6\x0b\xbf\xe6\xea\x91\x50\x02\xac\x62\xcd\xfb\xfe\xe1\x9c\x9d\x4f\x31\x01\x48\xdb\x9b\xf4\xdc\x10\xde\x45\xe2\x8b\x7d\x30\xe5\x2d\x46\x02\x1a\x24\x3b\x66\x32\x27\x4e\x15\xc9\x29\x2c\x13\xec\xd0\xd2\x75\x72\xe4\xab\xea\x7d\x93\xc9\x5c\x3b\x77\xc1\xc9\x60\xff\xa3\xe2\xa3\x32\xa2\xcf\x6a\xa4\x5c\x86\x80\xad\xee\xa8\xca\x10\x14\x8a\x60\xd8\x0b\x3c\x6f\x7b\x44\x53\xf2\x94\x6c\xe2\x21\xa5\xc2\x57\xaa\x91\x27\x17\x24\x67\x0d\x2a\x24\xa2\x34\xe6\x29\x06\x07\x93\x12\x92\x3e\x4d\xf6\x88\x59\xb1\xaf\x03\xeb\xe4\xb3\x77\x3a\x8a\x73\xa7\x96\x91\x63\xc7\xc7\x22\xc6\xb4\x02\xfc\x6b\x43\x09\xae\x3e\xc6\x83\x7e\x17\x44\x2f\x9f\x1d\xb2\x09\x0d\xaf\x54\xd5\x51\x45\x09\xab\xf7\x80\xbe\xae\x8c\xf5\xc7\x71\x1c\xbc\xf6\x1d\xab\xe8\xb3\x19\x14\x47\x3e\x86\x3c\xb0\xd2\xad\x4d\xb3\x4f\x9d\xfb\x78\x50\x64\xe5\x97\x00\xbc\x7c\x4a\x41\x7a\xf3\x47\x91\x87\x9d\x61\xdc\x84\xd1\x33\x16\x2f\x5d\x21\x3b\x43\xea\x27\x77\x6d\x29\xa5\xf9\xf3\xd7\x25\x84\x41\x1b\x3a\xd9\x17\xa6\xdd\x22\x47\x9a\xa8\x9d\xb7\xee\x1e\xff\xae\xd0\xe1\x69\x1a\x64\xf0\xda\x6c\x1f\x8a\xef\xe1\xfa\x46\xb9\x67\xaa\x4a\xe1\xda\x77\x99\xa4\x9e\xab\x2d\xd7\x0f\xdc\x55\xb4\x1c\xde\x71\x5a\xc1\x5b\xdc\x4f\x7b\xca\x52\x62\x6b\x55\xec\x68\x74\x5f\x8d\x45\xe2\xb7\x1d\x51\x9d\x2f\xbf\x8b\xda\x35\xfb\x3d\xcf\x4c\x9f\x08\x3a\xee\xf0\x3d\x73\x72\xef\x68\xc9\xb1\x48\x37\x37\x71\xb3\xf1\x75\xd6\x5b\xff\x1a\xd1\xc6\x33\x8f\x12\x1a\x75\xb7\x9e\x74\x68\xa7\x2f\x1c\xa1\x12\x35\xc0\x89\x0b\x50\x00\x03\xc7\xcd\x3f\x57\x80\xd4\x7a\x8a\x1f\xce\x78\x54\x4d\xea\xae\x19\xcb\xa9\xb8\x1d\xef\x7a\x50\xff\xd2\x5e\xad\x56\xe0\xb5\xd5\xbb\x0a\xa2\x55\x02\xc5\x13\x0b\x73\xf3\x50\x86\xb5\x4a\xc1\xa4\x8f\x70\x85\x77\x4d\xb4\x2a\x61\x19\xbb\x87\xff\xc9\xb3\x9a\x70\x4b\xd0\x56\x07\xed\xa5\x27\x30\x94\x85\xb7\xb1\x0e\x3b\xaa\x49\x3a\x65\x9e\x6e\x39\x94\x72\x1b\x65\xfb\x44\xf8\xc6\x23\x63\xab\xaf\xfb\x32\x34\x87\x42\xbd\x0f\xe8\xbe\x68\x55\x4a\x1d\x2a\xf8\x2d\x46\x76\x86\x9b\xe0\x4c\xa4\xa2\x2b\x0e\xdb\xd3\xcc\xe3\x4c\x77\xf6\xdd\xca\x56\xb2\x0e\x06\x63\xa6\xb4\x21\xc6\x56\xaf\x53\x25\x2d\x6b\x44\x7b\xd5\xbb\x20\x8d\xed\xec\xfb\xc8\xb7\x95\xaa\x73\x69\x04\xbd\xc7\x29\xd6\xc0\x13\x1d\x4e\x8c\xe0\x64\xa5\x32\x9b\x23\x4b\x5d\x0f\x62\x0c\xd4\xe1\xf6\xf8\x2c\xf0\x04\xd0\xf2\xa2\x26\x5c\x3b\xf2\x50\xde\xe7\xe5\xf1\x8b\x5f\x0a\x2e\xdf\x4b\x72\x8b\x4a\x8a\x5e\x71\x26\xe6\x5e\x28\x63\x64\x5d\x54\x3b\x4f\xfa\xb2\xea\x35\xbb\x3e\x9d\x75\x44\xee\xeb\xf8\xbd\x66\xe5\x75\xc5\x87\x4f\xc5\xc4\xde\x04\xe6\x7e\x0d\x4b\x4e\x7c\xd7\x40\x2c\xe9\xbc\xf5\xf8\x59\x77\xcc\xa6\x48\xf7\x49\xa5\xda\xf5\x57\x4d\x22\x39\x5b\xb3\xa6\xa5\x6b\xb4\xca\x84\xcf\x67\x9c\x9f\x65\x0d\x9a\xe6\x09\xdf\x12\x6e\xad\xc0\x61\xb9\x16\xab\x8b\xcd\x29\xc5\x68\x1d\x42\xca\xc0\x8c\x97\xc4\x75\x03\x7a\xc6\x55\xd5\xdb\xc6\x72\x73\x4b\x1b\x7a\x2f\xd3\x2a\xf1\x77\x8d\x57\x8d\x45\xaf\x2e\xfa\xea\x26\xfc\x76\x50\xd2\xe2\xdd\xb3\xcb\x23\xcb\xed\x11\x2d\xf6\x21\xf6\x7e\xe5\xa8\x07\x6e\xf1\xe6\x67\x86\x16\x0c\xd7\x2c\x44\x0c\xac\x98\xa6\xc0\x3f\xf6\xed\x70\xf9\x52\xd2\xad\xfc\xad\xde\x5c\xb9\x03\x79\xa2\x27\x27\x7e\x4e\xb1\x1a\xd4\x92\x03\xac\xfc\x94\xbe\xf4\xf9\x0f\x68\xce\x8d\x95\x0a\xeb\x63\x9e\x98\xa3\x6f\x07\xa3\x5f\xa8\xe0\x64\x14\x17\xf1\x84\x87\xed\xea\xa6\x36\x06\xa3\x84\x98\xab\x7d\xfd\x51\xab\x1a\x0e\x33\xcf\xc6\x66\x8b\x94\xc3\x4d\xf7\xf7\x4f\x93\x3f\xf8\xc1\x77\x48\xaa\xf1\xee\xf0\x5f\xe2\xda\x9f\xa1\x76\xcb\xbd\x16\xfc\xb2\x0f\x7b\xa0\x1a\xb4\x55\x3c\xed\xf3\x58\xc2\x5e\x2d\x80\xed\xb4\xe5\xec\x3c\x6a\xee\x71\xe5\x5a\x89\x4b\xf8\x7c\x79\xac\xf4\x89\x85\x9f\x3e\xe3\xf4\xd3\xf6\x2b\x0c\xd3\xfd\x1b\x90\x25\x65\x35\xdf\xcf\x39\x7f\x36\xe9\x29\xf2\xad\x4a\xd8\x3b\xb6\x37\xb7\xa8\xaf\x57\xe5\x93\xd4\x50\x5e\x45\xae\x94\x86\x46\x46\x8c\x3e\x53\xe3\xfc\x4f\xe9\xa7\x1f\x54\x90\x04\x47\x2d\x65\xdc\xf5\x7f\x93\xcb\x3d\xb1\xd9\x3c\xfd\xfa\x8a\xd8\x24\x7e\x65\xc3\x4f\x45\x74\x48\xc5\xc3\xe9\x23\x21\xc8\x02\x33\xd2\x2c\xea\x77\x61\x7a\xeb\x00\xa7\xb5\xb9\xdc\x20\x39\x33\xe0\x93\x55\x55\xa5\x69\x6f\x72\x55\x7a\xe9\x2c\xfa\xe7\x90\x9e\x3b\x90\x9c\xfe\xf9\x12\xa9\x37\xf5\x0f\x11\x5d\xc7\x7c\x87\xd3\x11\x92\x98\xd1\xa4\xc1\x46\xa1\xe3\x2f\x84\x44\x5f\x27\x51\xd6\x39\x9d\x69\xb1\x06\xe4\xe0\x4b\xa1\xd9\x58\x9e\xb0\x36\x21\xf7\x4a\xb8\x4e\x60\xf1\xd2\xb4\xbb\x3c\x4a\x8f\x51\x60\xd7\xdb\x81\x0a\xe7\x65\x6b\x0f\xf4\x37\x17\x7e\x5f\xbe\xb5\x68\x60\x32\x14\xed\x77\x8a\xbc\x0b\x9c\xe4\xb3\xe4\x6a\xe8\xf2\xa1\xeb\x7e\x41\xb7\x05\xbc\x75\x5d\xbd\x7e\x36\x64\x26\xce\x27\x39\xae\x3c\xa8\xe9\xf7\x71\xb5\xe3\xc4\x8a\xf9\x94\xfd\x9b\xf8\xf2\x3c\x6f\x87\xae\x5f\xaf\xf0\x2f\x75\x95\x7b\x94\xe1\x56\xcc\x74\x3b\x8e\x9f\x54\x99\xd6\xe4\xcc\x95\x89\x9b\x2b\x70\x9f\x0c\x1a\xbd\xbe\xa3\x8b\x20\xbf\x5d\x72\x0b\x76\x0c\x91\x20\x37\x65\x87\xb6\x44\x24\x16\x0b\x24\xa0\x81\x0a\x0b\x19\xd7\x26\x06\x92\xf9\x3e\x8d\x6d\x9a\x16\xf7\x2d\xf4\x55\x9c\x62\x9f\x2b\x97\x15\xb4\x36\x25\x32\xd3\x2e\xb2\x5e\x5d\x9d\x0b\xe7\x1a\x47\xca\x56\x35\xbf\x2c\xf2\x0d\x8c\x63\x1f\xe9\x69\xe8\xf6\x6f\x63\xe2\xcf\x96\x35\xdb\x77\x97\x24\xea\x76\x8b\x5b\x5d\x2b\x56\x91\x6d\x81\x17\x4d\x5f\x93\x1b\x59\x97\xb3\x12\xbd\x99\x5a\x0a\xe1\xec\xf4\x0e\xc8\xf1\x8c\xd5\x47\x1f\x3b\x1f\x7f\x42\x6c\xe7\x8d\x21\xfd\x33\x48\x73\x41\x3d\x77\x2d\x57\xbe\xb1\xa0\x27\x3c\xf6\x74\x55\xe5\x84\xdd\x65\xda\x92\x74\xce\x7d\xe0\x9d\xb0\xec\x94\xb5\xa4\xcc\x86\xc9\x58\x0f\xbb\x7a\xdb\x58\xc3\xfc\x5d\x4d\xfb\x33\xe2\xa0\xbb\xef\x27\x79\x5b\xfc\xec\xf1\x44\xba\x8c\x9a\xb2\xca\x3e\x45\xa1\xd8\x56\x44\x96\x5f\x19\x0d\xf6\x95\xad\xa2\xf6\x69\x62\x6f\x89\xc8\x1e\x06\x7f\xb8\xab\x26\xaf\x6c\x5a\x61\x62\x57\xf4\xc9\xe5\x43\x53\x57\x7d\xd8\x8b\xa2\xdd\x9b\x71\x53\x0c\xe8\x5e\xac\x37\xbc\x67\xbf\xbb\x6d\xcb\xc1\x43\xa9\xe5\x86\xea\x17\x0f\xab\xf9\x18\x32\x11\xe9\x7e\xa5\x62\xe2\xdf\xa4\x47\x22\x46\xa9\xd2\xab\x4b\x8f\x64\x7e\xf5\x8b\x65\x45\xce\xdc\xd3\xaf\x71\x29\x2d\xbc\x84\xdf\xc2\xda\xc8\x4d\x95\x48\xc9\x94\x76\x1d\x6a\x18\xb0\xd5\xde\x33\xdf\x57\x3a\x03\x28\xc4\x04\x97\x38\x57\x26\x3f\xce\x31\x9f\x90\xc0\xa8\xe7\xe4\x87\x6d\xbe\xbb\x3a\xc0\x6b\xde\x50\x7a\xd2\xc5\xd1\x19\x7f\x50\xfc\x75\x37\xb5\x89\x9c\xfb\x0a\x33\x84\x51\xed\xf6\x74\xaf\x99\x5e\x3f\x3c\x43\xd5\xac\x0b\xef\x54\x81\xcb\x0b\x6e\x96\xf2\x97\xfd\x95\xd1\x7a\x89\xed\x5a\x0e\xc7\xaf\xb5\x84\x67\xbf\xcf\xb8\xec\x06\xeb\x3e\x2c\x22\x47\xf1\x65\x66\x41\x20\x11\x09\x91\xd5\xd2\xea\x70\x5c\x72\xee\xea\xd6\x22\x56\xe3\xb4\xed\x39\x53\xbe\x2a\x32\x57\x2f\x5e\x2e\xc3\x21\x8b\x68\x56\x39\xe6\x37\x27\x53\x7a\xf8\x5e\xc4\x28\x3e\x05\x2f\x02\x6c\x55\x75\x18\x9c\x0b\x31\x14\x79\x01\x6c\x3f\x90\xdb\xbf\x91\x7d\x55\x6a\x22\xef\xa3\xb7\xcb\x6d\x33\x32\xc6\x52\xea\x8f\xb5\xe8\xb3\x1d\x8d\xe5\x7f\xc0\x70\xc2\xab\x4d\x61\x85\x9b\x29\x92\x17\x8f\x4d\x55\xee\x1e\x38\x33\x79\x59\x6e\x62\x64\x10\x38\xe6\x3f\x5d\x37\x1c\x84\xee\xf2\xa9\xa5\xa7\x66\xcf\x28\xfb\xec\xb9\x33\xe5\xc5\x0f\xf7\x4b\x2d\x3e\xe8\x2c\x1e\x27\x99\x96\x52\xe2\x3b\x7e\xb4\xbf\xe3\x5c\xc1\x8c\xcc\x19\x8d\x72\xd1\x3e\xf4\x82\xcf\x40\xbb\x3a\x5f\xeb\x62\xc8\xf9\xb9\x72\xe1\x28\xf6\x63\x66\xf4\xa5\x70\x2f\xfb\xea\x1a\xc0\x9a\xc8\xdc\xf3\x26\x22\x0b\x15\xc8\x0c\xaf\xcf\x92\x72\x98\x2a\xc0\x3a\x3c\x44\x0e\x9d\x61\xd7\xb6\x59\x63\x21\x8a\x32\xde\xaf\x1f\x67\x1a\x2e\x23\xde\x66\xca\x8e\x0d\x3b\x24\x8a\x58\x4c\xde\x8a\x17\x90\x6e\x86\x3d\x08\xd4\xb5\x26\x85\x26\x95\x18\xe9\x80\x0b\x7b\x5b\x35\xaf\x07\xd6\x0d\x67\xf1\x8d\xd2\x3e\x5a\x55\x0f\x33\xe4\x3e\x95\x96\x60\x9f\xbf\x79\xc6\x39\x76\x94\xa8\xb3\xdc\x70\x19\xc1\xb4\xbc\x2e\xa9\xac\x29\x9a\x31\x36\xa0\xa8\xb6\x37\x62\xe5\x7a\x72\xfb\xa5\x11\x31\xee\xeb\x3a\xdf\x1a\x89\xf1\x7b\x59\x8a\xd4\x2b\x9a\xd8\x4f\x03\xef\xef\xa6\x09\x0d\x0f\x7f\x70\x26\x0d\x9a\xb3\x26\x6e\x67\xbc\xc9\x37\x76\xeb\x09\xcb\x4f\xf9\xa8\x9e\xd7\x56\x30\x64\x71\x6f\x96\x9b\x16\xc6\xc5\x81\x5b\x81\x33\x3f\xb3\x23\x16\xaf\x27\x3f\xd2\xfe\xe2\x5a\xff\x76\x8f\xfe\xed\x58\x95\x1d\xac\xfe\x09\xe8\xc0\xdd\xaf\xfb\x97\x81\xc3\x4c\x2b\x58\xad\xa2\xf5\x88\x7e\x84\x4b\x50\xb5\xa5\x6c\xf8\xd3\x27\xe1\x3e\xa6\x1f\x36\xe2\xd2\xcf\xf3\x3a\x00\x81\x87\xc2\x1a\x0e\x3a\xf3\x82\xaa\xe1\xab\x9b\x0b\x11\x75\x0e\x4a\xcf\x8b\xf4\x50\x49\x85\x8b\xc7\xe3\x34\xf3\x31\x5d\x1d\xa7\xed\xb5\x71\xc6\xaa\x2e\x84\xdc\xea\xda\x4e\x7a\x7d\xeb\x00\xe2\x72\xd5\xa6\x41\x64\xd1\x69\x09\x03\x2f\x23\xc1\x4e\x81\x48\xc0\x92\xf4\x79\xd2\x94\xbd\xf4\xfb\x2f\x06\x2d\x21\xca\xc2\x59\x8b\x77\x6b\x07\x11\xcb\xec\x92\xa3\xe9\x2e\x94\x44\x1e\xcf\x68\xe6\xa1\x76\x94\xfe\xd9\x3c\xe0\x5d\x62\x84\x94\x1e\xe7\xe5\x05\xfa\x2b\xd5\xc4\x34\xa8\xe1\xcd\xd6\xc2\x50\x52\xac\x3d\xc6\x92\xf4\x93\x26\x3b\xe4\x77\xa6\x6f\x45\xe4\xa3\x1b\xbb\xa8\xd9\xda\x82\x26\x5b\x4b\x37\x9d\x36\x5d\xf9\xe4\x36\xc5\x11\xdb\x1c\x8e\x27\xb5\xf8\xd9\x1e\xe0\xec\x66\xc0\x50\xb3\x91\x7f\x49\xd7\x99\xcd\x88\xdd\x46\x75\x8b\xe4\xa4\x65\x05\x7f\x8f\x50\x9c\xee\x6a\xfe\xee\x8d\x8d\x35\x86\x65\x2d\xb5\x45\x1e\x1d\x33\x1e\x78\xfd\x73\x56\xe3\xf4\x2b\x8f\x3e\xc8\x43\x48\x00\xc2\xfd\x49\x09\x32\x5e\x10\x80\x8c\xff\xe9\xed\xa6\xca\x03\x0f\x23\xd7\x25\x17\xed\xf7\x35\x0d\x1e\x8c\x9b\x95\xa9\xea\xd0\xdb\xd0\x7c\x93\x55\x61\x5b\xd0\xfe\xa3\x68\x85\xcb\xbd\x7d\xec\xe0\x88\xb6\xf1\x6f\xf5\xc1\xde\xf1\xf2\x95\x4b\x1c\xa0\x8b\xa8\x63\x65\x9d\xf9\x8b\x71\xbb\xf8\x27\x08\xb7\x43\xfd\x49\xeb\xde\x56\x89\xb3\x7e\x8e\x9a\xc2\xe6\x35\x99\xc0\xe9\xa0\x73\x7a\xb1\x9b\x01\xb0\xee\x2d\x74\xca\x68\xf2\x3e\xea\x2e\xdb\x3c\x83\x98\x28\xd7\xa5\xe3\x15\x16\xa3\x8c\x7d\x96\x7e\xd6\xd1\xde\x91\xcd\x48\xfa\xa2\xfb\x78\xd5\x4d\xcc\x97\xfa\xc3\xbb\xdf\x5b\xc3\x25\x3b\x77\x6e\x28\xeb\xb3\x3c\x5a\xbd\xdc\xe5\xb2\xcd\x10\x4f\xe9\x1e\x0a\xca\x5c\x94\xff\x96\x72\x00\x40\x89\xf1\xfe\x12\x66\xb4\x41\x6f\xfb\x73\x47\xb4\x75\x26\xdc\xc1\x07\x9c\xfd\x9f\x00\x00\x00\xff\xff\xe3\x77\xc1\x4f\x49\x0e\x00\x00") func web_uiStaticFaviconPngBytes() ([]byte, error) { return bindataRead( @@ -211,12 +211,12 @@ func web_uiStaticFaviconPng() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web_ui/static/favicon.png", size: 3657, mode: os.FileMode(420), modTime: time.Unix(1471050089, 0)} + info := bindataFileInfo{name: "web_ui/static/favicon.png", size: 3657, mode: os.FileMode(420), modTime: time.Unix(1485366992, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticLoadingCylonPurpleSvg = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\x93\x3f\x4f\xeb\x30\x10\xc0\xf7\x7e\x8a\xd3\xbd\xe5\xbd\x25\x71\xdc\xf4\x29\xd0\xba\x12\xb0\xb0\x94\x01\x10\xbb\x9b\x5c\x13\x8b\xc4\xb6\x6c\xa7\x69\xf9\xf4\x38\xe1\x8f\x10\x42\x62\x2b\x0c\x49\x1c\xdd\xdd\xef\xee\x7e\x92\x57\x7e\x5f\xc3\xa1\x6b\xb5\x17\xd8\x84\x60\xcf\xd3\x74\x18\x86\x64\x98\x27\xc6\xd5\x29\x67\x8c\xa5\x31\x03\x61\xaf\x68\xb8\x34\x07\x81\x0c\xb2\x1c\xe6\x1c\xb2\x02\x61\x50\x55\x68\x04\xce\x39\x42\x43\xaa\x6e\x82\xc0\x1c\x61\xa7\xda\x56\xe0\x9f\x33\x2a\xf2\x72\x81\x60\x1d\x79\x72\x7b\xba\xf0\x96\xca\x70\x2b\x83\x32\x02\xb5\xd1\x84\xeb\x19\xc0\xca\xca\xd0\x80\xb1\xb2\x54\xe1\x18\xe9\x49\xc4\x06\x27\xb5\xdf\x19\xd7\x09\x9c\x8e\xad\x0c\xf4\x97\x01\xfb\x87\x50\x09\xdc\xf0\x71\x82\x87\xac\x80\xeb\xff\xf1\x93\x3f\x4d\x9c\x48\x92\x5a\x75\x31\xf3\xfe\xad\x1a\x64\x08\x4e\x6d\xfb\x40\x37\xb2\xa3\x57\xd6\x18\x88\x1d\x8e\x96\x3e\xc0\xe3\x7a\xb2\xed\xc9\x8f\xdb\xb1\x25\xf0\x7c\x7c\xc7\x63\xec\xd7\x3b\x81\xdc\x23\x6c\xa9\x56\x3a\xc6\x11\x1c\x59\x92\xe1\xca\xf4\x3a\xae\xab\x74\x45\x3b\xa5\xd5\xc8\x78\xa4\xe3\x9d\x6d\x95\x9e\x38\x09\x87\x97\x27\xb2\x92\x62\xf9\xe9\x1f\xa1\x94\x6d\xb9\x31\x55\x9c\xc2\x4f\x35\x08\xe9\xa4\x23\x1d\x7d\x7c\x29\x66\xf1\xad\x18\xf6\x2e\xa6\x38\xbd\x98\x24\xf3\x3f\xe7\x86\xff\x76\x39\xfc\x54\x72\x56\xe3\x75\x5d\xcf\x9e\x03\x00\x00\xff\xff\xf2\x94\x36\xdc\xd7\x03\x00\x00") +var _web_uiStaticLoadingCylonPurpleSvg = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\xd3\xcf\x6b\xdb\x30\x14\x07\xf0\x7b\xfe\x8a\xc7\xdb\x65\xbb\xd8\xb2\xe2\x0c\x6f\xb1\x02\xdb\x2e\xbb\x64\x87\x6d\xe4\xae\xd8\x2f\xb6\xa8\x2d\x09\xe9\xd9\x4e\xfa\xd7\x17\xbb\x3f\x28\xa5\xd0\x5b\xda\x83\x84\x84\xf8\x7e\x91\x3e\xa0\x32\x8e\x0d\x9c\xfb\xce\x46\x85\x2d\xb3\xff\x9e\xa6\xd3\x34\x25\xd3\x3a\x71\xa1\x49\xa5\x10\x22\x8d\x63\x83\x30\x1a\x9a\x7e\xba\xb3\x42\x01\x59\x0e\x6b\x09\x59\x81\x30\x99\x9a\x5b\x85\x6b\x89\xd0\x92\x69\x5a\x56\x98\x23\x9c\x4c\xd7\x29\xfc\xf4\x8d\x8a\xbc\xda\x20\xf8\x40\x91\xc2\x48\x3f\xa2\xa7\x8a\xff\x6a\x36\x4e\xa1\x75\x96\x70\xb7\x02\x28\xbd\xe6\x16\x9c\xd7\x95\xe1\x8b\x42\x91\x14\x08\x1c\xb4\x8d\x27\x17\x7a\x85\xcb\xb2\xd3\x4c\x9f\x05\x88\x2f\x08\xb5\xc2\xbd\x9c\x6f\x70\xc8\x0a\xf8\xfd\x15\x0e\x59\x7e\xbb\xf4\x00\x94\xda\x9a\x5e\x33\xfd\x7f\x4c\x83\x66\x0e\xe6\x38\x30\xfd\xd1\x3d\x3d\x74\xcd\x07\x08\x7c\xf1\xf4\xac\x1c\x61\xd4\xdd\x40\x71\x7e\x9d\xd8\x82\xcc\xe7\x59\x80\x40\xa8\x87\xa0\x50\x46\x84\x23\x35\xc6\x2a\x14\x08\x81\x3c\x69\xfe\xe5\x06\xcb\x0a\x8d\xad\xe9\x64\xac\x99\x3b\x6e\xe8\xf2\xcf\x77\xc6\x2e\x3d\x89\x84\xfb\x91\x83\x48\x8a\xed\x8b\x3d\x42\xa5\xbb\x6a\xef\x6a\x52\x18\x97\x0c\x42\xba\x70\xa4\xb3\xc7\xab\x30\x9b\x37\x61\xc4\x13\x4c\x71\x7d\x98\x24\x8b\xef\x67\x23\x3f\x3a\x8e\xbc\x16\x4e\x39\x7f\xd7\xdd\xea\x2e\x00\x00\xff\xff\xf2\x94\x36\xdc\xd7\x03\x00\x00") func web_uiStaticLoadingCylonPurpleSvgBytes() ([]byte, error) { return bindataRead( @@ -231,7 +231,7 @@ func web_uiStaticLoadingCylonPurpleSvg() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web_ui/static/loading-cylon-purple.svg", size: 983, mode: os.FileMode(420), modTime: time.Unix(1471050089, 0)} + info := bindataFileInfo{name: "web_ui/static/loading-cylon-purple.svg", size: 983, mode: os.FileMode(420), modTime: time.Unix(1485366992, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/command/agent/catalog_endpoint.go b/command/agent/catalog_endpoint.go index efccfba73c..4c7f59db97 100644 --- a/command/agent/catalog_endpoint.go +++ b/command/agent/catalog_endpoint.go @@ -64,6 +64,7 @@ func (s *HTTPServer) CatalogNodes(resp http.ResponseWriter, req *http.Request) ( // Setup the request args := structs.DCSpecificRequest{} s.parseSource(req, &args.Source) + args.NodeMetaFilters = s.parseMetaFilter(req) if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done { return nil, nil } @@ -85,6 +86,7 @@ func (s *HTTPServer) CatalogNodes(resp http.ResponseWriter, req *http.Request) ( func (s *HTTPServer) CatalogServices(resp http.ResponseWriter, req *http.Request) (interface{}, error) { // Set default DC args := structs.DCSpecificRequest{} + args.NodeMetaFilters = s.parseMetaFilter(req) if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done { return nil, nil } @@ -101,6 +103,7 @@ func (s *HTTPServer) CatalogServiceNodes(resp http.ResponseWriter, req *http.Req // Set default DC args := structs.ServiceSpecificRequest{} s.parseSource(req, &args.Source) + args.NodeMetaFilters = s.parseMetaFilter(req) if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done { return nil, nil } diff --git a/command/agent/catalog_endpoint_test.go b/command/agent/catalog_endpoint_test.go index 1d1136e1f6..d0d636fc85 100644 --- a/command/agent/catalog_endpoint_test.go +++ b/command/agent/catalog_endpoint_test.go @@ -145,6 +145,53 @@ func TestCatalogNodes(t *testing.T) { } } +func TestCatalogNodes_MetaFilter(t *testing.T) { + dir, srv := makeHTTPServer(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + testutil.WaitForLeader(t, srv.agent.RPC, "dc1") + + // Register a node with a meta field + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "foo", + Address: "127.0.0.1", + NodeMeta: map[string]string{ + "somekey": "somevalue", + }, + } + + var out struct{} + if err := srv.agent.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + + req, err := http.NewRequest("GET", "/v1/catalog/nodes?node-meta=somekey:somevalue", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + obj, err := srv.CatalogNodes(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Verify an index is set + assertIndex(t, resp) + + // Verify we only get the node with the correct meta field back + nodes := obj.(structs.Nodes) + if len(nodes) != 1 { + t.Fatalf("bad: %v", obj) + } + if v, ok := nodes[0].Meta["somekey"]; !ok || v != "somevalue" { + t.Fatalf("bad: %v", nodes[0].Meta) + } +} + func TestCatalogNodes_WanTranslation(t *testing.T) { dir1, srv1 := makeHTTPServerWithConfig(t, func(c *Config) { @@ -449,6 +496,54 @@ func TestCatalogServices(t *testing.T) { } } +func TestCatalogServices_NodeMetaFilter(t *testing.T) { + dir, srv := makeHTTPServer(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + testutil.WaitForLeader(t, srv.agent.RPC, "dc1") + + // Register node + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "foo", + Address: "127.0.0.1", + NodeMeta: map[string]string{ + "somekey": "somevalue", + }, + Service: &structs.NodeService{ + Service: "api", + }, + } + + var out struct{} + if err := srv.agent.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + + req, err := http.NewRequest("GET", "/v1/catalog/services?node-meta=somekey:somevalue", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + obj, err := srv.CatalogServices(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + + assertIndex(t, resp) + + services := obj.(structs.Services) + if len(services) != 1 { + t.Fatalf("bad: %v", obj) + } + if _, ok := services[args.Service.Service]; !ok { + t.Fatalf("bad: %v", services) + } +} + func TestCatalogServiceNodes(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) @@ -513,6 +608,72 @@ func TestCatalogServiceNodes(t *testing.T) { } } +func TestCatalogServiceNodes_NodeMetaFilter(t *testing.T) { + dir, srv := makeHTTPServer(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + testutil.WaitForLeader(t, srv.agent.RPC, "dc1") + + // Make sure an empty list is returned, not a nil + { + req, err := http.NewRequest("GET", "/v1/catalog/service/api?node-meta=somekey:somevalue", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + obj, err := srv.CatalogServiceNodes(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + + assertIndex(t, resp) + + nodes := obj.(structs.ServiceNodes) + if nodes == nil || len(nodes) != 0 { + t.Fatalf("bad: %v", obj) + } + } + + // Register node + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "foo", + Address: "127.0.0.1", + NodeMeta: map[string]string{ + "somekey": "somevalue", + }, + Service: &structs.NodeService{ + Service: "api", + }, + } + + var out struct{} + if err := srv.agent.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + + req, err := http.NewRequest("GET", "/v1/catalog/service/api?node-meta=somekey:somevalue", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + obj, err := srv.CatalogServiceNodes(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + + assertIndex(t, resp) + + nodes := obj.(structs.ServiceNodes) + if len(nodes) != 1 { + t.Fatalf("bad: %v", obj) + } +} + func TestCatalogServiceNodes_WanTranslation(t *testing.T) { dir1, srv1 := makeHTTPServerWithConfig(t, func(c *Config) { diff --git a/command/agent/check.go b/command/agent/check.go index 7bf67e9a7e..ff7ddb5f6b 100644 --- a/command/agent/check.go +++ b/command/agent/check.go @@ -1,6 +1,7 @@ package agent import ( + "crypto/tls" "fmt" "io" "log" @@ -47,6 +48,7 @@ type CheckType struct { Interval time.Duration DockerContainerID string Shell string + TLSSkipVerify bool Timeout time.Duration TTL time.Duration @@ -108,7 +110,6 @@ type CheckMonitor struct { Interval time.Duration Timeout time.Duration Logger *log.Logger - ReapLock *sync.RWMutex stop bool stopCh chan struct{} @@ -154,12 +155,6 @@ func (c *CheckMonitor) run() { // check is invoked periodically to perform the script check func (c *CheckMonitor) check() { - // Disable child process reaping so that we can get this command's - // return value. Note that we take the read lock here since we are - // waiting on a specific PID and don't need to serialize all waits. - c.ReapLock.RLock() - defer c.ReapLock.RUnlock() - // Create the command cmd, err := ExecScript(c.Script) if err != nil { @@ -202,7 +197,7 @@ func (c *CheckMonitor) check() { output.Size(), output.TotalWritten(), outputStr) } - c.Logger.Printf("[DEBUG] agent: check '%s' script '%s' output: %s", + c.Logger.Printf("[DEBUG] agent: Check '%s' script '%s' output: %s", c.CheckID, c.Script, outputStr) // Check if the check passed @@ -340,12 +335,13 @@ type persistedCheckState struct { // The check is critical if the response code is anything else // or if the request returns an error type CheckHTTP struct { - Notify CheckNotifier - CheckID types.CheckID - HTTP string - Interval time.Duration - Timeout time.Duration - Logger *log.Logger + Notify CheckNotifier + CheckID types.CheckID + HTTP string + Interval time.Duration + Timeout time.Duration + Logger *log.Logger + TLSSkipVerify bool httpClient *http.Client stop bool @@ -365,6 +361,15 @@ func (c *CheckHTTP) Start() { trans := cleanhttp.DefaultTransport() trans.DisableKeepAlives = true + // Skip SSL certificate verification if TLSSkipVerify is true + if trans.TLSClientConfig == nil { + trans.TLSClientConfig = &tls.Config{ + InsecureSkipVerify: c.TLSSkipVerify, + } + } else { + trans.TLSClientConfig.InsecureSkipVerify = c.TLSSkipVerify + } + // Create the HTTP client. c.httpClient = &http.Client{ Timeout: 10 * time.Second, @@ -436,7 +441,7 @@ func (c *CheckHTTP) check() { // Read the response into a circular buffer to limit the size output, _ := circbuf.NewBuffer(CheckBufSize) if _, err := io.Copy(output, resp.Body); err != nil { - c.Logger.Printf("[WARN] agent: check '%v': Get error while reading body: %s", c.CheckID, err) + c.Logger.Printf("[WARN] agent: Check '%v': Get error while reading body: %s", c.CheckID, err) } // Format the response body @@ -444,19 +449,19 @@ func (c *CheckHTTP) check() { if resp.StatusCode >= 200 && resp.StatusCode <= 299 { // PASSING (2xx) - c.Logger.Printf("[DEBUG] agent: check '%v' is passing", c.CheckID) + c.Logger.Printf("[DEBUG] agent: Check '%v' is passing", c.CheckID) c.Notify.UpdateCheck(c.CheckID, structs.HealthPassing, result) } else if resp.StatusCode == 429 { // WARNING // 429 Too Many Requests (RFC 6585) // The user has sent too many requests in a given amount of time. - c.Logger.Printf("[WARN] agent: check '%v' is now warning", c.CheckID) + c.Logger.Printf("[WARN] agent: Check '%v' is now warning", c.CheckID) c.Notify.UpdateCheck(c.CheckID, structs.HealthWarning, result) } else { // CRITICAL - c.Logger.Printf("[WARN] agent: check '%v' is now critical", c.CheckID) + c.Logger.Printf("[WARN] agent: Check '%v' is now critical", c.CheckID) c.Notify.UpdateCheck(c.CheckID, structs.HealthCritical, result) } } @@ -540,7 +545,7 @@ func (c *CheckTCP) check() { return } conn.Close() - c.Logger.Printf("[DEBUG] agent: check '%v' is passing", c.CheckID) + c.Logger.Printf("[DEBUG] agent: Check '%v' is passing", c.CheckID) c.Notify.UpdateCheck(c.CheckID, structs.HealthPassing, fmt.Sprintf("TCP connect %s: Success", c.TCP)) } @@ -666,7 +671,7 @@ func (c *CheckDocker) check() { output.Size(), output.TotalWritten(), outputStr) } - c.Logger.Printf("[DEBUG] agent: check '%s' script '%s' output: %s", + c.Logger.Printf("[DEBUG] agent: Check '%s' script '%s' output: %s", c.CheckID, c.Script, outputStr) execInfo, err := c.dockerClient.InspectExec(exec.ID) diff --git a/command/agent/check_test.go b/command/agent/check_test.go index 53d203eebe..b7381bbc5a 100644 --- a/command/agent/check_test.go +++ b/command/agent/check_test.go @@ -25,15 +25,44 @@ type MockNotify struct { state map[types.CheckID]string updates map[types.CheckID]int output map[types.CheckID]string + + // A guard to protect an access to the internal attributes + // of the notification mock in order to prevent panics + // raised by the race conditions detector. + mu sync.RWMutex } func (m *MockNotify) UpdateCheck(id types.CheckID, status, output string) { + m.mu.Lock() + defer m.mu.Unlock() + m.state[id] = status old := m.updates[id] m.updates[id] = old + 1 m.output[id] = output } +// State returns the state of the specified health-check. +func (m *MockNotify) State(id types.CheckID) string { + m.mu.RLock() + defer m.mu.RUnlock() + return m.state[id] +} + +// Updates returns the count of updates of the specified health-check. +func (m *MockNotify) Updates(id types.CheckID) int { + m.mu.RLock() + defer m.mu.RUnlock() + return m.updates[id] +} + +// Output returns an output string of the specified health-check. +func (m *MockNotify) Output(id types.CheckID) string { + m.mu.RLock() + defer m.mu.RUnlock() + return m.output[id] +} + func expectStatus(t *testing.T, script, status string) { mock := &MockNotify{ state: make(map[types.CheckID]string), @@ -46,18 +75,17 @@ func expectStatus(t *testing.T, script, status string) { Script: script, Interval: 10 * time.Millisecond, Logger: log.New(os.Stderr, "", log.LstdFlags), - ReapLock: &sync.RWMutex{}, } check.Start() defer check.Stop() testutil.WaitForResult(func() (bool, error) { // Should have at least 2 updates - if mock.updates["foo"] < 2 { + if mock.Updates("foo") < 2 { return false, fmt.Errorf("should have 2 updates %v", mock.updates) } - if mock.state["foo"] != status { + if mock.State("foo") != status { return false, fmt.Errorf("should be %v %v", status, mock.state) } @@ -96,7 +124,6 @@ func TestCheckMonitor_Timeout(t *testing.T) { Interval: 10 * time.Millisecond, Timeout: 5 * time.Millisecond, Logger: log.New(os.Stderr, "", log.LstdFlags), - ReapLock: &sync.RWMutex{}, } check.Start() defer check.Stop() @@ -104,11 +131,11 @@ func TestCheckMonitor_Timeout(t *testing.T) { time.Sleep(50 * time.Millisecond) // Should have at least 2 updates - if mock.updates["foo"] < 2 { + if mock.Updates("foo") < 2 { t.Fatalf("should have at least 2 updates %v", mock.updates) } - if mock.state["foo"] != "critical" { + if mock.State("foo") != "critical" { t.Fatalf("should be critical %v", mock.state) } } @@ -125,7 +152,6 @@ func TestCheckMonitor_RandomStagger(t *testing.T) { Script: "exit 0", Interval: 25 * time.Millisecond, Logger: log.New(os.Stderr, "", log.LstdFlags), - ReapLock: &sync.RWMutex{}, } check.Start() defer check.Stop() @@ -133,11 +159,11 @@ func TestCheckMonitor_RandomStagger(t *testing.T) { time.Sleep(50 * time.Millisecond) // Should have at least 1 update - if mock.updates["foo"] < 1 { + if mock.Updates("foo") < 1 { t.Fatalf("should have 1 or more updates %v", mock.updates) } - if mock.state["foo"] != structs.HealthPassing { + if mock.State("foo") != structs.HealthPassing { t.Fatalf("should be %v %v", structs.HealthPassing, mock.state) } } @@ -154,7 +180,6 @@ func TestCheckMonitor_LimitOutput(t *testing.T) { Script: "od -N 81920 /dev/urandom", Interval: 25 * time.Millisecond, Logger: log.New(os.Stderr, "", log.LstdFlags), - ReapLock: &sync.RWMutex{}, } check.Start() defer check.Stop() @@ -162,7 +187,7 @@ func TestCheckMonitor_LimitOutput(t *testing.T) { time.Sleep(50 * time.Millisecond) // Allow for extra bytes for the truncation message - if len(mock.output["foo"]) > CheckBufSize+100 { + if len(mock.Output("foo")) > CheckBufSize+100 { t.Fatalf("output size is too long") } } @@ -185,32 +210,32 @@ func TestCheckTTL(t *testing.T) { time.Sleep(50 * time.Millisecond) check.SetStatus(structs.HealthPassing, "test-output") - if mock.updates["foo"] != 1 { + if mock.Updates("foo") != 1 { t.Fatalf("should have 1 updates %v", mock.updates) } - if mock.state["foo"] != structs.HealthPassing { + if mock.State("foo") != structs.HealthPassing { t.Fatalf("should be passing %v", mock.state) } // Ensure we don't fail early time.Sleep(75 * time.Millisecond) - if mock.updates["foo"] != 1 { + if mock.Updates("foo") != 1 { t.Fatalf("should have 1 updates %v", mock.updates) } // Wait for the TTL to expire time.Sleep(75 * time.Millisecond) - if mock.updates["foo"] != 2 { + if mock.Updates("foo") != 2 { t.Fatalf("should have 2 updates %v", mock.updates) } - if mock.state["foo"] != structs.HealthCritical { + if mock.State("foo") != structs.HealthCritical { t.Fatalf("should be critical %v", mock.state) } - if !strings.Contains(mock.output["foo"], "test-output") { + if !strings.Contains(mock.Output("foo"), "test-output") { t.Fatalf("should have retained output %v", mock.output) } } @@ -228,6 +253,19 @@ func mockHTTPServer(responseCode int) *httptest.Server { return httptest.NewServer(mux) } +func mockTLSHTTPServer(responseCode int) *httptest.Server { + mux := http.NewServeMux() + mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { + // Body larger than 4k limit + body := bytes.Repeat([]byte{'a'}, 2*CheckBufSize) + w.WriteHeader(responseCode) + w.Write(body) + return + }) + + return httptest.NewTLSServer(mux) +} + func expectHTTPStatus(t *testing.T, url string, status string) { mock := &MockNotify{ state: make(map[types.CheckID]string), @@ -244,21 +282,24 @@ func expectHTTPStatus(t *testing.T, url string, status string) { check.Start() defer check.Stop() - time.Sleep(50 * time.Millisecond) + testutil.WaitForResult(func() (bool, error) { + // Should have at least 2 updates + if mock.Updates("foo") < 2 { + return false, fmt.Errorf("should have 2 updates %v", mock.updates) + } - // Should have at least 2 updates - if mock.updates["foo"] < 2 { - t.Fatalf("should have 2 updates %v", mock.updates) - } + if mock.State("foo") != status { + return false, fmt.Errorf("should be %v %v", status, mock.state) + } - if mock.state["foo"] != status { - t.Fatalf("should be %v %v", status, mock.state) - } - - // Allow slightly more data than CheckBufSize, for the header - if n := len(mock.output["foo"]); n > (CheckBufSize + 256) { - t.Fatalf("output too long: %d (%d-byte limit)", n, CheckBufSize) - } + // Allow slightly more data than CheckBufSize, for the header + if n := len(mock.Output("foo")); n > (CheckBufSize + 256) { + return false, fmt.Errorf("output too long: %d (%d-byte limit)", n, CheckBufSize) + } + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) } func TestCheckHTTPCritical(t *testing.T) { @@ -347,16 +388,19 @@ func TestCheckHTTPTimeout(t *testing.T) { check.Start() defer check.Stop() - time.Sleep(50 * time.Millisecond) + testutil.WaitForResult(func() (bool, error) { + // Should have at least 2 updates + if mock.updates["bar"] < 2 { + return false, fmt.Errorf("should have at least 2 updates %v", mock.updates) + } - // Should have at least 2 updates - if mock.updates["bar"] < 2 { - t.Fatalf("should have at least 2 updates %v", mock.updates) - } - - if mock.state["bar"] != structs.HealthCritical { - t.Fatalf("should be critical %v", mock.state) - } + if mock.state["bar"] != structs.HealthCritical { + return false, fmt.Errorf("should be critical %v", mock.state) + } + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) } func TestCheckHTTP_disablesKeepAlives(t *testing.T) { @@ -375,6 +419,134 @@ func TestCheckHTTP_disablesKeepAlives(t *testing.T) { } } +func TestCheckHTTP_TLSSkipVerify_defaultFalse(t *testing.T) { + check := &CheckHTTP{ + CheckID: "foo", + HTTP: "https://foo.bar/baz", + Interval: 10 * time.Second, + Logger: log.New(os.Stderr, "", log.LstdFlags), + } + + check.Start() + defer check.Stop() + + if check.httpClient.Transport.(*http.Transport).TLSClientConfig.InsecureSkipVerify { + t.Fatalf("should default to false") + } +} + +func TestCheckHTTP_TLSSkipVerify_true_pass(t *testing.T) { + server := mockTLSHTTPServer(200) + defer server.Close() + + mock := &MockNotify{ + state: make(map[types.CheckID]string), + updates: make(map[types.CheckID]int), + output: make(map[types.CheckID]string), + } + + check := &CheckHTTP{ + Notify: mock, + CheckID: types.CheckID("skipverify_true"), + HTTP: server.URL, + Interval: 5 * time.Millisecond, + Logger: log.New(os.Stderr, "", log.LstdFlags), + TLSSkipVerify: true, + } + + check.Start() + defer check.Stop() + + if !check.httpClient.Transport.(*http.Transport).TLSClientConfig.InsecureSkipVerify { + t.Fatalf("should be true") + } + + testutil.WaitForResult(func() (bool, error) { + if mock.state["skipverify_true"] != structs.HealthPassing { + return false, fmt.Errorf("should be passing %v", mock.state) + } + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) +} + +func TestCheckHTTP_TLSSkipVerify_true_fail(t *testing.T) { + server := mockTLSHTTPServer(500) + defer server.Close() + + mock := &MockNotify{ + state: make(map[types.CheckID]string), + updates: make(map[types.CheckID]int), + output: make(map[types.CheckID]string), + } + + check := &CheckHTTP{ + Notify: mock, + CheckID: types.CheckID("skipverify_true"), + HTTP: server.URL, + Interval: 5 * time.Millisecond, + Logger: log.New(os.Stderr, "", log.LstdFlags), + TLSSkipVerify: true, + } + check.Start() + defer check.Stop() + + if !check.httpClient.Transport.(*http.Transport).TLSClientConfig.InsecureSkipVerify { + t.Fatalf("should be true") + } + + testutil.WaitForResult(func() (bool, error) { + if mock.state["skipverify_true"] != structs.HealthCritical { + return false, fmt.Errorf("should be critical %v", mock.state) + } + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) +} + +func TestCheckHTTP_TLSSkipVerify_false(t *testing.T) { + server := mockTLSHTTPServer(200) + defer server.Close() + + mock := &MockNotify{ + state: make(map[types.CheckID]string), + updates: make(map[types.CheckID]int), + output: make(map[types.CheckID]string), + } + + check := &CheckHTTP{ + Notify: mock, + CheckID: types.CheckID("skipverify_false"), + HTTP: server.URL, + Interval: 100 * time.Millisecond, + Logger: log.New(os.Stderr, "", log.LstdFlags), + TLSSkipVerify: false, + } + + check.Start() + defer check.Stop() + + if check.httpClient.Transport.(*http.Transport).TLSClientConfig.InsecureSkipVerify { + t.Fatalf("should be false") + } + + testutil.WaitForResult(func() (bool, error) { + // This should fail due to an invalid SSL cert + if mock.state["skipverify_false"] != structs.HealthCritical { + return false, fmt.Errorf("should be critical %v", mock.state) + } + + if !strings.Contains(mock.output["skipverify_false"], "certificate signed by unknown authority") { + return false, fmt.Errorf("should fail with certificate error %v", mock.output) + } + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) +} + func mockTCPServer(network string) net.Listener { var ( addr string @@ -410,16 +582,19 @@ func expectTCPStatus(t *testing.T, tcp string, status string) { check.Start() defer check.Stop() - time.Sleep(50 * time.Millisecond) + testutil.WaitForResult(func() (bool, error) { + // Should have at least 2 updates + if mock.Updates("foo") < 2 { + return false, fmt.Errorf("should have 2 updates %v", mock.updates) + } - // Should have at least 2 updates - if mock.updates["foo"] < 2 { - t.Fatalf("should have 2 updates %v", mock.updates) - } - - if mock.state["foo"] != status { - t.Fatalf("should be %v %v", status, mock.state) - } + if mock.State("foo") != status { + return false, fmt.Errorf("should be %v %v", status, mock.state) + } + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) } func TestCheckTCPCritical(t *testing.T) { @@ -596,15 +771,15 @@ func expectDockerCheckStatus(t *testing.T, dockerClient DockerClient, status str time.Sleep(50 * time.Millisecond) // Should have at least 2 updates - if mock.updates["foo"] < 2 { + if mock.Updates("foo") < 2 { t.Fatalf("should have 2 updates %v", mock.updates) } - if mock.state["foo"] != status { + if mock.State("foo") != status { t.Fatalf("should be %v %v", status, mock.state) } - if mock.output["foo"] != output { + if mock.Output("foo") != output { t.Fatalf("should be %v %v", output, mock.output) } } @@ -706,7 +881,7 @@ func TestDockerCheckTruncateOutput(t *testing.T) { time.Sleep(50 * time.Millisecond) // Allow for extra bytes for the truncation message - if len(mock.output["foo"]) > CheckBufSize+100 { + if len(mock.Output("foo")) > CheckBufSize+100 { t.Fatalf("output size is too long") } diff --git a/command/agent/command.go b/command/agent/command.go index a417b02964..400b27153a 100644 --- a/command/agent/command.go +++ b/command/agent/command.go @@ -1,10 +1,14 @@ package agent import ( + "context" "flag" "fmt" "io" + "io/ioutil" + "log" "net" + "net/http" "os" "os/signal" "path/filepath" @@ -14,13 +18,25 @@ import ( "syscall" "time" + "golang.org/x/oauth2" + "golang.org/x/oauth2/google" + compute "google.golang.org/api/compute/v1" + "github.com/armon/go-metrics" "github.com/armon/go-metrics/circonus" "github.com/armon/go-metrics/datadog" + "github.com/aws/aws-sdk-go/aws" + "github.com/aws/aws-sdk-go/aws/credentials" + "github.com/aws/aws-sdk-go/aws/defaults" + "github.com/aws/aws-sdk-go/aws/ec2metadata" + "github.com/aws/aws-sdk-go/aws/session" + "github.com/aws/aws-sdk-go/service/ec2" + "github.com/hashicorp/consul/consul/structs" "github.com/hashicorp/consul/lib" + "github.com/hashicorp/consul/logger" "github.com/hashicorp/consul/watch" "github.com/hashicorp/go-checkpoint" - "github.com/hashicorp/go-syslog" + multierror "github.com/hashicorp/go-multierror" "github.com/hashicorp/logutils" scada "github.com/hashicorp/scada-client/scada" "github.com/mitchellh/cli" @@ -43,6 +59,7 @@ type Command struct { HumanVersion string Ui cli.Ui ShutdownCh <-chan struct{} + configReloadCh chan chan error args []string logFilter *logutils.LevelFilter logOutput io.Writer @@ -64,16 +81,19 @@ func (c *Command) readConfig() *Config { var dnsRecursors []string var dev bool var dcDeprecated string + var nodeMeta []string cmdFlags := flag.NewFlagSet("agent", flag.ContinueOnError) cmdFlags.Usage = func() { c.Ui.Output(c.Help()) } cmdFlags.Var((*AppendSliceValue)(&configFiles), "config-file", "json file to read config from") cmdFlags.Var((*AppendSliceValue)(&configFiles), "config-dir", "directory of json files to read") cmdFlags.Var((*AppendSliceValue)(&dnsRecursors), "recursor", "address of an upstream DNS server") + cmdFlags.Var((*AppendSliceValue)(&nodeMeta), "node-meta", "arbitrary metadata key/value pair") cmdFlags.BoolVar(&dev, "dev", false, "development server mode") cmdFlags.StringVar(&cmdConfig.LogLevel, "log-level", "", "log level") cmdFlags.StringVar(&cmdConfig.NodeName, "node", "", "node name") + cmdFlags.StringVar((*string)(&cmdConfig.NodeID), "node-id", "", "node ID") cmdFlags.StringVar(&dcDeprecated, "dc", "", "node datacenter (deprecated: use 'datacenter' instead)") cmdFlags.StringVar(&cmdConfig.Datacenter, "datacenter", "", "node datacenter") cmdFlags.StringVar(&cmdConfig.DataDir, "data-dir", "", "path to the data directory") @@ -89,6 +109,8 @@ func (c *Command) readConfig() *Config { cmdFlags.StringVar(&cmdConfig.ClientAddr, "client", "", "address to bind client listeners to (DNS, HTTP, HTTPS, RPC)") cmdFlags.StringVar(&cmdConfig.BindAddr, "bind", "", "address to bind server listeners to") + cmdFlags.StringVar(&cmdConfig.SerfWanBindAddr, "serf-wan-bind", "", "address to bind Serf WAN listeners to") + cmdFlags.StringVar(&cmdConfig.SerfLanBindAddr, "serf-lan-bind", "", "address to bind Serf LAN listeners to") cmdFlags.IntVar(&cmdConfig.Ports.HTTP, "http-port", 0, "http port to use") cmdFlags.IntVar(&cmdConfig.Ports.DNS, "dns-port", 0, "DNS port to use") cmdFlags.StringVar(&cmdConfig.AdvertiseAddr, "advertise", "", "address to advertise instead of bind addr") @@ -115,6 +137,20 @@ func (c *Command) readConfig() *Config { "number of retries for joining") cmdFlags.StringVar(&retryInterval, "retry-interval", "", "interval between join attempts") + cmdFlags.StringVar(&cmdConfig.RetryJoinEC2.Region, "retry-join-ec2-region", "", + "EC2 Region to discover servers in") + cmdFlags.StringVar(&cmdConfig.RetryJoinEC2.TagKey, "retry-join-ec2-tag-key", "", + "EC2 tag key to filter on for server discovery") + cmdFlags.StringVar(&cmdConfig.RetryJoinEC2.TagValue, "retry-join-ec2-tag-value", "", + "EC2 tag value to filter on for server discovery") + cmdFlags.StringVar(&cmdConfig.RetryJoinGCE.ProjectName, "retry-join-gce-project-name", "", + "Google Compute Engine project to discover servers in") + cmdFlags.StringVar(&cmdConfig.RetryJoinGCE.ZonePattern, "retry-join-gce-zone-pattern", "", + "Google Compute Engine region or zone to discover servers in (regex pattern)") + cmdFlags.StringVar(&cmdConfig.RetryJoinGCE.TagValue, "retry-join-gce-tag-value", "", + "Google Compute Engine tag value to filter on for server discovery") + cmdFlags.StringVar(&cmdConfig.RetryJoinGCE.CredentialsFile, "retry-join-gce-credentials-file", "", + "Path to credentials JSON file to use with Google Compute Engine") cmdFlags.Var((*AppendSliceValue)(&cmdConfig.RetryJoinWan), "retry-join-wan", "address of agent to join -wan on startup with retry") cmdFlags.IntVar(&cmdConfig.RetryMaxAttemptsWan, "retry-max-wan", 0, @@ -144,6 +180,14 @@ func (c *Command) readConfig() *Config { cmdConfig.RetryIntervalWan = dur } + if len(nodeMeta) > 0 { + cmdConfig.Meta = make(map[string]string) + for _, entry := range nodeMeta { + key, value := parseMetaPair(entry) + cmdConfig.Meta[key] = value + } + } + var config *Config if dev { config = DevConfig() @@ -188,10 +232,22 @@ func (c *Command) readConfig() *Config { config.SkipLeaveOnInt = Bool(config.Server) } - // Ensure we have a data directory - if config.DataDir == "" && !dev { - c.Ui.Error("Must specify data directory using -data-dir") - return nil + // Ensure we have a data directory if we are not in dev mode. + if !dev { + if config.DataDir == "" { + c.Ui.Error("Must specify data directory using -data-dir") + return nil + } + + if finfo, err := os.Stat(config.DataDir); err != nil { + if !os.IsNotExist(err) { + c.Ui.Error(fmt.Sprintf("Error getting data-dir: %s", err)) + return nil + } + } else if !finfo.IsDir() { + c.Ui.Error(fmt.Sprintf("The data-dir specified at %q is not a directory", config.DataDir)) + return nil + } } // Ensure all endpoints are unique @@ -259,6 +315,17 @@ func (c *Command) readConfig() *Config { return nil } + // If 'acl_datacenter' is set, ensure it is lowercased. + if config.ACLDatacenter != "" { + config.ACLDatacenter = strings.ToLower(config.ACLDatacenter) + + // Verify 'acl_datacenter' is valid + if !validDatacenter.MatchString(config.ACLDatacenter) { + c.Ui.Error("ACL datacenter must be alpha-numeric with underscores and hypens only") + return nil + } + } + // Only allow bootstrap mode when acting as a server if config.Bootstrap && !config.Server { c.Ui.Error("Bootstrap mode cannot be enabled when server mode is not enabled") @@ -271,6 +338,12 @@ func (c *Command) readConfig() *Config { return nil } + // Expect can only work when dev mode is off + if config.BootstrapExpect > 0 && config.DevMode { + c.Ui.Error("Expect mode cannot be enabled when dev mode is enabled") + return nil + } + // Expect & Bootstrap are mutually exclusive if config.BootstrapExpect != 0 && config.Bootstrap { c.Ui.Error("Bootstrap cannot be provided with an expected server count") @@ -310,6 +383,26 @@ func (c *Command) readConfig() *Config { c.Ui.Error("WARNING: Bootstrap mode enabled! Do not enable unless necessary") } + // Need both tag key and value for EC2 discovery + if config.RetryJoinEC2.TagKey != "" || config.RetryJoinEC2.TagValue != "" { + if config.RetryJoinEC2.TagKey == "" || config.RetryJoinEC2.TagValue == "" { + c.Ui.Error("tag key and value are both required for EC2 retry-join") + return nil + } + } + + // EC2 and GCE discovery are mutually exclusive + if config.RetryJoinEC2.TagKey != "" && config.RetryJoinEC2.TagValue != "" && config.RetryJoinGCE.TagValue != "" { + c.Ui.Error("EC2 and GCE discovery are mutually exclusive. Please provide one or the other.") + return nil + } + + // Verify the node metadata entries are valid + if err := structs.ValidateMetadata(config.Meta); err != nil { + c.Ui.Error(fmt.Sprintf("Failed to parse node metadata: %v", err)) + return nil + } + // Set the version info config.Revision = c.Revision config.Version = c.Version @@ -362,52 +455,216 @@ func (config *Config) verifyUniqueListeners() error { return nil } -// setupLoggers is used to setup the logGate, logWriter, and our logOutput -func (c *Command) setupLoggers(config *Config) (*GatedWriter, *logWriter, io.Writer) { - // Setup logging. First create the gated log writer, which will - // store logs until we're ready to show them. Then create the level - // filter, filtering logs of the specified level. - logGate := &GatedWriter{ - Writer: &cli.UiWriter{Ui: c.Ui}, - } +// discoverEc2Hosts searches an AWS region, returning a list of instance ips +// where EC2TagKey = EC2TagValue +func (c *Config) discoverEc2Hosts(logger *log.Logger) ([]string, error) { + config := c.RetryJoinEC2 - c.logFilter = LevelFilter() - c.logFilter.MinLevel = logutils.LogLevel(strings.ToUpper(config.LogLevel)) - c.logFilter.Writer = logGate - if !ValidateLevelFilter(c.logFilter.MinLevel, c.logFilter) { - c.Ui.Error(fmt.Sprintf( - "Invalid log level: %s. Valid log levels are: %v", - c.logFilter.MinLevel, c.logFilter.Levels)) - return nil, nil, nil - } - - // Check if syslog is enabled - var syslog io.Writer - if config.EnableSyslog { - l, err := gsyslog.NewLogger(gsyslog.LOG_NOTICE, config.SyslogFacility, "consul") + ec2meta := ec2metadata.New(session.New()) + if config.Region == "" { + logger.Printf("[INFO] agent: No EC2 region provided, querying instance metadata endpoint...") + identity, err := ec2meta.GetInstanceIdentityDocument() if err != nil { - c.Ui.Error(fmt.Sprintf("Syslog setup failed: %v", err)) - return nil, nil, nil + return nil, err } - syslog = &SyslogWrapper{l, c.logFilter} + config.Region = identity.Region } - // Create a log writer, and wrap a logOutput around it - logWriter := NewLogWriter(512) - var logOutput io.Writer - if syslog != nil { - logOutput = io.MultiWriter(c.logFilter, logWriter, syslog) - } else { - logOutput = io.MultiWriter(c.logFilter, logWriter) + awsConfig := &aws.Config{ + Region: &config.Region, + Credentials: credentials.NewChainCredentials( + []credentials.Provider{ + &credentials.StaticProvider{ + Value: credentials.Value{ + AccessKeyID: config.AccessKeyID, + SecretAccessKey: config.SecretAccessKey, + }, + }, + &credentials.EnvProvider{}, + &credentials.SharedCredentialsProvider{}, + defaults.RemoteCredProvider(*(defaults.Config()), defaults.Handlers()), + }), } - c.logOutput = logOutput - return logGate, logWriter, logOutput + + svc := ec2.New(session.New(), awsConfig) + + resp, err := svc.DescribeInstances(&ec2.DescribeInstancesInput{ + Filters: []*ec2.Filter{ + { + Name: aws.String("tag:" + config.TagKey), + Values: []*string{ + aws.String(config.TagValue), + }, + }, + }, + }) + + if err != nil { + return nil, err + } + + var servers []string + for i := range resp.Reservations { + for _, instance := range resp.Reservations[i].Instances { + // Terminated instances don't have the PrivateIpAddress field + if instance.PrivateIpAddress != nil { + servers = append(servers, *instance.PrivateIpAddress) + } + } + } + + return servers, nil +} + +// discoverGCEHosts searches a Google Compute Engine region, returning a list +// of instance ips that match the tags given in GCETags. +func (c *Config) discoverGCEHosts(logger *log.Logger) ([]string, error) { + config := c.RetryJoinGCE + ctx := oauth2.NoContext + var client *http.Client + var err error + + logger.Printf("[INFO] agent: Initializing GCE client") + if config.CredentialsFile != "" { + logger.Printf("[INFO] agent: Loading credentials from %s", config.CredentialsFile) + key, err := ioutil.ReadFile(config.CredentialsFile) + if err != nil { + return nil, err + } + jwtConfig, err := google.JWTConfigFromJSON(key, compute.ComputeScope) + if err != nil { + return nil, err + } + client = jwtConfig.Client(ctx) + } else { + logger.Printf("[INFO] agent: Using default credential chain") + client, err = google.DefaultClient(ctx, compute.ComputeScope) + if err != nil { + return nil, err + } + } + + computeService, err := compute.New(client) + if err != nil { + return nil, err + } + + if config.ProjectName == "" { + logger.Printf("[INFO] agent: No GCE project provided, will discover from metadata.") + config.ProjectName, err = gceProjectIDFromMetadata(logger) + if err != nil { + return nil, err + } + } else { + logger.Printf("[INFO] agent: Using pre-defined GCE project name: %s", config.ProjectName) + } + + zones, err := gceDiscoverZones(logger, ctx, computeService, config.ProjectName, config.ZonePattern) + if err != nil { + return nil, err + } + + logger.Printf("[INFO] agent: Discovering GCE hosts with tag %s in zones: %s", config.TagValue, strings.Join(zones, ", ")) + + var servers []string + for _, zone := range zones { + addresses, err := gceInstancesAddressesForZone(logger, ctx, computeService, config.ProjectName, zone, config.TagValue) + if err != nil { + return nil, err + } + if len(addresses) > 0 { + logger.Printf("[INFO] agent: Discovered %d instances in %s/%s: %v", len(addresses), config.ProjectName, zone, addresses) + } + servers = append(servers, addresses...) + } + + return servers, nil +} + +// gceProjectIDFromMetadata queries the metadata service on GCE to get the +// project ID (name) of an instance. +func gceProjectIDFromMetadata(logger *log.Logger) (string, error) { + logger.Printf("[INFO] agent: Attempting to discover GCE project from metadata.") + client := &http.Client{} + + req, err := http.NewRequest("GET", "http://metadata.google.internal/computeMetadata/v1/project/project-id", nil) + if err != nil { + return "", err + } + + req.Header.Add("Metadata-Flavor", "Google") + + resp, err := client.Do(req) + if err != nil { + return "", err + } + + defer resp.Body.Close() + + project, err := ioutil.ReadAll(resp.Body) + if err != nil { + return "", err + } + + logger.Printf("[INFO] agent: GCE project discovered as: %s", project) + return string(project), nil +} + +// gceDiscoverZones discovers a list of zones from a supplied zone pattern, or +// all of the zones available to a project. +func gceDiscoverZones(logger *log.Logger, ctx context.Context, computeService *compute.Service, project, pattern string) ([]string, error) { + var zones []string + + if pattern != "" { + logger.Printf("[INFO] agent: Discovering zones for project %s matching pattern: %s", project, pattern) + } else { + logger.Printf("[INFO] agent: Discovering all zones available to project: %s", project) + } + + call := computeService.Zones.List(project) + if pattern != "" { + call = call.Filter(fmt.Sprintf("name eq %s", pattern)) + } + + if err := call.Pages(ctx, func(page *compute.ZoneList) error { + for _, v := range page.Items { + zones = append(zones, v.Name) + } + return nil + }); err != nil { + return zones, err + } + + logger.Printf("[INFO] agent: Discovered GCE zones: %s", strings.Join(zones, ", ")) + return zones, nil +} + +// gceInstancesAddressesForZone locates all instances within a specific project +// and zone, matching the supplied tag. Only the private IP addresses are +// returned, but ID is also logged. +func gceInstancesAddressesForZone(logger *log.Logger, ctx context.Context, computeService *compute.Service, project, zone, tag string) ([]string, error) { + var addresses []string + call := computeService.Instances.List(project, zone) + if err := call.Pages(ctx, func(page *compute.InstanceList) error { + for _, v := range page.Items { + for _, t := range v.Tags.Items { + if t == tag && len(v.NetworkInterfaces) > 0 && v.NetworkInterfaces[0].NetworkIP != "" { + addresses = append(addresses, v.NetworkInterfaces[0].NetworkIP) + } + } + } + return nil + }); err != nil { + return addresses, err + } + + return addresses, nil } // setupAgent is used to start the agent and various interfaces -func (c *Command) setupAgent(config *Config, logOutput io.Writer, logWriter *logWriter) error { +func (c *Command) setupAgent(config *Config, logOutput io.Writer, logWriter *logger.LogWriter) error { c.Ui.Output("Starting Consul agent...") - agent, err := Create(config, logOutput) + agent, err := Create(config, logOutput, logWriter, c.configReloadCh) if err != nil { c.Ui.Error(fmt.Sprintf("Error starting agent: %s", err)) return err @@ -568,7 +825,9 @@ func (c *Command) startupJoinWan(config *Config) error { // retryJoin is used to handle retrying a join until it succeeds or all // retries are exhausted. func (c *Command) retryJoin(config *Config, errCh chan<- struct{}) { - if len(config.RetryJoin) == 0 { + ec2Enabled := config.RetryJoinEC2.TagKey != "" && config.RetryJoinEC2.TagValue != "" + + if len(config.RetryJoin) == 0 && !ec2Enabled && config.RetryJoinGCE.TagValue == "" { return } @@ -577,10 +836,32 @@ func (c *Command) retryJoin(config *Config, errCh chan<- struct{}) { attempt := 0 for { - n, err := c.agent.JoinLAN(config.RetryJoin) - if err == nil { - logger.Printf("[INFO] agent: Join completed. Synced with %d initial agents", n) - return + var servers []string + var err error + switch { + case ec2Enabled: + servers, err = config.discoverEc2Hosts(logger) + if err != nil { + logger.Printf("[ERROR] agent: Unable to query EC2 instances: %s", err) + } + logger.Printf("[INFO] agent: Discovered %d servers from EC2", len(servers)) + case config.RetryJoinGCE.TagValue != "": + servers, err = config.discoverGCEHosts(logger) + if err != nil { + logger.Printf("[ERROR] agent: Unable to query GCE insances: %s", err) + } + logger.Printf("[INFO] agent: Discovered %d servers from GCE", len(servers)) + } + + servers = append(servers, config.RetryJoin...) + if len(servers) == 0 { + err = fmt.Errorf("No servers to join") + } else { + n, err := c.agent.JoinLAN(servers) + if err == nil { + logger.Printf("[INFO] agent: Join completed. Synced with %d initial agents", n) + return + } } attempt++ @@ -659,10 +940,20 @@ func (c *Command) Run(args []string) int { } // Setup the log outputs - logGate, logWriter, logOutput := c.setupLoggers(config) - if logWriter == nil { + logConfig := &logger.Config{ + LogLevel: config.LogLevel, + EnableSyslog: config.EnableSyslog, + SyslogFacility: config.SyslogFacility, + } + logFilter, logGate, logWriter, logOutput, ok := logger.Setup(logConfig, c.Ui) + if !ok { return 1 } + c.logFilter = logFilter + c.logOutput = logOutput + + // Setup the channel for triggering config reloads + c.configReloadCh = make(chan chan error) /* Setup telemetry Aggregate on 10 second intervals for 1 minute. Expose the @@ -722,6 +1013,8 @@ func (c *Command) Run(args []string) int { cfg.CheckManager.Check.ForceMetricActivation = config.Telemetry.CirconusCheckForceMetricActivation cfg.CheckManager.Check.InstanceID = config.Telemetry.CirconusCheckInstanceID cfg.CheckManager.Check.SearchTag = config.Telemetry.CirconusCheckSearchTag + cfg.CheckManager.Check.DisplayName = config.Telemetry.CirconusCheckDisplayName + cfg.CheckManager.Check.Tags = config.Telemetry.CirconusCheckTags cfg.CheckManager.Broker.ID = config.Telemetry.CirconusBrokerID cfg.CheckManager.Broker.SelectTag = config.Telemetry.CirconusBrokerSelectTag @@ -729,10 +1022,6 @@ func (c *Command) Run(args []string) int { cfg.CheckManager.API.TokenApp = "consul" } - if cfg.CheckManager.Check.InstanceID == "" { - cfg.CheckManager.Check.InstanceID = fmt.Sprintf("%s:%s", config.NodeName, config.Datacenter) - } - if cfg.CheckManager.Check.SearchTag == "" { cfg.CheckManager.Check.SearchTag = "service:consul" } @@ -828,6 +1117,7 @@ func (c *Command) Run(args []string) int { c.Ui.Output("Consul agent running!") c.Ui.Info(fmt.Sprintf(" Version: '%s'", c.HumanVersion)) + c.Ui.Info(fmt.Sprintf(" Node ID: '%s'", config.NodeID)) c.Ui.Info(fmt.Sprintf(" Node name: '%s'", config.NodeName)) c.Ui.Info(fmt.Sprintf(" Datacenter: '%s'", config.Datacenter)) c.Ui.Info(fmt.Sprintf(" Server: %v (bootstrap: %v)", config.Server, config.Bootstrap)) @@ -860,15 +1150,20 @@ func (c *Command) Run(args []string) int { func (c *Command) handleSignals(config *Config, retryJoin <-chan struct{}, retryJoinWan <-chan struct{}) int { signalCh := make(chan os.Signal, 4) signal.Notify(signalCh, os.Interrupt, syscall.SIGTERM, syscall.SIGHUP) + signal.Notify(signalCh, os.Interrupt, syscall.SIGTERM, syscall.SIGHUP, syscall.SIGPIPE) // Wait for a signal WAIT: var sig os.Signal + var reloadErrCh chan error select { case s := <-signalCh: sig = s case <-c.rpcServer.ReloadCh(): sig = syscall.SIGHUP + case ch := <-c.configReloadCh: + sig = syscall.SIGHUP + reloadErrCh = ch case <-c.ShutdownCh: sig = os.Interrupt case <-retryJoin: @@ -881,11 +1176,24 @@ WAIT: } c.Ui.Output(fmt.Sprintf("Caught signal: %v", sig)) + // Skip SIGPIPE signals + if sig == syscall.SIGPIPE { + goto WAIT + } + // Check if this is a SIGHUP if sig == syscall.SIGHUP { - if conf := c.handleReload(config); conf != nil { + conf, err := c.handleReload(config) + if conf != nil { config = conf } + if err != nil { + c.Ui.Error(err.Error()) + } + // Send result back if reload was called via HTTP + if reloadErrCh != nil { + reloadErrCh <- err + } goto WAIT } @@ -925,20 +1233,21 @@ WAIT: } // handleReload is invoked when we should reload our configs, e.g. SIGHUP -func (c *Command) handleReload(config *Config) *Config { +func (c *Command) handleReload(config *Config) (*Config, error) { c.Ui.Output("Reloading configuration...") + var errs error newConf := c.readConfig() if newConf == nil { - c.Ui.Error(fmt.Sprintf("Failed to reload configs")) - return config + errs = multierror.Append(errs, fmt.Errorf("Failed to reload configs")) + return config, errs } // Change the log level minLevel := logutils.LogLevel(strings.ToUpper(newConf.LogLevel)) - if ValidateLevelFilter(minLevel, c.logFilter) { + if logger.ValidateLevelFilter(minLevel, c.logFilter) { c.logFilter.SetMinLevel(minLevel) } else { - c.Ui.Error(fmt.Sprintf( + errs = multierror.Append(fmt.Errorf( "Invalid log level: %s. Valid log levels are: %v", minLevel, c.logFilter.Levels)) @@ -954,31 +1263,36 @@ func (c *Command) handleReload(config *Config) *Config { snap := c.agent.snapshotCheckState() defer c.agent.restoreCheckState(snap) - // First unload all checks and services. This lets us begin the reload + // First unload all checks, services, and metadata. This lets us begin the reload // with a clean slate. if err := c.agent.unloadServices(); err != nil { - c.Ui.Error(fmt.Sprintf("Failed unloading services: %s", err)) - return nil + errs = multierror.Append(errs, fmt.Errorf("Failed unloading services: %s", err)) + return nil, errs } if err := c.agent.unloadChecks(); err != nil { - c.Ui.Error(fmt.Sprintf("Failed unloading checks: %s", err)) - return nil + errs = multierror.Append(errs, fmt.Errorf("Failed unloading checks: %s", err)) + return nil, errs } + c.agent.unloadMetadata() - // Reload services and check definitions. + // Reload service/check definitions and metadata. if err := c.agent.loadServices(newConf); err != nil { - c.Ui.Error(fmt.Sprintf("Failed reloading services: %s", err)) - return nil + errs = multierror.Append(errs, fmt.Errorf("Failed reloading services: %s", err)) + return nil, errs } if err := c.agent.loadChecks(newConf); err != nil { - c.Ui.Error(fmt.Sprintf("Failed reloading checks: %s", err)) - return nil + errs = multierror.Append(errs, fmt.Errorf("Failed reloading checks: %s", err)) + return nil, errs + } + if err := c.agent.loadMetadata(newConf); err != nil { + errs = multierror.Append(errs, fmt.Errorf("Failed reloading metadata: %s", err)) + return nil, errs } // Get the new client listener addr httpAddr, err := newConf.ClientListener(config.Addresses.HTTP, config.Ports.HTTP) if err != nil { - c.Ui.Error(fmt.Sprintf("Failed to determine HTTP address: %v", err)) + errs = multierror.Append(errs, fmt.Errorf("Failed to determine HTTP address: %v", err)) } // Deregister the old watches @@ -992,7 +1306,7 @@ func (c *Command) handleReload(config *Config) *Config { wp.Handler = makeWatchHandler(c.logOutput, wp.Exempt["handler"]) wp.LogOutput = c.logOutput if err := wp.Run(httpAddr.String()); err != nil { - c.Ui.Error(fmt.Sprintf("Error running watch: %v", err)) + errs = multierror.Append(errs, fmt.Errorf("Error running watch: %v", err)) } }(wp) } @@ -1002,12 +1316,12 @@ func (c *Command) handleReload(config *Config) *Config { newConf.AtlasToken != config.AtlasToken || newConf.AtlasEndpoint != config.AtlasEndpoint { if err := c.setupScadaConn(newConf); err != nil { - c.Ui.Error(fmt.Sprintf("Failed reloading SCADA client: %s", err)) - return nil + errs = multierror.Append(errs, fmt.Errorf("Failed reloading SCADA client: %s", err)) + return nil, errs } } - return newConf + return newConf, errs } // startScadaClient is used to start a new SCADA provider and listener, @@ -1026,6 +1340,10 @@ func (c *Command) setupScadaConn(config *Config) error { return nil } + c.Ui.Error("WARNING: The hosted version of Consul Enterprise will be deprecated " + + "on March 7th, 2017. For details, see " + + "https://atlas.hashicorp.com/help/consul/alternatives") + scadaConfig := &scada.Config{ Service: "consul", Version: fmt.Sprintf("%s%s", config.Version, config.VersionPrerelease), @@ -1066,54 +1384,86 @@ Usage: consul agent [options] Options: - -advertise=addr Sets the advertise address to use - -advertise-wan=addr Sets address to advertise on wan instead of advertise addr - -atlas=org/name Sets the Atlas infrastructure name, enables SCADA. - -atlas-join Enables auto-joining the Atlas cluster - -atlas-token=token Provides the Atlas API token - -atlas-endpoint=1.2.3.4 The address of the endpoint for Atlas integration. - -bootstrap Sets server to bootstrap mode - -bind=0.0.0.0 Sets the bind address for cluster communication - -http-port=8500 Sets the HTTP API port to listen on - -bootstrap-expect=0 Sets server to expect bootstrap mode. - -client=127.0.0.1 Sets the address to bind for client access. - This includes RPC, DNS, HTTP and HTTPS (if configured) - -config-file=foo Path to a JSON file to read configuration from. - This can be specified multiple times. - -config-dir=foo Path to a directory to read configuration files - from. This will read every file ending in ".json" - as configuration in this directory in alphabetical - order. This can be specified multiple times. - -data-dir=path Path to a data directory to store agent state - -dev Starts the agent in development mode. - -recursor=1.2.3.4 Address of an upstream DNS server. - Can be specified multiple times. - -dc=east-aws Datacenter of the agent (deprecated: use 'datacenter' instead). - -datacenter=east-aws Datacenter of the agent. - -encrypt=key Provides the gossip encryption key - -join=1.2.3.4 Address of an agent to join at start time. - Can be specified multiple times. - -join-wan=1.2.3.4 Address of an agent to join -wan at start time. - Can be specified multiple times. - -retry-join=1.2.3.4 Address of an agent to join at start time with - retries enabled. Can be specified multiple times. - -retry-interval=30s Time to wait between join attempts. - -retry-max=0 Maximum number of join attempts. Defaults to 0, which - will retry indefinitely. - -retry-join-wan=1.2.3.4 Address of an agent to join -wan at start time with - retries enabled. Can be specified multiple times. - -retry-interval-wan=30s Time to wait between join -wan attempts. - -retry-max-wan=0 Maximum number of join -wan attempts. Defaults to 0, which - will retry indefinitely. - -log-level=info Log level of the agent. - -node=hostname Name of this node. Must be unique in the cluster - -protocol=N Sets the protocol version. Defaults to latest. - -rejoin Ignores a previous leave and attempts to rejoin the cluster. - -server Switches agent to server mode. - -syslog Enables logging to syslog - -ui Enables the built-in static web UI server - -ui-dir=path Path to directory containing the Web UI resources - -pid-file=path Path to file to store agent PID + -advertise=addr Sets the advertise address to use + -advertise-wan=addr Sets address to advertise on wan instead of + advertise addr + -atlas=org/name Sets the Atlas infrastructure name, enables + SCADA. + -atlas-join Enables auto-joining the Atlas cluster + -atlas-token=token Provides the Atlas API token + -atlas-endpoint=1.2.3.4 The address of the endpoint for Atlas + integration. + -bootstrap Sets server to bootstrap mode + -bind=0.0.0.0 Sets the bind address for cluster + communication + -http-port=8500 Sets the HTTP API port to listen on + -bootstrap-expect=0 Sets server to expect bootstrap mode. + -client=127.0.0.1 Sets the address to bind for client access. + This includes RPC, DNS, HTTP and HTTPS (if + configured) + -config-file=foo Path to a JSON file to read configuration + from. This can be specified multiple times. + -config-dir=foo Path to a directory to read configuration + files from. This will read every file ending + in ".json" as configuration in this + directory in alphabetical order. This can be + specified multiple times. + -data-dir=path Path to a data directory to store agent + state + -dev Starts the agent in development mode. + -recursor=1.2.3.4 Address of an upstream DNS server. + Can be specified multiple times. + -dc=east-aws Datacenter of the agent (deprecated: use + 'datacenter' instead). + -datacenter=east-aws Datacenter of the agent. + -encrypt=key Provides the gossip encryption key + -join=1.2.3.4 Address of an agent to join at start time. + Can be specified multiple times. + -join-wan=1.2.3.4 Address of an agent to join -wan at start + time. Can be specified multiple times. + -retry-join=1.2.3.4 Address of an agent to join at start time + with retries enabled. Can be specified + multiple times. + -retry-interval=30s Time to wait between join attempts. + -retry-max=0 Maximum number of join attempts. Defaults to + 0, which will retry indefinitely. + -retry-join-ec2-region EC2 Region to use for discovering servers to + join. + -retry-join-ec2-tag-key EC2 tag key to filter on for server + discovery + -retry-join-ec2-tag-value EC2 tag value to filter on for server + discovery + -retry-join-gce-project-name Google Compute Engine project to discover + servers in + -retry-join-gce-zone-pattern Google Compute Engine region or zone to + discover servers in (regex pattern) + -retry-join-gce-tag-value Google Compute Engine tag value to filter + for server discovery + -retry-join-gce-credentials-file Path to credentials JSON file to use with + Google Compute Engine + -retry-join-wan=1.2.3.4 Address of an agent to join -wan at start + time with retries enabled. Can be specified + multiple times. + -retry-interval-wan=30s Time to wait between join -wan attempts. + -retry-max-wan=0 Maximum number of join -wan attempts. + Defaults to 0, which will retry + indefinitely. + -log-level=info Log level of the agent. + -node=hostname Name of this node. Must be unique in the + cluster + -node-meta=key:value An arbitrary metadata key/value pair for + this node. + This can be specified multiple times. + -protocol=N Sets the protocol version. Defaults to + latest. + -rejoin Ignores a previous leave and attempts to + rejoin the cluster. + -server Switches agent to server mode. + -syslog Enables logging to syslog + -ui Enables the built-in static web UI server + -ui-dir=path Path to directory containing the Web UI + resources + -pid-file=path Path to file to store agent PID ` return strings.TrimSpace(helpText) diff --git a/command/agent/command_test.go b/command/agent/command_test.go index 6eec51ab22..7a4d71b0bb 100644 --- a/command/agent/command_test.go +++ b/command/agent/command_test.go @@ -10,8 +10,10 @@ import ( "strings" "testing" + "github.com/hashicorp/consul/logger" "github.com/hashicorp/consul/testutil" "github.com/mitchellh/cli" + "reflect" ) func TestCommand_implements(t *testing.T) { @@ -126,6 +128,9 @@ func TestReadCliConfig(t *testing.T) { "-data-dir", tmpDir, "-node", `"a"`, "-advertise-wan", "1.2.3.4", + "-serf-wan-bind", "4.3.2.1", + "-serf-lan-bind", "4.3.2.2", + "-node-meta", "somekey:somevalue", }, ShutdownCh: shutdownCh, Ui: new(cli.MockUi), @@ -135,6 +140,36 @@ func TestReadCliConfig(t *testing.T) { if config.AdvertiseAddrWan != "1.2.3.4" { t.Fatalf("expected -advertise-addr-wan 1.2.3.4 got %s", config.AdvertiseAddrWan) } + if config.SerfWanBindAddr != "4.3.2.1" { + t.Fatalf("expected -serf-wan-bind 4.3.2.1 got %s", config.SerfWanBindAddr) + } + if config.SerfLanBindAddr != "4.3.2.2" { + t.Fatalf("expected -serf-lan-bind 4.3.2.2 got %s", config.SerfLanBindAddr) + } + if len(config.Meta) != 1 || config.Meta["somekey"] != "somevalue" { + t.Fatalf("expected somekey=somevalue, got %v", config.Meta) + } + } + + // Test multiple node meta flags + { + cmd := &Command{ + args: []string{ + "-data-dir", tmpDir, + "-node-meta", "somekey:somevalue", + "-node-meta", "otherkey:othervalue", + }, + ShutdownCh: shutdownCh, + Ui: new(cli.MockUi), + } + expected := map[string]string{ + "somekey": "somevalue", + "otherkey": "othervalue", + } + config := cmd.readConfig() + if !reflect.DeepEqual(config.Meta, expected) { + t.Fatalf("bad: %v %v", config.Meta, expected) + } } // Test LeaveOnTerm and SkipLeaveOnInt defaults for server mode @@ -266,6 +301,63 @@ func TestRetryJoinWanFail(t *testing.T) { } } +func TestDiscoverEC2Hosts(t *testing.T) { + if os.Getenv("AWS_REGION") == "" { + t.Skip("AWS_REGION not set, skipping") + } + + if os.Getenv("AWS_ACCESS_KEY_ID") == "" { + t.Skip("AWS_ACCESS_KEY_ID not set, skipping") + } + + if os.Getenv("AWS_SECRET_ACCESS_KEY") == "" { + t.Skip("AWS_SECRET_ACCESS_KEY not set, skipping") + } + + c := &Config{ + RetryJoinEC2: RetryJoinEC2{ + Region: os.Getenv("AWS_REGION"), + TagKey: "ConsulRole", + TagValue: "Server", + }, + } + + servers, err := c.discoverEc2Hosts(&log.Logger{}) + if err != nil { + t.Fatal(err) + } + if len(servers) != 3 { + t.Fatalf("bad: %v", servers) + } +} + +func TestDiscoverGCEHosts(t *testing.T) { + if os.Getenv("GCE_PROJECT") == "" { + t.Skip("GCE_PROJECT not set, skipping") + } + + if os.Getenv("GOOGLE_APPLICATION_CREDENTIALS") == "" && os.Getenv("GCE_CONFIG_CREDENTIALS") == "" { + t.Skip("GOOGLE_APPLICATION_CREDENTIALS or GCE_CONFIG_CREDENTIALS not set, skipping") + } + + c := &Config{ + RetryJoinGCE: RetryJoinGCE{ + ProjectName: os.Getenv("GCE_PROJECT"), + ZonePattern: os.Getenv("GCE_ZONE"), + TagValue: "consulrole-server", + CredentialsFile: os.Getenv("GCE_CONFIG_CREDENTIALS"), + }, + } + + servers, err := c.discoverGCEHosts(log.New(os.Stderr, "", log.LstdFlags)) + if err != nil { + t.Fatal(err) + } + if len(servers) != 3 { + t.Fatalf("bad: %v", servers) + } +} + func TestSetupAgent_RPCUnixSocket_FileExists(t *testing.T) { conf := nextConfig() tmpDir, err := ioutil.TempDir("", "consul") @@ -299,7 +391,7 @@ func TestSetupAgent_RPCUnixSocket_FileExists(t *testing.T) { Ui: new(cli.MockUi), } - logWriter := NewLogWriter(512) + logWriter := logger.NewLogWriter(512) logOutput := new(bytes.Buffer) // Ensure the server is created diff --git a/command/agent/config.go b/command/agent/config.go index 921949e874..ac72e023d9 100644 --- a/command/agent/config.go +++ b/command/agent/config.go @@ -14,6 +14,7 @@ import ( "github.com/hashicorp/consul/consul" "github.com/hashicorp/consul/lib" + "github.com/hashicorp/consul/types" "github.com/hashicorp/consul/watch" "github.com/mitchellh/mapstructure" ) @@ -118,6 +119,45 @@ type DNSConfig struct { RecursorTimeoutRaw string `mapstructure:"recursor_timeout" json:"-"` } +// RetryJoinEC2 is used to configure discovery of instances via Amazon's EC2 api +type RetryJoinEC2 struct { + // The AWS region to look for instances in + Region string `mapstructure:"region"` + + // The tag key and value to use when filtering instances + TagKey string `mapstructure:"tag_key"` + TagValue string `mapstructure:"tag_value"` + + // The AWS credentials to use for making requests to EC2 + AccessKeyID string `mapstructure:"access_key_id" json:"-"` + SecretAccessKey string `mapstructure:"secret_access_key" json:"-"` +} + +// RetryJoinGCE is used to configure discovery of instances via Google Compute +// Engine's API. +type RetryJoinGCE struct { + // The name of the project the instances reside in. + ProjectName string `mapstructure:"project_name"` + + // A regular expression (RE2) pattern for the zones you want to discover the instances in. + // Example: us-west1-.*, or us-(?west|east).*. + ZonePattern string `mapstructure:"zone_pattern"` + + // The tag value to search for when filtering instances. + TagValue string `mapstructure:"tag_value"` + + // A path to a JSON file with the service account credentials necessary to + // connect to GCE. If this is not defined, the following chain is respected: + // 1. A JSON file whose path is specified by the + // GOOGLE_APPLICATION_CREDENTIALS environment variable. + // 2. A JSON file in a location known to the gcloud command-line tool. + // On Windows, this is %APPDATA%/gcloud/application_default_credentials.json. + // On other systems, $HOME/.config/gcloud/application_default_credentials.json. + // 3. On Google Compute Engine, it fetches credentials from the metadata + // server. (In this final case any provided scopes are ignored.) + CredentialsFile string `mapstructure:"credentials_file"` +} + // Performance is used to tune the performance of Consul's subsystems. type Performance struct { // RaftMultiplier is an integer multiplier used to scale Raft timing @@ -199,6 +239,13 @@ type Telemetry struct { // narrow down the search results when neither a Submission URL or Check ID is provided. // Default: service:app (e.g. service:consul) CirconusCheckSearchTag string `mapstructure:"circonus_check_search_tag"` + // CirconusCheckTags is a comma separated list of tags to apply to the check. Note that + // the value of CirconusCheckSearchTag will always be added to the check. + // Default: none + CirconusCheckTags string `mapstructure:"circonus_check_tags"` + // CirconusCheckDisplayName is the name for the check which will be displayed in the Circonus UI. + // Default: value of CirconusCheckInstanceID + CirconusCheckDisplayName string `mapstructure:"circonus_check_display_name"` // CirconusBrokerID is an explicit broker to use when creating a new check. The numeric portion // of broker._cid. If metric management is enabled and neither a Submission URL nor Check ID // is provided, an attempt will be made to search for an existing check using Instance ID and @@ -266,6 +313,10 @@ type Config struct { // LogLevel is the level of the logs to putout LogLevel string `mapstructure:"log_level"` + // Node ID is a unique ID for this node across space and time. Defaults + // to a randomly-generated ID that persists in the data-dir. + NodeID types.NodeID `mapstructure:"node_id"` + // Node name is the name we use to advertise. Defaults to hostname. NodeName string `mapstructure:"node_name"` @@ -279,6 +330,18 @@ type Config struct { // services (Gossip, Server RPC) BindAddr string `mapstructure:"bind_addr"` + // SerfWanBindAddr is used to control the address we bind to. + // If not specified, the first private IP we find is used. + // This controls the address we use for cluster facing + // services (Gossip) Serf + SerfWanBindAddr string `mapstructure:"serf_wan_bind"` + + // SerfLanBindAddr is used to control the address we bind to. + // If not specified, the first private IP we find is used. + // This controls the address we use for cluster facing + // services (Gossip) Serf + SerfLanBindAddr string `mapstructure:"serf_lan_bind"` + // AdvertiseAddr is the address we use for advertising our Serf, // and Consul RPC IP. If not specified, bind address is used. AdvertiseAddr string `mapstructure:"advertise_addr"` @@ -309,6 +372,11 @@ type Config struct { // they are configured with TranslateWanAddrs set to true. TaggedAddresses map[string]string + // Node metadata key/value pairs. These are excluded from JSON output + // because they can be reloaded and might be stale when shown from the + // config instead of the local state. + Meta map[string]string `mapstructure:"node_meta" json:"-"` + // LeaveOnTerm controls if Serf does a graceful leave when receiving // the TERM signal. Defaults true on clients, false on servers. This can // be changed on reload. @@ -361,6 +429,9 @@ type Config struct { // provide matches the certificate ServerName string `mapstructure:"server_name"` + // TLSMinVersion is used to set the minimum TLS version used for TLS connections. + TLSMinVersion string `mapstructure:"tls_min_version"` + // StartJoin is a list of addresses to attempt to join when the // agent starts. If Serf is unable to communicate with any of these // addresses, then the agent will error and exit. @@ -385,6 +456,12 @@ type Config struct { RetryInterval time.Duration `mapstructure:"-" json:"-"` RetryIntervalRaw string `mapstructure:"retry_interval"` + // RetryJoinEC2 configuration + RetryJoinEC2 RetryJoinEC2 `mapstructure:"retry_join_ec2"` + + // The config struct for the GCE tag server discovery feature. + RetryJoinGCE RetryJoinGCE `mapstructure:"retry_join_gce"` + // RetryJoinWan is a list of addresses to join -wan with retry enabled. RetryJoinWan []string `mapstructure:"retry_join_wan"` @@ -452,6 +529,16 @@ type Config struct { // token is not provided. If not configured the 'anonymous' token is used. ACLToken string `mapstructure:"acl_token" json:"-"` + // ACLAgentMasterToken is a special token that has full read and write + // privileges for this agent, and can be used to call agent endpoints + // when no servers are available. + ACLAgentMasterToken string `mapstructure:"acl_agent_master_token" json:"-"` + + // ACLAgentToken is the default token used to make requests for the agent + // itself, such as for registering itself with the catalog. If not + // configured, the 'acl_token' will be used. + ACLAgentToken string `mapstructure:"acl_agent_token" json:"-"` + // ACLMasterToken is used to bootstrap the ACL system. It should be specified // on the servers in the ACLDatacenter. When the leader comes online, it ensures // that the Master token is available. This provides the initial token. @@ -473,9 +560,15 @@ type Config struct { // white-lists. ACLDefaultPolicy string `mapstructure:"acl_default_policy"` + // ACLDisabledTTL is used by clients to determine how long they will + // wait to check again with the servers if they discover ACLs are not + // enabled. + ACLDisabledTTL time.Duration `mapstructure:"-"` + // ACLDownPolicy is used to control the ACL interaction when we cannot // reach the ACLDatacenter and the token is not in the cache. // There are two modes: + // * allow - Allow all requests // * deny - Deny all requests // * extend-cache - Ignore the cache expiration, and allow cached // ACL's to be used to service requests. This @@ -489,6 +582,10 @@ type Config struct { // other than the ACLDatacenter. ACLReplicationToken string `mapstructure:"acl_replication_token" json:"-"` + // ACLEnforceVersion8 is used to gate a set of ACL policy features that + // are opt-in prior to Consul 0.8 and opt-out in Consul 0.8 and later. + ACLEnforceVersion8 *bool `mapstructure:"acl_enforce_version_8"` + // Watches are used to monitor various endpoints and to invoke a // handler to act appropriately. These are managed entirely in the // agent layer using the standard APIs. @@ -648,12 +745,13 @@ func DefaultConfig() *Config { DNSConfig: DNSConfig{ AllowStale: Bool(true), UDPAnswerLimit: 3, - MaxStale: 5 * time.Second, + MaxStale: 10 * 365 * 24 * time.Hour, RecursorTimeout: 2 * time.Second, }, Telemetry: Telemetry{ StatsitePrefix: "consul", }, + Meta: make(map[string]string), SyslogFacility: "LOCAL0", Protocol: consul.ProtocolVersion2Compatible, CheckUpdateInterval: 5 * time.Minute, @@ -669,11 +767,15 @@ func DefaultConfig() *Config { SyncCoordinateRateTarget: 64.0, // updates / second SyncCoordinateIntervalMin: 15 * time.Second, - ACLTTL: 30 * time.Second, - ACLDownPolicy: "extend-cache", - ACLDefaultPolicy: "allow", - RetryInterval: 30 * time.Second, - RetryIntervalWan: 30 * time.Second, + ACLTTL: 30 * time.Second, + ACLDownPolicy: "extend-cache", + ACLDefaultPolicy: "allow", + ACLDisabledTTL: 120 * time.Second, + ACLEnforceVersion8: Bool(false), + RetryInterval: 30 * time.Second, + RetryIntervalWan: 30 * time.Second, + + TLSMinVersion: "tls10", } } @@ -715,6 +817,18 @@ func (c *Config) ClientListener(override string, port int) (net.Addr, error) { return &net.TCPAddr{IP: ip, Port: port}, nil } +// GetTokenForAgent returns the token the agent should use for its own internal +// operations, such as registering itself with the catalog. +func (c *Config) GetTokenForAgent() string { + if c.ACLAgentToken != "" { + return c.ACLAgentToken + } else if c.ACLToken != "" { + return c.ACLToken + } else { + return "" + } +} + // DecodeConfig reads the configuration from the given reader in JSON // format and decodes it into a proper Config structure. func DecodeConfig(r io.Reader) (*Config, error) { @@ -931,6 +1045,12 @@ func DecodeConfig(r io.Reader) (*Config, error) { } if result.AdvertiseAddrs.SerfLanRaw != "" { + ipStr, err := parseSingleIPTemplate(result.AdvertiseAddrs.SerfLanRaw) + if err != nil { + return nil, fmt.Errorf("Serf Advertise LAN address resolution failed: %v", err) + } + result.AdvertiseAddrs.SerfLanRaw = ipStr + addr, err := net.ResolveTCPAddr("tcp", result.AdvertiseAddrs.SerfLanRaw) if err != nil { return nil, fmt.Errorf("AdvertiseAddrs.SerfLan is invalid: %v", err) @@ -939,6 +1059,12 @@ func DecodeConfig(r io.Reader) (*Config, error) { } if result.AdvertiseAddrs.SerfWanRaw != "" { + ipStr, err := parseSingleIPTemplate(result.AdvertiseAddrs.SerfWanRaw) + if err != nil { + return nil, fmt.Errorf("Serf Advertise WAN address resolution failed: %v", err) + } + result.AdvertiseAddrs.SerfWanRaw = ipStr + addr, err := net.ResolveTCPAddr("tcp", result.AdvertiseAddrs.SerfWanRaw) if err != nil { return nil, fmt.Errorf("AdvertiseAddrs.SerfWan is invalid: %v", err) @@ -947,6 +1073,12 @@ func DecodeConfig(r io.Reader) (*Config, error) { } if result.AdvertiseAddrs.RPCRaw != "" { + ipStr, err := parseSingleIPTemplate(result.AdvertiseAddrs.RPCRaw) + if err != nil { + return nil, fmt.Errorf("RPC Advertise address resolution failed: %v", err) + } + result.AdvertiseAddrs.RPCRaw = ipStr + addr, err := net.ResolveTCPAddr("tcp", result.AdvertiseAddrs.RPCRaw) if err != nil { return nil, fmt.Errorf("AdvertiseAddrs.RPC is invalid: %v", err) @@ -1037,6 +1169,9 @@ func FixupCheckType(raw interface{}) error { case "docker_container_id": rawMap["DockerContainerID"] = v delete(rawMap, k) + case "tls_skip_verify": + rawMap["TLSSkipVerify"] = v + delete(rawMap, k) } } @@ -1148,6 +1283,9 @@ func MergeConfig(a, b *Config) *Config { if b.Protocol > 0 { result.Protocol = b.Protocol } + if b.NodeID != "" { + result.NodeID = b.NodeID + } if b.NodeName != "" { result.NodeName = b.NodeName } @@ -1163,6 +1301,12 @@ func MergeConfig(a, b *Config) *Config { if b.AdvertiseAddrWan != "" { result.AdvertiseAddrWan = b.AdvertiseAddrWan } + if b.SerfWanBindAddr != "" { + result.SerfWanBindAddr = b.SerfWanBindAddr + } + if b.SerfLanBindAddr != "" { + result.SerfLanBindAddr = b.SerfLanBindAddr + } if b.TranslateWanAddrs == true { result.TranslateWanAddrs = true } @@ -1232,6 +1376,12 @@ func MergeConfig(a, b *Config) *Config { if b.Telemetry.CirconusCheckSearchTag != "" { result.Telemetry.CirconusCheckSearchTag = b.Telemetry.CirconusCheckSearchTag } + if b.Telemetry.CirconusCheckDisplayName != "" { + result.Telemetry.CirconusCheckDisplayName = b.Telemetry.CirconusCheckDisplayName + } + if b.Telemetry.CirconusCheckTags != "" { + result.Telemetry.CirconusCheckTags = b.Telemetry.CirconusCheckTags + } if b.Telemetry.CirconusBrokerID != "" { result.Telemetry.CirconusBrokerID = b.Telemetry.CirconusBrokerID } @@ -1262,6 +1412,9 @@ func MergeConfig(a, b *Config) *Config { if b.ServerName != "" { result.ServerName = b.ServerName } + if b.TLSMinVersion != "" { + result.TLSMinVersion = b.TLSMinVersion + } if b.Checks != nil { result.Checks = append(result.Checks, b.Checks...) } @@ -1322,6 +1475,33 @@ func MergeConfig(a, b *Config) *Config { if b.RetryInterval != 0 { result.RetryInterval = b.RetryInterval } + if b.RetryJoinEC2.AccessKeyID != "" { + result.RetryJoinEC2.AccessKeyID = b.RetryJoinEC2.AccessKeyID + } + if b.RetryJoinEC2.SecretAccessKey != "" { + result.RetryJoinEC2.SecretAccessKey = b.RetryJoinEC2.SecretAccessKey + } + if b.RetryJoinEC2.Region != "" { + result.RetryJoinEC2.Region = b.RetryJoinEC2.Region + } + if b.RetryJoinEC2.TagKey != "" { + result.RetryJoinEC2.TagKey = b.RetryJoinEC2.TagKey + } + if b.RetryJoinEC2.TagValue != "" { + result.RetryJoinEC2.TagValue = b.RetryJoinEC2.TagValue + } + if b.RetryJoinGCE.ProjectName != "" { + result.RetryJoinGCE.ProjectName = b.RetryJoinGCE.ProjectName + } + if b.RetryJoinGCE.ZonePattern != "" { + result.RetryJoinGCE.ZonePattern = b.RetryJoinGCE.ZonePattern + } + if b.RetryJoinGCE.TagValue != "" { + result.RetryJoinGCE.TagValue = b.RetryJoinGCE.TagValue + } + if b.RetryJoinGCE.CredentialsFile != "" { + result.RetryJoinGCE.CredentialsFile = b.RetryJoinGCE.CredentialsFile + } if b.RetryMaxAttemptsWan != 0 { result.RetryMaxAttemptsWan = b.RetryMaxAttemptsWan } @@ -1377,6 +1557,12 @@ func MergeConfig(a, b *Config) *Config { if b.ACLToken != "" { result.ACLToken = b.ACLToken } + if b.ACLAgentMasterToken != "" { + result.ACLAgentMasterToken = b.ACLAgentMasterToken + } + if b.ACLAgentToken != "" { + result.ACLAgentToken = b.ACLAgentToken + } if b.ACLMasterToken != "" { result.ACLMasterToken = b.ACLMasterToken } @@ -1396,6 +1582,9 @@ func MergeConfig(a, b *Config) *Config { if b.ACLReplicationToken != "" { result.ACLReplicationToken = b.ACLReplicationToken } + if b.ACLEnforceVersion8 != nil { + result.ACLEnforceVersion8 = b.ACLEnforceVersion8 + } if len(b.Watches) != 0 { result.Watches = append(result.Watches, b.Watches...) } @@ -1450,6 +1639,14 @@ func MergeConfig(a, b *Config) *Config { result.HTTPAPIResponseHeaders[field] = value } } + if len(b.Meta) != 0 { + if result.Meta == nil { + result.Meta = make(map[string]string) + } + for field, value := range b.Meta { + result.Meta[field] = value + } + } // Copy the start join addresses result.StartJoin = make([]string, 0, len(a.StartJoin)+len(b.StartJoin)) diff --git a/command/agent/config_test.go b/command/agent/config_test.go index f0aaa2cf02..4c9addc484 100644 --- a/command/agent/config_test.go +++ b/command/agent/config_test.go @@ -60,7 +60,7 @@ func TestDecodeConfig(t *testing.T) { } // Without a protocol - input = `{"node_name": "foo", "datacenter": "dc2"}` + input = `{"node_id": "bar", "node_name": "foo", "datacenter": "dc2"}` config, err = DecodeConfig(bytes.NewReader([]byte(input))) if err != nil { t.Fatalf("err: %s", err) @@ -70,6 +70,10 @@ func TestDecodeConfig(t *testing.T) { t.Fatalf("bad: %#v", config) } + if config.NodeID != "bar" { + t.Fatalf("bad: %#v", config) + } + if config.Datacenter != "dc2" { t.Fatalf("bad: %#v", config) } @@ -179,8 +183,9 @@ func TestDecodeConfig(t *testing.T) { } // Server addrs - input = `{"ports": {"server": 8000}, "bind_addr": "127.0.0.2", "advertise_addr": "127.0.0.3"}` + input = `{"ports": {"server": 8000}, "bind_addr": "127.0.0.2", "advertise_addr": "127.0.0.3", "serf_lan_bind": "127.0.0.4", "serf_wan_bind": "52.54.55.56"}` config, err = DecodeConfig(bytes.NewReader([]byte(input))) + if err != nil { t.Fatalf("err: %s", err) } @@ -189,6 +194,14 @@ func TestDecodeConfig(t *testing.T) { t.Fatalf("bad: %#v", config) } + if config.SerfWanBindAddr != "52.54.55.56" { + t.Fatalf("bad: %#v", config) + } + + if config.SerfLanBindAddr != "127.0.0.4" { + t.Fatalf("bad: %#v", config) + } + if config.AdvertiseAddr != "127.0.0.3" { t.Fatalf("bad: %#v", config) } @@ -272,6 +285,19 @@ func TestDecodeConfig(t *testing.T) { t.Fatalf("bad: %#v", config) } + // Node metadata fields + input = `{"node_meta": {"thing1": "1", "thing2": "2"}}` + config, err = DecodeConfig(bytes.NewReader([]byte(input))) + if err != nil { + t.Fatalf("err: %s", err) + } + if v, ok := config.Meta["thing1"]; !ok || v != "1" { + t.Fatalf("bad: %#v", config) + } + if v, ok := config.Meta["thing2"]; !ok || v != "2" { + t.Fatalf("bad: %#v", config) + } + // leave_on_terminate input = `{"leave_on_terminate": true}` config, err = DecodeConfig(bytes.NewReader([]byte(input))) @@ -306,7 +332,7 @@ func TestDecodeConfig(t *testing.T) { } // TLS - input = `{"verify_incoming": true, "verify_outgoing": true, "verify_server_hostname": true}` + input = `{"verify_incoming": true, "verify_outgoing": true, "verify_server_hostname": true, "tls_min_version": "tls12"}` config, err = DecodeConfig(bytes.NewReader([]byte(input))) if err != nil { t.Fatalf("err: %s", err) @@ -324,6 +350,10 @@ func TestDecodeConfig(t *testing.T) { t.Fatalf("bad: %#v", config) } + if config.TLSMinVersion != "tls12" { + t.Fatalf("bad: %#v", config) + } + // TLS keys input = `{"ca_file": "my/ca/file", "cert_file": "my.cert", "key_file": "key.pem", "server_name": "example.com"}` config, err = DecodeConfig(bytes.NewReader([]byte(input))) @@ -634,7 +664,8 @@ func TestDecodeConfig(t *testing.T) { } // ACLs - input = `{"acl_token": "1234", "acl_datacenter": "dc2", + input = `{"acl_token": "1111", "acl_agent_master_token": "2222", + "acl_agent_token": "3333", "acl_datacenter": "dc2", "acl_ttl": "60s", "acl_down_policy": "deny", "acl_default_policy": "deny", "acl_master_token": "2345", "acl_replication_token": "8675309"}` @@ -643,7 +674,13 @@ func TestDecodeConfig(t *testing.T) { t.Fatalf("err: %s", err) } - if config.ACLToken != "1234" { + if config.ACLToken != "1111" { + t.Fatalf("bad: %#v", config) + } + if config.ACLAgentMasterToken != "2222" { + t.Fatalf("bad: %#v", config) + } + if config.ACLAgentToken != "3333" { t.Fatalf("bad: %#v", config) } if config.ACLMasterToken != "2345" { @@ -665,6 +702,48 @@ func TestDecodeConfig(t *testing.T) { t.Fatalf("bad: %#v", config) } + // ACL token precedence. + input = `{}` + config, err = DecodeConfig(bytes.NewReader([]byte(input))) + if err != nil { + t.Fatalf("err: %s", err) + } + if token := config.GetTokenForAgent(); token != "" { + t.Fatalf("bad: %s", token) + } + input = `{"acl_token": "hello"}` + config, err = DecodeConfig(bytes.NewReader([]byte(input))) + if err != nil { + t.Fatalf("err: %s", err) + } + if token := config.GetTokenForAgent(); token != "hello" { + t.Fatalf("bad: %s", token) + } + input = `{"acl_agent_token": "world", "acl_token": "hello"}` + config, err = DecodeConfig(bytes.NewReader([]byte(input))) + if err != nil { + t.Fatalf("err: %s", err) + } + if token := config.GetTokenForAgent(); token != "world" { + t.Fatalf("bad: %s", token) + } + + // ACL flag for Consul version 0.8 features (broken out since we will + // eventually remove this). We first verify this is opt-out. + config = DefaultConfig() + if *config.ACLEnforceVersion8 != false { + t.Fatalf("bad: %#v", config) + } + + input = `{"acl_enforce_version_8": true}` + config, err = DecodeConfig(bytes.NewReader([]byte(input))) + if err != nil { + t.Fatalf("err: %s", err) + } + if *config.ACLEnforceVersion8 != true { + t.Fatalf("bad: %#v", config) + } + // Watches input = `{"watches": [{"type":"keyprefix", "prefix":"foo/", "handler":"foobar"}]}` config, err = DecodeConfig(bytes.NewReader([]byte(input))) @@ -749,6 +828,7 @@ func TestDecodeConfig(t *testing.T) { "circonus_submission_url": "https://submit.host.bar:123/one/two/three", "circonus_check_id": "12345", "circonus_check_force_metric_activation": "true", "circonus_check_instance_id": "a:b", "circonus_check_search_tag": "c:d", + "circonus_check_display_name": "node1:consul", "circonus_check_tags": "cat1:tag1,cat2:tag2", "circonus_broker_id": "6789", "circonus_broker_select_tag": "e:f"} }` config, err = DecodeConfig(bytes.NewReader([]byte(input))) if err != nil { @@ -781,6 +861,12 @@ func TestDecodeConfig(t *testing.T) { if config.Telemetry.CirconusCheckSearchTag != "c:d" { t.Fatalf("bad: %#v", config) } + if config.Telemetry.CirconusCheckDisplayName != "node1:consul" { + t.Fatalf("bad: %#v", config) + } + if config.Telemetry.CirconusCheckTags != "cat1:tag1,cat2:tag2" { + t.Fatalf("bad: %#v", config) + } if config.Telemetry.CirconusBrokerID != "6789" { t.Fatalf("bad: %#v", config) } @@ -939,6 +1025,62 @@ func TestDecodeConfig_invalidKeys(t *testing.T) { } } +func TestRetryJoinEC2(t *testing.T) { + input := `{"retry_join_ec2": { + "region": "us-east-1", + "tag_key": "ConsulRole", + "tag_value": "Server", + "access_key_id": "asdf", + "secret_access_key": "qwerty" + }}` + config, err := DecodeConfig(bytes.NewReader([]byte(input))) + if err != nil { + t.Fatalf("err: %s", err) + } + + if config.RetryJoinEC2.Region != "us-east-1" { + t.Fatalf("bad: %#v", config) + } + if config.RetryJoinEC2.TagKey != "ConsulRole" { + t.Fatalf("bad: %#v", config) + } + if config.RetryJoinEC2.TagValue != "Server" { + t.Fatalf("bad: %#v", config) + } + if config.RetryJoinEC2.AccessKeyID != "asdf" { + t.Fatalf("bad: %#v", config) + } + if config.RetryJoinEC2.SecretAccessKey != "qwerty" { + t.Fatalf("bad: %#v", config) + } +} + +func TestRetryJoinGCE(t *testing.T) { + input := `{"retry_join_gce": { + "project_name": "test-project", + "zone_pattern": "us-west1-a", + "tag_value": "consul-server", + "credentials_file": "/path/to/foo.json" + }}` + config, err := DecodeConfig(bytes.NewReader([]byte(input))) + if err != nil { + t.Fatalf("err: %s", err) + } + + if config.RetryJoinGCE.ProjectName != "test-project" { + t.Fatalf("bad: %#v", config) + } + if config.RetryJoinGCE.ZonePattern != "us-west1-a" { + t.Fatalf("bad: %#v", config) + } + if config.RetryJoinGCE.TagValue != "consul-server" { + t.Fatalf("bad: %#v", config) + } + if config.RetryJoinGCE.CredentialsFile != "/path/to/foo.json" { + t.Fatalf("bad: %#v", config) + } +} + func TestDecodeConfig_Performance(t *testing.T) { input := `{"performance": { "raft_multiplier": 3 }}` config, err := DecodeConfig(bytes.NewReader([]byte(input))) @@ -1136,6 +1278,23 @@ func TestDecodeConfig_Checks(t *testing.T) { "interval": "10s", "timeout": "100ms", "service_id": "elasticsearch" + }, + { + "id": "chk5", + "name": "service:sslservice", + "HTTP": "https://sslservice/status", + "interval": "10s", + "timeout": "100ms", + "service_id": "sslservice" + }, + { + "id": "chk6", + "name": "service:insecure-sslservice", + "HTTP": "https://insecure-sslservice/status", + "interval": "10s", + "timeout": "100ms", + "service_id": "insecure-sslservice", + "tls_skip_verify": true } ] }` @@ -1182,6 +1341,28 @@ func TestDecodeConfig_Checks(t *testing.T) { Timeout: 100 * time.Millisecond, }, }, + &CheckDefinition{ + ID: "chk5", + Name: "service:sslservice", + ServiceID: "sslservice", + CheckType: CheckType{ + HTTP: "https://sslservice/status", + Interval: 10 * time.Second, + Timeout: 100 * time.Millisecond, + TLSSkipVerify: false, + }, + }, + &CheckDefinition{ + ID: "chk6", + Name: "service:insecure-sslservice", + ServiceID: "insecure-sslservice", + CheckType: CheckType{ + HTTP: "https://insecure-sslservice/status", + Interval: 10 * time.Second, + Timeout: 100 * time.Millisecond, + TLSSkipVerify: true, + }, + }, }, } @@ -1359,6 +1540,7 @@ func TestMergeConfig(t *testing.T) { DataDir: "/tmp/foo", Domain: "basic", LogLevel: "debug", + NodeID: "bar", NodeName: "foo", ClientAddr: "127.0.0.1", BindAddr: "127.0.0.1", @@ -1370,6 +1552,13 @@ func TestMergeConfig(t *testing.T) { CheckUpdateIntervalRaw: "8m", RetryIntervalRaw: "10s", RetryIntervalWanRaw: "10s", + RetryJoinEC2: RetryJoinEC2{ + Region: "us-east-1", + TagKey: "Key1", + TagValue: "Value1", + AccessKeyID: "nope", + SecretAccessKey: "nope", + }, Telemetry: Telemetry{ DisableHostname: false, StatsdAddr: "nope", @@ -1378,6 +1567,9 @@ func TestMergeConfig(t *testing.T) { DogStatsdAddr: "nope", DogStatsdTags: []string{"nope"}, }, + Meta: map[string]string{ + "key": "value1", + }, } b := &Config{ @@ -1403,6 +1595,7 @@ func TestMergeConfig(t *testing.T) { }, Domain: "other", LogLevel: "info", + NodeID: "bar", NodeName: "baz", ClientAddr: "127.0.0.2", BindAddr: "127.0.0.2", @@ -1432,6 +1625,7 @@ func TestMergeConfig(t *testing.T) { CAFile: "test/ca.pem", CertFile: "test/cert.pem", KeyFile: "test/key.pem", + TLSMinVersion: "tls12", Checks: []*CheckDefinition{nil}, Services: []*ServiceDefinition{nil}, StartJoin: []string{"1.1.1.1"}, @@ -1452,14 +1646,17 @@ func TestMergeConfig(t *testing.T) { ReconnectTimeoutWan: 36 * time.Hour, CheckUpdateInterval: 8 * time.Minute, CheckUpdateIntervalRaw: "8m", - ACLToken: "1234", - ACLMasterToken: "2345", + ACLToken: "1111", + ACLAgentMasterToken: "2222", + ACLAgentToken: "3333", + ACLMasterToken: "4444", ACLDatacenter: "dc2", ACLTTL: 15 * time.Second, ACLTTLRaw: "15s", ACLDownPolicy: "deny", ACLDefaultPolicy: "deny", ACLReplicationToken: "8765309", + ACLEnforceVersion8: Bool(true), Watches: []map[string]interface{}{ map[string]interface{}{ "type": "keyprefix", @@ -1476,6 +1673,9 @@ func TestMergeConfig(t *testing.T) { DogStatsdAddr: "127.0.0.1:7254", DogStatsdTags: []string{"tag_1:val_1", "tag_2:val_2"}, }, + Meta: map[string]string{ + "key": "value2", + }, DisableUpdateCheck: true, DisableAnonymousSignature: true, HTTPAPIResponseHeaders: map[string]string{ @@ -1492,8 +1692,15 @@ func TestMergeConfig(t *testing.T) { AtlasToken: "123456789", AtlasACLToken: "abcdefgh", AtlasJoin: true, - SessionTTLMinRaw: "1000s", - SessionTTLMin: 1000 * time.Second, + RetryJoinEC2: RetryJoinEC2{ + Region: "us-east-2", + TagKey: "Key2", + TagValue: "Value2", + AccessKeyID: "foo", + SecretAccessKey: "bar", + }, + SessionTTLMinRaw: "1000s", + SessionTTLMin: 1000 * time.Second, AdvertiseAddrs: AdvertiseAddrsConfig{ SerfLan: &net.TCPAddr{}, SerfLanRaw: "127.0.0.5:1231", diff --git a/command/agent/dns.go b/command/agent/dns.go index a0705ad7dd..d9e2819971 100644 --- a/command/agent/dns.go +++ b/command/agent/dns.go @@ -1,6 +1,7 @@ package agent import ( + "encoding/hex" "fmt" "io" "log" @@ -23,6 +24,9 @@ const ( // times. maxUDPAnswerLimit = 8 maxRecurseRecords = 5 + + // Increment a counter when requests staler than this are served + staleCounterThreshold = 5 * time.Second ) // DNSServer is used to wrap an Agent and expose various @@ -50,8 +54,8 @@ func (d *DNSServer) Shutdown() { // NewDNSServer starts a new DNS server to provide an agent interface func NewDNSServer(agent *Agent, config *DNSConfig, logOutput io.Writer, domain string, bind string, recursors []string) (*DNSServer, error) { - // Make sure domain is FQDN - domain = dns.Fqdn(domain) + // Make sure domain is FQDN, make it case insensitive for ServeMux + domain = dns.Fqdn(strings.ToLower(domain)) // Construct the DNS components mux := dns.NewServeMux() @@ -357,6 +361,46 @@ PARSE: query := strings.Join(labels[:n-1], ".") d.preparedQueryLookup(network, datacenter, query, req, resp) + case "addr": + if n != 2 { + goto INVALID + } + + switch len(labels[0]) / 2 { + // IPv4 + case 4: + ip, err := hex.DecodeString(labels[0]) + if err != nil { + goto INVALID + } + + resp.Answer = append(resp.Answer, &dns.A{ + Hdr: dns.RR_Header{ + Name: qName + d.domain, + Rrtype: dns.TypeA, + Class: dns.ClassINET, + Ttl: uint32(d.config.NodeTTL / time.Second), + }, + A: ip, + }) + // IPv6 + case 16: + ip, err := hex.DecodeString(labels[0]) + if err != nil { + goto INVALID + } + + resp.Answer = append(resp.Answer, &dns.AAAA{ + Hdr: dns.RR_Header{ + Name: qName + d.domain, + Rrtype: dns.TypeAAAA, + Class: dns.ClassINET, + Ttl: uint32(d.config.NodeTTL / time.Second), + }, + AAAA: ip, + }) + } + default: // Store the DC, and re-parse datacenter = labels[n-1] @@ -396,10 +440,14 @@ RPC: } // Verify that request is not too stale, redo the request - if args.AllowStale && out.LastContact > d.config.MaxStale { - args.AllowStale = false - d.logger.Printf("[WARN] dns: Query results too stale, re-requesting") - goto RPC + if args.AllowStale { + if out.LastContact > d.config.MaxStale { + args.AllowStale = false + d.logger.Printf("[WARN] dns: Query results too stale, re-requesting") + goto RPC + } else if out.LastContact > staleCounterThreshold { + metrics.IncrCounter([]string{"consul", "dns", "stale_queries"}, 1) + } } // If we have no address, return not found! @@ -596,10 +644,14 @@ RPC: } // Verify that request is not too stale, redo the request - if args.AllowStale && out.LastContact > d.config.MaxStale { - args.AllowStale = false - d.logger.Printf("[WARN] dns: Query results too stale, re-requesting") - goto RPC + if args.AllowStale { + if out.LastContact > d.config.MaxStale { + args.AllowStale = false + d.logger.Printf("[WARN] dns: Query results too stale, re-requesting") + goto RPC + } else if out.LastContact > staleCounterThreshold { + metrics.IncrCounter([]string{"consul", "dns", "stale_queries"}, 1) + } } // Determine the TTL @@ -698,10 +750,14 @@ RPC: } // Verify that request is not too stale, redo the request. - if args.AllowStale && out.LastContact > d.config.MaxStale { - args.AllowStale = false - d.logger.Printf("[WARN] dns: Query results too stale, re-requesting") - goto RPC + if args.AllowStale { + if out.LastContact > d.config.MaxStale { + args.AllowStale = false + d.logger.Printf("[WARN] dns: Query results too stale, re-requesting") + goto RPC + } else if out.LastContact > staleCounterThreshold { + metrics.IncrCounter([]string{"consul", "dns", "stale_queries"}, 1) + } } // Determine the TTL. The parse should never fail since we vet it when @@ -820,8 +876,35 @@ func (d *DNSServer) serviceSRVRecords(dc string, nodes structs.CheckServiceNodes // Add the extra record records := d.formatNodeRecord(node.Node, addr, srvRec.Target, dns.TypeANY, ttl) - if records != nil { - resp.Extra = append(resp.Extra, records...) + if len(records) > 0 { + // Use the node address if it doesn't differ from the service address + if addr == node.Node.Address { + resp.Extra = append(resp.Extra, records...) + } else { + // If it differs from the service address, give a special response in the + // 'addr.consul' domain with the service IP encoded in it. We have to do + // this because we can't put an IP in the target field of an SRV record. + switch record := records[0].(type) { + // IPv4 + case *dns.A: + addr := hex.EncodeToString(record.A) + + // Take the last 8 chars (4 bytes) of the encoded address to avoid junk bytes + srvRec.Target = fmt.Sprintf("%s.addr.%s.%s", addr[len(addr)-(net.IPv4len*2):], dc, d.domain) + record.Hdr.Name = srvRec.Target + resp.Extra = append(resp.Extra, record) + + // IPv6 + case *dns.AAAA: + srvRec.Target = fmt.Sprintf("%s.addr.%s.%s", hex.EncodeToString(record.AAAA), dc, d.domain) + record.Hdr.Name = srvRec.Target + resp.Extra = append(resp.Extra, record) + + // Something else (probably a CNAME; just add the records). + default: + resp.Extra = append(resp.Extra, records...) + } + } } } } @@ -848,7 +931,7 @@ func (d *DNSServer) handleRecurse(resp dns.ResponseWriter, req *dns.Msg) { var err error for _, recursor := range d.recursors { r, rtt, err = c.Exchange(req, recursor) - if err == nil { + if err == nil || err == dns.ErrTruncated { // Compress the response; we don't know if the incoming // response was compressed or not, so by not compressing // we might generate an invalid packet on the way out. @@ -877,6 +960,19 @@ func (d *DNSServer) handleRecurse(resp dns.ResponseWriter, req *dns.Msg) { // resolveCNAME is used to recursively resolve CNAME records func (d *DNSServer) resolveCNAME(name string) []dns.RR { + // If the CNAME record points to a Consul address, resolve it internally + // Convert query to lowercase because DNS is case insensitive; d.domain is + // already converted + if strings.HasSuffix(strings.ToLower(name), "."+d.domain) { + req := &dns.Msg{} + resp := &dns.Msg{} + + req.SetQuestion(name, dns.TypeANY) + d.dispatch("udp", req, resp) + + return resp.Answer + } + // Do nothing if we don't have a recursor if len(d.recursors) == 0 { return nil diff --git a/command/agent/dns_test.go b/command/agent/dns_test.go index 2c40112357..0f52d13409 100644 --- a/command/agent/dns_test.go +++ b/command/agent/dns_test.go @@ -86,6 +86,25 @@ func makeRecursor(t *testing.T, answer []dns.RR) *dns.Server { return server } +func makeRecursorWithMessage(t *testing.T, answer dns.Msg) *dns.Server { + dnsConf := nextConfig() + dnsAddr := fmt.Sprintf("%s:%d", dnsConf.Addresses.DNS, dnsConf.Ports.DNS) + mux := dns.NewServeMux() + mux.HandleFunc(".", func(resp dns.ResponseWriter, msg *dns.Msg) { + answer.SetReply(msg) + if err := resp.WriteMsg(&answer); err != nil { + t.Fatalf("err: %s", err) + } + }) + server := &dns.Server{ + Addr: dnsAddr, + Net: "udp", + Handler: mux, + } + go server.ListenAndServe() + return server +} + // dnsCNAME returns a DNS CNAME record struct func dnsCNAME(src, dest string) *dns.CNAME { return &dns.CNAME{ @@ -550,6 +569,7 @@ func TestDNS_ServiceLookup(t *testing.T) { Datacenter: "dc1", Op: structs.PreparedQueryCreate, Query: &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Service: "db", }, @@ -639,7 +659,336 @@ func TestDNS_ServiceLookup(t *testing.T) { } } -func TestDNS_ServiceLookup_ServiceAddress(t *testing.T) { +func TestDNS_ExternalServiceLookup(t *testing.T) { + dir, srv := makeDNSServer(t) + defer os.RemoveAll(dir) + defer srv.agent.Shutdown() + + testutil.WaitForLeader(t, srv.agent.RPC, "dc1") + + // Register a node with an external service. + { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "foo", + Address: "www.google.com", + Service: &structs.NodeService{ + Service: "db", + Port: 12345, + }, + } + + var out struct{} + if err := srv.agent.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + } + + // Look up the service + questions := []string{ + "db.service.consul.", + } + for _, question := range questions { + m := new(dns.Msg) + m.SetQuestion(question, dns.TypeSRV) + + c := new(dns.Client) + addr, _ := srv.agent.config.ClientListener("", srv.agent.config.Ports.DNS) + in, _, err := c.Exchange(m, addr.String()) + if err != nil { + t.Fatalf("err: %v", err) + } + + if len(in.Answer) != 1 { + t.Fatalf("Bad: %#v", in) + } + + srvRec, ok := in.Answer[0].(*dns.SRV) + if !ok { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + if srvRec.Port != 12345 { + t.Fatalf("Bad: %#v", srvRec) + } + if srvRec.Target != "foo.node.dc1.consul." { + t.Fatalf("Bad: %#v", srvRec) + } + if srvRec.Hdr.Ttl != 0 { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + + cnameRec, ok := in.Extra[0].(*dns.CNAME) + if !ok { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + if cnameRec.Hdr.Name != "foo.node.dc1.consul." { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + if cnameRec.Target != "www.google.com." { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + if cnameRec.Hdr.Ttl != 0 { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + } +} + +func TestDNS_ExternalServiceToConsulCNAMELookup(t *testing.T) { + dir, srv := makeDNSServerConfig(t, func(c *Config) { + c.Domain = "CONSUL." + }, nil) + defer os.RemoveAll(dir) + defer srv.agent.Shutdown() + + testutil.WaitForLeader(t, srv.agent.RPC, "dc1") + + // Register the initial node with a service + { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "web", + Address: "127.0.0.1", + Service: &structs.NodeService{ + Service: "web", + Port: 12345, + }, + } + + var out struct{} + if err := srv.agent.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + } + + // Register an external service pointing to the 'web' service + { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "alias", + Address: "web.service.consul", + Service: &structs.NodeService{ + Service: "alias", + Port: 12345, + }, + } + + var out struct{} + if err := srv.agent.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + } + + // Look up the service directly + questions := []string{ + "alias.service.consul.", + "alias.service.CoNsUl.", + } + for _, question := range questions { + m := new(dns.Msg) + m.SetQuestion(question, dns.TypeSRV) + + c := new(dns.Client) + addr, _ := srv.agent.config.ClientListener("", srv.agent.config.Ports.DNS) + in, _, err := c.Exchange(m, addr.String()) + if err != nil { + t.Fatalf("err: %v", err) + } + + if len(in.Answer) != 1 { + t.Fatalf("Bad: %#v", in) + } + + srvRec, ok := in.Answer[0].(*dns.SRV) + if !ok { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + if srvRec.Port != 12345 { + t.Fatalf("Bad: %#v", srvRec) + } + if srvRec.Target != "alias.node.dc1.consul." { + t.Fatalf("Bad: %#v", srvRec) + } + if srvRec.Hdr.Ttl != 0 { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + + if len(in.Extra) != 2 { + t.Fatalf("Bad: %#v", in) + } + + cnameRec, ok := in.Extra[0].(*dns.CNAME) + if !ok { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + if cnameRec.Hdr.Name != "alias.node.dc1.consul." { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + if cnameRec.Target != "web.service.consul." { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + if cnameRec.Hdr.Ttl != 0 { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + + aRec, ok := in.Extra[1].(*dns.A) + if !ok { + t.Fatalf("Bad: %#v", in.Extra[1]) + } + if aRec.Hdr.Name != "web.service.consul." { + t.Fatalf("Bad: %#v", in.Extra[1]) + } + if aRec.A.String() != "127.0.0.1" { + t.Fatalf("Bad: %#v", in.Extra[1]) + } + if aRec.Hdr.Ttl != 0 { + t.Fatalf("Bad: %#v", in.Extra[1]) + } + } +} + +func TestDNS_ExternalServiceToConsulCNAMENestedLookup(t *testing.T) { + dir, srv := makeDNSServer(t) + defer os.RemoveAll(dir) + defer srv.agent.Shutdown() + + testutil.WaitForLeader(t, srv.agent.RPC, "dc1") + + // Register the initial node with a service + { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "web", + Address: "127.0.0.1", + Service: &structs.NodeService{ + Service: "web", + Port: 12345, + }, + } + + var out struct{} + if err := srv.agent.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + } + + // Register an external service pointing to the 'web' service + { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "alias", + Address: "web.service.consul", + Service: &structs.NodeService{ + Service: "alias", + Port: 12345, + }, + } + + var out struct{} + if err := srv.agent.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + } + + // Register an external service pointing to the 'alias' service + { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "alias2", + Address: "alias.service.consul", + Service: &structs.NodeService{ + Service: "alias2", + Port: 12345, + }, + } + + var out struct{} + if err := srv.agent.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + } + + // Look up the service directly + questions := []string{ + "alias2.service.consul.", + } + for _, question := range questions { + m := new(dns.Msg) + m.SetQuestion(question, dns.TypeSRV) + + c := new(dns.Client) + addr, _ := srv.agent.config.ClientListener("", srv.agent.config.Ports.DNS) + in, _, err := c.Exchange(m, addr.String()) + if err != nil { + t.Fatalf("err: %v", err) + } + + if len(in.Answer) != 1 { + t.Fatalf("Bad: %#v", in) + } + + srvRec, ok := in.Answer[0].(*dns.SRV) + if !ok { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + if srvRec.Port != 12345 { + t.Fatalf("Bad: %#v", srvRec) + } + if srvRec.Target != "alias2.node.dc1.consul." { + t.Fatalf("Bad: %#v", srvRec) + } + if srvRec.Hdr.Ttl != 0 { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + + if len(in.Extra) != 3 { + t.Fatalf("Bad: %#v", in) + } + + cnameRec, ok := in.Extra[0].(*dns.CNAME) + if !ok { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + if cnameRec.Hdr.Name != "alias2.node.dc1.consul." { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + if cnameRec.Target != "alias.service.consul." { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + if cnameRec.Hdr.Ttl != 0 { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + + cnameRec, ok = in.Extra[1].(*dns.CNAME) + if !ok { + t.Fatalf("Bad: %#v", in.Extra[1]) + } + if cnameRec.Hdr.Name != "alias.service.consul." { + t.Fatalf("Bad: %#v", in.Extra[1]) + } + if cnameRec.Target != "web.service.consul." { + t.Fatalf("Bad: %#v", in.Extra[1]) + } + if cnameRec.Hdr.Ttl != 0 { + t.Fatalf("Bad: %#v", in.Extra[1]) + } + + aRec, ok := in.Extra[2].(*dns.A) + if !ok { + t.Fatalf("Bad: %#v", in.Extra[2]) + } + if aRec.Hdr.Name != "web.service.consul." { + t.Fatalf("Bad: %#v", in.Extra[1]) + } + if aRec.A.String() != "127.0.0.1" { + t.Fatalf("Bad: %#v", in.Extra[2]) + } + if aRec.Hdr.Ttl != 0 { + t.Fatalf("Bad: %#v", in.Extra[2]) + } + } +} + +func TestDNS_ServiceLookup_ServiceAddress_A(t *testing.T) { dir, srv := makeDNSServer(t) defer os.RemoveAll(dir) defer srv.agent.Shutdown() @@ -673,6 +1022,102 @@ func TestDNS_ServiceLookup_ServiceAddress(t *testing.T) { Datacenter: "dc1", Op: structs.PreparedQueryCreate, Query: &structs.PreparedQuery{ + Name: "test", + Service: structs.ServiceQuery{ + Service: "db", + }, + }, + } + if err := srv.agent.RPC("PreparedQuery.Apply", args, &id); err != nil { + t.Fatalf("err: %v", err) + } + } + + // Look up the service directly and via prepared query. + questions := []string{ + "db.service.consul.", + id + ".query.consul.", + } + for _, question := range questions { + m := new(dns.Msg) + m.SetQuestion(question, dns.TypeSRV) + + c := new(dns.Client) + addr, _ := srv.agent.config.ClientListener("", srv.agent.config.Ports.DNS) + in, _, err := c.Exchange(m, addr.String()) + if err != nil { + t.Fatalf("err: %v", err) + } + + if len(in.Answer) != 1 { + t.Fatalf("Bad: %#v", in) + } + + srvRec, ok := in.Answer[0].(*dns.SRV) + if !ok { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + if srvRec.Port != 12345 { + t.Fatalf("Bad: %#v", srvRec) + } + if srvRec.Target != "7f000002.addr.dc1.consul." { + t.Fatalf("Bad: %#v", srvRec) + } + if srvRec.Hdr.Ttl != 0 { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + + aRec, ok := in.Extra[0].(*dns.A) + if !ok { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + if aRec.Hdr.Name != "7f000002.addr.dc1.consul." { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + if aRec.A.String() != "127.0.0.2" { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + if aRec.Hdr.Ttl != 0 { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + } +} + +func TestDNS_ServiceLookup_ServiceAddress_CNAME(t *testing.T) { + dir, srv := makeDNSServer(t) + defer os.RemoveAll(dir) + defer srv.agent.Shutdown() + + testutil.WaitForLeader(t, srv.agent.RPC, "dc1") + + // Register a node with a service whose address isn't an IP. + { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "foo", + Address: "127.0.0.1", + Service: &structs.NodeService{ + Service: "db", + Tags: []string{"master"}, + Address: "www.google.com", + Port: 12345, + }, + } + + var out struct{} + if err := srv.agent.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + } + + // Register an equivalent prepared query. + var id string + { + args := &structs.PreparedQueryRequest{ + Datacenter: "dc1", + Op: structs.PreparedQueryCreate, + Query: &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Service: "db", }, @@ -717,14 +1162,109 @@ func TestDNS_ServiceLookup_ServiceAddress(t *testing.T) { t.Fatalf("Bad: %#v", in.Answer[0]) } - aRec, ok := in.Extra[0].(*dns.A) + cnameRec, ok := in.Extra[0].(*dns.CNAME) if !ok { t.Fatalf("Bad: %#v", in.Extra[0]) } - if aRec.Hdr.Name != "foo.node.dc1.consul." { + if cnameRec.Hdr.Name != "foo.node.dc1.consul." { t.Fatalf("Bad: %#v", in.Extra[0]) } - if aRec.A.String() != "127.0.0.2" { + if cnameRec.Target != "www.google.com." { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + if cnameRec.Hdr.Ttl != 0 { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + } +} + +func TestDNS_ServiceLookup_ServiceAddressIPV6(t *testing.T) { + dir, srv := makeDNSServer(t) + defer os.RemoveAll(dir) + defer srv.agent.Shutdown() + + testutil.WaitForLeader(t, srv.agent.RPC, "dc1") + + // Register a node with a service. + { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "foo", + Address: "127.0.0.1", + Service: &structs.NodeService{ + Service: "db", + Tags: []string{"master"}, + Address: "2607:20:4005:808::200e", + Port: 12345, + }, + } + + var out struct{} + if err := srv.agent.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + } + + // Register an equivalent prepared query. + var id string + { + args := &structs.PreparedQueryRequest{ + Datacenter: "dc1", + Op: structs.PreparedQueryCreate, + Query: &structs.PreparedQuery{ + Name: "test", + Service: structs.ServiceQuery{ + Service: "db", + }, + }, + } + if err := srv.agent.RPC("PreparedQuery.Apply", args, &id); err != nil { + t.Fatalf("err: %v", err) + } + } + + // Look up the service directly and via prepared query. + questions := []string{ + "db.service.consul.", + id + ".query.consul.", + } + for _, question := range questions { + m := new(dns.Msg) + m.SetQuestion(question, dns.TypeSRV) + + c := new(dns.Client) + addr, _ := srv.agent.config.ClientListener("", srv.agent.config.Ports.DNS) + in, _, err := c.Exchange(m, addr.String()) + if err != nil { + t.Fatalf("err: %v", err) + } + + if len(in.Answer) != 1 { + t.Fatalf("Bad: %#v", in) + } + + srvRec, ok := in.Answer[0].(*dns.SRV) + if !ok { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + if srvRec.Port != 12345 { + t.Fatalf("Bad: %#v", srvRec) + } + if srvRec.Target != "2607002040050808000000000000200e.addr.dc1.consul." { + t.Fatalf("Bad: %#v", srvRec) + } + if srvRec.Hdr.Ttl != 0 { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + + aRec, ok := in.Extra[0].(*dns.AAAA) + if !ok { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + if aRec.Hdr.Name != "2607002040050808000000000000200e.addr.dc1.consul." { + t.Fatalf("Bad: %#v", in.Extra[0]) + } + if aRec.AAAA.String() != "2607:20:4005:808::200e" { t.Fatalf("Bad: %#v", in.Extra[0]) } if aRec.Hdr.Ttl != 0 { @@ -794,6 +1334,7 @@ func TestDNS_ServiceLookup_WanAddress(t *testing.T) { Datacenter: "dc2", Op: structs.PreparedQueryCreate, Query: &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Service: "db", }, @@ -828,7 +1369,7 @@ func TestDNS_ServiceLookup_WanAddress(t *testing.T) { if !ok { t.Fatalf("Bad: %#v", in.Extra[0]) } - if aRec.Hdr.Name != "foo.node.dc2.consul." { + if aRec.Hdr.Name != "7f000002.addr.dc2.consul." { t.Fatalf("Bad: %#v", in.Extra[0]) } if aRec.A.String() != "127.0.0.2" { @@ -1199,6 +1740,7 @@ func TestDNS_ServiceLookup_Dedup(t *testing.T) { Datacenter: "dc1", Op: structs.PreparedQueryCreate, Query: &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Service: "db", }, @@ -1303,6 +1845,7 @@ func TestDNS_ServiceLookup_Dedup_SRV(t *testing.T) { Datacenter: "dc1", Op: structs.PreparedQueryCreate, Query: &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Service: "db", }, @@ -1400,12 +1943,58 @@ func TestDNS_Recurse(t *testing.T) { } } +func TestDNS_Recurse_Truncation(t *testing.T) { + answerMessage := dns.Msg{ + MsgHdr: dns.MsgHdr{Truncated: true}, + Answer: []dns.RR{dnsA("apple.com", "1.2.3.4")}, + } + + recursor := makeRecursorWithMessage(t, answerMessage) + defer recursor.Shutdown() + + dir, srv := makeDNSServerConfig(t, func(c *Config) { + c.DNSRecursor = recursor.Addr + }, nil) + defer os.RemoveAll(dir) + defer srv.agent.Shutdown() + + m := new(dns.Msg) + m.SetQuestion("apple.com.", dns.TypeANY) + + c := new(dns.Client) + addr, _ := srv.agent.config.ClientListener("", srv.agent.config.Ports.DNS) + in, _, err := c.Exchange(m, addr.String()) + if err != dns.ErrTruncated { + t.Fatalf("err: %v", err) + } + if in.Truncated != true { + t.Fatalf("err: message should have been truncated %v", in) + } + if len(in.Answer) == 0 { + t.Fatalf("Bad: Truncated message ignored, expected some reply %#v", in) + } + if in.Rcode != dns.RcodeSuccess { + t.Fatalf("Bad: %#v", in) + } +} + func TestDNS_RecursorTimeout(t *testing.T) { serverClientTimeout := 3 * time.Second testClientTimeout := serverClientTimeout + 5*time.Second + resolverAddr, err := net.ResolveUDPAddr("udp", "127.0.0.1:0") + if err != nil { + t.Error(err) + } + + resolver, err := net.ListenUDP("udp", resolverAddr) + if err != nil { + t.Error(err) + } + defer resolver.Close() + dir, srv := makeDNSServerConfig(t, func(c *Config) { - c.DNSRecursor = "10.255.255.1" // host must cause a connection|read|write timeout + c.DNSRecursor = resolver.LocalAddr().String() // host must cause a connection|read|write timeout }, func(c *DNSConfig) { c.RecursorTimeout = serverClientTimeout }) @@ -1552,6 +2141,7 @@ func TestDNS_ServiceLookup_FilterCritical(t *testing.T) { Datacenter: "dc1", Op: structs.PreparedQueryCreate, Query: &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Service: "db", }, @@ -1675,6 +2265,7 @@ func TestDNS_ServiceLookup_OnlyFailing(t *testing.T) { Datacenter: "dc1", Op: structs.PreparedQueryCreate, Query: &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Service: "db", }, @@ -1795,6 +2386,7 @@ func TestDNS_ServiceLookup_OnlyPassing(t *testing.T) { Datacenter: "dc1", Op: structs.PreparedQueryCreate, Query: &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Service: "db", OnlyPassing: true, @@ -1868,6 +2460,7 @@ func TestDNS_ServiceLookup_Randomize(t *testing.T) { Datacenter: "dc1", Op: structs.PreparedQueryCreate, Query: &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Service: "web", }, @@ -1962,6 +2555,7 @@ func TestDNS_ServiceLookup_Truncate(t *testing.T) { Datacenter: "dc1", Op: structs.PreparedQueryCreate, Query: &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Service: "web", }, @@ -2282,6 +2876,7 @@ func TestDNS_ServiceLookup_CNAME(t *testing.T) { Datacenter: "dc1", Op: structs.PreparedQueryCreate, Query: &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Service: "search", }, @@ -2853,7 +3448,7 @@ func TestDNS_PreparedQuery_Failover(t *testing.T) { if !ok { t.Fatalf("Bad: %#v", in.Answer[0]) } - if srv.Target != "foo.node.dc2.consul." { + if srv.Target != "7f000002.addr.dc2.consul." { t.Fatalf("Bad: %#v", in.Answer[0]) } @@ -2861,7 +3456,7 @@ func TestDNS_PreparedQuery_Failover(t *testing.T) { if !ok { t.Fatalf("Bad: %#v", in.Extra[0]) } - if a.Hdr.Name != "foo.node.dc2.consul." { + if a.Hdr.Name != "7f000002.addr.dc2.consul." { t.Fatalf("Bad: %#v", in.Extra[0]) } if a.A.String() != "127.0.0.2" { @@ -3059,6 +3654,85 @@ func TestDNS_ServiceLookup_FilterACL(t *testing.T) { } } +func TestDNS_AddressLookup(t *testing.T) { + dir, srv := makeDNSServer(t) + defer os.RemoveAll(dir) + defer srv.agent.Shutdown() + + testutil.WaitForLeader(t, srv.agent.RPC, "dc1") + + // Look up the addresses + cases := map[string]string{ + "7f000001.addr.dc1.consul.": "127.0.0.1", + } + for question, answer := range cases { + m := new(dns.Msg) + m.SetQuestion(question, dns.TypeSRV) + + c := new(dns.Client) + addr, _ := srv.agent.config.ClientListener("", srv.agent.config.Ports.DNS) + in, _, err := c.Exchange(m, addr.String()) + if err != nil { + t.Fatalf("err: %v", err) + } + + if len(in.Answer) != 1 { + t.Fatalf("Bad: %#v", in) + } + + aRec, ok := in.Answer[0].(*dns.A) + if !ok { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + if aRec.A.To4().String() != answer { + t.Fatalf("Bad: %#v", aRec) + } + if aRec.Hdr.Ttl != 0 { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + } +} + +func TestDNS_AddressLookupIPV6(t *testing.T) { + dir, srv := makeDNSServer(t) + defer os.RemoveAll(dir) + defer srv.agent.Shutdown() + + testutil.WaitForLeader(t, srv.agent.RPC, "dc1") + + // Look up the addresses + cases := map[string]string{ + "2607002040050808000000000000200e.addr.consul.": "2607:20:4005:808::200e", + "2607112040051808ffffffffffff200e.addr.consul.": "2607:1120:4005:1808:ffff:ffff:ffff:200e", + } + for question, answer := range cases { + m := new(dns.Msg) + m.SetQuestion(question, dns.TypeSRV) + + c := new(dns.Client) + addr, _ := srv.agent.config.ClientListener("", srv.agent.config.Ports.DNS) + in, _, err := c.Exchange(m, addr.String()) + if err != nil { + t.Fatalf("err: %v", err) + } + + if len(in.Answer) != 1 { + t.Fatalf("Bad: %#v", in) + } + + aaaaRec, ok := in.Answer[0].(*dns.AAAA) + if !ok { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + if aaaaRec.AAAA.To16().String() != answer { + t.Fatalf("Bad: %#v", aaaaRec) + } + if aaaaRec.Hdr.Ttl != 0 { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + } +} + func TestDNS_NonExistingLookup(t *testing.T) { dir, srv := makeDNSServer(t) defer os.RemoveAll(dir) @@ -3775,6 +4449,7 @@ func TestDNS_Compression_Query(t *testing.T) { Datacenter: "dc1", Op: structs.PreparedQueryCreate, Query: &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Service: "db", }, diff --git a/command/agent/event_endpoint.go b/command/agent/event_endpoint.go index 94d35fc5ae..6735d66b64 100644 --- a/command/agent/event_endpoint.go +++ b/command/agent/event_endpoint.go @@ -83,13 +83,21 @@ func (s *HTTPServer) EventList(resp http.ResponseWriter, req *http.Request) (int return nil, nil } + // Fetch the ACL token, if any. + var token string + s.parseToken(req, &token) + acl, err := s.agent.resolveToken(token) + if err != nil { + return nil, err + } + // Look for a name filter var nameFilter string if filt := req.URL.Query().Get("name"); filt != "" { nameFilter = filt } - // Lots of this logic is borrowed from consul/rpc.go:blockingRPC + // Lots of this logic is borrowed from consul/rpc.go:blockingQuery // However we cannot use that directly since this code has some // slight semantics differences... var timeout <-chan time.Time @@ -126,7 +134,20 @@ RUN_QUERY: // Get the recent events events := s.agent.UserEvents() - // Filter the events if necessary + // Filter the events using the ACL, if present + if acl != nil { + for i := 0; i < len(events); i++ { + name := events[i].Name + if acl.EventRead(name) { + continue + } + s.agent.logger.Printf("[DEBUG] agent: dropping event %q from result due to ACLs", name) + events = append(events[:i], events[i+1:]...) + i-- + } + } + + // Filter the events if requested if nameFilter != "" { for i := 0; i < len(events); i++ { if events[i].Name != nameFilter { diff --git a/command/agent/event_endpoint_test.go b/command/agent/event_endpoint_test.go index d90ddc485c..53927daebf 100644 --- a/command/agent/event_endpoint_test.go +++ b/command/agent/event_endpoint_test.go @@ -5,6 +5,7 @@ import ( "fmt" "net/http" "net/http/httptest" + "os" "strings" "testing" "time" @@ -192,6 +193,71 @@ func TestEventList_Filter(t *testing.T) { }) } +func TestEventList_ACLFilter(t *testing.T) { + dir, srv := makeHTTPServerWithACLs(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + // Fire an event. + p := &UserEvent{Name: "foo"} + if err := srv.agent.UserEvent("dc1", "root", p); err != nil { + t.Fatalf("err: %v", err) + } + + // Try no token. + { + testutil.WaitForResult(func() (bool, error) { + req, err := http.NewRequest("GET", "/v1/event/list", nil) + if err != nil { + return false, err + } + resp := httptest.NewRecorder() + obj, err := srv.EventList(resp, req) + if err != nil { + return false, err + } + + list, ok := obj.([]*UserEvent) + if !ok { + return false, fmt.Errorf("bad: %#v", obj) + } + if len(list) != 0 { + return false, fmt.Errorf("bad: %#v", list) + } + return true, nil + }, func(err error) { + t.Fatalf("err: %v", err) + }) + } + + // Try the root token. + { + testutil.WaitForResult(func() (bool, error) { + req, err := http.NewRequest("GET", "/v1/event/list?token=root", nil) + if err != nil { + return false, err + } + resp := httptest.NewRecorder() + obj, err := srv.EventList(resp, req) + if err != nil { + return false, err + } + + list, ok := obj.([]*UserEvent) + if !ok { + return false, fmt.Errorf("bad: %#v", obj) + } + if len(list) != 1 || list[0].Name != "foo" { + return false, fmt.Errorf("bad: %#v", list) + } + return true, nil + }, func(err error) { + t.Fatalf("err: %v", err) + }) + } +} + func TestEventList_Blocking(t *testing.T) { httpTest(t, func(srv *HTTPServer) { p := &UserEvent{Name: "test"} diff --git a/command/agent/health_endpoint.go b/command/agent/health_endpoint.go index eeb26edbe4..f201c3bc19 100644 --- a/command/agent/health_endpoint.go +++ b/command/agent/health_endpoint.go @@ -11,6 +11,7 @@ func (s *HTTPServer) HealthChecksInState(resp http.ResponseWriter, req *http.Req // Set default DC args := structs.ChecksInStateRequest{} s.parseSource(req, &args.Source) + args.NodeMetaFilters = s.parseMetaFilter(req) if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done { return nil, nil } @@ -70,6 +71,7 @@ func (s *HTTPServer) HealthServiceChecks(resp http.ResponseWriter, req *http.Req // Set default DC args := structs.ServiceSpecificRequest{} s.parseSource(req, &args.Source) + args.NodeMetaFilters = s.parseMetaFilter(req) if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done { return nil, nil } @@ -100,6 +102,7 @@ func (s *HTTPServer) HealthServiceNodes(resp http.ResponseWriter, req *http.Requ // Set default DC args := structs.ServiceSpecificRequest{} s.parseSource(req, &args.Source) + args.NodeMetaFilters = s.parseMetaFilter(req) if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done { return nil, nil } diff --git a/command/agent/health_endpoint_test.go b/command/agent/health_endpoint_test.go index 47750b520c..a0f2a62e6e 100644 --- a/command/agent/health_endpoint_test.go +++ b/command/agent/health_endpoint_test.go @@ -7,7 +7,6 @@ import ( "os" "reflect" "testing" - "time" "github.com/hashicorp/consul/consul/structs" "github.com/hashicorp/consul/testutil" @@ -66,6 +65,49 @@ func TestHealthChecksInState(t *testing.T) { }) } +func TestHealthChecksInState_NodeMetaFilter(t *testing.T) { + httpTest(t, func(srv *HTTPServer) { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "bar", + Address: "127.0.0.1", + NodeMeta: map[string]string{"somekey": "somevalue"}, + Check: &structs.HealthCheck{ + Node: "bar", + Name: "node check", + Status: structs.HealthCritical, + }, + } + var out struct{} + if err := srv.agent.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + + req, err := http.NewRequest("GET", "/v1/health/state/critical?node-meta=somekey:somevalue", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + testutil.WaitForResult(func() (bool, error) { + resp := httptest.NewRecorder() + obj, err := srv.HealthChecksInState(resp, req) + if err != nil { + return false, err + } + if err := checkIndex(resp); err != nil { + return false, err + } + + // Should be 1 health check for the server + nodes := obj.(structs.HealthChecks) + if len(nodes) != 1 { + return false, fmt.Errorf("bad: %v", obj) + } + return true, nil + }, func(err error) { t.Fatalf("err: %v", err) }) + }) +} + func TestHealthChecksInState_DistanceSort(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) @@ -126,25 +168,29 @@ func TestHealthChecksInState_DistanceSort(t *testing.T) { if err := srv.agent.RPC("Coordinate.Update", &arg, &out); err != nil { t.Fatalf("err: %v", err) } - time.Sleep(300 * time.Millisecond) - // Query again and now foo should have moved to the front of the line. - resp = httptest.NewRecorder() - obj, err = srv.HealthChecksInState(resp, req) - if err != nil { - t.Fatalf("err: %v", err) - } - assertIndex(t, resp) - nodes = obj.(structs.HealthChecks) - if len(nodes) != 2 { - t.Fatalf("bad: %v", nodes) - } - if nodes[0].Node != "foo" { - t.Fatalf("bad: %v", nodes) - } - if nodes[1].Node != "bar" { - t.Fatalf("bad: %v", nodes) - } + // Retry until foo moves to the front of the line. + testutil.WaitForResult(func() (bool, error) { + resp = httptest.NewRecorder() + obj, err = srv.HealthChecksInState(resp, req) + if err != nil { + return false, fmt.Errorf("err: %v", err) + } + assertIndex(t, resp) + nodes = obj.(structs.HealthChecks) + if len(nodes) != 2 { + return false, fmt.Errorf("bad: %v", nodes) + } + if nodes[0].Node != "foo" { + return false, fmt.Errorf("bad: %v", nodes) + } + if nodes[1].Node != "bar" { + return false, fmt.Errorf("bad: %v", nodes) + } + return true, nil + }, func(err error) { + t.Fatalf("failed to get sorted service nodes: %v", err) + }) } func TestHealthNodeChecks(t *testing.T) { @@ -255,6 +301,69 @@ func TestHealthServiceChecks(t *testing.T) { } } +func TestHealthServiceChecks_NodeMetaFilter(t *testing.T) { + dir, srv := makeHTTPServer(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + testutil.WaitForLeader(t, srv.agent.RPC, "dc1") + + req, err := http.NewRequest("GET", "/v1/health/checks/consul?dc=dc1&node-meta=somekey:somevalue", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + obj, err := srv.HealthServiceChecks(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + assertIndex(t, resp) + + // Should be a non-nil empty list + nodes := obj.(structs.HealthChecks) + if nodes == nil || len(nodes) != 0 { + t.Fatalf("bad: %v", obj) + } + + // Create a service check + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: srv.agent.config.NodeName, + Address: "127.0.0.1", + NodeMeta: map[string]string{"somekey": "somevalue"}, + Check: &structs.HealthCheck{ + Node: srv.agent.config.NodeName, + Name: "consul check", + ServiceID: "consul", + }, + } + + var out struct{} + if err = srv.agent.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + + req, err = http.NewRequest("GET", "/v1/health/checks/consul?dc=dc1&node-meta=somekey:somevalue", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp = httptest.NewRecorder() + obj, err = srv.HealthServiceChecks(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + assertIndex(t, resp) + + // Should be 1 health check for consul + nodes = obj.(structs.HealthChecks) + if len(nodes) != 1 { + t.Fatalf("bad: %v", obj) + } +} + func TestHealthServiceChecks_DistanceSort(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) @@ -320,25 +429,29 @@ func TestHealthServiceChecks_DistanceSort(t *testing.T) { if err := srv.agent.RPC("Coordinate.Update", &arg, &out); err != nil { t.Fatalf("err: %v", err) } - time.Sleep(300 * time.Millisecond) - // Query again and now foo should have moved to the front of the line. - resp = httptest.NewRecorder() - obj, err = srv.HealthServiceChecks(resp, req) - if err != nil { - t.Fatalf("err: %v", err) - } - assertIndex(t, resp) - nodes = obj.(structs.HealthChecks) - if len(nodes) != 2 { - t.Fatalf("bad: %v", obj) - } - if nodes[0].Node != "foo" { - t.Fatalf("bad: %v", nodes) - } - if nodes[1].Node != "bar" { - t.Fatalf("bad: %v", nodes) - } + // Retry until foo has moved to the front of the line. + testutil.WaitForResult(func() (bool, error) { + resp = httptest.NewRecorder() + obj, err = srv.HealthServiceChecks(resp, req) + if err != nil { + return false, fmt.Errorf("err: %v", err) + } + assertIndex(t, resp) + nodes = obj.(structs.HealthChecks) + if len(nodes) != 2 { + return false, fmt.Errorf("bad: %v", obj) + } + if nodes[0].Node != "foo" { + return false, fmt.Errorf("bad: %v", nodes) + } + if nodes[1].Node != "bar" { + return false, fmt.Errorf("bad: %v", nodes) + } + return true, nil + }, func(err error) { + t.Fatalf("failed to get sorted service checks: %v", err) + }) } func TestHealthServiceNodes(t *testing.T) { @@ -422,6 +535,69 @@ func TestHealthServiceNodes(t *testing.T) { } } +func TestHealthServiceNodes_NodeMetaFilter(t *testing.T) { + dir, srv := makeHTTPServer(t) + defer os.RemoveAll(dir) + defer srv.Shutdown() + defer srv.agent.Shutdown() + + testutil.WaitForLeader(t, srv.agent.RPC, "dc1") + + req, err := http.NewRequest("GET", "/v1/health/service/consul?dc=dc1&node-meta=somekey:somevalue", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + obj, err := srv.HealthServiceNodes(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + + assertIndex(t, resp) + + // Should be a non-nil empty list + nodes := obj.(structs.CheckServiceNodes) + if nodes == nil || len(nodes) != 0 { + t.Fatalf("bad: %v", obj) + } + + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "bar", + Address: "127.0.0.1", + NodeMeta: map[string]string{"somekey": "somevalue"}, + Service: &structs.NodeService{ + ID: "test", + Service: "test", + }, + } + + var out struct{} + if err := srv.agent.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + + req, err = http.NewRequest("GET", "/v1/health/service/test?dc=dc1&node-meta=somekey:somevalue", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp = httptest.NewRecorder() + obj, err = srv.HealthServiceNodes(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + + assertIndex(t, resp) + + // Should be a non-nil empty list for checks + nodes = obj.(structs.CheckServiceNodes) + if len(nodes) != 1 || nodes[0].Checks == nil || len(nodes[0].Checks) != 0 { + t.Fatalf("bad: %v", obj) + } +} + func TestHealthServiceNodes_DistanceSort(t *testing.T) { dir, srv := makeHTTPServer(t) defer os.RemoveAll(dir) @@ -487,25 +663,29 @@ func TestHealthServiceNodes_DistanceSort(t *testing.T) { if err := srv.agent.RPC("Coordinate.Update", &arg, &out); err != nil { t.Fatalf("err: %v", err) } - time.Sleep(300 * time.Millisecond) - // Query again and now foo should have moved to the front of the line. - resp = httptest.NewRecorder() - obj, err = srv.HealthServiceNodes(resp, req) - if err != nil { - t.Fatalf("err: %v", err) - } - assertIndex(t, resp) - nodes = obj.(structs.CheckServiceNodes) - if len(nodes) != 2 { - t.Fatalf("bad: %v", obj) - } - if nodes[0].Node.Node != "foo" { - t.Fatalf("bad: %v", nodes) - } - if nodes[1].Node.Node != "bar" { - t.Fatalf("bad: %v", nodes) - } + // Retry until foo has moved to the front of the line. + testutil.WaitForResult(func() (bool, error) { + resp = httptest.NewRecorder() + obj, err = srv.HealthServiceNodes(resp, req) + if err != nil { + return false, fmt.Errorf("err: %v", err) + } + assertIndex(t, resp) + nodes = obj.(structs.CheckServiceNodes) + if len(nodes) != 2 { + return false, fmt.Errorf("bad: %v", obj) + } + if nodes[0].Node.Node != "foo" { + return false, fmt.Errorf("bad: %v", nodes) + } + if nodes[1].Node.Node != "bar" { + return false, fmt.Errorf("bad: %v", nodes) + } + return true, nil + }, func(err error) { + t.Fatalf("failed to get sorted service nodes: %v", err) + }) } func TestHealthServiceNodes_PassingFilter(t *testing.T) { diff --git a/command/agent/http.go b/command/agent/http.go index 4ce51ff4b0..dc70693690 100644 --- a/command/agent/http.go +++ b/command/agent/http.go @@ -62,7 +62,9 @@ func NewHTTPServers(agent *Agent, config *Config, logOutput io.Writer) ([]*HTTPS CertFile: config.CertFile, KeyFile: config.KeyFile, NodeName: config.NodeName, - ServerName: config.ServerName} + ServerName: config.ServerName, + TLSMinVersion: config.TLSMinVersion, + } tlsConfig, err := tlsConf.IncomingTLSConfig() if err != nil { @@ -231,64 +233,7 @@ func (s *HTTPServer) handleFuncMetrics(pattern string, handler func(http.Respons func (s *HTTPServer) registerHandlers(enableDebug bool) { s.mux.HandleFunc("/", s.Index) - s.handleFuncMetrics("/v1/status/leader", s.wrap(s.StatusLeader)) - s.handleFuncMetrics("/v1/status/peers", s.wrap(s.StatusPeers)) - - s.handleFuncMetrics("/v1/operator/raft/configuration", s.wrap(s.OperatorRaftConfiguration)) - s.handleFuncMetrics("/v1/operator/raft/peer", s.wrap(s.OperatorRaftPeer)) - - s.handleFuncMetrics("/v1/catalog/register", s.wrap(s.CatalogRegister)) - s.handleFuncMetrics("/v1/catalog/deregister", s.wrap(s.CatalogDeregister)) - s.handleFuncMetrics("/v1/catalog/datacenters", s.wrap(s.CatalogDatacenters)) - s.handleFuncMetrics("/v1/catalog/nodes", s.wrap(s.CatalogNodes)) - s.handleFuncMetrics("/v1/catalog/services", s.wrap(s.CatalogServices)) - s.handleFuncMetrics("/v1/catalog/service/", s.wrap(s.CatalogServiceNodes)) - s.handleFuncMetrics("/v1/catalog/node/", s.wrap(s.CatalogNodeServices)) - - if !s.agent.config.DisableCoordinates { - s.handleFuncMetrics("/v1/coordinate/datacenters", s.wrap(s.CoordinateDatacenters)) - s.handleFuncMetrics("/v1/coordinate/nodes", s.wrap(s.CoordinateNodes)) - } else { - s.handleFuncMetrics("/v1/coordinate/datacenters", s.wrap(coordinateDisabled)) - s.handleFuncMetrics("/v1/coordinate/nodes", s.wrap(coordinateDisabled)) - } - - s.handleFuncMetrics("/v1/health/node/", s.wrap(s.HealthNodeChecks)) - s.handleFuncMetrics("/v1/health/checks/", s.wrap(s.HealthServiceChecks)) - s.handleFuncMetrics("/v1/health/state/", s.wrap(s.HealthChecksInState)) - s.handleFuncMetrics("/v1/health/service/", s.wrap(s.HealthServiceNodes)) - - s.handleFuncMetrics("/v1/agent/self", s.wrap(s.AgentSelf)) - s.handleFuncMetrics("/v1/agent/maintenance", s.wrap(s.AgentNodeMaintenance)) - s.handleFuncMetrics("/v1/agent/services", s.wrap(s.AgentServices)) - s.handleFuncMetrics("/v1/agent/checks", s.wrap(s.AgentChecks)) - s.handleFuncMetrics("/v1/agent/members", s.wrap(s.AgentMembers)) - s.handleFuncMetrics("/v1/agent/join/", s.wrap(s.AgentJoin)) - s.handleFuncMetrics("/v1/agent/force-leave/", s.wrap(s.AgentForceLeave)) - - s.handleFuncMetrics("/v1/agent/check/register", s.wrap(s.AgentRegisterCheck)) - s.handleFuncMetrics("/v1/agent/check/deregister/", s.wrap(s.AgentDeregisterCheck)) - s.handleFuncMetrics("/v1/agent/check/pass/", s.wrap(s.AgentCheckPass)) - s.handleFuncMetrics("/v1/agent/check/warn/", s.wrap(s.AgentCheckWarn)) - s.handleFuncMetrics("/v1/agent/check/fail/", s.wrap(s.AgentCheckFail)) - s.handleFuncMetrics("/v1/agent/check/update/", s.wrap(s.AgentCheckUpdate)) - - s.handleFuncMetrics("/v1/agent/service/register", s.wrap(s.AgentRegisterService)) - s.handleFuncMetrics("/v1/agent/service/deregister/", s.wrap(s.AgentDeregisterService)) - s.handleFuncMetrics("/v1/agent/service/maintenance/", s.wrap(s.AgentServiceMaintenance)) - - s.handleFuncMetrics("/v1/event/fire/", s.wrap(s.EventFire)) - s.handleFuncMetrics("/v1/event/list", s.wrap(s.EventList)) - - s.handleFuncMetrics("/v1/kv/", s.wrap(s.KVSEndpoint)) - - s.handleFuncMetrics("/v1/session/create", s.wrap(s.SessionCreate)) - s.handleFuncMetrics("/v1/session/destroy/", s.wrap(s.SessionDestroy)) - s.handleFuncMetrics("/v1/session/renew/", s.wrap(s.SessionRenew)) - s.handleFuncMetrics("/v1/session/info/", s.wrap(s.SessionGet)) - s.handleFuncMetrics("/v1/session/node/", s.wrap(s.SessionsForNode)) - s.handleFuncMetrics("/v1/session/list", s.wrap(s.SessionList)) - + // API V1. if s.agent.config.ACLDatacenter != "" { s.handleFuncMetrics("/v1/acl/create", s.wrap(s.ACLCreate)) s.handleFuncMetrics("/v1/acl/update", s.wrap(s.ACLUpdate)) @@ -298,20 +243,74 @@ func (s *HTTPServer) registerHandlers(enableDebug bool) { s.handleFuncMetrics("/v1/acl/list", s.wrap(s.ACLList)) s.handleFuncMetrics("/v1/acl/replication", s.wrap(s.ACLReplicationStatus)) } else { - s.handleFuncMetrics("/v1/acl/create", s.wrap(aclDisabled)) - s.handleFuncMetrics("/v1/acl/update", s.wrap(aclDisabled)) - s.handleFuncMetrics("/v1/acl/destroy/", s.wrap(aclDisabled)) - s.handleFuncMetrics("/v1/acl/info/", s.wrap(aclDisabled)) - s.handleFuncMetrics("/v1/acl/clone/", s.wrap(aclDisabled)) - s.handleFuncMetrics("/v1/acl/list", s.wrap(aclDisabled)) - s.handleFuncMetrics("/v1/acl/replication", s.wrap(aclDisabled)) + s.handleFuncMetrics("/v1/acl/create", s.wrap(ACLDisabled)) + s.handleFuncMetrics("/v1/acl/update", s.wrap(ACLDisabled)) + s.handleFuncMetrics("/v1/acl/destroy/", s.wrap(ACLDisabled)) + s.handleFuncMetrics("/v1/acl/info/", s.wrap(ACLDisabled)) + s.handleFuncMetrics("/v1/acl/clone/", s.wrap(ACLDisabled)) + s.handleFuncMetrics("/v1/acl/list", s.wrap(ACLDisabled)) + s.handleFuncMetrics("/v1/acl/replication", s.wrap(ACLDisabled)) } - + s.handleFuncMetrics("/v1/agent/self", s.wrap(s.AgentSelf)) + s.handleFuncMetrics("/v1/agent/maintenance", s.wrap(s.AgentNodeMaintenance)) + s.handleFuncMetrics("/v1/agent/reload", s.wrap(s.AgentReload)) + s.handleFuncMetrics("/v1/agent/monitor", s.wrap(s.AgentMonitor)) + s.handleFuncMetrics("/v1/agent/services", s.wrap(s.AgentServices)) + s.handleFuncMetrics("/v1/agent/checks", s.wrap(s.AgentChecks)) + s.handleFuncMetrics("/v1/agent/members", s.wrap(s.AgentMembers)) + s.handleFuncMetrics("/v1/agent/join/", s.wrap(s.AgentJoin)) + s.handleFuncMetrics("/v1/agent/leave", s.wrap(s.AgentLeave)) + s.handleFuncMetrics("/v1/agent/force-leave/", s.wrap(s.AgentForceLeave)) + s.handleFuncMetrics("/v1/agent/check/register", s.wrap(s.AgentRegisterCheck)) + s.handleFuncMetrics("/v1/agent/check/deregister/", s.wrap(s.AgentDeregisterCheck)) + s.handleFuncMetrics("/v1/agent/check/pass/", s.wrap(s.AgentCheckPass)) + s.handleFuncMetrics("/v1/agent/check/warn/", s.wrap(s.AgentCheckWarn)) + s.handleFuncMetrics("/v1/agent/check/fail/", s.wrap(s.AgentCheckFail)) + s.handleFuncMetrics("/v1/agent/check/update/", s.wrap(s.AgentCheckUpdate)) + s.handleFuncMetrics("/v1/agent/service/register", s.wrap(s.AgentRegisterService)) + s.handleFuncMetrics("/v1/agent/service/deregister/", s.wrap(s.AgentDeregisterService)) + s.handleFuncMetrics("/v1/agent/service/maintenance/", s.wrap(s.AgentServiceMaintenance)) + s.handleFuncMetrics("/v1/catalog/register", s.wrap(s.CatalogRegister)) + s.handleFuncMetrics("/v1/catalog/deregister", s.wrap(s.CatalogDeregister)) + s.handleFuncMetrics("/v1/catalog/datacenters", s.wrap(s.CatalogDatacenters)) + s.handleFuncMetrics("/v1/catalog/nodes", s.wrap(s.CatalogNodes)) + s.handleFuncMetrics("/v1/catalog/services", s.wrap(s.CatalogServices)) + s.handleFuncMetrics("/v1/catalog/service/", s.wrap(s.CatalogServiceNodes)) + s.handleFuncMetrics("/v1/catalog/node/", s.wrap(s.CatalogNodeServices)) + if !s.agent.config.DisableCoordinates { + s.handleFuncMetrics("/v1/coordinate/datacenters", s.wrap(s.CoordinateDatacenters)) + s.handleFuncMetrics("/v1/coordinate/nodes", s.wrap(s.CoordinateNodes)) + } else { + s.handleFuncMetrics("/v1/coordinate/datacenters", s.wrap(coordinateDisabled)) + s.handleFuncMetrics("/v1/coordinate/nodes", s.wrap(coordinateDisabled)) + } + s.handleFuncMetrics("/v1/event/fire/", s.wrap(s.EventFire)) + s.handleFuncMetrics("/v1/event/list", s.wrap(s.EventList)) + s.handleFuncMetrics("/v1/health/node/", s.wrap(s.HealthNodeChecks)) + s.handleFuncMetrics("/v1/health/checks/", s.wrap(s.HealthServiceChecks)) + s.handleFuncMetrics("/v1/health/state/", s.wrap(s.HealthChecksInState)) + s.handleFuncMetrics("/v1/health/service/", s.wrap(s.HealthServiceNodes)) + s.handleFuncMetrics("/v1/internal/ui/nodes", s.wrap(s.UINodes)) + s.handleFuncMetrics("/v1/internal/ui/node/", s.wrap(s.UINodeInfo)) + s.handleFuncMetrics("/v1/internal/ui/services", s.wrap(s.UIServices)) + s.handleFuncMetrics("/v1/kv/", s.wrap(s.KVSEndpoint)) + s.handleFuncMetrics("/v1/operator/raft/configuration", s.wrap(s.OperatorRaftConfiguration)) + s.handleFuncMetrics("/v1/operator/raft/peer", s.wrap(s.OperatorRaftPeer)) + s.handleFuncMetrics("/v1/operator/keyring", s.wrap(s.OperatorKeyringEndpoint)) s.handleFuncMetrics("/v1/query", s.wrap(s.PreparedQueryGeneral)) s.handleFuncMetrics("/v1/query/", s.wrap(s.PreparedQuerySpecific)) - + s.handleFuncMetrics("/v1/session/create", s.wrap(s.SessionCreate)) + s.handleFuncMetrics("/v1/session/destroy/", s.wrap(s.SessionDestroy)) + s.handleFuncMetrics("/v1/session/renew/", s.wrap(s.SessionRenew)) + s.handleFuncMetrics("/v1/session/info/", s.wrap(s.SessionGet)) + s.handleFuncMetrics("/v1/session/node/", s.wrap(s.SessionsForNode)) + s.handleFuncMetrics("/v1/session/list", s.wrap(s.SessionList)) + s.handleFuncMetrics("/v1/status/leader", s.wrap(s.StatusLeader)) + s.handleFuncMetrics("/v1/status/peers", s.wrap(s.StatusPeers)) + s.handleFuncMetrics("/v1/snapshot", s.wrap(s.Snapshot)) s.handleFuncMetrics("/v1/txn", s.wrap(s.Txn)) + // Debug endpoints. if enableDebug { s.handleFuncMetrics("/debug/pprof/", pprof.Index) s.handleFuncMetrics("/debug/pprof/cmdline", pprof.Cmdline) @@ -326,10 +325,6 @@ func (s *HTTPServer) registerHandlers(enableDebug bool) { s.mux.Handle("/ui/", http.StripPrefix("/ui/", http.FileServer(assetFS()))) } - // API's are under /internal/ui/ to avoid conflict - s.handleFuncMetrics("/v1/internal/ui/nodes", s.wrap(s.UINodes)) - s.handleFuncMetrics("/v1/internal/ui/node/", s.wrap(s.UINodeInfo)) - s.handleFuncMetrics("/v1/internal/ui/services", s.wrap(s.UIServices)) } // wrap is used to wrap functions to make them more convenient @@ -404,7 +399,7 @@ func (s *HTTPServer) wrap(handler func(resp http.ResponseWriter, req *http.Reque // marshalJSON marshals the object into JSON, respecting the user's pretty-ness // configuration. func (s *HTTPServer) marshalJSON(req *http.Request, obj interface{}) ([]byte, error) { - if _, ok := req.URL.Query()["pretty"]; ok { + if _, ok := req.URL.Query()["pretty"]; ok || s.agent.config.DevMode { buf, err := json.MarshalIndent(obj, "", " ") if err != nil { return nil, err @@ -591,6 +586,20 @@ func (s *HTTPServer) parseSource(req *http.Request, source *structs.QuerySource) } } +// parseMetaFilter is used to parse the ?node-meta=key:value query parameter, used for +// filtering results to nodes with the given metadata key/value +func (s *HTTPServer) parseMetaFilter(req *http.Request) map[string]string { + if filterList, ok := req.URL.Query()["node-meta"]; ok { + filters := make(map[string]string) + for _, filter := range filterList { + key, value := parseMetaPair(filter) + filters[key] = value + } + return filters + } + return nil +} + // parse is a convenience method for endpoints that need // to use both parseWait and parseDC. func (s *HTTPServer) parse(resp http.ResponseWriter, req *http.Request, dc *string, b *structs.QueryOptions) bool { diff --git a/command/agent/http_test.go b/command/agent/http_test.go index 7cc80cb240..540d329175 100644 --- a/command/agent/http_test.go +++ b/command/agent/http_test.go @@ -19,6 +19,7 @@ import ( "time" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/consul/logger" "github.com/hashicorp/consul/testutil" "github.com/hashicorp/go-cleanhttp" ) @@ -28,6 +29,26 @@ func makeHTTPServer(t *testing.T) (string, *HTTPServer) { } func makeHTTPServerWithConfig(t *testing.T, cb func(c *Config)) (string, *HTTPServer) { + return makeHTTPServerWithConfigLog(t, cb, nil, nil) +} + +func makeHTTPServerWithACLs(t *testing.T) (string, *HTTPServer) { + dir, srv := makeHTTPServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = c.Datacenter + c.ACLDefaultPolicy = "deny" + c.ACLMasterToken = "root" + c.ACLAgentToken = "root" + c.ACLAgentMasterToken = "towel" + c.ACLEnforceVersion8 = Bool(true) + }) + + // Need a leader to look up ACLs, so wait here so we don't need to + // repeat this in each test. + testutil.WaitForLeader(t, srv.agent.RPC, "dc1") + return dir, srv +} + +func makeHTTPServerWithConfigLog(t *testing.T, cb func(c *Config), l io.Writer, logWriter *logger.LogWriter) (string, *HTTPServer) { configTry := 0 RECONF: configTry += 1 @@ -36,7 +57,7 @@ RECONF: cb(conf) } - dir, agent := makeAgent(t, conf) + dir, agent := makeAgentLog(t, conf, l, logWriter) servers, err := NewHTTPServers(agent, conf, agent.logOutput) if err != nil { if configTry < 3 { diff --git a/command/agent/keyring.go b/command/agent/keyring.go index e7b8aa4ce1..c870e2dbcb 100644 --- a/command/agent/keyring.go +++ b/command/agent/keyring.go @@ -121,31 +121,44 @@ func (a *Agent) keyringProcess(args *structs.KeyringRequest) (*structs.KeyringRe return &reply, nil } +// ParseRelayFactor validates and converts the given relay factor to uint8 +func ParseRelayFactor(n int) (uint8, error) { + if n < 0 || n > 5 { + return 0, fmt.Errorf("Relay factor must be in range: [0, 5]") + } + return uint8(n), nil +} + // ListKeys lists out all keys installed on the collective Consul cluster. This // includes both servers and clients in all DC's. -func (a *Agent) ListKeys(token string) (*structs.KeyringResponses, error) { +func (a *Agent) ListKeys(token string, relayFactor uint8) (*structs.KeyringResponses, error) { args := structs.KeyringRequest{Operation: structs.KeyringList} - args.Token = token + parseKeyringRequest(&args, token, relayFactor) return a.keyringProcess(&args) } // InstallKey installs a new gossip encryption key -func (a *Agent) InstallKey(key, token string) (*structs.KeyringResponses, error) { +func (a *Agent) InstallKey(key, token string, relayFactor uint8) (*structs.KeyringResponses, error) { args := structs.KeyringRequest{Key: key, Operation: structs.KeyringInstall} - args.Token = token + parseKeyringRequest(&args, token, relayFactor) return a.keyringProcess(&args) } // UseKey changes the primary encryption key used to encrypt messages -func (a *Agent) UseKey(key, token string) (*structs.KeyringResponses, error) { +func (a *Agent) UseKey(key, token string, relayFactor uint8) (*structs.KeyringResponses, error) { args := structs.KeyringRequest{Key: key, Operation: structs.KeyringUse} - args.Token = token + parseKeyringRequest(&args, token, relayFactor) return a.keyringProcess(&args) } // RemoveKey will remove a gossip encryption key from the keyring -func (a *Agent) RemoveKey(key, token string) (*structs.KeyringResponses, error) { +func (a *Agent) RemoveKey(key, token string, relayFactor uint8) (*structs.KeyringResponses, error) { args := structs.KeyringRequest{Key: key, Operation: structs.KeyringRemove} - args.Token = token + parseKeyringRequest(&args, token, relayFactor) return a.keyringProcess(&args) } + +func parseKeyringRequest(req *structs.KeyringRequest, token string, relayFactor uint8) { + req.Token = token + req.RelayFactor = relayFactor +} diff --git a/command/agent/keyring_test.go b/command/agent/keyring_test.go index f364b6fa86..aa60a6303c 100644 --- a/command/agent/keyring_test.go +++ b/command/agent/keyring_test.go @@ -132,49 +132,49 @@ func TestAgentKeyring_ACL(t *testing.T) { testutil.WaitForLeader(t, agent.RPC, "dc1") // List keys without access fails - _, err := agent.ListKeys("") + _, err := agent.ListKeys("", 0) if err == nil || !strings.Contains(err.Error(), "denied") { t.Fatalf("expected denied error, got: %#v", err) } // List keys with access works - _, err = agent.ListKeys("root") + _, err = agent.ListKeys("root", 0) if err != nil { t.Fatalf("err: %s", err) } // Install without access fails - _, err = agent.InstallKey(key2, "") + _, err = agent.InstallKey(key2, "", 0) if err == nil || !strings.Contains(err.Error(), "denied") { t.Fatalf("expected denied error, got: %#v", err) } // Install with access works - _, err = agent.InstallKey(key2, "root") + _, err = agent.InstallKey(key2, "root", 0) if err != nil { t.Fatalf("err: %s", err) } // Use without access fails - _, err = agent.UseKey(key2, "") + _, err = agent.UseKey(key2, "", 0) if err == nil || !strings.Contains(err.Error(), "denied") { t.Fatalf("expected denied error, got: %#v", err) } // Use with access works - _, err = agent.UseKey(key2, "root") + _, err = agent.UseKey(key2, "root", 0) if err != nil { t.Fatalf("err: %s", err) } // Remove without access fails - _, err = agent.RemoveKey(key1, "") + _, err = agent.RemoveKey(key1, "", 0) if err == nil || !strings.Contains(err.Error(), "denied") { t.Fatalf("expected denied error, got: %#v", err) } // Remove with access works - _, err = agent.RemoveKey(key1, "root") + _, err = agent.RemoveKey(key1, "root", 0) if err != nil { t.Fatalf("err: %s", err) } diff --git a/command/agent/local.go b/command/agent/local.go index c3ad782f10..5ce92b48ff 100644 --- a/command/agent/local.go +++ b/command/agent/local.go @@ -18,9 +18,6 @@ import ( const ( syncStaggerIntv = 3 * time.Second syncRetryIntv = 15 * time.Second - - // permissionDenied is returned when an ACL based rejection happens - permissionDenied = "Permission denied" ) // syncStatus is used to represent the difference between @@ -47,7 +44,7 @@ type localState struct { iface consul.Interface // nodeInfoInSync tracks whether the server has our correct top-level - // node information in sync (currently only used for tagged addresses) + // node information in sync nodeInfoInSync bool // Services tracks the local services @@ -64,6 +61,9 @@ type localState struct { // Used to track checks that are being deferred deferCheck map[types.CheckID]*time.Timer + // metadata tracks the local metadata fields + metadata map[string]string + // consulCh is used to inform of a change to the known // consul nodes. This may be used to retry a sync run consulCh chan struct{} @@ -85,6 +85,7 @@ func (l *localState) Init(config *Config, logger *log.Logger) { l.checkTokens = make(map[types.CheckID]string) l.checkCriticalTime = make(map[types.CheckID]time.Time) l.deferCheck = make(map[types.CheckID]*time.Timer) + l.metadata = make(map[string]string) l.consulCh = make(chan struct{}, 1) l.triggerCh = make(chan struct{}, 1) } @@ -170,14 +171,20 @@ func (l *localState) AddService(service *structs.NodeService, token string) { // RemoveService is used to remove a service entry from the local state. // The agent will make a best effort to ensure it is deregistered -func (l *localState) RemoveService(serviceID string) { +func (l *localState) RemoveService(serviceID string) error { l.Lock() defer l.Unlock() - delete(l.services, serviceID) - delete(l.serviceTokens, serviceID) - l.serviceStatus[serviceID] = syncStatus{inSync: false} - l.changeMade() + if _, ok := l.services[serviceID]; ok { + delete(l.services, serviceID) + delete(l.serviceTokens, serviceID) + l.serviceStatus[serviceID] = syncStatus{inSync: false} + l.changeMade() + } else { + return fmt.Errorf("Service does not exist") + } + + return nil } // Services returns the locally registered services that the @@ -336,6 +343,19 @@ func (l *localState) CriticalChecks() map[types.CheckID]CriticalCheck { return checks } +// Metadata returns the local node metadata fields that the +// agent is aware of and are being kept in sync with the server +func (l *localState) Metadata() map[string]string { + metadata := make(map[string]string) + l.RLock() + defer l.RUnlock() + + for key, value := range l.metadata { + metadata[key] = value + } + return metadata +} + // antiEntropy is a long running method used to perform anti-entropy // between local and remote state. func (l *localState) antiEntropy(shutdownCh chan struct{}) { @@ -394,7 +414,7 @@ func (l *localState) setSyncState() error { req := structs.NodeSpecificRequest{ Datacenter: l.config.Datacenter, Node: l.config.NodeName, - QueryOptions: structs.QueryOptions{Token: l.config.ACLToken}, + QueryOptions: structs.QueryOptions{Token: l.config.GetTokenForAgent()}, } var out1 structs.IndexedNodeServices var out2 structs.IndexedHealthChecks @@ -409,10 +429,11 @@ func (l *localState) setSyncState() error { l.Lock() defer l.Unlock() - // Check the node info (currently limited to tagged addresses since - // everything else is managed by the Serf layer) + // Check the node info if out1.NodeServices == nil || out1.NodeServices.Node == nil || - !reflect.DeepEqual(out1.NodeServices.Node.TaggedAddresses, l.config.TaggedAddresses) { + out1.NodeServices.Node.ID != l.config.NodeID || + !reflect.DeepEqual(out1.NodeServices.Node.TaggedAddresses, l.config.TaggedAddresses) || + !reflect.DeepEqual(out1.NodeServices.Node.Meta, l.metadata) { l.nodeInfoInSync = false } @@ -613,9 +634,11 @@ func (l *localState) deleteCheck(id types.CheckID) error { func (l *localState) syncService(id string) error { req := structs.RegisterRequest{ Datacenter: l.config.Datacenter, + ID: l.config.NodeID, Node: l.config.NodeName, Address: l.config.AdvertiseAddr, TaggedAddresses: l.config.TaggedAddresses, + NodeMeta: l.metadata, Service: l.services[id], WriteRequest: structs.WriteRequest{Token: l.serviceToken(id)}, } @@ -674,9 +697,11 @@ func (l *localState) syncCheck(id types.CheckID) error { req := structs.RegisterRequest{ Datacenter: l.config.Datacenter, + ID: l.config.NodeID, Node: l.config.NodeName, Address: l.config.AdvertiseAddr, TaggedAddresses: l.config.TaggedAddresses, + NodeMeta: l.metadata, Service: service, Check: l.checks[id], WriteRequest: structs.WriteRequest{Token: l.checkToken(id)}, @@ -700,10 +725,12 @@ func (l *localState) syncCheck(id types.CheckID) error { func (l *localState) syncNodeInfo() error { req := structs.RegisterRequest{ Datacenter: l.config.Datacenter, + ID: l.config.NodeID, Node: l.config.NodeName, Address: l.config.AdvertiseAddr, TaggedAddresses: l.config.TaggedAddresses, - WriteRequest: structs.WriteRequest{Token: l.config.ACLToken}, + NodeMeta: l.metadata, + WriteRequest: structs.WriteRequest{Token: l.config.GetTokenForAgent()}, } var out struct{} err := l.iface.RPC("Catalog.Register", &req, &out) diff --git a/command/agent/local_test.go b/command/agent/local_test.go index 76d678031e..53fc726a36 100644 --- a/command/agent/local_test.go +++ b/command/agent/local_test.go @@ -89,6 +89,14 @@ func TestAgentAntiEntropy_Services(t *testing.T) { } agent.state.AddService(srv5, "") + srv5_mod := new(structs.NodeService) + *srv5_mod = *srv5 + srv5_mod.Address = "127.0.0.1" + args.Service = srv5_mod + if err := agent.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + // Exists local, in sync, remote missing (create) srv6 := &structs.NodeService{ ID: "cache", @@ -99,139 +107,148 @@ func TestAgentAntiEntropy_Services(t *testing.T) { agent.state.AddService(srv6, "") agent.state.serviceStatus["cache"] = syncStatus{inSync: true} - srv5_mod := new(structs.NodeService) - *srv5_mod = *srv5 - srv5_mod.Address = "127.0.0.1" - args.Service = srv5_mod - if err := agent.RPC("Catalog.Register", args, &out); err != nil { - t.Fatalf("err: %v", err) - } - // Trigger anti-entropy run and wait agent.StartSync() - time.Sleep(200 * time.Millisecond) - // Verify that we are in sync + var services structs.IndexedNodeServices req := structs.NodeSpecificRequest{ Datacenter: "dc1", Node: agent.config.NodeName, } - var services structs.IndexedNodeServices - if err := agent.RPC("Catalog.NodeServices", &req, &services); err != nil { - t.Fatalf("err: %v", err) - } - // Make sure we sent along our tagged addresses when we synced. - addrs := services.NodeServices.Node.TaggedAddresses - if len(addrs) == 0 || !reflect.DeepEqual(addrs, conf.TaggedAddresses) { - t.Fatalf("bad: %v", addrs) - } - - // We should have 6 services (consul included) - if len(services.NodeServices.Services) != 6 { - t.Fatalf("bad: %v", services.NodeServices.Services) - } - - // All the services should match - for id, serv := range services.NodeServices.Services { - serv.CreateIndex, serv.ModifyIndex = 0, 0 - switch id { - case "mysql": - if !reflect.DeepEqual(serv, srv1) { - t.Fatalf("bad: %v %v", serv, srv1) - } - case "redis": - if !reflect.DeepEqual(serv, srv2) { - t.Fatalf("bad: %#v %#v", serv, srv2) - } - case "web": - if !reflect.DeepEqual(serv, srv3) { - t.Fatalf("bad: %v %v", serv, srv3) - } - case "api": - if !reflect.DeepEqual(serv, srv5) { - t.Fatalf("bad: %v %v", serv, srv5) - } - case "cache": - if !reflect.DeepEqual(serv, srv6) { - t.Fatalf("bad: %v %v", serv, srv6) - } - case "consul": - // ignore - default: - t.Fatalf("unexpected service: %v", id) + verifyServices := func() (bool, error) { + if err := agent.RPC("Catalog.NodeServices", &req, &services); err != nil { + return false, fmt.Errorf("err: %v", err) } + + // Make sure we sent along our node info when we synced. + id := services.NodeServices.Node.ID + addrs := services.NodeServices.Node.TaggedAddresses + meta := services.NodeServices.Node.Meta + if id != conf.NodeID || + !reflect.DeepEqual(addrs, conf.TaggedAddresses) || + !reflect.DeepEqual(meta, conf.Meta) { + return false, fmt.Errorf("bad: %v", services.NodeServices.Node) + } + + // We should have 6 services (consul included) + if len(services.NodeServices.Services) != 6 { + return false, fmt.Errorf("bad: %v", services.NodeServices.Services) + } + + // All the services should match + for id, serv := range services.NodeServices.Services { + serv.CreateIndex, serv.ModifyIndex = 0, 0 + switch id { + case "mysql": + if !reflect.DeepEqual(serv, srv1) { + return false, fmt.Errorf("bad: %v %v", serv, srv1) + } + case "redis": + if !reflect.DeepEqual(serv, srv2) { + return false, fmt.Errorf("bad: %#v %#v", serv, srv2) + } + case "web": + if !reflect.DeepEqual(serv, srv3) { + return false, fmt.Errorf("bad: %v %v", serv, srv3) + } + case "api": + if !reflect.DeepEqual(serv, srv5) { + return false, fmt.Errorf("bad: %v %v", serv, srv5) + } + case "cache": + if !reflect.DeepEqual(serv, srv6) { + return false, fmt.Errorf("bad: %v %v", serv, srv6) + } + case "consul": + // ignore + default: + return false, fmt.Errorf("unexpected service: %v", id) + } + } + + // Check the local state + if len(agent.state.services) != 6 { + return false, fmt.Errorf("bad: %v", agent.state.services) + } + if len(agent.state.serviceStatus) != 6 { + return false, fmt.Errorf("bad: %v", agent.state.serviceStatus) + } + for name, status := range agent.state.serviceStatus { + if !status.inSync { + return false, fmt.Errorf("should be in sync: %v %v", name, status) + } + } + + return true, nil } - // Check the local state - if len(agent.state.services) != 6 { - t.Fatalf("bad: %v", agent.state.services) - } - if len(agent.state.serviceStatus) != 6 { - t.Fatalf("bad: %v", agent.state.serviceStatus) - } - for name, status := range agent.state.serviceStatus { - if !status.inSync { - t.Fatalf("should be in sync: %v %v", name, status) - } - } + testutil.WaitForResult(verifyServices, func(err error) { + t.Fatal(err) + }) // Remove one of the services agent.state.RemoveService("api") // Trigger anti-entropy run and wait agent.StartSync() - time.Sleep(200 * time.Millisecond) - // Verify that we are in sync - if err := agent.RPC("Catalog.NodeServices", &req, &services); err != nil { - t.Fatalf("err: %v", err) - } - - // We should have 5 services (consul included) - if len(services.NodeServices.Services) != 5 { - t.Fatalf("bad: %v", services.NodeServices.Services) - } - - // All the services should match - for id, serv := range services.NodeServices.Services { - serv.CreateIndex, serv.ModifyIndex = 0, 0 - switch id { - case "mysql": - if !reflect.DeepEqual(serv, srv1) { - t.Fatalf("bad: %v %v", serv, srv1) - } - case "redis": - if !reflect.DeepEqual(serv, srv2) { - t.Fatalf("bad: %#v %#v", serv, srv2) - } - case "web": - if !reflect.DeepEqual(serv, srv3) { - t.Fatalf("bad: %v %v", serv, srv3) - } - case "cache": - if !reflect.DeepEqual(serv, srv6) { - t.Fatalf("bad: %v %v", serv, srv6) - } - case "consul": - // ignore - default: - t.Fatalf("unexpected service: %v", id) + verifyServicesAfterRemove := func() (bool, error) { + if err := agent.RPC("Catalog.NodeServices", &req, &services); err != nil { + return false, fmt.Errorf("err: %v", err) } + + // We should have 5 services (consul included) + if len(services.NodeServices.Services) != 5 { + return false, fmt.Errorf("bad: %v", services.NodeServices.Services) + } + + // All the services should match + for id, serv := range services.NodeServices.Services { + serv.CreateIndex, serv.ModifyIndex = 0, 0 + switch id { + case "mysql": + if !reflect.DeepEqual(serv, srv1) { + return false, fmt.Errorf("bad: %v %v", serv, srv1) + } + case "redis": + if !reflect.DeepEqual(serv, srv2) { + return false, fmt.Errorf("bad: %#v %#v", serv, srv2) + } + case "web": + if !reflect.DeepEqual(serv, srv3) { + return false, fmt.Errorf("bad: %v %v", serv, srv3) + } + case "cache": + if !reflect.DeepEqual(serv, srv6) { + return false, fmt.Errorf("bad: %v %v", serv, srv6) + } + case "consul": + // ignore + default: + return false, fmt.Errorf("unexpected service: %v", id) + } + } + + // Check the local state + if len(agent.state.services) != 5 { + return false, fmt.Errorf("bad: %v", agent.state.services) + } + if len(agent.state.serviceStatus) != 5 { + return false, fmt.Errorf("bad: %v", agent.state.serviceStatus) + } + for name, status := range agent.state.serviceStatus { + if !status.inSync { + return false, fmt.Errorf("should be in sync: %v %v", name, status) + } + } + + return true, nil } - // Check the local state - if len(agent.state.services) != 5 { - t.Fatalf("bad: %v", agent.state.services) - } - if len(agent.state.serviceStatus) != 5 { - t.Fatalf("bad: %v", agent.state.serviceStatus) - } - for name, status := range agent.state.serviceStatus { - if !status.inSync { - t.Fatalf("should be in sync: %v %v", name, status) - } - } + testutil.WaitForResult(verifyServicesAfterRemove, func(err error) { + t.Fatal(err) + }) } func TestAgentAntiEntropy_EnableTagOverride(t *testing.T) { @@ -287,48 +304,55 @@ func TestAgentAntiEntropy_EnableTagOverride(t *testing.T) { // Trigger anti-entropy run and wait agent.StartSync() - time.Sleep(200 * time.Millisecond) - // Verify that we are in sync req := structs.NodeSpecificRequest{ Datacenter: "dc1", Node: agent.config.NodeName, } var services structs.IndexedNodeServices - if err := agent.RPC("Catalog.NodeServices", &req, &services); err != nil { - t.Fatalf("err: %v", err) + + verifyServices := func() (bool, error) { + if err := agent.RPC("Catalog.NodeServices", &req, &services); err != nil { + return false, fmt.Errorf("err: %v", err) + } + + // All the services should match + for id, serv := range services.NodeServices.Services { + serv.CreateIndex, serv.ModifyIndex = 0, 0 + switch id { + case "svc_id1": + if serv.ID != "svc_id1" || + serv.Service != "svc1" || + serv.Port != 6100 || + !reflect.DeepEqual(serv.Tags, []string{"tag1_mod"}) { + return false, fmt.Errorf("bad: %v %v", serv, srv1) + } + case "svc_id2": + if serv.ID != "svc_id2" || + serv.Service != "svc2" || + serv.Port != 6200 || + !reflect.DeepEqual(serv.Tags, []string{"tag2"}) { + return false, fmt.Errorf("bad: %v %v", serv, srv2) + } + case "consul": + // ignore + default: + return false, fmt.Errorf("unexpected service: %v", id) + } + } + + for name, status := range agent.state.serviceStatus { + if !status.inSync { + return false, fmt.Errorf("should be in sync: %v %v", name, status) + } + } + + return true, nil } - // All the services should match - for id, serv := range services.NodeServices.Services { - serv.CreateIndex, serv.ModifyIndex = 0, 0 - switch id { - case "svc_id1": - if serv.ID != "svc_id1" || - serv.Service != "svc1" || - serv.Port != 6100 || - !reflect.DeepEqual(serv.Tags, []string{"tag1_mod"}) { - t.Fatalf("bad: %v %v", serv, srv1) - } - case "svc_id2": - if serv.ID != "svc_id2" || - serv.Service != "svc2" || - serv.Port != 6200 || - !reflect.DeepEqual(serv.Tags, []string{"tag2"}) { - t.Fatalf("bad: %v %v", serv, srv2) - } - case "consul": - // ignore - default: - t.Fatalf("unexpected service: %v", id) - } - } - - for name, status := range agent.state.serviceStatus { - if !status.inSync { - t.Fatalf("should be in sync: %v %v", name, status) - } - } + testutil.WaitForResult(verifyServices, func(err error) { + t.Fatal(err) + }) } func TestAgentAntiEntropy_Services_WithChecks(t *testing.T) { @@ -635,49 +659,54 @@ func TestAgentAntiEntropy_Checks(t *testing.T) { // Trigger anti-entropy run and wait agent.StartSync() - time.Sleep(200 * time.Millisecond) - // Verify that we are in sync req := structs.NodeSpecificRequest{ Datacenter: "dc1", Node: agent.config.NodeName, } var checks structs.IndexedHealthChecks - if err := agent.RPC("Health.NodeChecks", &req, &checks); err != nil { - t.Fatalf("err: %v", err) - } - // We should have 5 checks (serf included) - if len(checks.HealthChecks) != 5 { - t.Fatalf("bad: %v", checks) - } - - // All the checks should match - for _, chk := range checks.HealthChecks { - chk.CreateIndex, chk.ModifyIndex = 0, 0 - switch chk.CheckID { - case "mysql": - if !reflect.DeepEqual(chk, chk1) { - t.Fatalf("bad: %v %v", chk, chk1) - } - case "redis": - if !reflect.DeepEqual(chk, chk2) { - t.Fatalf("bad: %v %v", chk, chk2) - } - case "web": - if !reflect.DeepEqual(chk, chk3) { - t.Fatalf("bad: %v %v", chk, chk3) - } - case "cache": - if !reflect.DeepEqual(chk, chk5) { - t.Fatalf("bad: %v %v", chk, chk5) - } - case "serfHealth": - // ignore - default: - t.Fatalf("unexpected check: %v", chk) + // Verify that we are in sync + testutil.WaitForResult(func() (bool, error) { + if err := agent.RPC("Health.NodeChecks", &req, &checks); err != nil { + return false, fmt.Errorf("err: %v", err) } - } + + // We should have 5 checks (serf included) + if len(checks.HealthChecks) != 5 { + return false, fmt.Errorf("bad: %v", checks) + } + + // All the checks should match + for _, chk := range checks.HealthChecks { + chk.CreateIndex, chk.ModifyIndex = 0, 0 + switch chk.CheckID { + case "mysql": + if !reflect.DeepEqual(chk, chk1) { + return false, fmt.Errorf("bad: %v %v", chk, chk1) + } + case "redis": + if !reflect.DeepEqual(chk, chk2) { + return false, fmt.Errorf("bad: %v %v", chk, chk2) + } + case "web": + if !reflect.DeepEqual(chk, chk3) { + return false, fmt.Errorf("bad: %v %v", chk, chk3) + } + case "cache": + if !reflect.DeepEqual(chk, chk5) { + return false, fmt.Errorf("bad: %v %v", chk, chk5) + } + case "serfHealth": + // ignore + default: + return false, fmt.Errorf("unexpected check: %v", chk) + } + } + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) // Check the local state if len(agent.state.checks) != 4 { @@ -692,7 +721,7 @@ func TestAgentAntiEntropy_Checks(t *testing.T) { } } - // Make sure we sent along our tagged addresses when we synced. + // Make sure we sent along our node info addresses when we synced. { req := structs.NodeSpecificRequest{ Datacenter: "dc1", @@ -703,9 +732,13 @@ func TestAgentAntiEntropy_Checks(t *testing.T) { t.Fatalf("err: %v", err) } + id := services.NodeServices.Node.ID addrs := services.NodeServices.Node.TaggedAddresses - if len(addrs) == 0 || !reflect.DeepEqual(addrs, conf.TaggedAddresses) { - t.Fatalf("bad: %v", addrs) + meta := services.NodeServices.Node.Meta + if id != conf.NodeID || + !reflect.DeepEqual(addrs, conf.TaggedAddresses) || + !reflect.DeepEqual(meta, conf.Meta) { + t.Fatalf("bad: %v", services.NodeServices.Node) } } @@ -714,40 +747,44 @@ func TestAgentAntiEntropy_Checks(t *testing.T) { // Trigger anti-entropy run and wait agent.StartSync() - time.Sleep(200 * time.Millisecond) // Verify that we are in sync - if err := agent.RPC("Health.NodeChecks", &req, &checks); err != nil { - t.Fatalf("err: %v", err) - } - - // We should have 5 checks (serf included) - if len(checks.HealthChecks) != 4 { - t.Fatalf("bad: %v", checks) - } - - // All the checks should match - for _, chk := range checks.HealthChecks { - chk.CreateIndex, chk.ModifyIndex = 0, 0 - switch chk.CheckID { - case "mysql": - if !reflect.DeepEqual(chk, chk1) { - t.Fatalf("bad: %v %v", chk, chk1) - } - case "web": - if !reflect.DeepEqual(chk, chk3) { - t.Fatalf("bad: %v %v", chk, chk3) - } - case "cache": - if !reflect.DeepEqual(chk, chk5) { - t.Fatalf("bad: %v %v", chk, chk5) - } - case "serfHealth": - // ignore - default: - t.Fatalf("unexpected check: %v", chk) + testutil.WaitForResult(func() (bool, error) { + if err := agent.RPC("Health.NodeChecks", &req, &checks); err != nil { + return false, fmt.Errorf("err: %v", err) } - } + + // We should have 5 checks (serf included) + if len(checks.HealthChecks) != 4 { + return false, fmt.Errorf("bad: %v", checks) + } + + // All the checks should match + for _, chk := range checks.HealthChecks { + chk.CreateIndex, chk.ModifyIndex = 0, 0 + switch chk.CheckID { + case "mysql": + if !reflect.DeepEqual(chk, chk1) { + return false, fmt.Errorf("bad: %v %v", chk, chk1) + } + case "web": + if !reflect.DeepEqual(chk, chk3) { + return false, fmt.Errorf("bad: %v %v", chk, chk3) + } + case "cache": + if !reflect.DeepEqual(chk, chk5) { + return false, fmt.Errorf("bad: %v %v", chk, chk5) + } + case "serfHealth": + // ignore + default: + return false, fmt.Errorf("unexpected check: %v", chk) + } + } + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) // Check the local state if len(agent.state.checks) != 3 { @@ -784,7 +821,6 @@ func TestAgentAntiEntropy_Check_DeferSync(t *testing.T) { // Trigger anti-entropy run and wait agent.StartSync() - time.Sleep(200 * time.Millisecond) // Verify that we are in sync req := structs.NodeSpecificRequest{ @@ -792,14 +828,21 @@ func TestAgentAntiEntropy_Check_DeferSync(t *testing.T) { Node: agent.config.NodeName, } var checks structs.IndexedHealthChecks - if err := agent.RPC("Health.NodeChecks", &req, &checks); err != nil { - t.Fatalf("err: %v", err) - } - // Verify checks in place - if len(checks.HealthChecks) != 2 { - t.Fatalf("checks: %v", check) - } + testutil.WaitForResult(func() (bool, error) { + if err := agent.RPC("Health.NodeChecks", &req, &checks); err != nil { + return false, fmt.Errorf("err: %v", err) + } + + // Verify checks in place + if len(checks.HealthChecks) != 2 { + return false, fmt.Errorf("checks: %v", check) + } + + return true, nil + }, func(err error) { + t.Fatal(err) + }) // Update the check output! Should be deferred agent.state.UpdateCheck("web", structs.HealthPassing, "output") @@ -950,6 +993,8 @@ func TestAgentAntiEntropy_Check_DeferSync(t *testing.T) { func TestAgentAntiEntropy_NodeInfo(t *testing.T) { conf := nextConfig() + conf.NodeID = types.NodeID("40e4a748-2192-161a-0510-9bf59fe950b5") + conf.Meta["somekey"] = "somevalue" dir, agent := makeAgent(t, conf) defer os.RemoveAll(dir) defer agent.Shutdown() @@ -969,24 +1014,33 @@ func TestAgentAntiEntropy_NodeInfo(t *testing.T) { // Trigger anti-entropy run and wait agent.StartSync() - time.Sleep(200 * time.Millisecond) - // Verify that we are in sync req := structs.NodeSpecificRequest{ Datacenter: "dc1", Node: agent.config.NodeName, } var services structs.IndexedNodeServices - if err := agent.RPC("Catalog.NodeServices", &req, &services); err != nil { - t.Fatalf("err: %v", err) - } - // Make sure we synced our node info - this should have ridden on the - // "consul" service sync - addrs := services.NodeServices.Node.TaggedAddresses - if len(addrs) == 0 || !reflect.DeepEqual(addrs, conf.TaggedAddresses) { - t.Fatalf("bad: %v", addrs) - } + // Wait for the sync + testutil.WaitForResult(func() (bool, error) { + if err := agent.RPC("Catalog.NodeServices", &req, &services); err != nil { + return false, fmt.Errorf("err: %v", err) + } + + // Make sure we synced our node info - this should have ridden on the + // "consul" service sync + id := services.NodeServices.Node.ID + addrs := services.NodeServices.Node.TaggedAddresses + meta := services.NodeServices.Node.Meta + if id != conf.NodeID || + !reflect.DeepEqual(addrs, conf.TaggedAddresses) || + !reflect.DeepEqual(meta, conf.Meta) { + return false, fmt.Errorf("bad: %v", services.NodeServices.Node) + } + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) // Blow away the catalog version of the node info if err := agent.RPC("Catalog.Register", args, &out); err != nil { @@ -995,17 +1049,26 @@ func TestAgentAntiEntropy_NodeInfo(t *testing.T) { // Trigger anti-entropy run and wait agent.StartSync() - time.Sleep(200 * time.Millisecond) - // Verify that we are in sync - this should have been a sync of just the + // Wait for the sync - this should have been a sync of just the // node info - if err := agent.RPC("Catalog.NodeServices", &req, &services); err != nil { - t.Fatalf("err: %v", err) - } - addrs = services.NodeServices.Node.TaggedAddresses - if len(addrs) == 0 || !reflect.DeepEqual(addrs, conf.TaggedAddresses) { - t.Fatalf("bad: %v", addrs) - } + testutil.WaitForResult(func() (bool, error) { + if err := agent.RPC("Catalog.NodeServices", &req, &services); err != nil { + return false, fmt.Errorf("err: %v", err) + } + + id := services.NodeServices.Node.ID + addrs := services.NodeServices.Node.TaggedAddresses + meta := services.NodeServices.Node.Meta + if id != conf.NodeID || + !reflect.DeepEqual(addrs, conf.TaggedAddresses) || + !reflect.DeepEqual(meta, conf.Meta) { + return false, fmt.Errorf("bad: %v", services.NodeServices.Node) + } + return true, nil + }, func(err error) { + t.Fatalf("err: %s", err) + }) } func TestAgentAntiEntropy_deleteService_fails(t *testing.T) { @@ -1028,6 +1091,10 @@ func TestAgent_serviceTokens(t *testing.T) { l := new(localState) l.Init(config, nil) + l.AddService(&structs.NodeService{ + ID: "redis", + }, "") + // Returns default when no token is set if token := l.ServiceToken("redis"); token != "default" { t.Fatalf("bad: %s", token) @@ -1175,22 +1242,24 @@ func TestAgent_sendCoordinate(t *testing.T) { testutil.WaitForLeader(t, agent.RPC, "dc1") - // Wait a little while for an update. - time.Sleep(3 * conf.ConsulConfig.CoordinateUpdatePeriod) - // Make sure the coordinate is present. req := structs.DCSpecificRequest{ Datacenter: agent.config.Datacenter, } var reply structs.IndexedCoordinates - if err := agent.RPC("Coordinate.ListNodes", &req, &reply); err != nil { + testutil.WaitForResult(func() (bool, error) { + if err := agent.RPC("Coordinate.ListNodes", &req, &reply); err != nil { + return false, fmt.Errorf("err: %s", err) + } + if len(reply.Coordinates) != 1 { + return false, fmt.Errorf("expected a coordinate: %v", reply) + } + coord := reply.Coordinates[0] + if coord.Node != agent.config.NodeName || coord.Coord == nil { + return false, fmt.Errorf("bad: %v", coord) + } + return true, nil + }, func(err error) { t.Fatalf("err: %s", err) - } - if len(reply.Coordinates) != 1 { - t.Fatalf("expected a coordinate: %v", reply) - } - coord := reply.Coordinates[0] - if coord.Node != agent.config.NodeName || coord.Coord == nil { - t.Fatalf("bad: %v", coord) - } + }) } diff --git a/command/agent/operator_endpoint.go b/command/agent/operator_endpoint.go index cdab48c387..c45f89aa5f 100644 --- a/command/agent/operator_endpoint.go +++ b/command/agent/operator_endpoint.go @@ -1,10 +1,13 @@ package agent import ( + "fmt" "net/http" "github.com/hashicorp/consul/consul/structs" + multierror "github.com/hashicorp/go-multierror" "github.com/hashicorp/raft" + "strconv" ) // OperatorRaftConfiguration is used to inspect the current Raft configuration. @@ -55,3 +58,104 @@ func (s *HTTPServer) OperatorRaftPeer(resp http.ResponseWriter, req *http.Reques } return nil, nil } + +type keyringArgs struct { + Key string + Token string + RelayFactor uint8 +} + +// OperatorKeyringEndpoint handles keyring operations (install, list, use, remove) +func (s *HTTPServer) OperatorKeyringEndpoint(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + var args keyringArgs + if req.Method == "POST" || req.Method == "PUT" || req.Method == "DELETE" { + if err := decodeBody(req, &args, nil); err != nil { + resp.WriteHeader(400) + resp.Write([]byte(fmt.Sprintf("Request decode failed: %v", err))) + return nil, nil + } + } + s.parseToken(req, &args.Token) + + // Parse relay factor + if relayFactor := req.URL.Query().Get("relay-factor"); relayFactor != "" { + n, err := strconv.Atoi(relayFactor) + if err != nil { + resp.WriteHeader(400) + resp.Write([]byte(fmt.Sprintf("Error parsing relay factor: %v", err))) + return nil, nil + } + + args.RelayFactor, err = ParseRelayFactor(n) + if err != nil { + resp.WriteHeader(400) + resp.Write([]byte(fmt.Sprintf("Invalid relay factor: %v", err))) + return nil, nil + } + } + + // Switch on the method + switch req.Method { + case "GET": + return s.KeyringList(resp, req, &args) + case "POST": + return s.KeyringInstall(resp, req, &args) + case "PUT": + return s.KeyringUse(resp, req, &args) + case "DELETE": + return s.KeyringRemove(resp, req, &args) + default: + resp.WriteHeader(405) + return nil, nil + } +} + +// KeyringInstall is used to install a new gossip encryption key into the cluster +func (s *HTTPServer) KeyringInstall(resp http.ResponseWriter, req *http.Request, args *keyringArgs) (interface{}, error) { + responses, err := s.agent.InstallKey(args.Key, args.Token, args.RelayFactor) + if err != nil { + return nil, err + } + + return nil, keyringErrorsOrNil(responses.Responses) +} + +// KeyringList is used to list the keys installed in the cluster +func (s *HTTPServer) KeyringList(resp http.ResponseWriter, req *http.Request, args *keyringArgs) (interface{}, error) { + responses, err := s.agent.ListKeys(args.Token, args.RelayFactor) + if err != nil { + return nil, err + } + + return responses.Responses, keyringErrorsOrNil(responses.Responses) +} + +// KeyringRemove is used to list the keys installed in the cluster +func (s *HTTPServer) KeyringRemove(resp http.ResponseWriter, req *http.Request, args *keyringArgs) (interface{}, error) { + responses, err := s.agent.RemoveKey(args.Key, args.Token, args.RelayFactor) + if err != nil { + return nil, err + } + + return nil, keyringErrorsOrNil(responses.Responses) +} + +// KeyringUse is used to change the primary gossip encryption key +func (s *HTTPServer) KeyringUse(resp http.ResponseWriter, req *http.Request, args *keyringArgs) (interface{}, error) { + responses, err := s.agent.UseKey(args.Key, args.Token, args.RelayFactor) + if err != nil { + return nil, err + } + + return nil, keyringErrorsOrNil(responses.Responses) +} + +func keyringErrorsOrNil(responses []*structs.KeyringResponse) error { + var errs error + for _, response := range responses { + if response.Error != "" { + errs = multierror.Append(errs, fmt.Errorf(response.Error)) + } + } + return errs +} diff --git a/command/agent/operator_endpoint_test.go b/command/agent/operator_endpoint_test.go index bc9b51ad4e..4b1dd54126 100644 --- a/command/agent/operator_endpoint_test.go +++ b/command/agent/operator_endpoint_test.go @@ -2,6 +2,7 @@ package agent import ( "bytes" + "fmt" "net/http" "net/http/httptest" "strings" @@ -56,3 +57,231 @@ func TestOperator_OperatorRaftPeer(t *testing.T) { } }) } + +func TestOperator_KeyringInstall(t *testing.T) { + oldKey := "H3/9gBxcKKRf45CaI2DlRg==" + newKey := "z90lFx3sZZLtTOkutXcwYg==" + configFunc := func(c *Config) { + c.EncryptKey = oldKey + } + httpTestWithConfig(t, func(srv *HTTPServer) { + body := bytes.NewBufferString(fmt.Sprintf("{\"Key\":\"%s\"}", newKey)) + req, err := http.NewRequest("POST", "/v1/operator/keyring", body) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + _, err = srv.OperatorKeyringEndpoint(resp, req) + if err != nil { + t.Fatalf("err: %s", err) + } + + listResponse, err := srv.agent.ListKeys("", 0) + if err != nil { + t.Fatalf("err: %s", err) + } + if len(listResponse.Responses) != 2 { + t.Fatalf("bad: %d", len(listResponse.Responses)) + } + + for _, response := range listResponse.Responses { + count, ok := response.Keys[newKey] + if !ok { + t.Fatalf("bad: %v", response.Keys) + } + if count != response.NumNodes { + t.Fatalf("bad: %d, %d", count, response.NumNodes) + } + } + }, configFunc) +} + +func TestOperator_KeyringList(t *testing.T) { + key := "H3/9gBxcKKRf45CaI2DlRg==" + configFunc := func(c *Config) { + c.EncryptKey = key + } + httpTestWithConfig(t, func(srv *HTTPServer) { + req, err := http.NewRequest("GET", "/v1/operator/keyring", nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + r, err := srv.OperatorKeyringEndpoint(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + responses, ok := r.([]*structs.KeyringResponse) + if !ok { + t.Fatalf("err: %v", !ok) + } + + // Check that we get both a LAN and WAN response, and that they both only + // contain the original key + if len(responses) != 2 { + t.Fatalf("bad: %d", len(responses)) + } + + // WAN + if len(responses[0].Keys) != 1 { + t.Fatalf("bad: %d", len(responses[0].Keys)) + } + if !responses[0].WAN { + t.Fatalf("bad: %v", responses[0].WAN) + } + if _, ok := responses[0].Keys[key]; !ok { + t.Fatalf("bad: %v", ok) + } + + // LAN + if len(responses[1].Keys) != 1 { + t.Fatalf("bad: %d", len(responses[1].Keys)) + } + if responses[1].WAN { + t.Fatalf("bad: %v", responses[1].WAN) + } + if _, ok := responses[1].Keys[key]; !ok { + t.Fatalf("bad: %v", ok) + } + }, configFunc) +} + +func TestOperator_KeyringRemove(t *testing.T) { + key := "H3/9gBxcKKRf45CaI2DlRg==" + tempKey := "z90lFx3sZZLtTOkutXcwYg==" + configFunc := func(c *Config) { + c.EncryptKey = key + } + httpTestWithConfig(t, func(srv *HTTPServer) { + _, err := srv.agent.InstallKey(tempKey, "", 0) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Make sure the temp key is installed + list, err := srv.agent.ListKeys("", 0) + if err != nil { + t.Fatalf("err: %v", err) + } + responses := list.Responses + if len(responses) != 2 { + t.Fatalf("bad: %d", len(responses)) + } + for _, response := range responses { + if len(response.Keys) != 2 { + t.Fatalf("bad: %d", len(response.Keys)) + } + if _, ok := response.Keys[tempKey]; !ok { + t.Fatalf("bad: %v", ok) + } + } + + body := bytes.NewBufferString(fmt.Sprintf("{\"Key\":\"%s\"}", tempKey)) + req, err := http.NewRequest("DELETE", "/v1/operator/keyring", body) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + _, err = srv.OperatorKeyringEndpoint(resp, req) + if err != nil { + t.Fatalf("err: %s", err) + } + + // Make sure the temp key has been removed + list, err = srv.agent.ListKeys("", 0) + if err != nil { + t.Fatalf("err: %v", err) + } + responses = list.Responses + if len(responses) != 2 { + t.Fatalf("bad: %d", len(responses)) + } + for _, response := range responses { + if len(response.Keys) != 1 { + t.Fatalf("bad: %d", len(response.Keys)) + } + if _, ok := response.Keys[tempKey]; ok { + t.Fatalf("bad: %v", ok) + } + } + }, configFunc) +} + +func TestOperator_KeyringUse(t *testing.T) { + oldKey := "H3/9gBxcKKRf45CaI2DlRg==" + newKey := "z90lFx3sZZLtTOkutXcwYg==" + configFunc := func(c *Config) { + c.EncryptKey = oldKey + } + httpTestWithConfig(t, func(srv *HTTPServer) { + if _, err := srv.agent.InstallKey(newKey, "", 0); err != nil { + t.Fatalf("err: %v", err) + } + + body := bytes.NewBufferString(fmt.Sprintf("{\"Key\":\"%s\"}", newKey)) + req, err := http.NewRequest("PUT", "/v1/operator/keyring", body) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + _, err = srv.OperatorKeyringEndpoint(resp, req) + if err != nil { + t.Fatalf("err: %s", err) + } + + if _, err := srv.agent.RemoveKey(oldKey, "", 0); err != nil { + t.Fatalf("err: %v", err) + } + + // Make sure only the new key remains + list, err := srv.agent.ListKeys("", 0) + if err != nil { + t.Fatalf("err: %v", err) + } + responses := list.Responses + if len(responses) != 2 { + t.Fatalf("bad: %d", len(responses)) + } + for _, response := range responses { + if len(response.Keys) != 1 { + t.Fatalf("bad: %d", len(response.Keys)) + } + if _, ok := response.Keys[newKey]; !ok { + t.Fatalf("bad: %v", ok) + } + } + }, configFunc) +} + +func TestOperator_Keyring_InvalidRelayFactor(t *testing.T) { + key := "H3/9gBxcKKRf45CaI2DlRg==" + configFunc := func(c *Config) { + c.EncryptKey = key + } + httpTestWithConfig(t, func(srv *HTTPServer) { + cases := map[string]string{ + "999": "Relay factor must be in range", + "asdf": "Error parsing relay factor", + } + for relayFactor, errString := range cases { + req, err := http.NewRequest("GET", "/v1/operator/keyring?relay-factor="+relayFactor, nil) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + _, err = srv.OperatorKeyringEndpoint(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + body := resp.Body.String() + if !strings.Contains(body, errString) { + t.Fatalf("bad: %v", body) + } + } + }, configFunc) +} diff --git a/command/agent/prepared_query_endpoint_test.go b/command/agent/prepared_query_endpoint_test.go index 0a7927f466..7a6fbfa140 100644 --- a/command/agent/prepared_query_endpoint_test.go +++ b/command/agent/prepared_query_endpoint_test.go @@ -90,6 +90,7 @@ func TestPreparedQuery_Create(t *testing.T) { }, OnlyPassing: true, Tags: []string{"foo", "bar"}, + NodeMeta: map[string]string{"somekey": "somevalue"}, }, DNS: structs.QueryDNSOptions{ TTL: "10s", @@ -120,6 +121,7 @@ func TestPreparedQuery_Create(t *testing.T) { }, "OnlyPassing": true, "Tags": []string{"foo", "bar"}, + "NodeMeta": map[string]string{"somekey": "somevalue"}, }, "DNS": map[string]interface{}{ "TTL": "10s", @@ -645,6 +647,7 @@ func TestPreparedQuery_Update(t *testing.T) { }, OnlyPassing: true, Tags: []string{"foo", "bar"}, + NodeMeta: map[string]string{"somekey": "somevalue"}, }, DNS: structs.QueryDNSOptions{ TTL: "10s", @@ -676,6 +679,7 @@ func TestPreparedQuery_Update(t *testing.T) { }, "OnlyPassing": true, "Tags": []string{"foo", "bar"}, + "NodeMeta": map[string]string{"somekey": "somevalue"}, }, "DNS": map[string]interface{}{ "TTL": "10s", diff --git a/command/agent/rpc.go b/command/agent/rpc.go index e1dfecb21e..47276d2745 100644 --- a/command/agent/rpc.go +++ b/command/agent/rpc.go @@ -32,6 +32,7 @@ import ( "sync" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/consul/logger" "github.com/hashicorp/go-msgpack/codec" "github.com/hashicorp/logutils" "github.com/hashicorp/serf/serf" @@ -105,7 +106,8 @@ type joinResponse struct { } type keyringRequest struct { - Key string + Key string + RelayFactor uint8 } type KeyringEntry struct { @@ -171,7 +173,7 @@ type AgentRPC struct { clients map[string]*rpcClient listener net.Listener logger *log.Logger - logWriter *logWriter + logWriter *logger.LogWriter reloadCh chan struct{} stop bool stopCh chan struct{} @@ -218,7 +220,7 @@ func (c *rpcClient) String() string { // NewAgentRPC is used to create a new Agent RPC handler func NewAgentRPC(agent *Agent, listener net.Listener, - logOutput io.Writer, logWriter *logWriter) *AgentRPC { + logOutput io.Writer, logWriter *logger.LogWriter) *AgentRPC { if logOutput == nil { logOutput = os.Stderr } @@ -513,9 +515,9 @@ func (i *AgentRPC) handleMonitor(client *rpcClient, seq uint64) error { req.LogLevel = strings.ToUpper(req.LogLevel) // Create a level filter - filter := LevelFilter() + filter := logger.LevelFilter() filter.MinLevel = logutils.LogLevel(req.LogLevel) - if !ValidateLevelFilter(filter.MinLevel, filter) { + if !logger.ValidateLevelFilter(filter.MinLevel, filter) { resp.Error = fmt.Sprintf("Unknown log level: %s", filter.MinLevel) goto SEND } @@ -603,21 +605,21 @@ func (i *AgentRPC) handleKeyring(client *rpcClient, seq uint64, cmd, token strin var r keyringResponse var err error - if cmd != listKeysCommand { - if err = client.dec.Decode(&req); err != nil { - return fmt.Errorf("decode failed: %v", err) - } + if err = client.dec.Decode(&req); err != nil { + return fmt.Errorf("decode failed: %v", err) } + i.agent.logger.Printf("[INFO] agent: Sending rpc command with relay factor %d", req.RelayFactor) + switch cmd { case listKeysCommand: - queryResp, err = i.agent.ListKeys(token) + queryResp, err = i.agent.ListKeys(token, req.RelayFactor) case installKeyCommand: - queryResp, err = i.agent.InstallKey(req.Key, token) + queryResp, err = i.agent.InstallKey(req.Key, token, req.RelayFactor) case useKeyCommand: - queryResp, err = i.agent.UseKey(req.Key, token) + queryResp, err = i.agent.UseKey(req.Key, token, req.RelayFactor) case removeKeyCommand: - queryResp, err = i.agent.RemoveKey(req.Key, token) + queryResp, err = i.agent.RemoveKey(req.Key, token, req.RelayFactor) default: respHeader := responseHeader{Seq: seq, Error: unsupportedCommand} client.Send(&respHeader, nil) diff --git a/command/agent/rpc_client.go b/command/agent/rpc_client.go index 3ce90b1634..ecd97aecc2 100644 --- a/command/agent/rpc_client.go +++ b/command/agent/rpc_client.go @@ -13,6 +13,12 @@ import ( "sync/atomic" ) +const ( + // RPCAddrEnvName defines an environment variable name which sets + // an RPC address if there is no -rpc-addr specified. + RPCAddrEnvName = "CONSUL_RPC_ADDR" +) + var ( clientClosed = fmt.Errorf("client closed") ) @@ -84,7 +90,7 @@ func NewRPCClient(addr string) (*RPCClient, error) { var conn net.Conn var err error - if envAddr := os.Getenv("CONSUL_RPC_ADDR"); envAddr != "" { + if envAddr := os.Getenv(RPCAddrEnvName); envAddr != "" { addr = envAddr } @@ -188,48 +194,49 @@ func (c *RPCClient) WANMembers() ([]Member, error) { return resp.Members, err } -func (c *RPCClient) ListKeys(token string) (keyringResponse, error) { +func (c *RPCClient) ListKeys(token string, relayFactor uint8) (keyringResponse, error) { header := requestHeader{ Command: listKeysCommand, Seq: c.getSeq(), Token: token, } + req := keyringRequest{RelayFactor: relayFactor} var resp keyringResponse - err := c.genericRPC(&header, nil, &resp) + err := c.genericRPC(&header, req, &resp) return resp, err } -func (c *RPCClient) InstallKey(key, token string) (keyringResponse, error) { +func (c *RPCClient) InstallKey(key, token string, relayFactor uint8) (keyringResponse, error) { header := requestHeader{ Command: installKeyCommand, Seq: c.getSeq(), Token: token, } - req := keyringRequest{key} + req := keyringRequest{Key: key, RelayFactor: relayFactor} var resp keyringResponse err := c.genericRPC(&header, &req, &resp) return resp, err } -func (c *RPCClient) UseKey(key, token string) (keyringResponse, error) { +func (c *RPCClient) UseKey(key, token string, relayFactor uint8) (keyringResponse, error) { header := requestHeader{ Command: useKeyCommand, Seq: c.getSeq(), Token: token, } - req := keyringRequest{key} + req := keyringRequest{Key: key, RelayFactor: relayFactor} var resp keyringResponse err := c.genericRPC(&header, &req, &resp) return resp, err } -func (c *RPCClient) RemoveKey(key, token string) (keyringResponse, error) { +func (c *RPCClient) RemoveKey(key, token string, relayFactor uint8) (keyringResponse, error) { header := requestHeader{ Command: removeKeyCommand, Seq: c.getSeq(), Token: token, } - req := keyringRequest{key} + req := keyringRequest{Key: key, RelayFactor: relayFactor} var resp keyringResponse err := c.genericRPC(&header, &req, &resp) return resp, err diff --git a/command/agent/rpc_client_test.go b/command/agent/rpc_client_test.go index 9217cf9533..6ace0bb6f0 100644 --- a/command/agent/rpc_client_test.go +++ b/command/agent/rpc_client_test.go @@ -13,6 +13,7 @@ import ( "testing" "time" + "github.com/hashicorp/consul/logger" "github.com/hashicorp/consul/testutil" "github.com/hashicorp/serf/serf" ) @@ -38,7 +39,7 @@ func testRPCClient(t *testing.T) *rpcParts { } func testRPCClientWithConfig(t *testing.T, cb func(c *Config)) *rpcParts { - lw := NewLogWriter(512) + lw := logger.NewLogWriter(512) mult := io.MultiWriter(os.Stderr, lw) configTry := 0 @@ -60,7 +61,7 @@ RECONF: t.Fatalf("err: %s", err) } - dir, agent := makeAgentLog(t, conf, mult) + dir, agent := makeAgentLog(t, conf, mult, lw) rpc := NewAgentRPC(agent, l, mult, lw) rpcClient, err := NewRPCClient(l.Addr().String()) @@ -370,7 +371,7 @@ func TestRPCClientInstallKey(t *testing.T) { }) // install key2 - r, err := p1.client.InstallKey(key2, "") + r, err := p1.client.InstallKey(key2, "", 0) if err != nil { t.Fatalf("err: %s", err) } @@ -401,7 +402,7 @@ func TestRPCClientUseKey(t *testing.T) { defer p1.Close() // add a second key to the ring - r, err := p1.client.InstallKey(key2, "") + r, err := p1.client.InstallKey(key2, "", 0) if err != nil { t.Fatalf("err: %s", err) } @@ -422,21 +423,21 @@ func TestRPCClientUseKey(t *testing.T) { }) // can't remove key1 yet - r, err = p1.client.RemoveKey(key1, "") + r, err = p1.client.RemoveKey(key1, "", 0) if err != nil { t.Fatalf("err: %s", err) } keyringError(t, r) // change primary key - r, err = p1.client.UseKey(key2, "") + r, err = p1.client.UseKey(key2, "", 0) if err != nil { t.Fatalf("err: %s", err) } keyringSuccess(t, r) // can remove key1 now - r, err = p1.client.RemoveKey(key1, "") + r, err = p1.client.RemoveKey(key1, "", 0) if err != nil { t.Fatalf("err: %s", err) } @@ -449,7 +450,7 @@ func TestRPCClientKeyOperation_encryptionDisabled(t *testing.T) { }) defer p1.Close() - r, err := p1.client.ListKeys("") + r, err := p1.client.ListKeys("", 0) if err != nil { t.Fatalf("err: %s", err) } @@ -457,7 +458,7 @@ func TestRPCClientKeyOperation_encryptionDisabled(t *testing.T) { } func listKeys(t *testing.T, c *RPCClient) map[string]map[string]int { - resp, err := c.ListKeys("") + resp, err := c.ListKeys("", 0) if err != nil { t.Fatalf("err: %s", err) } diff --git a/command/agent/rpc_log_stream_test.go b/command/agent/rpc_log_stream_test.go index ea0412cf3f..dc6d490f07 100644 --- a/command/agent/rpc_log_stream_test.go +++ b/command/agent/rpc_log_stream_test.go @@ -1,11 +1,13 @@ package agent import ( - "github.com/hashicorp/logutils" "log" "os" "testing" "time" + + "github.com/hashicorp/consul/logger" + "github.com/hashicorp/logutils" ) type MockStreamClient struct { @@ -22,7 +24,7 @@ func (m *MockStreamClient) Send(h *responseHeader, o interface{}) error { func TestRPCLogStream(t *testing.T) { sc := &MockStreamClient{} - filter := LevelFilter() + filter := logger.LevelFilter() filter.MinLevel = logutils.LogLevel("INFO") ls := newLogStream(sc, filter, 42, log.New(os.Stderr, "", log.LstdFlags)) diff --git a/command/agent/session_endpoint.go b/command/agent/session_endpoint.go index 4049cf7d6b..92ed9c6b14 100644 --- a/command/agent/session_endpoint.go +++ b/command/agent/session_endpoint.go @@ -46,6 +46,7 @@ func (s *HTTPServer) SessionCreate(resp http.ResponseWriter, req *http.Request) }, } s.parseDC(req, &args.Datacenter) + s.parseToken(req, &args.Token) // Handle optional request body if req.ContentLength > 0 { @@ -117,6 +118,7 @@ func (s *HTTPServer) SessionDestroy(resp http.ResponseWriter, req *http.Request) Op: structs.SessionDestroy, } s.parseDC(req, &args.Datacenter) + s.parseToken(req, &args.Token) // Pull out the session id args.Session.ID = strings.TrimPrefix(req.URL.Path, "/v1/session/destroy/") diff --git a/command/agent/snapshot_endpoint.go b/command/agent/snapshot_endpoint.go new file mode 100644 index 0000000000..06bf150d78 --- /dev/null +++ b/command/agent/snapshot_endpoint.go @@ -0,0 +1,50 @@ +package agent + +import ( + "bytes" + "net/http" + + "github.com/hashicorp/consul/consul/structs" +) + +// Snapshot handles requests to take and restore snapshots. This uses a special +// mechanism to make the RPC since we potentially stream large amounts of data +// as part of these requests. +func (s *HTTPServer) Snapshot(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + var args structs.SnapshotRequest + s.parseDC(req, &args.Datacenter) + s.parseToken(req, &args.Token) + if _, ok := req.URL.Query()["stale"]; ok { + args.AllowStale = true + } + + switch req.Method { + case "GET": + args.Op = structs.SnapshotSave + + // Headers need to go out before we stream the body. + replyFn := func(reply *structs.SnapshotResponse) error { + setMeta(resp, &reply.QueryMeta) + return nil + } + + // Don't bother sending any request body through since it will + // be ignored. + var null bytes.Buffer + if err := s.agent.SnapshotRPC(&args, &null, resp, replyFn); err != nil { + return nil, err + } + return nil, nil + + case "PUT": + args.Op = structs.SnapshotRestore + if err := s.agent.SnapshotRPC(&args, req.Body, resp, nil); err != nil { + return nil, err + } + return nil, nil + + default: + resp.WriteHeader(http.StatusMethodNotAllowed) + return nil, nil + } +} diff --git a/command/agent/snapshot_endpoint_test.go b/command/agent/snapshot_endpoint_test.go new file mode 100644 index 0000000000..f2a99a645a --- /dev/null +++ b/command/agent/snapshot_endpoint_test.go @@ -0,0 +1,142 @@ +package agent + +import ( + "bytes" + "io" + "net/http" + "net/http/httptest" + "strings" + "testing" +) + +func TestSnapshot(t *testing.T) { + var snap io.Reader + httpTest(t, func(srv *HTTPServer) { + body := bytes.NewBuffer(nil) + req, err := http.NewRequest("GET", "/v1/snapshot?token=root", body) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + _, err = srv.Snapshot(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + snap = resp.Body + + header := resp.Header().Get("X-Consul-Index") + if header == "" { + t.Fatalf("bad: %v", header) + } + header = resp.Header().Get("X-Consul-KnownLeader") + if header != "true" { + t.Fatalf("bad: %v", header) + } + header = resp.Header().Get("X-Consul-LastContact") + if header != "0" { + t.Fatalf("bad: %v", header) + } + }) + + httpTest(t, func(srv *HTTPServer) { + req, err := http.NewRequest("PUT", "/v1/snapshot?token=root", snap) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + _, err = srv.Snapshot(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + }) +} + +func TestSnapshot_Options(t *testing.T) { + for _, method := range []string{"GET", "PUT"} { + httpTest(t, func(srv *HTTPServer) { + body := bytes.NewBuffer(nil) + req, err := http.NewRequest(method, "/v1/snapshot?token=anonymous", body) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + _, err = srv.Snapshot(resp, req) + if err == nil || !strings.Contains(err.Error(), "Permission denied") { + t.Fatalf("err: %v", err) + } + }) + + httpTest(t, func(srv *HTTPServer) { + body := bytes.NewBuffer(nil) + req, err := http.NewRequest(method, "/v1/snapshot?dc=nope", body) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + _, err = srv.Snapshot(resp, req) + if err == nil || !strings.Contains(err.Error(), "No path to datacenter") { + t.Fatalf("err: %v", err) + } + }) + + httpTest(t, func(srv *HTTPServer) { + body := bytes.NewBuffer(nil) + req, err := http.NewRequest(method, "/v1/snapshot?token=root&stale", body) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + _, err = srv.Snapshot(resp, req) + if method == "GET" { + if err != nil { + t.Fatalf("err: %v", err) + } + } else { + if err == nil || !strings.Contains(err.Error(), "stale not allowed") { + t.Fatalf("err: %v", err) + } + } + }) + } +} + +func TestSnapshot_BadMethods(t *testing.T) { + httpTest(t, func(srv *HTTPServer) { + body := bytes.NewBuffer(nil) + req, err := http.NewRequest("POST", "/v1/snapshot", body) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + _, err = srv.Snapshot(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + if resp.Code != 405 { + t.Fatalf("bad code: %d", resp.Code) + } + }) + + httpTest(t, func(srv *HTTPServer) { + body := bytes.NewBuffer(nil) + req, err := http.NewRequest("DELETE", "/v1/snapshot", body) + if err != nil { + t.Fatalf("err: %v", err) + } + + resp := httptest.NewRecorder() + _, err = srv.Snapshot(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + if resp.Code != 405 { + t.Fatalf("bad code: %d", resp.Code) + } + }) +} diff --git a/command/exec_test.go b/command/exec_test.go index 36c5a1d851..3f53b1a0fa 100644 --- a/command/exec_test.go +++ b/command/exec_test.go @@ -23,7 +23,7 @@ func TestExecCommandRun(t *testing.T) { ui := new(cli.MockUi) c := &ExecCommand{Ui: ui} - args := []string{"-http-addr=" + a1.httpAddr, "-wait=400ms", "uptime"} + args := []string{"-http-addr=" + a1.httpAddr, "-wait=10s", "uptime"} code := c.Run(args) if code != 0 { diff --git a/command/keygen.go b/command/keygen.go index 0bb4c5db83..f0f9d70c26 100644 --- a/command/keygen.go +++ b/command/keygen.go @@ -4,8 +4,9 @@ import ( "crypto/rand" "encoding/base64" "fmt" - "github.com/mitchellh/cli" "strings" + + "github.com/mitchellh/cli" ) // KeygenCommand is a Command implementation that generates an encryption diff --git a/command/keyring.go b/command/keyring.go index 3a47cb9358..863326f99e 100644 --- a/command/keyring.go +++ b/command/keyring.go @@ -18,6 +18,7 @@ type KeyringCommand struct { func (c *KeyringCommand) Run(args []string) int { var installKey, useKey, removeKey, token string var listKeys bool + var relay int cmdFlags := flag.NewFlagSet("keys", flag.ContinueOnError) cmdFlags.Usage = func() { c.Ui.Output(c.Help()) } @@ -27,6 +28,7 @@ func (c *KeyringCommand) Run(args []string) int { cmdFlags.StringVar(&removeKey, "remove", "", "remove key") cmdFlags.BoolVar(&listKeys, "list", false, "list keys") cmdFlags.StringVar(&token, "token", "", "acl token") + cmdFlags.IntVar(&relay, "relay-factor", 0, "relay factor") rpcAddr := RPCAddrFlag(cmdFlags) if err := cmdFlags.Parse(args); err != nil { @@ -56,6 +58,13 @@ func (c *KeyringCommand) Run(args []string) int { return 1 } + // Validate the relay factor + relayFactor, err := agent.ParseRelayFactor(relay) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error parsing relay factor: %s", err)) + return 1 + } + // All other operations will require a client connection client, err := RPCClient(*rpcAddr) if err != nil { @@ -66,7 +75,7 @@ func (c *KeyringCommand) Run(args []string) int { if listKeys { c.Ui.Info("Gathering installed encryption keys...") - r, err := client.ListKeys(token) + r, err := client.ListKeys(token, relayFactor) if err != nil { c.Ui.Error(fmt.Sprintf("error: %s", err)) return 1 @@ -80,7 +89,7 @@ func (c *KeyringCommand) Run(args []string) int { if installKey != "" { c.Ui.Info("Installing new gossip encryption key...") - r, err := client.InstallKey(installKey, token) + r, err := client.InstallKey(installKey, token, relayFactor) if err != nil { c.Ui.Error(fmt.Sprintf("error: %s", err)) return 1 @@ -90,7 +99,7 @@ func (c *KeyringCommand) Run(args []string) int { if useKey != "" { c.Ui.Info("Changing primary gossip encryption key...") - r, err := client.UseKey(useKey, token) + r, err := client.UseKey(useKey, token, relayFactor) if err != nil { c.Ui.Error(fmt.Sprintf("error: %s", err)) return 1 @@ -100,7 +109,7 @@ func (c *KeyringCommand) Run(args []string) int { if removeKey != "" { c.Ui.Info("Removing gossip encryption key...") - r, err := client.RemoveKey(removeKey, token) + r, err := client.RemoveKey(removeKey, token, relayFactor) if err != nil { c.Ui.Error(fmt.Sprintf("error: %s", err)) return 1 @@ -206,6 +215,11 @@ Options: not currently the primary key. -token="" ACL token to use during requests. Defaults to that of the agent. + -relay-factor Added in Consul 0.7.4, setting this to a non-zero + value will cause nodes to relay their response to + the operation through this many randomly-chosen + other nodes in the cluster. The maximum allowed + value is 5. -use= Change the primary encryption key, which is used to encrypt messages. The key must already be installed before this operation can succeed. diff --git a/command/keyring_test.go b/command/keyring_test.go index bb8691ebb4..77027c47fc 100644 --- a/command/keyring_test.go +++ b/command/keyring_test.go @@ -89,6 +89,17 @@ func TestKeyringCommandRun_failedConnection(t *testing.T) { } } +func TestKeyringCommandRun_invalidRelayFactor(t *testing.T) { + ui := new(cli.MockUi) + c := &KeyringCommand{Ui: ui} + + args := []string{"-list", "-relay-factor=6"} + code := c.Run(args) + if code != 1 { + t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String()) + } +} + func listKeys(t *testing.T, addr string) string { ui := new(cli.MockUi) c := &KeyringCommand{Ui: ui} diff --git a/command/kv_export.go b/command/kv_export.go new file mode 100644 index 0000000000..77d7f4d463 --- /dev/null +++ b/command/kv_export.go @@ -0,0 +1,123 @@ +package command + +import ( + "encoding/base64" + "encoding/json" + "flag" + "fmt" + "strings" + + "github.com/hashicorp/consul/api" + "github.com/mitchellh/cli" +) + +// KVExportCommand is a Command implementation that is used to export +// a KV tree as JSON +type KVExportCommand struct { + Ui cli.Ui +} + +func (c *KVExportCommand) Synopsis() string { + return "Exports a tree from the KV store as JSON" +} + +func (c *KVExportCommand) Help() string { + helpText := ` +Usage: consul kv export [KEY_OR_PREFIX] + + Retrieves key-value pairs for the given prefix from Consul's key-value store, + and writes a JSON representation to stdout. This can be used with the command + "consul kv import" to move entire trees between Consul clusters. + + $ consul kv export vault + + For a full list of options and examples, please see the Consul documentation. + +` + apiOptsText + ` + +KV Export Options: + + None. +` + return strings.TrimSpace(helpText) +} + +func (c *KVExportCommand) Run(args []string) int { + cmdFlags := flag.NewFlagSet("export", flag.ContinueOnError) + + datacenter := cmdFlags.String("datacenter", "", "") + token := cmdFlags.String("token", "", "") + stale := cmdFlags.Bool("stale", false, "") + httpAddr := HTTPAddrFlag(cmdFlags) + if err := cmdFlags.Parse(args); err != nil { + return 1 + } + + key := "" + // Check for arg validation + args = cmdFlags.Args() + switch len(args) { + case 0: + key = "" + case 1: + key = args[0] + default: + c.Ui.Error(fmt.Sprintf("Too many arguments (expected 1, got %d)", len(args))) + return 1 + } + + // This is just a "nice" thing to do. Since pairs cannot start with a /, but + // users will likely put "/" or "/foo", lets go ahead and strip that for them + // here. + if len(key) > 0 && key[0] == '/' { + key = key[1:] + } + + // Create and test the HTTP client + conf := api.DefaultConfig() + conf.Address = *httpAddr + conf.Token = *token + client, err := api.NewClient(conf) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err)) + return 1 + } + + pairs, _, err := client.KV().List(key, &api.QueryOptions{ + Datacenter: *datacenter, + AllowStale: *stale, + }) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error querying Consul agent: %s", err)) + return 1 + } + + exported := make([]*kvExportEntry, len(pairs)) + for i, pair := range pairs { + exported[i] = toExportEntry(pair) + } + + marshaled, err := json.MarshalIndent(exported, "", "\t") + if err != nil { + c.Ui.Error(fmt.Sprintf("Error exporting KV data: %s", err)) + return 1 + } + + c.Ui.Info(string(marshaled)) + + return 0 +} + +type kvExportEntry struct { + Key string `json:"key"` + Flags uint64 `json:"flags"` + Value string `json:"value"` +} + +func toExportEntry(pair *api.KVPair) *kvExportEntry { + return &kvExportEntry{ + Key: pair.Key, + Flags: pair.Flags, + Value: base64.StdEncoding.EncodeToString(pair.Value), + } +} diff --git a/command/kv_export_test.go b/command/kv_export_test.go new file mode 100644 index 0000000000..9fa64982d9 --- /dev/null +++ b/command/kv_export_test.go @@ -0,0 +1,60 @@ +package command + +import ( + "encoding/base64" + "encoding/json" + "testing" + + "github.com/hashicorp/consul/api" + "github.com/mitchellh/cli" +) + +func TestKVExportCommand_Run(t *testing.T) { + srv, client := testAgentWithAPIClient(t) + defer srv.Shutdown() + waitForLeader(t, srv.httpAddr) + + ui := new(cli.MockUi) + c := &KVExportCommand{Ui: ui} + + keys := map[string]string{ + "foo/a": "a", + "foo/b": "b", + "foo/c": "c", + "bar": "d", + } + for k, v := range keys { + pair := &api.KVPair{Key: k, Value: []byte(v)} + if _, err := client.KV().Put(pair, nil); err != nil { + t.Fatalf("err: %#v", err) + } + } + + args := []string{ + "-http-addr=" + srv.httpAddr, + "foo", + } + + code := c.Run(args) + if code != 0 { + t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String()) + } + + output := ui.OutputWriter.String() + + var exported []*kvExportEntry + err := json.Unmarshal([]byte(output), &exported) + if err != nil { + t.Fatalf("bad: %d", code) + } + + if len(exported) != 3 { + t.Fatalf("bad: expected 3, got %d", len(exported)) + } + + for _, entry := range exported { + if base64.StdEncoding.EncodeToString([]byte(keys[entry.Key])) != entry.Value { + t.Fatalf("bad: expected %s, got %s", keys[entry.Key], entry.Value) + } + } +} diff --git a/command/kv_get.go b/command/kv_get.go index 1a54b37769..c49d983b48 100644 --- a/command/kv_get.go +++ b/command/kv_get.go @@ -2,6 +2,7 @@ package command import ( "bytes" + "encoding/base64" "flag" "fmt" "io" @@ -54,6 +55,8 @@ Usage: consul kv get [options] [KEY_OR_PREFIX] KV Get Options: + -base64 Base64 encode the value. The default value is false. + -detailed Provide additional metadata about the key in addition to the value such as the ModifyIndex and any flags that may have been set on the key. The default value @@ -84,6 +87,7 @@ func (c *KVGetCommand) Run(args []string) int { stale := cmdFlags.Bool("stale", false, "") detailed := cmdFlags.Bool("detailed", false, "") keys := cmdFlags.Bool("keys", false, "") + base64encode := cmdFlags.Bool("base64", false, "") recurse := cmdFlags.Bool("recurse", false, "") separator := cmdFlags.String("separator", "/", "") httpAddr := HTTPAddrFlag(cmdFlags) @@ -158,7 +162,7 @@ func (c *KVGetCommand) Run(args []string) int { for i, pair := range pairs { if *detailed { var b bytes.Buffer - if err := prettyKVPair(&b, pair); err != nil { + if err := prettyKVPair(&b, pair, *base64encode); err != nil { c.Ui.Error(fmt.Sprintf("Error rendering KV pair: %s", err)) return 1 } @@ -169,7 +173,11 @@ func (c *KVGetCommand) Run(args []string) int { c.Ui.Info("") } } else { - c.Ui.Info(fmt.Sprintf("%s:%s", pair.Key, pair.Value)) + if *base64encode { + c.Ui.Info(fmt.Sprintf("%s:%s", pair.Key, base64.StdEncoding.EncodeToString(pair.Value))) + } else { + c.Ui.Info(fmt.Sprintf("%s:%s", pair.Key, pair.Value)) + } } } @@ -191,7 +199,7 @@ func (c *KVGetCommand) Run(args []string) int { if *detailed { var b bytes.Buffer - if err := prettyKVPair(&b, pair); err != nil { + if err := prettyKVPair(&b, pair, *base64encode); err != nil { c.Ui.Error(fmt.Sprintf("Error rendering KV pair: %s", err)) return 1 } @@ -209,7 +217,7 @@ func (c *KVGetCommand) Synopsis() string { return "Retrieves or lists data from the KV store" } -func prettyKVPair(w io.Writer, pair *api.KVPair) error { +func prettyKVPair(w io.Writer, pair *api.KVPair, base64EncodeValue bool) error { tw := tabwriter.NewWriter(w, 0, 2, 6, ' ', 0) fmt.Fprintf(tw, "CreateIndex\t%d\n", pair.CreateIndex) fmt.Fprintf(tw, "Flags\t%d\n", pair.Flags) @@ -217,10 +225,14 @@ func prettyKVPair(w io.Writer, pair *api.KVPair) error { fmt.Fprintf(tw, "LockIndex\t%d\n", pair.LockIndex) fmt.Fprintf(tw, "ModifyIndex\t%d\n", pair.ModifyIndex) if pair.Session == "" { - fmt.Fprintf(tw, "Session\t-\n") + fmt.Fprint(tw, "Session\t-\n") } else { fmt.Fprintf(tw, "Session\t%s\n", pair.Session) } - fmt.Fprintf(tw, "Value\t%s", pair.Value) + if base64EncodeValue { + fmt.Fprintf(tw, "Value\t%s", base64.StdEncoding.EncodeToString(pair.Value)) + } else { + fmt.Fprintf(tw, "Value\t%s", pair.Value) + } return tw.Flush() } diff --git a/command/kv_get_test.go b/command/kv_get_test.go index 815b4d72d1..979df1adc6 100644 --- a/command/kv_get_test.go +++ b/command/kv_get_test.go @@ -1,6 +1,7 @@ package command import ( + "encoding/base64" "strings" "testing" @@ -250,3 +251,91 @@ func TestKVGetCommand_Recurse(t *testing.T) { } } } + +func TestKVGetCommand_RecurseBase64(t *testing.T) { + srv, client := testAgentWithAPIClient(t) + defer srv.Shutdown() + waitForLeader(t, srv.httpAddr) + + ui := new(cli.MockUi) + c := &KVGetCommand{Ui: ui} + + keys := map[string]string{ + "foo/a": "Hello World 1", + "foo/b": "Hello World 2", + "foo/c": "Hello World 3", + } + for k, v := range keys { + pair := &api.KVPair{Key: k, Value: []byte(v)} + if _, err := client.KV().Put(pair, nil); err != nil { + t.Fatalf("err: %#v", err) + } + } + + args := []string{ + "-http-addr=" + srv.httpAddr, + "-recurse", + "-base64", + "foo", + } + + code := c.Run(args) + if code != 0 { + t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String()) + } + + output := ui.OutputWriter.String() + for key, value := range keys { + if !strings.Contains(output, key+":"+base64.StdEncoding.EncodeToString([]byte(value))) { + t.Fatalf("bad %#v missing %q", output, key) + } + } +} + +func TestKVGetCommand_DetailedBase64(t *testing.T) { + srv, client := testAgentWithAPIClient(t) + defer srv.Shutdown() + waitForLeader(t, srv.httpAddr) + + ui := new(cli.MockUi) + c := &KVGetCommand{Ui: ui} + + pair := &api.KVPair{ + Key: "foo", + Value: []byte("bar"), + } + _, err := client.KV().Put(pair, nil) + if err != nil { + t.Fatalf("err: %#v", err) + } + + args := []string{ + "-http-addr=" + srv.httpAddr, + "-detailed", + "-base64", + "foo", + } + + code := c.Run(args) + if code != 0 { + t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String()) + } + + output := ui.OutputWriter.String() + for _, key := range []string{ + "CreateIndex", + "LockIndex", + "ModifyIndex", + "Flags", + "Session", + "Value", + } { + if !strings.Contains(output, key) { + t.Fatalf("bad %#v, missing %q", output, key) + } + } + + if !strings.Contains(output, base64.StdEncoding.EncodeToString([]byte("bar"))) { + t.Fatalf("bad %#v, value is not base64 encoded", output) + } +} diff --git a/command/kv_import.go b/command/kv_import.go new file mode 100644 index 0000000000..c236067444 --- /dev/null +++ b/command/kv_import.go @@ -0,0 +1,165 @@ +package command + +import ( + "bytes" + "encoding/base64" + "encoding/json" + "errors" + "flag" + "fmt" + "io" + "io/ioutil" + "os" + "strings" + + "github.com/hashicorp/consul/api" + "github.com/mitchellh/cli" +) + +// KVImportCommand is a Command implementation that is used to import +// a KV tree stored as JSON +type KVImportCommand struct { + Ui cli.Ui + + // testStdin is the input for testing. + testStdin io.Reader +} + +func (c *KVImportCommand) Synopsis() string { + return "Imports a tree stored as JSON to the KV store" +} + +func (c *KVImportCommand) Help() string { + helpText := ` +Usage: consul kv import [DATA] + + Imports key-value pairs to the key-value store from the JSON representation + generated by the "consul kv export" command. + + The data can be read from a file by prefixing the filename with the "@" + symbol. For example: + + $ consul kv import @filename.json + + Or it can be read from stdin using the "-" symbol: + + $ cat filename.json | consul kv import config/program/license - + + Alternatively the data may be provided as the final parameter to the command, + though care must be taken with regards to shell escaping. + + For a full list of options and examples, please see the Consul documentation. + +` + apiOptsText + ` + +KV Import Options: + + None. +` + return strings.TrimSpace(helpText) +} + +func (c *KVImportCommand) Run(args []string) int { + cmdFlags := flag.NewFlagSet("import", flag.ContinueOnError) + + datacenter := cmdFlags.String("datacenter", "", "") + token := cmdFlags.String("token", "", "") + httpAddr := HTTPAddrFlag(cmdFlags) + if err := cmdFlags.Parse(args); err != nil { + return 1 + } + + // Check for arg validation + args = cmdFlags.Args() + data, err := c.dataFromArgs(args) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error! %s", err)) + return 1 + } + + // Create and test the HTTP client + conf := api.DefaultConfig() + conf.Address = *httpAddr + conf.Token = *token + client, err := api.NewClient(conf) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err)) + return 1 + } + + var entries []*kvExportEntry + if err := json.Unmarshal([]byte(data), &entries); err != nil { + c.Ui.Error(fmt.Sprintf("Cannot unmarshal data: %s", err)) + return 1 + } + + for _, entry := range entries { + value, err := base64.StdEncoding.DecodeString(entry.Value) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error base 64 decoding value for key %s: %s", entry.Key, err)) + return 1 + } + + pair := &api.KVPair{ + Key: entry.Key, + Flags: entry.Flags, + Value: value, + } + + wo := &api.WriteOptions{ + Datacenter: *datacenter, + Token: *token, + } + + if _, err := client.KV().Put(pair, wo); err != nil { + c.Ui.Error(fmt.Sprintf("Error! Failed writing data for key %s: %s", pair.Key, err)) + return 1 + } + + c.Ui.Info(fmt.Sprintf("Imported: %s", pair.Key)) + } + + return 0 +} + +func (c *KVImportCommand) dataFromArgs(args []string) (string, error) { + var stdin io.Reader = os.Stdin + if c.testStdin != nil { + stdin = c.testStdin + } + + switch len(args) { + case 0: + return "", errors.New("Missing DATA argument") + case 1: + default: + return "", fmt.Errorf("Too many arguments (expected 1 or 2, got %d)", len(args)) + } + + data := args[0] + + if len(data) == 0 { + return "", errors.New("Empty DATA argument") + } + + switch data[0] { + case '@': + data, err := ioutil.ReadFile(data[1:]) + if err != nil { + return "", fmt.Errorf("Failed to read file: %s", err) + } + return string(data), nil + case '-': + if len(data) > 1 { + return data, nil + } else { + var b bytes.Buffer + if _, err := io.Copy(&b, stdin); err != nil { + return "", fmt.Errorf("Failed to read stdin: %s", err) + } + return b.String(), nil + } + default: + return data, nil + } +} diff --git a/command/kv_import_test.go b/command/kv_import_test.go new file mode 100644 index 0000000000..817cd788fd --- /dev/null +++ b/command/kv_import_test.go @@ -0,0 +1,61 @@ +package command + +import ( + "strings" + "testing" + + "github.com/mitchellh/cli" +) + +func TestKVImportCommand_Run(t *testing.T) { + srv, client := testAgentWithAPIClient(t) + defer srv.Shutdown() + waitForLeader(t, srv.httpAddr) + + const json = `[ + { + "key": "foo", + "flags": 0, + "value": "YmFyCg==" + }, + { + "key": "foo/a", + "flags": 0, + "value": "YmF6Cg==" + } + ]` + + ui := new(cli.MockUi) + c := &KVImportCommand{ + Ui: ui, + testStdin: strings.NewReader(json), + } + + args := []string{ + "-http-addr=" + srv.httpAddr, + "-", + } + + code := c.Run(args) + if code != 0 { + t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String()) + } + + pair, _, err := client.KV().Get("foo", nil) + if err != nil { + t.Fatal(err) + } + + if strings.TrimSpace(string(pair.Value)) != "bar" { + t.Fatalf("bad: expected: bar, got %s", pair.Value) + } + + pair, _, err = client.KV().Get("foo/a", nil) + if err != nil { + t.Fatal(err) + } + + if strings.TrimSpace(string(pair.Value)) != "baz" { + t.Fatalf("bad: expected: baz, got %s", pair.Value) + } +} diff --git a/command/kv_put.go b/command/kv_put.go index 28c5d98fa1..5e5b333b19 100644 --- a/command/kv_put.go +++ b/command/kv_put.go @@ -2,6 +2,7 @@ package command import ( "bytes" + "encoding/base64" "flag" "fmt" "io" @@ -45,6 +46,9 @@ Usage: consul kv put [options] KEY [DATA] $ consul kv put webapp/beta/active + If the -base64 flag is specified, the data will be treated as base 64 + encoded. + To perform a Check-And-Set operation, specify the -cas flag with the appropriate -modify-index flag corresponding to the key you want to perform the CAS operation on: @@ -62,6 +66,9 @@ KV Put Options: lock. The session must already exist and be specified via the -session flag. The default value is false. + -base64 Treat the data as base 64 encoded. The default value + is false. + -cas Perform a Check-And-Set operation. Specifying this value also requires the -modify-index flag to be set. The default value is false. @@ -74,7 +81,7 @@ KV Put Options: -modify-index= Unsigned integer representing the ModifyIndex of the key. This is used in combination with the -cas flag. - -release Forfeit the lock on the key at the givne path. This + -release Forfeit the lock on the key at the given path. This requires the -session flag to be set. The key must be held by the session in order to be unlocked. The default value is false. @@ -95,6 +102,7 @@ func (c *KVPutCommand) Run(args []string) int { token := cmdFlags.String("token", "", "") cas := cmdFlags.Bool("cas", false, "") flags := cmdFlags.Uint64("flags", 0, "") + base64encoded := cmdFlags.Bool("base64", false, "") modifyIndex := cmdFlags.Uint64("modify-index", 0, "") session := cmdFlags.String("session", "", "") acquire := cmdFlags.Bool("acquire", false, "") @@ -111,6 +119,14 @@ func (c *KVPutCommand) Run(args []string) int { return 1 } + dataBytes := []byte(data) + if *base64encoded { + dataBytes, err = base64.StdEncoding.DecodeString(data) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error! Cannot base 64 decode data: %s", err)) + } + } + // Session is reauired for release or acquire if (*release || *acquire) && *session == "" { c.Ui.Error("Error! Missing -session (required with -acquire and -release)") @@ -137,7 +153,7 @@ func (c *KVPutCommand) Run(args []string) int { Key: key, ModifyIndex: *modifyIndex, Flags: *flags, - Value: []byte(data), + Value: dataBytes, Session: *session, } @@ -220,6 +236,11 @@ func (c *KVPutCommand) dataFromArgs(args []string) (string, string, error) { key := args[0] data := args[1] + // Handle empty quoted shell parameters + if len(data) == 0 { + return key, "", nil + } + switch data[0] { case '@': data, err := ioutil.ReadFile(data[1:]) @@ -228,11 +249,15 @@ func (c *KVPutCommand) dataFromArgs(args []string) (string, string, error) { } return key, string(data), nil case '-': - var b bytes.Buffer - if _, err := io.Copy(&b, stdin); err != nil { - return "", "", fmt.Errorf("Failed to read stdin: %s", err) + if len(data) > 1 { + return key, data, nil + } else { + var b bytes.Buffer + if _, err := io.Copy(&b, stdin); err != nil { + return "", "", fmt.Errorf("Failed to read stdin: %s", err) + } + return key, b.String(), nil } - return key, b.String(), nil default: return key, data, nil } diff --git a/command/kv_put_test.go b/command/kv_put_test.go index 8239809cc8..f691719b15 100644 --- a/command/kv_put_test.go +++ b/command/kv_put_test.go @@ -2,6 +2,7 @@ package command import ( "bytes" + "encoding/base64" "io" "io/ioutil" "os" @@ -100,6 +101,70 @@ func TestKVPutCommand_Run(t *testing.T) { } } +func TestKVPutCommand_RunEmptyDataQuoted(t *testing.T) { + srv, client := testAgentWithAPIClient(t) + defer srv.Shutdown() + waitForLeader(t, srv.httpAddr) + + ui := new(cli.MockUi) + c := &KVPutCommand{Ui: ui} + + args := []string{ + "-http-addr=" + srv.httpAddr, + "foo", "", + } + + code := c.Run(args) + if code != 0 { + t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String()) + } + + data, _, err := client.KV().Get("foo", nil) + if err != nil { + t.Fatal(err) + } + + if data.Value != nil { + t.Errorf("bad: %#v", data.Value) + } +} + +func TestKVPutCommand_RunBase64(t *testing.T) { + srv, client := testAgentWithAPIClient(t) + defer srv.Shutdown() + waitForLeader(t, srv.httpAddr) + + ui := new(cli.MockUi) + c := &KVPutCommand{Ui: ui} + + const encodedString = "aGVsbG8gd29ybGQK" + + args := []string{ + "-http-addr=" + srv.httpAddr, + "-base64", + "foo", encodedString, + } + + code := c.Run(args) + if code != 0 { + t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String()) + } + + data, _, err := client.KV().Get("foo", nil) + if err != nil { + t.Fatal(err) + } + + expected, err := base64.StdEncoding.DecodeString(encodedString) + if err != nil { + t.Fatal(err) + } + + if !bytes.Equal(data.Value, []byte(expected)) { + t.Errorf("bad: %#v, %s", data.Value, data.Value) + } +} + func TestKVPutCommand_File(t *testing.T) { srv, client := testAgentWithAPIClient(t) defer srv.Shutdown() @@ -194,6 +259,34 @@ func TestKVPutCommand_Stdin(t *testing.T) { } } +func TestKVPutCommand_NegativeVal(t *testing.T) { + srv, client := testAgentWithAPIClient(t) + defer srv.Shutdown() + waitForLeader(t, srv.httpAddr) + + ui := new(cli.MockUi) + c := &KVPutCommand{Ui: ui} + + args := []string{ + "-http-addr=" + srv.httpAddr, + "foo", "-2", + } + + code := c.Run(args) + if code != 0 { + t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String()) + } + + data, _, err := client.KV().Get("foo", nil) + if err != nil { + t.Fatal(err) + } + + if !bytes.Equal(data.Value, []byte("-2")) { + t.Errorf("bad: %#v", data.Value) + } +} + func TestKVPutCommand_Flags(t *testing.T) { srv, client := testAgentWithAPIClient(t) defer srv.Shutdown() diff --git a/command/operator.go b/command/operator.go index 68ae585319..b049e325a9 100644 --- a/command/operator.go +++ b/command/operator.go @@ -24,7 +24,7 @@ Usage: consul operator [common options] [action] [options] the Raft subsystem. NOTE: Use this command with extreme caution, as improper use could lead to a Consul outage and even loss of data. - If ACLs are enabled then a token with operator privileges may required in + If ACLs are enabled then a token with operator privileges may be required in order to use this command. Requests are forwarded internally to the leader if required, so this can be run from any Consul node in a cluster. diff --git a/command/rpc.go b/command/rpc.go index 2c63a9b227..dc0cefbd47 100644 --- a/command/rpc.go +++ b/command/rpc.go @@ -8,20 +8,10 @@ import ( "github.com/hashicorp/consul/command/agent" ) -const ( - // RPCAddrEnvName defines an environment variable name which sets - // an RPC address if there is no -rpc-addr specified. - RPCAddrEnvName = "CONSUL_RPC_ADDR" - - // HTTPAddrEnvName defines an environment variable name which sets - // the HTTP address if there is no -http-addr specified. - HTTPAddrEnvName = "CONSUL_HTTP_ADDR" -) - // RPCAddrFlag returns a pointer to a string that will be populated // when the given flagset is parsed with the RPC address of the Consul. func RPCAddrFlag(f *flag.FlagSet) *string { - defaultRPCAddr := os.Getenv(RPCAddrEnvName) + defaultRPCAddr := os.Getenv(agent.RPCAddrEnvName) if defaultRPCAddr == "" { defaultRPCAddr = "127.0.0.1:8400" } @@ -37,7 +27,7 @@ func RPCClient(addr string) (*agent.RPCClient, error) { // HTTPAddrFlag returns a pointer to a string that will be populated // when the given flagset is parsed with the HTTP address of the Consul. func HTTPAddrFlag(f *flag.FlagSet) *string { - defaultHTTPAddr := os.Getenv(HTTPAddrEnvName) + defaultHTTPAddr := os.Getenv(consulapi.HTTPAddrEnvName) if defaultHTTPAddr == "" { defaultHTTPAddr = "127.0.0.1:8500" } diff --git a/command/rpc_test.go b/command/rpc_test.go index 194c06b63c..effe759024 100644 --- a/command/rpc_test.go +++ b/command/rpc_test.go @@ -4,6 +4,9 @@ import ( "flag" "os" "testing" + + consulapi "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/command/agent" ) const ( @@ -21,11 +24,11 @@ func getParsedAddr(t *testing.T, addrType, cliVal, envVal string) string { switch addrType { case "rpc": fn = RPCAddrFlag - envVar = RPCAddrEnvName + envVar = agent.RPCAddrEnvName cliFlag = "-rpc-addr" case "http": fn = HTTPAddrFlag - envVar = HTTPAddrEnvName + envVar = consulapi.HTTPAddrEnvName cliFlag = "-http-addr" default: t.Fatalf("unknown address type %s", addrType) diff --git a/command/rtt_test.go b/command/rtt_test.go index 3f0e030263..9fcabb8ad4 100644 --- a/command/rtt_test.go +++ b/command/rtt_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/consul/command/agent" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/consul/testutil" "github.com/hashicorp/serf/coordinate" "github.com/mitchellh/cli" ) @@ -88,29 +89,32 @@ func TestRTTCommand_Run_LAN(t *testing.T) { } } - // Wait for the updates to get flushed to the data store. - time.Sleep(2 * updatePeriod) + // Ask for the RTT of two known nodes + ui := new(cli.MockUi) + c := &RTTCommand{Ui: ui} + args := []string{ + "-http-addr=" + a.httpAddr, + a.config.NodeName, + "dogs", + } - // Try two known nodes. - { - ui := new(cli.MockUi) - c := &RTTCommand{Ui: ui} - args := []string{ - "-http-addr=" + a.httpAddr, - a.config.NodeName, - "dogs", - } + // Wait for the updates to get flushed to the data store. + testutil.WaitForResult(func() (bool, error) { code := c.Run(args) if code != 0 { - t.Fatalf("bad: %d: %#v", code, ui.ErrorWriter.String()) + return false, fmt.Errorf("bad: %d: %#v", code, ui.ErrorWriter.String()) } // Make sure the proper RTT was reported in the output. expected := fmt.Sprintf("rtt: %s", dist_str) if !strings.Contains(ui.OutputWriter.String(), expected) { - t.Fatalf("bad: %#v", ui.OutputWriter.String()) + return false, fmt.Errorf("bad: %#v", ui.OutputWriter.String()) } - } + + return true, nil + }, func(err error) { + t.Fatalf("failed to get proper RTT output: %v", err) + }) // Default to the agent's node. { diff --git a/command/snapshot_command.go b/command/snapshot_command.go new file mode 100644 index 0000000000..fca39bfa3a --- /dev/null +++ b/command/snapshot_command.go @@ -0,0 +1,52 @@ +package command + +import ( + "strings" + + "github.com/mitchellh/cli" +) + +// SnapshotCommand is a Command implementation that just shows help for +// the subcommands nested below it. +type SnapshotCommand struct { + Ui cli.Ui +} + +func (c *SnapshotCommand) Run(args []string) int { + return cli.RunResultHelp +} + +func (c *SnapshotCommand) Help() string { + helpText := ` +Usage: consul snapshot [options] [args] + + This command has subcommands for saving, restoring, and inspecting the state + of the Consul servers for disaster recovery. These are atomic, point-in-time + snapshots which include key/value entries, service catalog, prepared queries, + sessions, and ACLs. + + If ACLs are enabled, a management token must be supplied in order to perform + snapshot operations. + + Create a snapshot: + + $ consul snapshot save backup.snap + + Restore a snapshot: + + $ consul snapshot restore backup.snap + + Inspect a snapshot: + + $ consul snapshot inspect backup.snap + + + For more examples, ask for subcommand help or view the documentation. + +` + return strings.TrimSpace(helpText) +} + +func (c *SnapshotCommand) Synopsis() string { + return "Saves, restores and inspects snapshots of Consul server state" +} diff --git a/command/snapshot_command_test.go b/command/snapshot_command_test.go new file mode 100644 index 0000000000..4e0807b56b --- /dev/null +++ b/command/snapshot_command_test.go @@ -0,0 +1,15 @@ +package command + +import ( + "testing" + + "github.com/mitchellh/cli" +) + +func TestSnapshotCommand_implements(t *testing.T) { + var _ cli.Command = &SnapshotCommand{} +} + +func TestSnapshotCommand_noTabs(t *testing.T) { + assertNoTabs(t, new(SnapshotCommand)) +} diff --git a/command/snapshot_inspect.go b/command/snapshot_inspect.go new file mode 100644 index 0000000000..aaeab2445f --- /dev/null +++ b/command/snapshot_inspect.go @@ -0,0 +1,89 @@ +package command + +import ( + "bytes" + "flag" + "fmt" + "os" + "strings" + "text/tabwriter" + + "github.com/hashicorp/consul/snapshot" + "github.com/mitchellh/cli" +) + +// SnapshotInspectCommand is a Command implementation that is used to display +// metadata about a snapshot file +type SnapshotInspectCommand struct { + Ui cli.Ui +} + +func (c *SnapshotInspectCommand) Help() string { + helpText := ` +Usage: consul snapshot inspect [options] FILE + + Displays information about a snapshot file on disk. + + To inspect the file "backup.snap": + + $ consul snapshot inspect backup.snap + + For a full list of options and examples, please see the Consul documentation. +` + + return strings.TrimSpace(helpText) +} + +func (c *SnapshotInspectCommand) Run(args []string) int { + cmdFlags := flag.NewFlagSet("get", flag.ContinueOnError) + cmdFlags.Usage = func() { c.Ui.Output(c.Help()) } + if err := cmdFlags.Parse(args); err != nil { + return 1 + } + + var file string + + args = cmdFlags.Args() + switch len(args) { + case 0: + c.Ui.Error("Missing FILE argument") + return 1 + case 1: + file = args[0] + default: + c.Ui.Error(fmt.Sprintf("Too many arguments (expected 1, got %d)", len(args))) + return 1 + } + + // Open the file. + f, err := os.Open(file) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error opening snapshot file: %s", err)) + return 1 + } + defer f.Close() + + meta, err := snapshot.Verify(f) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error verifying snapshot: %s", err)) + } + + var b bytes.Buffer + tw := tabwriter.NewWriter(&b, 0, 2, 6, ' ', 0) + fmt.Fprintf(tw, "ID\t%s\n", meta.ID) + fmt.Fprintf(tw, "Size\t%d\n", meta.Size) + fmt.Fprintf(tw, "Index\t%d\n", meta.Index) + fmt.Fprintf(tw, "Term\t%d\n", meta.Term) + fmt.Fprintf(tw, "Version\t%d\n", meta.Version) + if err = tw.Flush(); err != nil { + c.Ui.Error(fmt.Sprintf("Error rendering snapshot info: %s", err)) + } + + c.Ui.Info(b.String()) + + return 0 +} + +func (c *SnapshotInspectCommand) Synopsis() string { + return "Displays information about a Consul snapshot file" +} diff --git a/command/snapshot_inspect_test.go b/command/snapshot_inspect_test.go new file mode 100644 index 0000000000..557d3ba822 --- /dev/null +++ b/command/snapshot_inspect_test.go @@ -0,0 +1,116 @@ +package command + +import ( + "io" + "io/ioutil" + "os" + "path" + "strings" + "testing" + + "github.com/mitchellh/cli" +) + +func TestSnapshotInspectCommand_implements(t *testing.T) { + var _ cli.Command = &SnapshotInspectCommand{} +} + +func TestSnapshotInspectCommand_noTabs(t *testing.T) { + assertNoTabs(t, new(SnapshotInspectCommand)) +} + +func TestSnapshotInspectCommand_Validation(t *testing.T) { + ui := new(cli.MockUi) + c := &SnapshotInspectCommand{Ui: ui} + + cases := map[string]struct { + args []string + output string + }{ + "no file": { + []string{}, + "Missing FILE argument", + }, + "extra args": { + []string{"foo", "bar", "baz"}, + "Too many arguments", + }, + } + + for name, tc := range cases { + // Ensure our buffer is always clear + if ui.ErrorWriter != nil { + ui.ErrorWriter.Reset() + } + if ui.OutputWriter != nil { + ui.OutputWriter.Reset() + } + + code := c.Run(tc.args) + if code == 0 { + t.Errorf("%s: expected non-zero exit", name) + } + + output := ui.ErrorWriter.String() + if !strings.Contains(output, tc.output) { + t.Errorf("%s: expected %q to contain %q", name, output, tc.output) + } + } +} + +func TestSnapshotInspectCommand_Run(t *testing.T) { + srv, client := testAgentWithAPIClient(t) + defer srv.Shutdown() + waitForLeader(t, srv.httpAddr) + + ui := new(cli.MockUi) + + dir, err := ioutil.TempDir("", "snapshot") + if err != nil { + t.Fatalf("err: %v", err) + } + defer os.RemoveAll(dir) + + file := path.Join(dir, "backup.tgz") + + // Save a snapshot of the current Consul state + f, err := os.Create(file) + if err != nil { + t.Fatalf("err: %v", err) + } + + snap, _, err := client.Snapshot().Save(nil) + if err != nil { + f.Close() + t.Fatalf("err: %v", err) + } + if _, err := io.Copy(f, snap); err != nil { + f.Close() + t.Fatalf("err: %v", err) + } + if err := f.Close(); err != nil { + t.Fatalf("err: %v", err) + } + + // Inspect the snapshot + inspect := &SnapshotInspectCommand{Ui: ui} + args := []string{file} + + code := inspect.Run(args) + if code != 0 { + t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String()) + } + + output := ui.OutputWriter.String() + for _, key := range []string{ + "ID", + "Size", + "Index", + "Term", + "Version", + } { + if !strings.Contains(output, key) { + t.Fatalf("bad %#v, missing %q", output, key) + } + } +} diff --git a/command/snapshot_restore.go b/command/snapshot_restore.go new file mode 100644 index 0000000000..7ca8ff6655 --- /dev/null +++ b/command/snapshot_restore.go @@ -0,0 +1,102 @@ +package command + +import ( + "flag" + "fmt" + "os" + "strings" + + "github.com/hashicorp/consul/api" + "github.com/mitchellh/cli" +) + +// SnapshotRestoreCommand is a Command implementation that is used to restore +// the state of the Consul servers for disaster recovery. +type SnapshotRestoreCommand struct { + Ui cli.Ui +} + +func (c *SnapshotRestoreCommand) Help() string { + helpText := ` +Usage: consul snapshot restore [options] FILE + + Restores an atomic, point-in-time snapshot of the state of the Consul servers + which includes key/value entries, service catalog, prepared queries, sessions, + and ACLs. + + Restores involve a potentially dangerous low-level Raft operation that is not + designed to handle server failures during a restore. This command is primarily + intended to be used when recovering from a disaster, restoring into a fresh + cluster of Consul servers. + + If ACLs are enabled, a management token must be supplied in order to perform + snapshot operations. + + To restore a snapshot from the file "backup.snap": + + $ consul snapshot restore backup.snap + + For a full list of options and examples, please see the Consul documentation. + +` + apiOptsText + + return strings.TrimSpace(helpText) +} + +func (c *SnapshotRestoreCommand) Run(args []string) int { + cmdFlags := flag.NewFlagSet("get", flag.ContinueOnError) + cmdFlags.Usage = func() { c.Ui.Output(c.Help()) } + datacenter := cmdFlags.String("datacenter", "", "") + token := cmdFlags.String("token", "", "") + httpAddr := HTTPAddrFlag(cmdFlags) + if err := cmdFlags.Parse(args); err != nil { + return 1 + } + + var file string + + args = cmdFlags.Args() + switch len(args) { + case 0: + c.Ui.Error("Missing FILE argument") + return 1 + case 1: + file = args[0] + default: + c.Ui.Error(fmt.Sprintf("Too many arguments (expected 1, got %d)", len(args))) + return 1 + } + + // Create and test the HTTP client + conf := api.DefaultConfig() + conf.Datacenter = *datacenter + conf.Address = *httpAddr + conf.Token = *token + client, err := api.NewClient(conf) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err)) + return 1 + } + + // Open the file. + f, err := os.Open(file) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error opening snapshot file: %s", err)) + return 1 + } + defer f.Close() + + // Restore the snapshot. + err = client.Snapshot().Restore(nil, f) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error restoring snapshot: %s", err)) + return 1 + } + + c.Ui.Info("Restored snapshot") + return 0 +} + +func (c *SnapshotRestoreCommand) Synopsis() string { + return "Restores snapshot of Consul server state" +} diff --git a/command/snapshot_restore_test.go b/command/snapshot_restore_test.go new file mode 100644 index 0000000000..e9f1b4ae6b --- /dev/null +++ b/command/snapshot_restore_test.go @@ -0,0 +1,103 @@ +package command + +import ( + "io" + "io/ioutil" + "os" + "path" + "strings" + "testing" + + "github.com/mitchellh/cli" +) + +func TestSnapshotRestoreCommand_implements(t *testing.T) { + var _ cli.Command = &SnapshotRestoreCommand{} +} + +func TestSnapshotRestoreCommand_noTabs(t *testing.T) { + assertNoTabs(t, new(SnapshotRestoreCommand)) +} + +func TestSnapshotRestoreCommand_Validation(t *testing.T) { + ui := new(cli.MockUi) + c := &SnapshotRestoreCommand{Ui: ui} + + cases := map[string]struct { + args []string + output string + }{ + "no file": { + []string{}, + "Missing FILE argument", + }, + "extra args": { + []string{"foo", "bar", "baz"}, + "Too many arguments", + }, + } + + for name, tc := range cases { + // Ensure our buffer is always clear + if ui.ErrorWriter != nil { + ui.ErrorWriter.Reset() + } + if ui.OutputWriter != nil { + ui.OutputWriter.Reset() + } + + code := c.Run(tc.args) + if code == 0 { + t.Errorf("%s: expected non-zero exit", name) + } + + output := ui.ErrorWriter.String() + if !strings.Contains(output, tc.output) { + t.Errorf("%s: expected %q to contain %q", name, output, tc.output) + } + } +} + +func TestSnapshotRestoreCommand_Run(t *testing.T) { + srv, client := testAgentWithAPIClient(t) + defer srv.Shutdown() + waitForLeader(t, srv.httpAddr) + + ui := new(cli.MockUi) + c := &SnapshotSaveCommand{Ui: ui} + + dir, err := ioutil.TempDir("", "snapshot") + if err != nil { + t.Fatalf("err: %v", err) + } + defer os.RemoveAll(dir) + + file := path.Join(dir, "backup.tgz") + args := []string{ + "-http-addr=" + srv.httpAddr, + file, + } + + f, err := os.Create(file) + if err != nil { + t.Fatalf("err: %v", err) + } + + snap, _, err := client.Snapshot().Save(nil) + if err != nil { + f.Close() + t.Fatalf("err: %v", err) + } + if _, err := io.Copy(f, snap); err != nil { + f.Close() + t.Fatalf("err: %v", err) + } + if err := f.Close(); err != nil { + t.Fatalf("err: %v", err) + } + + code := c.Run(args) + if code != 0 { + t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String()) + } +} diff --git a/command/snapshot_save.go b/command/snapshot_save.go new file mode 100644 index 0000000000..ddfa56a118 --- /dev/null +++ b/command/snapshot_save.go @@ -0,0 +1,132 @@ +package command + +import ( + "flag" + "fmt" + "io" + "os" + "strings" + + "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/snapshot" + "github.com/mitchellh/cli" +) + +// SnapshotSaveCommand is a Command implementation that is used to save the +// state of the Consul servers for disaster recovery. +type SnapshotSaveCommand struct { + Ui cli.Ui +} + +func (c *SnapshotSaveCommand) Help() string { + helpText := ` +Usage: consul snapshot save [options] FILE + + Retrieves an atomic, point-in-time snapshot of the state of the Consul servers + which includes key/value entries, service catalog, prepared queries, sessions, + and ACLs. + + If ACLs are enabled, a management token must be supplied in order to perform + snapshot operations. + + To create a snapshot from the leader server and save it to "backup.snap": + + $ consul snapshot save backup.snap + + To create a potentially stale snapshot from any available server (useful if no + leader is available): + + $ consul snapshot save -stale backup.snap + + For a full list of options and examples, please see the Consul documentation. + +` + apiOptsText + + return strings.TrimSpace(helpText) +} + +func (c *SnapshotSaveCommand) Run(args []string) int { + cmdFlags := flag.NewFlagSet("get", flag.ContinueOnError) + cmdFlags.Usage = func() { c.Ui.Output(c.Help()) } + datacenter := cmdFlags.String("datacenter", "", "") + token := cmdFlags.String("token", "", "") + stale := cmdFlags.Bool("stale", false, "") + httpAddr := HTTPAddrFlag(cmdFlags) + if err := cmdFlags.Parse(args); err != nil { + return 1 + } + + var file string + + args = cmdFlags.Args() + switch len(args) { + case 0: + c.Ui.Error("Missing FILE argument") + return 1 + case 1: + file = args[0] + default: + c.Ui.Error(fmt.Sprintf("Too many arguments (expected 1, got %d)", len(args))) + return 1 + } + + // Create and test the HTTP client + conf := api.DefaultConfig() + conf.Datacenter = *datacenter + conf.Address = *httpAddr + conf.Token = *token + client, err := api.NewClient(conf) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err)) + return 1 + } + + // Take the snapshot. + snap, qm, err := client.Snapshot().Save(&api.QueryOptions{ + AllowStale: *stale, + }) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error saving snapshot: %s", err)) + return 1 + } + defer snap.Close() + + // Save the file. + f, err := os.Create(file) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error creating snapshot file: %s", err)) + return 1 + } + if _, err := io.Copy(f, snap); err != nil { + f.Close() + c.Ui.Error(fmt.Sprintf("Error writing snapshot file: %s", err)) + return 1 + } + if err := f.Close(); err != nil { + c.Ui.Error(fmt.Sprintf("Error closing snapshot file after writing: %s", err)) + return 1 + } + + // Read it back to verify. + f, err = os.Open(file) + if err != nil { + c.Ui.Error(fmt.Sprintf("Error opening snapshot file for verify: %s", err)) + return 1 + } + if _, err := snapshot.Verify(f); err != nil { + f.Close() + c.Ui.Error(fmt.Sprintf("Error verifying snapshot file: %s", err)) + return 1 + } + if err := f.Close(); err != nil { + c.Ui.Error(fmt.Sprintf("Error closing snapshot file after verify: %s", err)) + return 1 + } + + c.Ui.Info(fmt.Sprintf("Saved and verified snapshot to index %d", qm.LastIndex)) + return 0 +} + +func (c *SnapshotSaveCommand) Synopsis() string { + return "Saves snapshot of Consul server state" +} diff --git a/command/snapshot_save_test.go b/command/snapshot_save_test.go new file mode 100644 index 0000000000..e1eeb87c63 --- /dev/null +++ b/command/snapshot_save_test.go @@ -0,0 +1,94 @@ +package command + +import ( + "io/ioutil" + "os" + "path" + "strings" + "testing" + + "github.com/mitchellh/cli" +) + +func TestSnapshotSaveCommand_implements(t *testing.T) { + var _ cli.Command = &SnapshotSaveCommand{} +} + +func TestSnapshotSaveCommand_noTabs(t *testing.T) { + assertNoTabs(t, new(SnapshotSaveCommand)) +} + +func TestSnapshotSaveCommand_Validation(t *testing.T) { + ui := new(cli.MockUi) + c := &SnapshotSaveCommand{Ui: ui} + + cases := map[string]struct { + args []string + output string + }{ + "no file": { + []string{}, + "Missing FILE argument", + }, + "extra args": { + []string{"foo", "bar", "baz"}, + "Too many arguments", + }, + } + + for name, tc := range cases { + // Ensure our buffer is always clear + if ui.ErrorWriter != nil { + ui.ErrorWriter.Reset() + } + if ui.OutputWriter != nil { + ui.OutputWriter.Reset() + } + + code := c.Run(tc.args) + if code == 0 { + t.Errorf("%s: expected non-zero exit", name) + } + + output := ui.ErrorWriter.String() + if !strings.Contains(output, tc.output) { + t.Errorf("%s: expected %q to contain %q", name, output, tc.output) + } + } +} + +func TestSnapshotSaveCommand_Run(t *testing.T) { + srv, client := testAgentWithAPIClient(t) + defer srv.Shutdown() + waitForLeader(t, srv.httpAddr) + + ui := new(cli.MockUi) + c := &SnapshotSaveCommand{Ui: ui} + + dir, err := ioutil.TempDir("", "snapshot") + if err != nil { + t.Fatalf("err: %v", err) + } + defer os.RemoveAll(dir) + + file := path.Join(dir, "backup.tgz") + args := []string{ + "-http-addr=" + srv.httpAddr, + file, + } + + code := c.Run(args) + if code != 0 { + t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String()) + } + + f, err := os.Open(file) + if err != nil { + t.Fatalf("err: %v", err) + } + defer f.Close() + + if err := client.Snapshot().Restore(nil, f); err != nil { + t.Fatalf("err: %v", err) + } +} diff --git a/command/util_test.go b/command/util_test.go index faf0377bc6..646c1a5265 100644 --- a/command/util_test.go +++ b/command/util_test.go @@ -15,6 +15,7 @@ import ( "github.com/hashicorp/consul/api" "github.com/hashicorp/consul/command/agent" "github.com/hashicorp/consul/consul" + "github.com/hashicorp/consul/logger" "github.com/mitchellh/cli" ) @@ -61,7 +62,7 @@ func testAgentWithConfig(t *testing.T, cb func(c *agent.Config)) *agentWrapper { t.Fatalf("err: %s", err) } - lw := agent.NewLogWriter(512) + lw := logger.NewLogWriter(512) mult := io.MultiWriter(os.Stderr, lw) conf := nextConfig() @@ -73,7 +74,7 @@ func testAgentWithConfig(t *testing.T, cb func(c *agent.Config)) *agentWrapper { } conf.DataDir = dir - a, err := agent.Create(conf, lw) + a, err := agent.Create(conf, lw, nil, nil) if err != nil { os.RemoveAll(dir) t.Fatalf(fmt.Sprintf("err: %v", err)) diff --git a/commands.go b/commands.go index 3a3fcfe69a..9fbe0e261c 100644 --- a/commands.go +++ b/commands.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/consul/command" "github.com/hashicorp/consul/command/agent" + "github.com/hashicorp/consul/version" "github.com/mitchellh/cli" ) @@ -19,10 +20,10 @@ func init() { Commands = map[string]cli.CommandFactory{ "agent": func() (cli.Command, error) { return &agent.Command{ - Revision: GitCommit, - Version: Version, - VersionPrerelease: VersionPrerelease, - HumanVersion: GetHumanVersion(), + Revision: version.GitCommit, + Version: version.Version, + VersionPrerelease: version.VersionPrerelease, + HumanVersion: version.GetHumanVersion(), Ui: ui, ShutdownCh: make(chan struct{}), }, nil @@ -77,6 +78,18 @@ func init() { }, nil }, + "kv export": func() (cli.Command, error) { + return &command.KVExportCommand{ + Ui: ui, + }, nil + }, + + "kv import": func() (cli.Command, error) { + return &command.KVImportCommand{ + Ui: ui, + }, nil + }, + "join": func() (cli.Command, error) { return &command.JoinCommand{ Ui: ui, @@ -154,9 +167,33 @@ func init() { }, nil }, + "snapshot": func() (cli.Command, error) { + return &command.SnapshotCommand{ + Ui: ui, + }, nil + }, + + "snapshot restore": func() (cli.Command, error) { + return &command.SnapshotRestoreCommand{ + Ui: ui, + }, nil + }, + + "snapshot save": func() (cli.Command, error) { + return &command.SnapshotSaveCommand{ + Ui: ui, + }, nil + }, + + "snapshot inspect": func() (cli.Command, error) { + return &command.SnapshotInspectCommand{ + Ui: ui, + }, nil + }, + "version": func() (cli.Command, error) { return &command.VersionCommand{ - HumanVersion: GetHumanVersion(), + HumanVersion: version.GetHumanVersion(), Ui: ui, }, nil }, diff --git a/consul/acl.go b/consul/acl.go index 278395f84e..c51a9df799 100644 --- a/consul/acl.go +++ b/consul/acl.go @@ -14,29 +14,30 @@ import ( "github.com/hashicorp/golang-lru" ) +// These must be kept in sync with the constants in command/agent/acl.go. const ( - // aclNotFound indicates there is no matching ACL + // aclNotFound indicates there is no matching ACL. aclNotFound = "ACL not found" - // rootDenied is returned when attempting to resolve a root ACL + // rootDenied is returned when attempting to resolve a root ACL. rootDenied = "Cannot resolve root ACL" - // permissionDenied is returned when an ACL based rejection happens + // permissionDenied is returned when an ACL based rejection happens. permissionDenied = "Permission denied" - // aclDisabled is returned when ACL changes are not permitted - // since they are disabled. + // aclDisabled is returned when ACL changes are not permitted since they + // are disabled. aclDisabled = "ACL support disabled" - // anonymousToken is the token ID we re-write to if there - // is no token ID provided + // anonymousToken is the token ID we re-write to if there is no token ID + // provided. anonymousToken = "anonymous" // redactedToken is shown in structures with embedded tokens when they - // are not allowed to be displayed + // are not allowed to be displayed. redactedToken = "" - // Maximum number of cached ACL entries + // Maximum number of cached ACL entries. aclCacheSize = 10 * 1024 ) @@ -61,7 +62,7 @@ func (s *Server) aclLocalFault(id string) (string, string, error) { // Query the state store. state := s.fsm.State() - _, acl, err := state.ACLGet(id) + _, acl, err := state.ACLGet(nil, id) if err != nil { return "", "", err } @@ -264,6 +265,8 @@ func (c *aclCache) useACLPolicy(id, authDC string, cached *aclCacheEntry, p *str // Check if we can used the cached policy if cached != nil && cached.ETag == p.ETag { if p.TTL > 0 { + // TODO (slackpad) - This seems like it's an unsafe + // write. cached.Expires = time.Now().Add(p.TTL) } return cached.ACL, nil @@ -311,33 +314,55 @@ func (c *aclCache) useACLPolicy(id, authDC string, cached *aclCacheEntry, p *str // aclFilter is used to filter results from our state store based on ACL rules // configured for the provided token. type aclFilter struct { - acl acl.ACL - logger *log.Logger + acl acl.ACL + logger *log.Logger + enforceVersion8 bool } // newAclFilter constructs a new aclFilter. -func newAclFilter(acl acl.ACL, logger *log.Logger) *aclFilter { +func newAclFilter(acl acl.ACL, logger *log.Logger, enforceVersion8 bool) *aclFilter { if logger == nil { logger = log.New(os.Stdout, "", log.LstdFlags) } - return &aclFilter{acl, logger} + return &aclFilter{ + acl: acl, + logger: logger, + enforceVersion8: enforceVersion8, + } } -// filterService is used to determine if a service is accessible for an ACL. -func (f *aclFilter) filterService(service string) bool { +// allowNode is used to determine if a node is accessible for an ACL. +func (f *aclFilter) allowNode(node string) bool { + if !f.enforceVersion8 { + return true + } + return f.acl.NodeRead(node) +} + +// allowService is used to determine if a service is accessible for an ACL. +func (f *aclFilter) allowService(service string) bool { if service == "" || service == ConsulServiceID { return true } return f.acl.ServiceRead(service) } +// allowSession is used to determine if a session for a node is accessible for +// an ACL. +func (f *aclFilter) allowSession(node string) bool { + if !f.enforceVersion8 { + return true + } + return f.acl.SessionRead(node) +} + // filterHealthChecks is used to filter a set of health checks down based on // the configured ACL rules for a token. func (f *aclFilter) filterHealthChecks(checks *structs.HealthChecks) { hc := *checks for i := 0; i < len(hc); i++ { check := hc[i] - if f.filterService(check.ServiceName) { + if f.allowNode(check.Node) && f.allowService(check.ServiceName) { continue } f.logger.Printf("[DEBUG] consul: dropping check %q from result due to ACLs", check.CheckID) @@ -350,7 +375,7 @@ func (f *aclFilter) filterHealthChecks(checks *structs.HealthChecks) { // filterServices is used to filter a set of services based on ACLs. func (f *aclFilter) filterServices(services structs.Services) { for svc, _ := range services { - if f.filterService(svc) { + if f.allowService(svc) { continue } f.logger.Printf("[DEBUG] consul: dropping service %q from result due to ACLs", svc) @@ -364,7 +389,7 @@ func (f *aclFilter) filterServiceNodes(nodes *structs.ServiceNodes) { sn := *nodes for i := 0; i < len(sn); i++ { node := sn[i] - if f.filterService(node.ServiceName) { + if f.allowNode(node.Node) && f.allowService(node.ServiceName) { continue } f.logger.Printf("[DEBUG] consul: dropping node %q from result due to ACLs", node.Node) @@ -375,13 +400,22 @@ func (f *aclFilter) filterServiceNodes(nodes *structs.ServiceNodes) { } // filterNodeServices is used to filter services on a given node base on ACLs. -func (f *aclFilter) filterNodeServices(services *structs.NodeServices) { - for svc, _ := range services.Services { - if f.filterService(svc) { +func (f *aclFilter) filterNodeServices(services **structs.NodeServices) { + if *services == nil { + return + } + + if !f.allowNode((*services).Node.Node) { + *services = nil + return + } + + for svc, _ := range (*services).Services { + if f.allowService(svc) { continue } f.logger.Printf("[DEBUG] consul: dropping service %q from result due to ACLs", svc) - delete(services.Services, svc) + delete((*services).Services, svc) } } @@ -390,7 +424,7 @@ func (f *aclFilter) filterCheckServiceNodes(nodes *structs.CheckServiceNodes) { csn := *nodes for i := 0; i < len(csn); i++ { node := csn[i] - if f.filterService(node.Service.Service) { + if f.allowNode(node.Node.Node) && f.allowService(node.Service.Service) { continue } f.logger.Printf("[DEBUG] consul: dropping node %q from result due to ACLs", node.Node.Node) @@ -400,6 +434,37 @@ func (f *aclFilter) filterCheckServiceNodes(nodes *structs.CheckServiceNodes) { *nodes = csn } +// filterSessions is used to filter a set of sessions based on ACLs. +func (f *aclFilter) filterSessions(sessions *structs.Sessions) { + s := *sessions + for i := 0; i < len(s); i++ { + session := s[i] + if f.allowSession(session.Node) { + continue + } + f.logger.Printf("[DEBUG] consul: dropping session %q from result due to ACLs", session.ID) + s = append(s[:i], s[i+1:]...) + i-- + } + *sessions = s +} + +// filterCoordinates is used to filter nodes in a coordinate dump based on ACL +// rules. +func (f *aclFilter) filterCoordinates(coords *structs.Coordinates) { + c := *coords + for i := 0; i < len(c); i++ { + node := c[i].Node + if f.allowNode(node) { + continue + } + f.logger.Printf("[DEBUG] consul: dropping node %q from result due to ACLs", node) + c = append(c[:i], c[i+1:]...) + i-- + } + *coords = c +} + // filterNodeDump is used to filter through all parts of a node dump and // remove elements the provided ACL token cannot access. func (f *aclFilter) filterNodeDump(dump *structs.NodeDump) { @@ -407,31 +472,55 @@ func (f *aclFilter) filterNodeDump(dump *structs.NodeDump) { for i := 0; i < len(nd); i++ { info := nd[i] + // Filter nodes + if node := info.Node; !f.allowNode(node) { + f.logger.Printf("[DEBUG] consul: dropping node %q from result due to ACLs", node) + nd = append(nd[:i], nd[i+1:]...) + i-- + continue + } + // Filter services - for i := 0; i < len(info.Services); i++ { - svc := info.Services[i].Service - if f.filterService(svc) { + for j := 0; j < len(info.Services); j++ { + svc := info.Services[j].Service + if f.allowService(svc) { continue } f.logger.Printf("[DEBUG] consul: dropping service %q from result due to ACLs", svc) - info.Services = append(info.Services[:i], info.Services[i+1:]...) - i-- + info.Services = append(info.Services[:j], info.Services[j+1:]...) + j-- } // Filter checks - for i := 0; i < len(info.Checks); i++ { - chk := info.Checks[i] - if f.filterService(chk.ServiceName) { + for j := 0; j < len(info.Checks); j++ { + chk := info.Checks[j] + if f.allowService(chk.ServiceName) { continue } f.logger.Printf("[DEBUG] consul: dropping check %q from result due to ACLs", chk.CheckID) - info.Checks = append(info.Checks[:i], info.Checks[i+1:]...) - i-- + info.Checks = append(info.Checks[:j], info.Checks[j+1:]...) + j-- } } *dump = nd } +// filterNodes is used to filter through all parts of a node list and remove +// elements the provided ACL token cannot access. +func (f *aclFilter) filterNodes(nodes *structs.Nodes) { + n := *nodes + for i := 0; i < len(n); i++ { + node := n[i].Node + if f.allowNode(node) { + continue + } + f.logger.Printf("[DEBUG] consul: dropping node %q from result due to ACLs", node) + n = append(n[:i], n[i+1:]...) + i-- + } + *nodes = n +} + // redactPreparedQueryTokens will redact any tokens unless the client has a // management token. This eases the transition to delegated authority over // prepared queries, since it was easy to capture management tokens in Consul @@ -506,32 +595,39 @@ func (s *Server) filterACL(token string, subj interface{}) error { } // Create the filter - filt := newAclFilter(acl, s.logger) + filt := newAclFilter(acl, s.logger, s.config.ACLEnforceVersion8) switch v := subj.(type) { - case *structs.IndexedHealthChecks: - filt.filterHealthChecks(&v.HealthChecks) - - case *structs.IndexedServices: - filt.filterServices(v.Services) - - case *structs.IndexedServiceNodes: - filt.filterServiceNodes(&v.ServiceNodes) - - case *structs.IndexedNodeServices: - if v.NodeServices != nil { - filt.filterNodeServices(v.NodeServices) - } + case *structs.CheckServiceNodes: + filt.filterCheckServiceNodes(v) case *structs.IndexedCheckServiceNodes: filt.filterCheckServiceNodes(&v.Nodes) - case *structs.CheckServiceNodes: - filt.filterCheckServiceNodes(v) + case *structs.IndexedCoordinates: + filt.filterCoordinates(&v.Coordinates) + + case *structs.IndexedHealthChecks: + filt.filterHealthChecks(&v.HealthChecks) case *structs.IndexedNodeDump: filt.filterNodeDump(&v.Dump) + case *structs.IndexedNodes: + filt.filterNodes(&v.Nodes) + + case *structs.IndexedNodeServices: + filt.filterNodeServices(&v.NodeServices) + + case *structs.IndexedServiceNodes: + filt.filterServiceNodes(&v.ServiceNodes) + + case *structs.IndexedServices: + filt.filterServices(v.Services) + + case *structs.IndexedSessions: + filt.filterSessions(&v.Sessions) + case *structs.IndexedPreparedQueries: filt.filterPreparedQueries(&v.Queries) @@ -544,3 +640,149 @@ func (s *Server) filterACL(token string, subj interface{}) error { return nil } + +// vetRegisterWithACL applies the given ACL's policy to the catalog update and +// determines if it is allowed. Since the catalog register request is so +// dynamic, this is a pretty complex algorithm and was worth breaking out of the +// endpoint. The NodeServices record for the node must be supplied, and can be +// nil. +// +// This is a bit racy because we have to check the state store outside of a +// transaction. It's the best we can do because we don't want to flow ACL +// checking down there. The node information doesn't change in practice, so this +// will be fine. If we expose ways to change node addresses in a later version, +// then we should split the catalog API at the node and service level so we can +// address this race better (even then it would be super rare, and would at +// worst let a service update revert a recent node update, so it doesn't open up +// too much abuse). +func vetRegisterWithACL(acl acl.ACL, subj *structs.RegisterRequest, + ns *structs.NodeServices) error { + // Fast path if ACLs are not enabled. + if acl == nil { + return nil + } + + // Vet the node info. This allows service updates to re-post the required + // node info for each request without having to have node "write" + // privileges. + needsNode := ns == nil || subj.ChangesNode(ns.Node) + if needsNode && !acl.NodeWrite(subj.Node) { + return permissionDeniedErr + } + + // Vet the service change. This includes making sure they can register + // the given service, and that we can write to any existing service that + // is being modified by id (if any). + if subj.Service != nil { + if !acl.ServiceWrite(subj.Service.Service) { + return permissionDeniedErr + } + + if ns != nil { + other, ok := ns.Services[subj.Service.ID] + if ok && !acl.ServiceWrite(other.Service) { + return permissionDeniedErr + } + } + } + + // Make sure that the member was flattened before we got there. This + // keeps us from having to verify this check as well. + if subj.Check != nil { + return fmt.Errorf("check member must be nil") + } + + // Vet the checks. Node-level checks require node write, and + // service-level checks require service write. + for _, check := range subj.Checks { + // Make sure that the node matches - we don't allow you to mix + // checks from other nodes because we'd have to pull a bunch + // more state store data to check this. If ACLs are enabled then + // we simply require them to match in a given request. There's a + // note in state_store.go to ban this down there in Consul 0.8, + // but it's good to leave this here because it's required for + // correctness wrt. ACLs. + if check.Node != subj.Node { + return fmt.Errorf("Node '%s' for check '%s' doesn't match register request node '%s'", + check.Node, check.CheckID, subj.Node) + } + + // Node-level check. + if check.ServiceID == "" { + if !acl.NodeWrite(subj.Node) { + return permissionDeniedErr + } + continue + } + + // Service-level check, check the common case where it + // matches the service part of this request, which has + // already been vetted above, and might be being registered + // along with its checks. + if subj.Service != nil && subj.Service.ID == check.ServiceID { + continue + } + + // Service-level check for some other service. Make sure they've + // got write permissions for that service. + if ns == nil { + return fmt.Errorf("Unknown service '%s' for check '%s'", + check.ServiceID, check.CheckID) + } else { + other, ok := ns.Services[check.ServiceID] + if !ok { + return fmt.Errorf("Unknown service '%s' for check '%s'", + check.ServiceID, check.CheckID) + } + if !acl.ServiceWrite(other.Service) { + return permissionDeniedErr + } + } + } + + return nil +} + +// vetDeregisterWithACL applies the given ACL's policy to the catalog update and +// determines if it is allowed. Since the catalog deregister request is so +// dynamic, this is a pretty complex algorithm and was worth breaking out of the +// endpoint. The NodeService for the referenced service must be supplied, and can +// be nil; similar for the HealthCheck for the referenced health check. +func vetDeregisterWithACL(acl acl.ACL, subj *structs.DeregisterRequest, + ns *structs.NodeService, nc *structs.HealthCheck) error { + // Fast path if ACLs are not enabled. + if acl == nil { + return nil + } + + // This order must match the code in applyRegister() in fsm.go since it + // also evaluates things in this order, and will ignore fields based on + // this precedence. This lets us also ignore them from an ACL perspective. + if subj.ServiceID != "" { + if ns == nil { + return fmt.Errorf("Unknown service '%s'", subj.ServiceID) + } + if !acl.ServiceWrite(ns.Service) { + return permissionDeniedErr + } + } else if subj.CheckID != "" { + if nc == nil { + return fmt.Errorf("Unknown check '%s'", subj.CheckID) + } + if nc.ServiceID != "" { + if !acl.ServiceWrite(nc.ServiceName) { + return permissionDeniedErr + } + } else { + if !acl.NodeWrite(subj.Node) { + return permissionDeniedErr + } + } + } else { + if !acl.NodeWrite(subj.Node) { + return permissionDeniedErr + } + } + + return nil +} diff --git a/consul/acl_endpoint.go b/consul/acl_endpoint.go index 4f90410da3..97607efa34 100644 --- a/consul/acl_endpoint.go +++ b/consul/acl_endpoint.go @@ -6,7 +6,9 @@ import ( "github.com/armon/go-metrics" "github.com/hashicorp/consul/acl" + "github.com/hashicorp/consul/consul/state" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/go-memdb" "github.com/hashicorp/go-uuid" ) @@ -108,7 +110,7 @@ func (a *ACL) Apply(args *structs.ACLRequest, reply *string) error { return err } - _, acl, err := state.ACLGet(args.ACL.ID) + _, acl, err := state.ACLGet(nil, args.ACL.ID) if err != nil { a.srv.logger.Printf("[ERR] consul.acl: ACL lookup failed: %v", err) return err @@ -144,13 +146,10 @@ func (a *ACL) Get(args *structs.ACLSpecificRequest, return fmt.Errorf(aclDisabled) } - // Get the local state - state := a.srv.fsm.State() - return a.srv.blockingRPC(&args.QueryOptions, + return a.srv.blockingQuery(&args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("ACLGet"), - func() error { - index, acl, err := state.ACLGet(args.ACL) + func(ws memdb.WatchSet, state *state.StateStore) error { + index, acl, err := state.ACLGet(ws, args.ACL) if err != nil { return err } @@ -224,13 +223,10 @@ func (a *ACL) List(args *structs.DCSpecificRequest, return permissionDeniedErr } - // Get the local state - state := a.srv.fsm.State() - return a.srv.blockingRPC(&args.QueryOptions, + return a.srv.blockingQuery(&args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("ACLList"), - func() error { - index, acls, err := state.ACLList() + func(ws memdb.WatchSet, state *state.StateStore) error { + index, acls, err := state.ACLList(ws) if err != nil { return err } diff --git a/consul/acl_endpoint_test.go b/consul/acl_endpoint_test.go index e031730bf6..a59fd43f73 100644 --- a/consul/acl_endpoint_test.go +++ b/consul/acl_endpoint_test.go @@ -41,7 +41,7 @@ func TestACLEndpoint_Apply(t *testing.T) { // Verify state := s1.fsm.State() - _, s, err := state.ACLGet(out) + _, s, err := state.ACLGet(nil, out) if err != nil { t.Fatalf("err: %v", err) } @@ -63,7 +63,7 @@ func TestACLEndpoint_Apply(t *testing.T) { } // Verify - _, s, err = state.ACLGet(id) + _, s, err = state.ACLGet(nil, id) if err != nil { t.Fatalf("err: %v", err) } @@ -182,7 +182,7 @@ func TestACLEndpoint_Apply_CustomID(t *testing.T) { // Verify state := s1.fsm.State() - _, s, err := state.ACLGet(out) + _, s, err := state.ACLGet(nil, out) if err != nil { t.Fatalf("err: %v", err) } diff --git a/consul/acl_replication.go b/consul/acl_replication.go index 57ffce2555..4a89cc59e0 100644 --- a/consul/acl_replication.go +++ b/consul/acl_replication.go @@ -139,7 +139,7 @@ func reconcileACLs(local, remote structs.ACLs, lastRemoteIndex uint64) structs.A // FetchLocalACLs returns the ACLs in the local state store. func (s *Server) fetchLocalACLs() (structs.ACLs, error) { - _, local, err := s.fsm.State().ACLList() + _, local, err := s.fsm.State().ACLList(nil) if err != nil { return nil, err } diff --git a/consul/acl_replication_test.go b/consul/acl_replication_test.go index f7f10752b8..1b419fea58 100644 --- a/consul/acl_replication_test.go +++ b/consul/acl_replication_test.go @@ -364,11 +364,11 @@ func TestACLReplication(t *testing.T) { } checkSame := func() (bool, error) { - index, remote, err := s1.fsm.State().ACLList() + index, remote, err := s1.fsm.State().ACLList(nil) if err != nil { return false, err } - _, local, err := s2.fsm.State().ACLList() + _, local, err := s2.fsm.State().ACLList(nil) if err != nil { return false, err } diff --git a/consul/acl_test.go b/consul/acl_test.go index 6eb9308bd6..c0f0fd091e 100644 --- a/consul/acl_test.go +++ b/consul/acl_test.go @@ -5,6 +5,7 @@ import ( "fmt" "os" "reflect" + "strings" "testing" "github.com/hashicorp/consul/acl" @@ -12,6 +13,15 @@ import ( "github.com/hashicorp/consul/testutil" ) +var testACLPolicy = ` +key "" { + policy = "deny" +} +key "foo/" { + policy = "write" +} +` + func TestACL_Disabled(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) @@ -678,14 +688,14 @@ func TestACL_Replication(t *testing.T) { // Wait for replication to occur. testutil.WaitForResult(func() (bool, error) { - _, acl, err := s2.fsm.State().ACLGet(id) + _, acl, err := s2.fsm.State().ACLGet(nil, id) if err != nil { return false, err } if acl == nil { return false, nil } - _, acl, err = s3.fsm.State().ACLGet(id) + _, acl, err = s3.fsm.State().ACLGet(nil, id) if err != nil { return false, err } @@ -798,27 +808,93 @@ func TestACL_MultiDC_Found(t *testing.T) { } func TestACL_filterHealthChecks(t *testing.T) { - // Create some health checks - hc := structs.HealthChecks{ - &structs.HealthCheck{ - Node: "node1", - CheckID: "check1", - ServiceName: "foo", - }, + // Create some health checks. + fill := func() structs.HealthChecks { + return structs.HealthChecks{ + &structs.HealthCheck{ + Node: "node1", + CheckID: "check1", + ServiceName: "foo", + }, + } } - // Try permissive filtering - filt := newAclFilter(acl.AllowAll(), nil) - filt.filterHealthChecks(&hc) - if len(hc) != 1 { - t.Fatalf("bad: %#v", hc) + // Try permissive filtering. + { + hc := fill() + filt := newAclFilter(acl.AllowAll(), nil, false) + filt.filterHealthChecks(&hc) + if len(hc) != 1 { + t.Fatalf("bad: %#v", hc) + } } - // Try restrictive filtering - filt = newAclFilter(acl.DenyAll(), nil) - filt.filterHealthChecks(&hc) - if len(hc) != 0 { - t.Fatalf("bad: %#v", hc) + // Try restrictive filtering. + { + hc := fill() + filt := newAclFilter(acl.DenyAll(), nil, false) + filt.filterHealthChecks(&hc) + if len(hc) != 0 { + t.Fatalf("bad: %#v", hc) + } + } + + // Allowed to see the service but not the node. + policy, err := acl.Parse(` +service "foo" { + policy = "read" +} +`) + if err != nil { + t.Fatalf("err %v", err) + } + perms, err := acl.New(acl.DenyAll(), policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + // This will work because version 8 ACLs aren't being enforced. + { + hc := fill() + filt := newAclFilter(perms, nil, false) + filt.filterHealthChecks(&hc) + if len(hc) != 1 { + t.Fatalf("bad: %#v", hc) + } + } + + // But with version 8 the node will block it. + { + hc := fill() + filt := newAclFilter(perms, nil, true) + filt.filterHealthChecks(&hc) + if len(hc) != 0 { + t.Fatalf("bad: %#v", hc) + } + } + + // Chain on access to the node. + policy, err = acl.Parse(` +node "node1" { + policy = "read" +} +`) + if err != nil { + t.Fatalf("err %v", err) + } + perms, err = acl.New(perms, policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Now it should go through. + { + hc := fill() + filt := newAclFilter(perms, nil, true) + filt.filterHealthChecks(&hc) + if len(hc) != 1 { + t.Fatalf("bad: %#v", hc) + } } } @@ -830,14 +906,14 @@ func TestACL_filterServices(t *testing.T) { } // Try permissive filtering - filt := newAclFilter(acl.AllowAll(), nil) + filt := newAclFilter(acl.AllowAll(), nil, false) filt.filterServices(services) if len(services) != 2 { t.Fatalf("bad: %#v", services) } // Try restrictive filtering - filt = newAclFilter(acl.DenyAll(), nil) + filt = newAclFilter(acl.DenyAll(), nil, false) filt.filterServices(services) if len(services) != 0 { t.Fatalf("bad: %#v", services) @@ -845,142 +921,535 @@ func TestACL_filterServices(t *testing.T) { } func TestACL_filterServiceNodes(t *testing.T) { - // Create some service nodes - nodes := structs.ServiceNodes{ - &structs.ServiceNode{ - Node: "node1", - ServiceName: "foo", - }, + // Create some service nodes. + fill := func() structs.ServiceNodes { + return structs.ServiceNodes{ + &structs.ServiceNode{ + Node: "node1", + ServiceName: "foo", + }, + } } - // Try permissive filtering - filt := newAclFilter(acl.AllowAll(), nil) - filt.filterServiceNodes(&nodes) - if len(nodes) != 1 { - t.Fatalf("bad: %#v", nodes) + // Try permissive filtering. + { + nodes := fill() + filt := newAclFilter(acl.AllowAll(), nil, false) + filt.filterServiceNodes(&nodes) + if len(nodes) != 1 { + t.Fatalf("bad: %#v", nodes) + } } - // Try restrictive filtering - filt = newAclFilter(acl.DenyAll(), nil) - filt.filterServiceNodes(&nodes) - if len(nodes) != 0 { - t.Fatalf("bad: %#v", nodes) + // Try restrictive filtering. + { + nodes := fill() + filt := newAclFilter(acl.DenyAll(), nil, false) + filt.filterServiceNodes(&nodes) + if len(nodes) != 0 { + t.Fatalf("bad: %#v", nodes) + } + } + + // Allowed to see the service but not the node. + policy, err := acl.Parse(` +service "foo" { + policy = "read" +} +`) + if err != nil { + t.Fatalf("err %v", err) + } + perms, err := acl.New(acl.DenyAll(), policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + // This will work because version 8 ACLs aren't being enforced. + { + nodes := fill() + filt := newAclFilter(perms, nil, false) + filt.filterServiceNodes(&nodes) + if len(nodes) != 1 { + t.Fatalf("bad: %#v", nodes) + } + } + + // But with version 8 the node will block it. + { + nodes := fill() + filt := newAclFilter(perms, nil, true) + filt.filterServiceNodes(&nodes) + if len(nodes) != 0 { + t.Fatalf("bad: %#v", nodes) + } + } + + // Chain on access to the node. + policy, err = acl.Parse(` +node "node1" { + policy = "read" +} +`) + if err != nil { + t.Fatalf("err %v", err) + } + perms, err = acl.New(perms, policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Now it should go through. + { + nodes := fill() + filt := newAclFilter(perms, nil, true) + filt.filterServiceNodes(&nodes) + if len(nodes) != 1 { + t.Fatalf("bad: %#v", nodes) + } } } func TestACL_filterNodeServices(t *testing.T) { - // Create some node services - services := structs.NodeServices{ - Node: &structs.Node{ - Node: "node1", - }, - Services: map[string]*structs.NodeService{ - "foo": &structs.NodeService{ - ID: "foo", - Service: "foo", - }, - }, - } - - // Try permissive filtering - filt := newAclFilter(acl.AllowAll(), nil) - filt.filterNodeServices(&services) - if len(services.Services) != 1 { - t.Fatalf("bad: %#v", services.Services) - } - - // Try restrictive filtering - filt = newAclFilter(acl.DenyAll(), nil) - filt.filterNodeServices(&services) - if len(services.Services) != 0 { - t.Fatalf("bad: %#v", services.Services) - } -} - -func TestACL_filterCheckServiceNodes(t *testing.T) { - // Create some nodes - nodes := structs.CheckServiceNodes{ - structs.CheckServiceNode{ + // Create some node services. + fill := func() *structs.NodeServices { + return &structs.NodeServices{ Node: &structs.Node{ Node: "node1", }, - Service: &structs.NodeService{ - ID: "foo", - Service: "foo", - }, - Checks: structs.HealthChecks{ - &structs.HealthCheck{ - Node: "node1", - CheckID: "check1", - ServiceName: "foo", - }, - }, - }, - } - - // Try permissive filtering - filt := newAclFilter(acl.AllowAll(), nil) - filt.filterCheckServiceNodes(&nodes) - if len(nodes) != 1 { - t.Fatalf("bad: %#v", nodes) - } - if len(nodes[0].Checks) != 1 { - t.Fatalf("bad: %#v", nodes[0].Checks) - } - - // Try restrictive filtering - filt = newAclFilter(acl.DenyAll(), nil) - filt.filterCheckServiceNodes(&nodes) - if len(nodes) != 0 { - t.Fatalf("bad: %#v", nodes) - } -} - -func TestACL_filterNodeDump(t *testing.T) { - // Create a node dump - dump := structs.NodeDump{ - &structs.NodeInfo{ - Node: "node1", - Services: []*structs.NodeService{ - &structs.NodeService{ + Services: map[string]*structs.NodeService{ + "foo": &structs.NodeService{ ID: "foo", Service: "foo", }, }, - Checks: []*structs.HealthCheck{ - &structs.HealthCheck{ - Node: "node1", - CheckID: "check1", - ServiceName: "foo", + } + } + + // Try nil, which is a possible input. + { + var services *structs.NodeServices + filt := newAclFilter(acl.AllowAll(), nil, false) + filt.filterNodeServices(&services) + if services != nil { + t.Fatalf("bad: %#v", services) + } + } + + // Try permissive filtering. + { + services := fill() + filt := newAclFilter(acl.AllowAll(), nil, false) + filt.filterNodeServices(&services) + if len(services.Services) != 1 { + t.Fatalf("bad: %#v", services.Services) + } + } + + // Try restrictive filtering. + { + services := fill() + filt := newAclFilter(acl.DenyAll(), nil, false) + filt.filterNodeServices(&services) + if len((*services).Services) != 0 { + t.Fatalf("bad: %#v", (*services).Services) + } + } + + // Allowed to see the service but not the node. + policy, err := acl.Parse(` +service "foo" { + policy = "read" +} +`) + if err != nil { + t.Fatalf("err %v", err) + } + perms, err := acl.New(acl.DenyAll(), policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + // This will work because version 8 ACLs aren't being enforced. + { + services := fill() + filt := newAclFilter(perms, nil, false) + filt.filterNodeServices(&services) + if len((*services).Services) != 1 { + t.Fatalf("bad: %#v", (*services).Services) + } + } + + // But with version 8 the node will block it. + { + services := fill() + filt := newAclFilter(perms, nil, true) + filt.filterNodeServices(&services) + if services != nil { + t.Fatalf("bad: %#v", services) + } + } + + // Chain on access to the node. + policy, err = acl.Parse(` +node "node1" { + policy = "read" +} +`) + if err != nil { + t.Fatalf("err %v", err) + } + perms, err = acl.New(perms, policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Now it should go through. + { + services := fill() + filt := newAclFilter(perms, nil, true) + filt.filterNodeServices(&services) + if len((*services).Services) != 1 { + t.Fatalf("bad: %#v", (*services).Services) + } + } +} + +func TestACL_filterCheckServiceNodes(t *testing.T) { + // Create some nodes. + fill := func() structs.CheckServiceNodes { + return structs.CheckServiceNodes{ + structs.CheckServiceNode{ + Node: &structs.Node{ + Node: "node1", + }, + Service: &structs.NodeService{ + ID: "foo", + Service: "foo", + }, + Checks: structs.HealthChecks{ + &structs.HealthCheck{ + Node: "node1", + CheckID: "check1", + ServiceName: "foo", + }, }, }, + } + } + + // Try permissive filtering. + { + nodes := fill() + filt := newAclFilter(acl.AllowAll(), nil, false) + filt.filterCheckServiceNodes(&nodes) + if len(nodes) != 1 { + t.Fatalf("bad: %#v", nodes) + } + if len(nodes[0].Checks) != 1 { + t.Fatalf("bad: %#v", nodes[0].Checks) + } + } + + // Try restrictive filtering. + { + nodes := fill() + filt := newAclFilter(acl.DenyAll(), nil, false) + filt.filterCheckServiceNodes(&nodes) + if len(nodes) != 0 { + t.Fatalf("bad: %#v", nodes) + } + } + + // Allowed to see the service but not the node. + policy, err := acl.Parse(` +service "foo" { + policy = "read" +} +`) + if err != nil { + t.Fatalf("err %v", err) + } + perms, err := acl.New(acl.DenyAll(), policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + // This will work because version 8 ACLs aren't being enforced. + { + nodes := fill() + filt := newAclFilter(perms, nil, false) + filt.filterCheckServiceNodes(&nodes) + if len(nodes) != 1 { + t.Fatalf("bad: %#v", nodes) + } + if len(nodes[0].Checks) != 1 { + t.Fatalf("bad: %#v", nodes[0].Checks) + } + } + + // But with version 8 the node will block it. + { + nodes := fill() + filt := newAclFilter(perms, nil, true) + filt.filterCheckServiceNodes(&nodes) + if len(nodes) != 0 { + t.Fatalf("bad: %#v", nodes) + } + } + + // Chain on access to the node. + policy, err = acl.Parse(` +node "node1" { + policy = "read" +} +`) + if err != nil { + t.Fatalf("err %v", err) + } + perms, err = acl.New(perms, policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Now it should go through. + { + nodes := fill() + filt := newAclFilter(perms, nil, true) + filt.filterCheckServiceNodes(&nodes) + if len(nodes) != 1 { + t.Fatalf("bad: %#v", nodes) + } + if len(nodes[0].Checks) != 1 { + t.Fatalf("bad: %#v", nodes[0].Checks) + } + } +} + +func TestACL_filterCoordinates(t *testing.T) { + // Create some coordinates. + coords := structs.Coordinates{ + &structs.Coordinate{ + Node: "node1", + Coord: generateRandomCoordinate(), + }, + &structs.Coordinate{ + Node: "node2", + Coord: generateRandomCoordinate(), }, } - // Try permissive filtering - filt := newAclFilter(acl.AllowAll(), nil) - filt.filterNodeDump(&dump) - if len(dump) != 1 { - t.Fatalf("bad: %#v", dump) - } - if len(dump[0].Services) != 1 { - t.Fatalf("bad: %#v", dump[0].Services) - } - if len(dump[0].Checks) != 1 { - t.Fatalf("bad: %#v", dump[0].Checks) + // Try permissive filtering. + filt := newAclFilter(acl.AllowAll(), nil, false) + filt.filterCoordinates(&coords) + if len(coords) != 2 { + t.Fatalf("bad: %#v", coords) } - // Try restrictive filtering - filt = newAclFilter(acl.DenyAll(), nil) - filt.filterNodeDump(&dump) - if len(dump) != 1 { - t.Fatalf("bad: %#v", dump) + // Try restrictive filtering without version 8 ACL enforcement. + filt = newAclFilter(acl.DenyAll(), nil, false) + filt.filterCoordinates(&coords) + if len(coords) != 2 { + t.Fatalf("bad: %#v", coords) } - if len(dump[0].Services) != 0 { - t.Fatalf("bad: %#v", dump[0].Services) + + // Try restrictive filtering with version 8 ACL enforcement. + filt = newAclFilter(acl.DenyAll(), nil, true) + filt.filterCoordinates(&coords) + if len(coords) != 0 { + t.Fatalf("bad: %#v", coords) } - if len(dump[0].Checks) != 0 { - t.Fatalf("bad: %#v", dump[0].Checks) +} + +func TestACL_filterSessions(t *testing.T) { + // Create a session list. + sessions := structs.Sessions{ + &structs.Session{ + Node: "foo", + }, + &structs.Session{ + Node: "bar", + }, + } + + // Try permissive filtering. + filt := newAclFilter(acl.AllowAll(), nil, true) + filt.filterSessions(&sessions) + if len(sessions) != 2 { + t.Fatalf("bad: %#v", sessions) + } + + // Try restrictive filtering but with version 8 enforcement turned off. + filt = newAclFilter(acl.DenyAll(), nil, false) + filt.filterSessions(&sessions) + if len(sessions) != 2 { + t.Fatalf("bad: %#v", sessions) + } + + // Try restrictive filtering with version 8 enforcement turned on. + filt = newAclFilter(acl.DenyAll(), nil, true) + filt.filterSessions(&sessions) + if len(sessions) != 0 { + t.Fatalf("bad: %#v", sessions) + } +} + +func TestACL_filterNodeDump(t *testing.T) { + // Create a node dump. + fill := func() structs.NodeDump { + return structs.NodeDump{ + &structs.NodeInfo{ + Node: "node1", + Services: []*structs.NodeService{ + &structs.NodeService{ + ID: "foo", + Service: "foo", + }, + }, + Checks: []*structs.HealthCheck{ + &structs.HealthCheck{ + Node: "node1", + CheckID: "check1", + ServiceName: "foo", + }, + }, + }, + } + } + + // Try permissive filtering. + { + dump := fill() + filt := newAclFilter(acl.AllowAll(), nil, false) + filt.filterNodeDump(&dump) + if len(dump) != 1 { + t.Fatalf("bad: %#v", dump) + } + if len(dump[0].Services) != 1 { + t.Fatalf("bad: %#v", dump[0].Services) + } + if len(dump[0].Checks) != 1 { + t.Fatalf("bad: %#v", dump[0].Checks) + } + } + + // Try restrictive filtering. + { + dump := fill() + filt := newAclFilter(acl.DenyAll(), nil, false) + filt.filterNodeDump(&dump) + if len(dump) != 1 { + t.Fatalf("bad: %#v", dump) + } + if len(dump[0].Services) != 0 { + t.Fatalf("bad: %#v", dump[0].Services) + } + if len(dump[0].Checks) != 0 { + t.Fatalf("bad: %#v", dump[0].Checks) + } + } + + // Allowed to see the service but not the node. + policy, err := acl.Parse(` +service "foo" { + policy = "read" +} +`) + if err != nil { + t.Fatalf("err %v", err) + } + perms, err := acl.New(acl.DenyAll(), policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + // This will work because version 8 ACLs aren't being enforced. + { + dump := fill() + filt := newAclFilter(perms, nil, false) + filt.filterNodeDump(&dump) + if len(dump) != 1 { + t.Fatalf("bad: %#v", dump) + } + if len(dump[0].Services) != 1 { + t.Fatalf("bad: %#v", dump[0].Services) + } + if len(dump[0].Checks) != 1 { + t.Fatalf("bad: %#v", dump[0].Checks) + } + } + + // But with version 8 the node will block it. + { + dump := fill() + filt := newAclFilter(perms, nil, true) + filt.filterNodeDump(&dump) + if len(dump) != 0 { + t.Fatalf("bad: %#v", dump) + } + } + + // Chain on access to the node. + policy, err = acl.Parse(` +node "node1" { + policy = "read" +} +`) + if err != nil { + t.Fatalf("err %v", err) + } + perms, err = acl.New(perms, policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Now it should go through. + { + dump := fill() + filt := newAclFilter(perms, nil, true) + filt.filterNodeDump(&dump) + if len(dump) != 1 { + t.Fatalf("bad: %#v", dump) + } + if len(dump[0].Services) != 1 { + t.Fatalf("bad: %#v", dump[0].Services) + } + if len(dump[0].Checks) != 1 { + t.Fatalf("bad: %#v", dump[0].Checks) + } + } +} + +func TestACL_filterNodes(t *testing.T) { + // Create a nodes list. + nodes := structs.Nodes{ + &structs.Node{ + Node: "foo", + }, + &structs.Node{ + Node: "bar", + }, + } + + // Try permissive filtering. + filt := newAclFilter(acl.AllowAll(), nil, true) + filt.filterNodes(&nodes) + if len(nodes) != 2 { + t.Fatalf("bad: %#v", nodes) + } + + // Try restrictive filtering but with version 8 enforcement turned off. + filt = newAclFilter(acl.DenyAll(), nil, false) + filt.filterNodes(&nodes) + if len(nodes) != 2 { + t.Fatalf("bad: %#v", nodes) + } + + // Try restrictive filtering with version 8 enforcement turned on. + filt = newAclFilter(acl.DenyAll(), nil, true) + filt.filterNodes(&nodes) + if len(nodes) != 0 { + t.Fatalf("bad: %#v", nodes) } } @@ -997,7 +1466,7 @@ func TestACL_redactPreparedQueryTokens(t *testing.T) { // Try permissive filtering with a management token. This will allow the // embedded token to be seen. - filt := newAclFilter(acl.ManageAll(), nil) + filt := newAclFilter(acl.ManageAll(), nil, false) filt.redactPreparedQueryTokens(&query) if !reflect.DeepEqual(query, expected) { t.Fatalf("bad: %#v", &query) @@ -1009,7 +1478,7 @@ func TestACL_redactPreparedQueryTokens(t *testing.T) { // Now try permissive filtering with a client token, which should cause // the embedded token to get redacted. - filt = newAclFilter(acl.AllowAll(), nil) + filt = newAclFilter(acl.AllowAll(), nil, false) filt.redactPreparedQueryTokens(&query) expected.Token = redactedToken if !reflect.DeepEqual(query, expected) { @@ -1055,7 +1524,7 @@ func TestACL_filterPreparedQueries(t *testing.T) { // Try permissive filtering with a management token. This will allow the // embedded token to be seen. - filt := newAclFilter(acl.ManageAll(), nil) + filt := newAclFilter(acl.ManageAll(), nil, false) filt.filterPreparedQueries(&queries) if !reflect.DeepEqual(queries, expected) { t.Fatalf("bad: %#v", queries) @@ -1068,7 +1537,7 @@ func TestACL_filterPreparedQueries(t *testing.T) { // Now try permissive filtering with a client token, which should cause // the embedded token to get redacted, and the query with no name to get // filtered out. - filt = newAclFilter(acl.AllowAll(), nil) + filt = newAclFilter(acl.AllowAll(), nil, false) filt.filterPreparedQueries(&queries) expected[2].Token = redactedToken expected = append(structs.PreparedQueries{}, expected[1], expected[2]) @@ -1082,7 +1551,7 @@ func TestACL_filterPreparedQueries(t *testing.T) { } // Now try restrictive filtering. - filt = newAclFilter(acl.DenyAll(), nil) + filt = newAclFilter(acl.DenyAll(), nil, false) filt.filterPreparedQueries(&queries) if len(queries) != 0 { t.Fatalf("bad: %#v", queries) @@ -1106,11 +1575,333 @@ func TestACL_unhandledFilterType(t *testing.T) { srv.filterACL(token, &structs.HealthCheck{}) } -var testACLPolicy = ` -key "" { - policy = "deny" +func TestACL_vetRegisterWithACL(t *testing.T) { + args := &structs.RegisterRequest{ + Node: "nope", + Address: "127.0.0.1", + } + + // With a nil ACL, the update should be allowed. + if err := vetRegisterWithACL(nil, args, nil); err != nil { + t.Fatalf("err: %v", err) + } + + // Create a basic node policy. + policy, err := acl.Parse(` +node "node" { + policy = "write" } -key "foo/" { - policy = "write" +`) + if err != nil { + t.Fatalf("err %v", err) + } + perms, err := acl.New(acl.DenyAll(), policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + // With that policy, the update should now be blocked for node reasons. + err = vetRegisterWithACL(perms, args, nil) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("bad: %v", err) + } + + // Now use a permitted node name. + args.Node = "node" + if err := vetRegisterWithACL(perms, args, nil); err != nil { + t.Fatalf("err: %v", err) + } + + // Build some node info that matches what we have now. + ns := &structs.NodeServices{ + Node: &structs.Node{ + Node: "node", + Address: "127.0.0.1", + }, + Services: make(map[string]*structs.NodeService), + } + + // Try to register a service, which should be blocked. + args.Service = &structs.NodeService{ + Service: "service", + ID: "my-id", + } + err = vetRegisterWithACL(perms, args, ns) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("bad: %v", err) + } + + // Chain on a basic service policy. + policy, err = acl.Parse(` +service "service" { + policy = "write" +} +`) + if err != nil { + t.Fatalf("err %v", err) + } + perms, err = acl.New(perms, policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + // With the service ACL, the update should go through. + if err := vetRegisterWithACL(perms, args, ns); err != nil { + t.Fatalf("err: %v", err) + } + + // Add an existing service that they are clobbering and aren't allowed + // to write to. + ns.Services["my-id"] = &structs.NodeService{ + Service: "other", + ID: "my-id", + } + err = vetRegisterWithACL(perms, args, ns) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("bad: %v", err) + } + + // Chain on a policy that allows them to write to the other service. + policy, err = acl.Parse(` +service "other" { + policy = "write" +} +`) + if err != nil { + t.Fatalf("err %v", err) + } + perms, err = acl.New(perms, policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Now it should go through. + if err := vetRegisterWithACL(perms, args, ns); err != nil { + t.Fatalf("err: %v", err) + } + + // Try creating the node and the service at once by having no existing + // node record. This should be ok since we have node and service + // permissions. + if err := vetRegisterWithACL(perms, args, nil); err != nil { + t.Fatalf("err: %v", err) + } + + // Add a node-level check to the member, which should be rejected. + args.Check = &structs.HealthCheck{ + Node: "node", + } + err = vetRegisterWithACL(perms, args, ns) + if err == nil || !strings.Contains(err.Error(), "check member must be nil") { + t.Fatalf("bad: %v", err) + } + + // Move the check into the slice, but give a bad node name. + args.Check.Node = "nope" + args.Checks = append(args.Checks, args.Check) + args.Check = nil + err = vetRegisterWithACL(perms, args, ns) + if err == nil || !strings.Contains(err.Error(), "doesn't match register request node") { + t.Fatalf("bad: %v", err) + } + + // Fix the node name, which should now go through. + args.Checks[0].Node = "node" + if err := vetRegisterWithACL(perms, args, ns); err != nil { + t.Fatalf("err: %v", err) + } + + // Add a service-level check. + args.Checks = append(args.Checks, &structs.HealthCheck{ + Node: "node", + ServiceID: "my-id", + }) + if err := vetRegisterWithACL(perms, args, ns); err != nil { + t.Fatalf("err: %v", err) + } + + // Try creating everything at once. This should be ok since we have all + // the permissions we need. It also makes sure that we can register a + // new node, service, and associated checks. + if err := vetRegisterWithACL(perms, args, nil); err != nil { + t.Fatalf("err: %v", err) + } + + // Nil out the service registration, which'll skip the special case + // and force us to look at the ns data (it will look like we are + // writing to the "other" service which also has "my-id"). + args.Service = nil + if err := vetRegisterWithACL(perms, args, ns); err != nil { + t.Fatalf("err: %v", err) + } + + // Chain on a policy that forbids them to write to the other service. + policy, err = acl.Parse(` +service "other" { + policy = "deny" +} +`) + if err != nil { + t.Fatalf("err %v", err) + } + perms, err = acl.New(perms, policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + // This should get rejected. + err = vetRegisterWithACL(perms, args, ns) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("bad: %v", err) + } + + // Change the existing service data to point to a service name they + // car write to. This should go through. + ns.Services["my-id"] = &structs.NodeService{ + Service: "service", + ID: "my-id", + } + if err := vetRegisterWithACL(perms, args, ns); err != nil { + t.Fatalf("err: %v", err) + } + + // Chain on a policy that forbids them to write to the node. + policy, err = acl.Parse(` +node "node" { + policy = "deny" +} +`) + if err != nil { + t.Fatalf("err %v", err) + } + perms, err = acl.New(perms, policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + // This should get rejected because there's a node-level check in here. + err = vetRegisterWithACL(perms, args, ns) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("bad: %v", err) + } + + // Change the node-level check into a service check, and then it should + // go through. + args.Checks[0].ServiceID = "my-id" + if err := vetRegisterWithACL(perms, args, ns); err != nil { + t.Fatalf("err: %v", err) + } + + // Finally, attempt to update the node part of the data and make sure + // that gets rejected since they no longer have permissions. + args.Address = "127.0.0.2" + err = vetRegisterWithACL(perms, args, ns) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("bad: %v", err) + } +} + +func TestACL_vetDeregisterWithACL(t *testing.T) { + args := &structs.DeregisterRequest{ + Node: "nope", + } + + // With a nil ACL, the update should be allowed. + if err := vetDeregisterWithACL(nil, args, nil, nil); err != nil { + t.Fatalf("err: %v", err) + } + + // Create a basic node policy. + policy, err := acl.Parse(` +node "node" { + policy = "write" +} +service "service" { + policy = "write" +} +`) + if err != nil { + t.Fatalf("err %v", err) + } + perms, err := acl.New(acl.DenyAll(), policy) + if err != nil { + t.Fatalf("err: %v", err) + } + + // With that policy, the update should now be blocked for node reasons. + err = vetDeregisterWithACL(perms, args, nil, nil) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("bad: %v", err) + } + + // Now use a permitted node name. + args.Node = "node" + if err := vetDeregisterWithACL(perms, args, nil, nil); err != nil { + t.Fatalf("err: %v", err) + } + + // Try an unknown check. + args.CheckID = "check-id" + err = vetDeregisterWithACL(perms, args, nil, nil) + if err == nil || !strings.Contains(err.Error(), "Unknown check") { + t.Fatalf("bad: %v", err) + } + + // Now pass in a check that should be blocked. + nc := &structs.HealthCheck{ + Node: "node", + CheckID: "check-id", + ServiceID: "service-id", + ServiceName: "nope", + } + err = vetDeregisterWithACL(perms, args, nil, nc) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("bad: %v", err) + } + + // Change it to an allowed service, which should go through. + nc.ServiceName = "service" + if err := vetDeregisterWithACL(perms, args, nil, nc); err != nil { + t.Fatalf("err: %v", err) + } + + // Switch to a node check that should be blocked. + args.Node = "nope" + nc.Node = "nope" + nc.ServiceID = "" + nc.ServiceName = "" + err = vetDeregisterWithACL(perms, args, nil, nc) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("bad: %v", err) + } + + // Switch to an allowed node check, which should go through. + args.Node = "node" + nc.Node = "node" + if err := vetDeregisterWithACL(perms, args, nil, nc); err != nil { + t.Fatalf("err: %v", err) + } + + // Try an unknown service. + args.ServiceID = "service-id" + err = vetDeregisterWithACL(perms, args, nil, nil) + if err == nil || !strings.Contains(err.Error(), "Unknown service") { + t.Fatalf("bad: %v", err) + } + + // Now pass in a service that should be blocked. + ns := &structs.NodeService{ + ID: "service-id", + Service: "nope", + } + err = vetDeregisterWithACL(perms, args, ns, nil) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("bad: %v", err) + } + + // Change it to an allowed service, which should go through. + ns.Service = "service" + if err := vetDeregisterWithACL(perms, args, ns, nil); err != nil { + t.Fatalf("err: %v", err) + } } -` diff --git a/consul/catalog_endpoint.go b/consul/catalog_endpoint.go index 06f81993b9..1108f5dfee 100644 --- a/consul/catalog_endpoint.go +++ b/consul/catalog_endpoint.go @@ -5,8 +5,11 @@ import ( "time" "github.com/armon/go-metrics" + "github.com/hashicorp/consul/consul/state" "github.com/hashicorp/consul/consul/structs" "github.com/hashicorp/consul/types" + "github.com/hashicorp/go-memdb" + "github.com/hashicorp/go-uuid" ) // Catalog endpoint is used to manipulate the service catalog @@ -21,37 +24,47 @@ func (c *Catalog) Register(args *structs.RegisterRequest, reply *struct{}) error } defer metrics.MeasureSince([]string{"consul", "catalog", "register"}, time.Now()) - // Verify the args + // Verify the args. if args.Node == "" || args.Address == "" { return fmt.Errorf("Must provide node and address") } + if args.ID != "" { + if _, err := uuid.ParseUUID(string(args.ID)); err != nil { + return fmt.Errorf("Bad node ID: %v", err) + } + } + // Fetch the ACL token, if any. + acl, err := c.srv.resolveToken(args.Token) + if err != nil { + return err + } + + // Handle a service registration. if args.Service != nil { // If no service id, but service name, use default if args.Service.ID == "" && args.Service.Service != "" { args.Service.ID = args.Service.Service } - // Verify ServiceName provided if ID + // Verify ServiceName provided if ID. if args.Service.ID != "" && args.Service.Service == "" { return fmt.Errorf("Must provide service name with ID") } - // Apply the ACL policy if any - // The 'consul' service is excluded since it is managed - // automatically internally. + // Apply the ACL policy if any. The 'consul' service is excluded + // since it is managed automatically internally (that behavior + // is going away after version 0.8). We check this same policy + // later if version 0.8 is enabled, so we can eventually just + // delete this and do all the ACL checks down there. if args.Service.Service != ConsulServiceName { - acl, err := c.srv.resolveToken(args.Token) - if err != nil { - return err - } else if acl != nil && !acl.ServiceWrite(args.Service.Service) { - c.srv.logger.Printf("[WARN] consul.catalog: Register of service '%s' on '%s' denied due to ACLs", - args.Service.Service, args.Node) + if acl != nil && !acl.ServiceWrite(args.Service.Service) { return permissionDeniedErr } } } + // Move the old format single check into the slice, and fixup IDs. if args.Check != nil { args.Checks = append(args.Checks, args.Check) args.Check = nil @@ -65,9 +78,20 @@ func (c *Catalog) Register(args *structs.RegisterRequest, reply *struct{}) error } } - _, err := c.srv.raftApply(structs.RegisterRequestType, args) + // Check the complete register request against the given ACL policy. + if acl != nil && c.srv.config.ACLEnforceVersion8 { + state := c.srv.fsm.State() + _, ns, err := state.NodeServices(nil, args.Node) + if err != nil { + return fmt.Errorf("Node lookup failed: %v", err) + } + if err := vetRegisterWithACL(acl, args, ns); err != nil { + return err + } + } + + _, err = c.srv.raftApply(structs.RegisterRequestType, args) if err != nil { - c.srv.logger.Printf("[ERR] consul.catalog: Register failed: %v", err) return err } @@ -86,9 +110,38 @@ func (c *Catalog) Deregister(args *structs.DeregisterRequest, reply *struct{}) e return fmt.Errorf("Must provide node") } - _, err := c.srv.raftApply(structs.DeregisterRequestType, args) + // Fetch the ACL token, if any. + acl, err := c.srv.resolveToken(args.Token) if err != nil { - c.srv.logger.Printf("[ERR] consul.catalog: Deregister failed: %v", err) + return err + } + + // Check the complete deregister request against the given ACL policy. + if acl != nil && c.srv.config.ACLEnforceVersion8 { + state := c.srv.fsm.State() + + var ns *structs.NodeService + if args.ServiceID != "" { + _, ns, err = state.NodeService(args.Node, args.ServiceID) + if err != nil { + return fmt.Errorf("Service lookup failed: %v", err) + } + } + + var nc *structs.HealthCheck + if args.CheckID != "" { + _, nc, err = state.NodeCheck(args.Node, args.CheckID) + if err != nil { + return fmt.Errorf("Check lookup failed: %v", err) + } + } + + if err := vetDeregisterWithACL(acl, args, ns, nc); err != nil { + return err + } + } + + if _, err := c.srv.raftApply(structs.DeregisterRequestType, args); err != nil { return err } return nil @@ -111,19 +164,26 @@ func (c *Catalog) ListNodes(args *structs.DCSpecificRequest, reply *structs.Inde return err } - // Get the list of nodes. - state := c.srv.fsm.State() - return c.srv.blockingRPC( + return c.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("Nodes"), - func() error { - index, nodes, err := state.Nodes() + func(ws memdb.WatchSet, state *state.StateStore) error { + var index uint64 + var nodes structs.Nodes + var err error + if len(args.NodeMetaFilters) > 0 { + index, nodes, err = state.NodesByMeta(ws, args.NodeMetaFilters) + } else { + index, nodes, err = state.Nodes(ws) + } if err != nil { return err } reply.Index, reply.Nodes = index, nodes + if err := c.srv.filterACL(args.Token, reply); err != nil { + return err + } return c.srv.sortNodesByDistanceFrom(args.Source, reply.Nodes) }) } @@ -134,14 +194,18 @@ func (c *Catalog) ListServices(args *structs.DCSpecificRequest, reply *structs.I return err } - // Get the list of services and their tags. - state := c.srv.fsm.State() - return c.srv.blockingRPC( + return c.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("Services"), - func() error { - index, services, err := state.Services() + func(ws memdb.WatchSet, state *state.StateStore) error { + var index uint64 + var services structs.Services + var err error + if len(args.NodeMetaFilters) > 0 { + index, services, err = state.ServicesByNodeMeta(ws, args.NodeMetaFilters) + } else { + index, services, err = state.Services(ws) + } if err != nil { return err } @@ -162,25 +226,31 @@ func (c *Catalog) ServiceNodes(args *structs.ServiceSpecificRequest, reply *stru return fmt.Errorf("Must provide service name") } - // Get the nodes - state := c.srv.fsm.State() - err := c.srv.blockingRPC( + err := c.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("ServiceNodes"), - func() error { + func(ws memdb.WatchSet, state *state.StateStore) error { var index uint64 var services structs.ServiceNodes var err error if args.TagFilter { - index, services, err = state.ServiceTagNodes(args.ServiceName, args.ServiceTag) + index, services, err = state.ServiceTagNodes(ws, args.ServiceName, args.ServiceTag) } else { - index, services, err = state.ServiceNodes(args.ServiceName) + index, services, err = state.ServiceNodes(ws, args.ServiceName) } if err != nil { return err } reply.Index, reply.ServiceNodes = index, services + if len(args.NodeMetaFilters) > 0 { + var filtered structs.ServiceNodes + for _, service := range services { + if structs.SatisfiesMetaFilters(service.NodeMeta, args.NodeMetaFilters) { + filtered = append(filtered, service) + } + } + reply.ServiceNodes = filtered + } if err := c.srv.filterACL(args.Token, reply); err != nil { return err } @@ -211,17 +281,15 @@ func (c *Catalog) NodeServices(args *structs.NodeSpecificRequest, reply *structs return fmt.Errorf("Must provide node") } - // Get the node services - state := c.srv.fsm.State() - return c.srv.blockingRPC( + return c.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("NodeServices"), - func() error { - index, services, err := state.NodeServices(args.Node) + func(ws memdb.WatchSet, state *state.StateStore) error { + index, services, err := state.NodeServices(ws, args.Node) if err != nil { return err } + reply.Index, reply.NodeServices = index, services return c.srv.filterACL(args.Token, reply) }) diff --git a/consul/catalog_endpoint_test.go b/consul/catalog_endpoint_test.go index 8171551121..aa25388a27 100644 --- a/consul/catalog_endpoint_test.go +++ b/consul/catalog_endpoint_test.go @@ -11,10 +11,11 @@ import ( "github.com/hashicorp/consul/consul/structs" "github.com/hashicorp/consul/lib" "github.com/hashicorp/consul/testutil" + "github.com/hashicorp/consul/types" "github.com/hashicorp/net-rpc-msgpackrpc" ) -func TestCatalogRegister(t *testing.T) { +func TestCatalog_Register(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -30,6 +31,9 @@ func TestCatalogRegister(t *testing.T) { Tags: []string{"master"}, Port: 8000, }, + Check: &structs.HealthCheck{ + ServiceID: "db", + }, } var out struct{} @@ -37,20 +41,48 @@ func TestCatalogRegister(t *testing.T) { if err != nil { t.Fatalf("err: %v", err) } - - testutil.WaitForResult(func() (bool, error) { - err := msgpackrpc.CallWithCodec(codec, "Catalog.Register", &arg, &out) - return err == nil, err - }, func(err error) { - t.Fatalf("err: %v", err) - }) } -func TestCatalogRegister_ACLDeny(t *testing.T) { +func TestCatalog_Register_NodeID(t *testing.T) { + dir1, s1 := testServer(t) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + arg := structs.RegisterRequest{ + Datacenter: "dc1", + ID: "nope", + Node: "foo", + Address: "127.0.0.1", + Service: &structs.NodeService{ + Service: "db", + Tags: []string{"master"}, + Port: 8000, + }, + Check: &structs.HealthCheck{ + ServiceID: "db", + }, + } + var out struct{} + + err := msgpackrpc.CallWithCodec(codec, "Catalog.Register", &arg, &out) + if err == nil || !strings.Contains(err.Error(), "Bad node ID") { + t.Fatalf("err: %v", err) + } + + arg.ID = types.NodeID("adf4238a-882b-9ddc-4a9d-5b6758e4159e") + if err := msgpackrpc.CallWithCodec(codec, "Catalog.Register", &arg, &out); err != nil { + t.Fatalf("err: %v", err) + } +} + +func TestCatalog_Register_ACLDeny(t *testing.T) { dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" + c.ACLEnforceVersion8 = false }) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -59,22 +91,25 @@ func TestCatalogRegister_ACLDeny(t *testing.T) { testutil.WaitForLeader(t, s1.RPC, "dc1") - // Create the ACL + // Create the ACL. arg := structs.ACLRequest{ Datacenter: "dc1", Op: structs.ACLSet, ACL: structs.ACL{ - Name: "User token", - Type: structs.ACLTypeClient, - Rules: testRegisterRules, + Name: "User token", + Type: structs.ACLTypeClient, + Rules: ` +service "foo" { + policy = "write" +} +`, }, WriteRequest: structs.WriteRequest{Token: "root"}, } - var out string - if err := msgpackrpc.CallWithCodec(codec, "ACL.Apply", &arg, &out); err != nil { + var id string + if err := msgpackrpc.CallWithCodec(codec, "ACL.Apply", &arg, &id); err != nil { t.Fatalf("err: %v", err) } - id := out argR := structs.RegisterRequest{ Datacenter: "dc1", @@ -89,19 +124,61 @@ func TestCatalogRegister_ACLDeny(t *testing.T) { } var outR struct{} + // This should fail since we are writing to the "db" service, which isn't + // allowed. err := msgpackrpc.CallWithCodec(codec, "Catalog.Register", &argR, &outR) if err == nil || !strings.Contains(err.Error(), permissionDenied) { t.Fatalf("err: %v", err) } + // The "foo" service should work, though. argR.Service.Service = "foo" err = msgpackrpc.CallWithCodec(codec, "Catalog.Register", &argR, &outR) if err != nil { t.Fatalf("err: %v", err) } + + // Try the special case for the "consul" service that allows it no matter + // what with pre-version 8 ACL enforcement. + argR.Service.Service = "consul" + err = msgpackrpc.CallWithCodec(codec, "Catalog.Register", &argR, &outR) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Make sure the exception goes away when we turn on version 8 ACL + // enforcement. + s1.config.ACLEnforceVersion8 = true + err = msgpackrpc.CallWithCodec(codec, "Catalog.Register", &argR, &outR) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Register a db service using the root token. + argR.Service.Service = "db" + argR.Service.ID = "my-id" + argR.Token = "root" + err = msgpackrpc.CallWithCodec(codec, "Catalog.Register", &argR, &outR) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Prove that we are properly looking up the node services and passing + // that to the ACL helper. We can vet the helper independently in its + // own unit test after this. This is trying to register over the db + // service we created above, which is a check that depends on looking + // at the existing registration data with that service ID. This is a new + // check for version 8. + argR.Service.Service = "foo" + argR.Service.ID = "my-id" + argR.Token = id + err = msgpackrpc.CallWithCodec(codec, "Catalog.Register", &argR, &outR) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } } -func TestCatalogRegister_ForwardLeader(t *testing.T) { +func TestCatalog_Register_ForwardLeader(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -148,7 +225,7 @@ func TestCatalogRegister_ForwardLeader(t *testing.T) { } } -func TestCatalogRegister_ForwardDC(t *testing.T) { +func TestCatalog_Register_ForwardDC(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -184,7 +261,7 @@ func TestCatalogRegister_ForwardDC(t *testing.T) { } } -func TestCatalogDeregister(t *testing.T) { +func TestCatalog_Deregister(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -209,7 +286,218 @@ func TestCatalogDeregister(t *testing.T) { } } -func TestCatalogListDatacenters(t *testing.T) { +func TestCatalog_Deregister_ACLDeny(t *testing.T) { + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLMasterToken = "root" + c.ACLDefaultPolicy = "deny" + c.ACLEnforceVersion8 = false + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + + // Create the ACL. + arg := structs.ACLRequest{ + Datacenter: "dc1", + Op: structs.ACLSet, + ACL: structs.ACL{ + Name: "User token", + Type: structs.ACLTypeClient, + Rules: ` +node "node" { + policy = "write" +} + +service "service" { + policy = "write" +} +`, + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + var id string + if err := msgpackrpc.CallWithCodec(codec, "ACL.Apply", &arg, &id); err != nil { + t.Fatalf("err: %v", err) + } + + // Register a node, node check, service, and service check. + argR := structs.RegisterRequest{ + Datacenter: "dc1", + Node: "node", + Address: "127.0.0.1", + Service: &structs.NodeService{ + Service: "service", + Port: 8000, + }, + Checks: structs.HealthChecks{ + &structs.HealthCheck{ + Node: "node", + CheckID: "node-check", + }, + &structs.HealthCheck{ + Node: "node", + CheckID: "service-check", + ServiceID: "service", + }, + }, + WriteRequest: structs.WriteRequest{Token: id}, + } + var outR struct{} + if err := msgpackrpc.CallWithCodec(codec, "Catalog.Register", &argR, &outR); err != nil { + t.Fatalf("err: %v", err) + } + + // First pass with version 8 ACL enforcement disabled, we should be able + // to deregister everything even without a token. + var err error + var out struct{} + err = msgpackrpc.CallWithCodec(codec, "Catalog.Deregister", + &structs.DeregisterRequest{ + Datacenter: "dc1", + Node: "node", + CheckID: "service-check"}, &out) + if err != nil { + t.Fatalf("err: %v", err) + } + err = msgpackrpc.CallWithCodec(codec, "Catalog.Deregister", + &structs.DeregisterRequest{ + Datacenter: "dc1", + Node: "node", + CheckID: "node-check"}, &out) + if err != nil { + t.Fatalf("err: %v", err) + } + err = msgpackrpc.CallWithCodec(codec, "Catalog.Deregister", + &structs.DeregisterRequest{ + Datacenter: "dc1", + Node: "node", + ServiceID: "service"}, &out) + if err != nil { + t.Fatalf("err: %v", err) + } + err = msgpackrpc.CallWithCodec(codec, "Catalog.Deregister", + &structs.DeregisterRequest{ + Datacenter: "dc1", + Node: "node"}, &out) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Turn on version 8 ACL enforcement and put the catalog entry back. + s1.config.ACLEnforceVersion8 = true + if err := msgpackrpc.CallWithCodec(codec, "Catalog.Register", &argR, &outR); err != nil { + t.Fatalf("err: %v", err) + } + + // Second pass with version 8 ACL enforcement enabled, these should all + // get rejected. + err = msgpackrpc.CallWithCodec(codec, "Catalog.Deregister", + &structs.DeregisterRequest{ + Datacenter: "dc1", + Node: "node", + CheckID: "service-check"}, &out) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + err = msgpackrpc.CallWithCodec(codec, "Catalog.Deregister", + &structs.DeregisterRequest{ + Datacenter: "dc1", + Node: "node", + CheckID: "node-check"}, &out) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + err = msgpackrpc.CallWithCodec(codec, "Catalog.Deregister", + &structs.DeregisterRequest{ + Datacenter: "dc1", + Node: "node", + ServiceID: "service"}, &out) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + err = msgpackrpc.CallWithCodec(codec, "Catalog.Deregister", + &structs.DeregisterRequest{ + Datacenter: "dc1", + Node: "node"}, &out) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Third pass these should all go through with the token set. + err = msgpackrpc.CallWithCodec(codec, "Catalog.Deregister", + &structs.DeregisterRequest{ + Datacenter: "dc1", + Node: "node", + CheckID: "service-check", + WriteRequest: structs.WriteRequest{ + Token: id, + }}, &out) + if err != nil { + t.Fatalf("err: %v", err) + } + err = msgpackrpc.CallWithCodec(codec, "Catalog.Deregister", + &structs.DeregisterRequest{ + Datacenter: "dc1", + Node: "node", + CheckID: "node-check", + WriteRequest: structs.WriteRequest{ + Token: id, + }}, &out) + if err != nil { + t.Fatalf("err: %v", err) + } + err = msgpackrpc.CallWithCodec(codec, "Catalog.Deregister", + &structs.DeregisterRequest{ + Datacenter: "dc1", + Node: "node", + ServiceID: "service", + WriteRequest: structs.WriteRequest{ + Token: id, + }}, &out) + if err != nil { + t.Fatalf("err: %v", err) + } + err = msgpackrpc.CallWithCodec(codec, "Catalog.Deregister", + &structs.DeregisterRequest{ + Datacenter: "dc1", + Node: "node", + WriteRequest: structs.WriteRequest{ + Token: id, + }}, &out) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Try a few error cases. + err = msgpackrpc.CallWithCodec(codec, "Catalog.Deregister", + &structs.DeregisterRequest{ + Datacenter: "dc1", + Node: "node", + ServiceID: "nope", + WriteRequest: structs.WriteRequest{ + Token: id, + }}, &out) + if err == nil || !strings.Contains(err.Error(), "Unknown service") { + t.Fatalf("err: %v", err) + } + err = msgpackrpc.CallWithCodec(codec, "Catalog.Deregister", + &structs.DeregisterRequest{ + Datacenter: "dc1", + Node: "node", + CheckID: "nope", + WriteRequest: structs.WriteRequest{ + Token: id, + }}, &out) + if err == nil || !strings.Contains(err.Error(), "Unknown check") { + t.Fatalf("err: %v", err) + } +} + +func TestCatalog_ListDatacenters(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -246,7 +534,7 @@ func TestCatalogListDatacenters(t *testing.T) { } } -func TestCatalogListDatacenters_DistanceSort(t *testing.T) { +func TestCatalog_ListDatacenters_DistanceSort(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -290,7 +578,7 @@ func TestCatalogListDatacenters_DistanceSort(t *testing.T) { } } -func TestCatalogListNodes(t *testing.T) { +func TestCatalog_ListNodes(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -332,7 +620,71 @@ func TestCatalogListNodes(t *testing.T) { } } -func TestCatalogListNodes_StaleRaad(t *testing.T) { +func TestCatalog_ListNodes_NodeMetaFilter(t *testing.T) { + dir1, s1 := testServer(t) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + + // Add a new node with the right meta k/v pair + node := &structs.Node{Node: "foo", Address: "127.0.0.1", Meta: map[string]string{"somekey": "somevalue"}} + if err := s1.fsm.State().EnsureNode(1, node); err != nil { + t.Fatalf("err: %v", err) + } + + // Filter by a specific meta k/v pair + args := structs.DCSpecificRequest{ + Datacenter: "dc1", + NodeMetaFilters: map[string]string{ + "somekey": "somevalue", + }, + } + var out structs.IndexedNodes + + testutil.WaitForResult(func() (bool, error) { + msgpackrpc.CallWithCodec(codec, "Catalog.ListNodes", &args, &out) + return len(out.Nodes) == 1, nil + }, func(err error) { + t.Fatalf("err: %v", err) + }) + + // Verify that only the correct node was returned + if out.Nodes[0].Node != "foo" { + t.Fatalf("bad: %v", out) + } + if out.Nodes[0].Address != "127.0.0.1" { + t.Fatalf("bad: %v", out) + } + if v, ok := out.Nodes[0].Meta["somekey"]; !ok || v != "somevalue" { + t.Fatalf("bad: %v", out) + } + + // Now filter on a nonexistent meta k/v pair + args = structs.DCSpecificRequest{ + Datacenter: "dc1", + NodeMetaFilters: map[string]string{ + "somekey": "invalid", + }, + } + out = structs.IndexedNodes{} + err := msgpackrpc.CallWithCodec(codec, "Catalog.ListNodes", &args, &out) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Should get an empty list of nodes back + testutil.WaitForResult(func() (bool, error) { + msgpackrpc.CallWithCodec(codec, "Catalog.ListNodes", &args, &out) + return len(out.Nodes) == 0, nil + }, func(err error) { + t.Fatalf("err: %v", err) + }) +} + +func TestCatalog_ListNodes_StaleRaad(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -400,7 +752,7 @@ func TestCatalogListNodes_StaleRaad(t *testing.T) { } } -func TestCatalogListNodes_ConsistentRead_Fail(t *testing.T) { +func TestCatalog_ListNodes_ConsistentRead_Fail(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -450,7 +802,7 @@ func TestCatalogListNodes_ConsistentRead_Fail(t *testing.T) { } } -func TestCatalogListNodes_ConsistentRead(t *testing.T) { +func TestCatalog_ListNodes_ConsistentRead(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -498,7 +850,7 @@ func TestCatalogListNodes_ConsistentRead(t *testing.T) { } } -func TestCatalogListNodes_DistanceSort(t *testing.T) { +func TestCatalog_ListNodes_DistanceSort(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -586,7 +938,84 @@ func TestCatalogListNodes_DistanceSort(t *testing.T) { } } -func BenchmarkCatalogListNodes(t *testing.B) { +func TestCatalog_ListNodes_ACLFilter(t *testing.T) { + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLMasterToken = "root" + c.ACLDefaultPolicy = "deny" + c.ACLEnforceVersion8 = false + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + + // We scope the reply in each of these since msgpack won't clear out an + // existing slice if the incoming one is nil, so it's best to start + // clean each time. + + // Prior to version 8, the node policy should be ignored. + args := structs.DCSpecificRequest{ + Datacenter: "dc1", + } + { + reply := structs.IndexedNodes{} + if err := msgpackrpc.CallWithCodec(codec, "Catalog.ListNodes", &args, &reply); err != nil { + t.Fatalf("err: %v", err) + } + if len(reply.Nodes) != 1 { + t.Fatalf("bad: %v", reply.Nodes) + } + } + + // Now turn on version 8 enforcement and try again. + s1.config.ACLEnforceVersion8 = true + { + reply := structs.IndexedNodes{} + if err := msgpackrpc.CallWithCodec(codec, "Catalog.ListNodes", &args, &reply); err != nil { + t.Fatalf("err: %v", err) + } + if len(reply.Nodes) != 0 { + t.Fatalf("bad: %v", reply.Nodes) + } + } + + // Create an ACL that can read the node. + arg := structs.ACLRequest{ + Datacenter: "dc1", + Op: structs.ACLSet, + ACL: structs.ACL{ + Name: "User token", + Type: structs.ACLTypeClient, + Rules: fmt.Sprintf(` +node "%s" { + policy = "read" +} +`, s1.config.NodeName), + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + var id string + if err := msgpackrpc.CallWithCodec(codec, "ACL.Apply", &arg, &id); err != nil { + t.Fatalf("err: %v", err) + } + + // Now try with the token and it will go through. + args.Token = id + { + reply := structs.IndexedNodes{} + if err := msgpackrpc.CallWithCodec(codec, "Catalog.ListNodes", &args, &reply); err != nil { + t.Fatalf("err: %v", err) + } + if len(reply.Nodes) != 1 { + t.Fatalf("bad: %v", reply.Nodes) + } + } +} + +func Benchmark_Catalog_ListNodes(t *testing.B) { dir1, s1 := testServer(nil) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -609,7 +1038,7 @@ func BenchmarkCatalogListNodes(t *testing.B) { } } -func TestCatalogListServices(t *testing.T) { +func TestCatalog_ListServices(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -659,7 +1088,70 @@ func TestCatalogListServices(t *testing.T) { } } -func TestCatalogListServices_Blocking(t *testing.T) { +func TestCatalog_ListServices_NodeMetaFilter(t *testing.T) { + dir1, s1 := testServer(t) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + + // Add a new node with the right meta k/v pair + node := &structs.Node{Node: "foo", Address: "127.0.0.1", Meta: map[string]string{"somekey": "somevalue"}} + if err := s1.fsm.State().EnsureNode(1, node); err != nil { + t.Fatalf("err: %v", err) + } + // Add a service to the new node + if err := s1.fsm.State().EnsureService(2, "foo", &structs.NodeService{ID: "db", Service: "db", Tags: []string{"primary"}, Address: "127.0.0.1", Port: 5000}); err != nil { + t.Fatalf("err: %v", err) + } + + // Filter by a specific meta k/v pair + args := structs.DCSpecificRequest{ + Datacenter: "dc1", + NodeMetaFilters: map[string]string{ + "somekey": "somevalue", + }, + } + var out structs.IndexedServices + if err := msgpackrpc.CallWithCodec(codec, "Catalog.ListServices", &args, &out); err != nil { + t.Fatalf("err: %v", err) + } + + if len(out.Services) != 1 { + t.Fatalf("bad: %v", out) + } + if out.Services["db"] == nil { + t.Fatalf("bad: %v", out.Services["db"]) + } + if len(out.Services["db"]) != 1 { + t.Fatalf("bad: %v", out) + } + if out.Services["db"][0] != "primary" { + t.Fatalf("bad: %v", out) + } + + // Now filter on a nonexistent meta k/v pair + args = structs.DCSpecificRequest{ + Datacenter: "dc1", + NodeMetaFilters: map[string]string{ + "somekey": "invalid", + }, + } + out = structs.IndexedServices{} + err := msgpackrpc.CallWithCodec(codec, "Catalog.ListServices", &args, &out) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Should get an empty list of nodes back + if len(out.Services) != 0 { + t.Fatalf("bad: %v", out.Services) + } +} + +func TestCatalog_ListServices_Blocking(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -717,7 +1209,7 @@ func TestCatalogListServices_Blocking(t *testing.T) { } } -func TestCatalogListServices_Timeout(t *testing.T) { +func TestCatalog_ListServices_Timeout(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -758,7 +1250,7 @@ func TestCatalogListServices_Timeout(t *testing.T) { } } -func TestCatalogListServices_Stale(t *testing.T) { +func TestCatalog_ListServices_Stale(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -795,7 +1287,7 @@ func TestCatalogListServices_Stale(t *testing.T) { } } -func TestCatalogListServiceNodes(t *testing.T) { +func TestCatalog_ListServiceNodes(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -844,7 +1336,107 @@ func TestCatalogListServiceNodes(t *testing.T) { } } -func TestCatalogListServiceNodes_DistanceSort(t *testing.T) { +func TestCatalog_ListServiceNodes_NodeMetaFilter(t *testing.T) { + dir1, s1 := testServer(t) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + + // Add 2 nodes with specific meta maps + node := &structs.Node{Node: "foo", Address: "127.0.0.1", Meta: map[string]string{"somekey": "somevalue", "common": "1"}} + if err := s1.fsm.State().EnsureNode(1, node); err != nil { + t.Fatalf("err: %v", err) + } + node2 := &structs.Node{Node: "bar", Address: "127.0.0.2", Meta: map[string]string{"common": "1"}} + if err := s1.fsm.State().EnsureNode(2, node2); err != nil { + t.Fatalf("err: %v", err) + } + if err := s1.fsm.State().EnsureService(3, "foo", &structs.NodeService{ID: "db", Service: "db", Tags: []string{"primary"}, Address: "127.0.0.1", Port: 5000}); err != nil { + t.Fatalf("err: %v", err) + } + if err := s1.fsm.State().EnsureService(4, "bar", &structs.NodeService{ID: "db2", Service: "db", Tags: []string{"secondary"}, Address: "127.0.0.2", Port: 5000}); err != nil { + t.Fatalf("err: %v", err) + } + + cases := []struct { + filters map[string]string + tag string + services structs.ServiceNodes + }{ + // Basic meta filter + { + filters: map[string]string{"somekey": "somevalue"}, + services: structs.ServiceNodes{&structs.ServiceNode{Node: "foo", ServiceID: "db"}}, + }, + // Basic meta filter, tag + { + filters: map[string]string{"somekey": "somevalue"}, + tag: "primary", + services: structs.ServiceNodes{&structs.ServiceNode{Node: "foo", ServiceID: "db"}}, + }, + // Common meta filter + { + filters: map[string]string{"common": "1"}, + services: structs.ServiceNodes{ + &structs.ServiceNode{Node: "bar", ServiceID: "db2"}, + &structs.ServiceNode{Node: "foo", ServiceID: "db"}, + }, + }, + // Common meta filter, tag + { + filters: map[string]string{"common": "1"}, + tag: "secondary", + services: structs.ServiceNodes{ + &structs.ServiceNode{Node: "bar", ServiceID: "db2"}, + }, + }, + // Invalid meta filter + { + filters: map[string]string{"invalid": "nope"}, + services: structs.ServiceNodes{}, + }, + // Multiple filter values + { + filters: map[string]string{"somekey": "somevalue", "common": "1"}, + services: structs.ServiceNodes{&structs.ServiceNode{Node: "foo", ServiceID: "db"}}, + }, + // Multiple filter values, tag + { + filters: map[string]string{"somekey": "somevalue", "common": "1"}, + tag: "primary", + services: structs.ServiceNodes{&structs.ServiceNode{Node: "foo", ServiceID: "db"}}, + }, + } + + for _, tc := range cases { + args := structs.ServiceSpecificRequest{ + Datacenter: "dc1", + NodeMetaFilters: tc.filters, + ServiceName: "db", + ServiceTag: tc.tag, + TagFilter: tc.tag != "", + } + var out structs.IndexedServiceNodes + if err := msgpackrpc.CallWithCodec(codec, "Catalog.ServiceNodes", &args, &out); err != nil { + t.Fatalf("err: %v", err) + } + + if len(out.ServiceNodes) != len(tc.services) { + t.Fatalf("bad: %v", out) + } + + for i, serviceNode := range out.ServiceNodes { + if serviceNode.Node != tc.services[i].Node || serviceNode.ServiceID != tc.services[i].ServiceID { + t.Fatalf("bad: %v, %v filters: %v", serviceNode, tc.services[i], tc.filters) + } + } + } +} + +func TestCatalog_ListServiceNodes_DistanceSort(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -931,7 +1523,7 @@ func TestCatalogListServiceNodes_DistanceSort(t *testing.T) { } } -func TestCatalogNodeServices(t *testing.T) { +func TestCatalog_NodeServices(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -981,7 +1573,7 @@ func TestCatalogNodeServices(t *testing.T) { } // Used to check for a regression against a known bug -func TestCatalogRegister_FailedCase1(t *testing.T) { +func TestCatalog_Register_FailedCase1(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -1032,6 +1624,7 @@ func testACLFilterServer(t *testing.T) (dir, token string, srv *Server, codec rp c.ACLDatacenter = "dc1" c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" + c.ACLEnforceVersion8 = false }) codec = rpcClient(t, srv) @@ -1042,9 +1635,13 @@ func testACLFilterServer(t *testing.T) (dir, token string, srv *Server, codec rp Datacenter: "dc1", Op: structs.ACLSet, ACL: structs.ACL{ - Name: "User token", - Type: structs.ACLTypeClient, - Rules: testRegisterRules, + Name: "User token", + Type: structs.ACLTypeClient, + Rules: ` +service "foo" { + policy = "write" +} +`, }, WriteRequest: structs.WriteRequest{Token: "root"}, } @@ -1158,6 +1755,87 @@ func TestCatalog_ServiceNodes_FilterACL(t *testing.T) { t.Fatalf("bad: %#v", reply.ServiceNodes) } } + + // We've already proven that we call the ACL filtering function so we + // test node filtering down in acl.go for node cases. This also proves + // that we respect the version 8 ACL flag, since the test server sets + // that to false (the regression value of *not* changing this is better + // for now until we change the sense of the version 8 ACL flag). +} + +func TestCatalog_NodeServices_ACLDeny(t *testing.T) { + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLMasterToken = "root" + c.ACLDefaultPolicy = "deny" + c.ACLEnforceVersion8 = false + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + + // Prior to version 8, the node policy should be ignored. + args := structs.NodeSpecificRequest{ + Datacenter: "dc1", + Node: s1.config.NodeName, + } + reply := structs.IndexedNodeServices{} + if err := msgpackrpc.CallWithCodec(codec, "Catalog.NodeServices", &args, &reply); err != nil { + t.Fatalf("err: %v", err) + } + if reply.NodeServices == nil { + t.Fatalf("should not be nil") + } + + // Now turn on version 8 enforcement and try again. + s1.config.ACLEnforceVersion8 = true + if err := msgpackrpc.CallWithCodec(codec, "Catalog.NodeServices", &args, &reply); err != nil { + t.Fatalf("err: %v", err) + } + if reply.NodeServices != nil { + t.Fatalf("should not nil") + } + + // Create an ACL that can read the node. + arg := structs.ACLRequest{ + Datacenter: "dc1", + Op: structs.ACLSet, + ACL: structs.ACL{ + Name: "User token", + Type: structs.ACLTypeClient, + Rules: fmt.Sprintf(` +node "%s" { + policy = "read" +} +`, s1.config.NodeName), + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + var id string + if err := msgpackrpc.CallWithCodec(codec, "ACL.Apply", &arg, &id); err != nil { + t.Fatalf("err: %v", err) + } + + // Now try with the token and it will go through. + args.Token = id + if err := msgpackrpc.CallWithCodec(codec, "Catalog.NodeServices", &args, &reply); err != nil { + t.Fatalf("err: %v", err) + } + if reply.NodeServices == nil { + t.Fatalf("should not be nil") + } + + // Make sure an unknown node doesn't cause trouble. + args.Node = "nope" + if err := msgpackrpc.CallWithCodec(codec, "Catalog.NodeServices", &args, &reply); err != nil { + t.Fatalf("err: %v", err) + } + if reply.NodeServices != nil { + t.Fatalf("should not nil") + } } func TestCatalog_NodeServices_FilterACL(t *testing.T) { @@ -1189,9 +1867,3 @@ func TestCatalog_NodeServices_FilterACL(t *testing.T) { t.Fatalf("bad: %#v", reply.NodeServices) } } - -var testRegisterRules = ` -service "foo" { - policy = "write" -} -` diff --git a/consul/client.go b/consul/client.go index bd5132c663..6ef697e7c3 100644 --- a/consul/client.go +++ b/consul/client.go @@ -2,6 +2,7 @@ package consul import ( "fmt" + "io" "log" "os" "path/filepath" @@ -13,6 +14,7 @@ import ( "github.com/hashicorp/consul/consul/agent" "github.com/hashicorp/consul/consul/servers" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/consul/lib" "github.com/hashicorp/serf/coordinate" "github.com/hashicorp/serf/serf" ) @@ -143,6 +145,7 @@ func (c *Client) setupSerf(conf *serf.Config, ch chan serf.Event, path string) ( conf.NodeName = c.config.NodeName conf.Tags["role"] = "node" conf.Tags["dc"] = c.config.Datacenter + conf.Tags["id"] = string(c.config.NodeID) conf.Tags["vsn"] = fmt.Sprintf("%d", c.config.ProtocolVersion) conf.Tags["vsn_min"] = fmt.Sprintf("%d", ProtocolVersionMin) conf.Tags["vsn_max"] = fmt.Sprintf("%d", ProtocolVersionMax) @@ -155,7 +158,7 @@ func (c *Client) setupSerf(conf *serf.Config, ch chan serf.Event, path string) ( conf.RejoinAfterLeave = c.config.RejoinAfterLeave conf.Merge = &lanMergeDelegate{dc: c.config.Datacenter} conf.DisableCoordinates = c.config.DisableCoordinates - if err := ensurePath(conf.SnapshotPath, false); err != nil { + if err := lib.EnsurePath(conf.SnapshotPath, false); err != nil { return nil, err } return serf.Create(conf) @@ -337,6 +340,51 @@ func (c *Client) RPC(method string, args interface{}, reply interface{}) error { return nil } +// SnapshotReplyFn gets a peek at the reply before the snapshot streams, which +// is useful for setting headers. +type SnapshotReplyFn func(reply *structs.SnapshotResponse) error + +// SnapshotRPC sends the snapshot request to one of the servers, reading from +// the streaming input and writing to the streaming output depending on the +// operation. +func (c *Client) SnapshotRPC(args *structs.SnapshotRequest, in io.Reader, out io.Writer, + replyFn SnapshotReplyFn) error { + + // Locate a server to make the request to. + server := c.servers.FindServer() + if server == nil { + return structs.ErrNoServers + } + + // Request the operation. + var reply structs.SnapshotResponse + snap, err := SnapshotRPC(c.connPool, c.config.Datacenter, server.Addr, args, in, &reply) + if err != nil { + return err + } + defer func() { + if err := snap.Close(); err != nil { + c.logger.Printf("[WARN] consul: Failed closing snapshot stream: %v", err) + } + }() + + // Let the caller peek at the reply. + if replyFn != nil { + if err := replyFn(&reply); err != nil { + return nil + } + } + + // Stream the snapshot. + if out != nil { + if _, err := io.Copy(out, snap); err != nil { + return fmt.Errorf("failed to stream snapshot: %v", err) + } + } + + return nil +} + // Stats is used to return statistics for debugging and insight // for various sub-systems func (c *Client) Stats() map[string]map[string]string { diff --git a/consul/client_test.go b/consul/client_test.go index b4d932b38b..8ea419de5b 100644 --- a/consul/client_test.go +++ b/consul/client_test.go @@ -1,6 +1,7 @@ package consul import ( + "bytes" "fmt" "net" "os" @@ -211,9 +212,14 @@ func TestClient_RPC_Pool(t *testing.T) { if _, err := c1.JoinLAN([]string{addr}); err != nil { t.Fatalf("err: %v", err) } - if len(s1.LANMembers()) != 2 || len(c1.LANMembers()) != 2 { - t.Fatalf("Server has %v of %v expected members; Client has %v of %v expected members.", len(s1.LANMembers()), 2, len(c1.LANMembers()), 2) - } + + // Wait for both agents to finish joining + testutil.WaitForResult(func() (bool, error) { + return len(s1.LANMembers()) == 2 && len(c1.LANMembers()) == 2, nil + }, func(err error) { + t.Fatalf("Server has %v of %v expected members; Client has %v of %v expected members.", + len(s1.LANMembers()), 2, len(c1.LANMembers()), 2) + }) // Blast out a bunch of RPC requests at the same time to try to get // contention opening new connections. @@ -338,17 +344,16 @@ func TestClient_RPC_TLS(t *testing.T) { t.Fatalf("err: %v", err) } - // Check the members - if len(s1.LANMembers()) != 2 { - t.Fatalf("bad len") - } - - if len(c1.LANMembers()) != 2 { - t.Fatalf("bad len") - } - - // RPC should succeed + // Wait for joins to finish/RPC to succeed testutil.WaitForResult(func() (bool, error) { + if len(s1.LANMembers()) != 2 { + return false, fmt.Errorf("bad len: %v", len(s1.LANMembers())) + } + + if len(c1.LANMembers()) != 2 { + return false, fmt.Errorf("bad len: %v", len(c1.LANMembers())) + } + err := c1.RPC("Status.Ping", struct{}{}, &out) return err == nil, err }, func(err error) { @@ -356,6 +361,111 @@ func TestClient_RPC_TLS(t *testing.T) { }) } +func TestClient_SnapshotRPC(t *testing.T) { + dir1, s1 := testServer(t) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + + dir2, c1 := testClient(t) + defer os.RemoveAll(dir2) + defer c1.Shutdown() + + // Wait for the leader + testutil.WaitForLeader(t, s1.RPC, "dc1") + + // Try to join. + addr := fmt.Sprintf("127.0.0.1:%d", + s1.config.SerfLANConfig.MemberlistConfig.BindPort) + if _, err := c1.JoinLAN([]string{addr}); err != nil { + t.Fatalf("err: %v", err) + } + if len(s1.LANMembers()) != 2 || len(c1.LANMembers()) != 2 { + t.Fatalf("Server has %v of %v expected members; Client has %v of %v expected members.", len(s1.LANMembers()), 2, len(c1.LANMembers()), 2) + } + + // Wait until we've got a healthy server. + testutil.WaitForResult(func() (bool, error) { + return c1.servers.NumServers() == 1, nil + }, func(err error) { + t.Fatalf("expected consul server") + }) + + // Take a snapshot. + var snap bytes.Buffer + args := structs.SnapshotRequest{ + Datacenter: "dc1", + Op: structs.SnapshotSave, + } + if err := c1.SnapshotRPC(&args, bytes.NewReader([]byte("")), &snap, nil); err != nil { + t.Fatalf("err: %v", err) + } + + // Restore a snapshot. + args.Op = structs.SnapshotRestore + if err := c1.SnapshotRPC(&args, &snap, nil, nil); err != nil { + t.Fatalf("err: %v", err) + } +} + +func TestClient_SnapshotRPC_TLS(t *testing.T) { + dir1, conf1 := testServerConfig(t, "a.testco.internal") + conf1.VerifyIncoming = true + conf1.VerifyOutgoing = true + configureTLS(conf1) + s1, err := NewServer(conf1) + if err != nil { + t.Fatalf("err: %v", err) + } + defer os.RemoveAll(dir1) + defer s1.Shutdown() + + dir2, conf2 := testClientConfig(t, "b.testco.internal") + conf2.VerifyOutgoing = true + configureTLS(conf2) + c1, err := NewClient(conf2) + if err != nil { + t.Fatalf("err: %v", err) + } + defer os.RemoveAll(dir2) + defer c1.Shutdown() + + // Wait for the leader + testutil.WaitForLeader(t, s1.RPC, "dc1") + + // Try to join. + addr := fmt.Sprintf("127.0.0.1:%d", + s1.config.SerfLANConfig.MemberlistConfig.BindPort) + if _, err := c1.JoinLAN([]string{addr}); err != nil { + t.Fatalf("err: %v", err) + } + if len(s1.LANMembers()) != 2 || len(c1.LANMembers()) != 2 { + t.Fatalf("Server has %v of %v expected members; Client has %v of %v expected members.", len(s1.LANMembers()), 2, len(c1.LANMembers()), 2) + } + + // Wait until we've got a healthy server. + testutil.WaitForResult(func() (bool, error) { + return c1.servers.NumServers() == 1, nil + }, func(err error) { + t.Fatalf("expected consul server") + }) + + // Take a snapshot. + var snap bytes.Buffer + args := structs.SnapshotRequest{ + Datacenter: "dc1", + Op: structs.SnapshotSave, + } + if err := c1.SnapshotRPC(&args, bytes.NewReader([]byte("")), &snap, nil); err != nil { + t.Fatalf("err: %v", err) + } + + // Restore a snapshot. + args.Op = structs.SnapshotRestore + if err := c1.SnapshotRPC(&args, &snap, nil, nil); err != nil { + t.Fatalf("err: %v", err) + } +} + func TestClientServer_UserEvent(t *testing.T) { clientOut := make(chan serf.UserEvent, 2) dir1, c1 := testClientWithConfig(t, func(conf *Config) { diff --git a/consul/config.go b/consul/config.go index 0e094f305b..a11f73f454 100644 --- a/consul/config.go +++ b/consul/config.go @@ -8,6 +8,7 @@ import ( "time" "github.com/hashicorp/consul/tlsutil" + "github.com/hashicorp/consul/types" "github.com/hashicorp/memberlist" "github.com/hashicorp/raft" "github.com/hashicorp/serf/serf" @@ -66,6 +67,9 @@ type Config struct { // DevMode is used to enable a development server mode. DevMode bool + // NodeID is a unique identifier for this node across space and time. + NodeID types.NodeID + // Node name is the name we use to advertise. Defaults to hostname. NodeName string @@ -140,6 +144,9 @@ type Config struct { // provide matches the certificate ServerName string + // TLSMinVersion is used to set the minimum TLS version used for TLS connections. + TLSMinVersion string + // RejoinAfterLeave controls our interaction with Serf. // When set to false (default), a leave causes a Consul to not rejoin // the cluster until an explicit join is received. If this is set to @@ -155,6 +162,11 @@ type Config struct { // backwards compatibility as well. ACLToken string + // ACLAgentToken is the default token used to make requests for the agent + // itself, such as for registering itself with the catalog. If not + // configured, the ACLToken will be used. + ACLAgentToken string + // ACLMasterToken is used to bootstrap the ACL system. It should be specified // on the servers in the ACLDatacenter. When the leader comes online, it ensures // that the Master token is available. This provides the initial token. @@ -200,6 +212,10 @@ type Config struct { // used to limit the amount of Raft bandwidth used for replication. ACLReplicationApplyLimit int + // ACLEnforceVersion8 is used to gate a set of ACL policy features that + // are opt-in prior to Consul 0.8 and opt-out in Consul 0.8 and later. + ACLEnforceVersion8 bool + // TombstoneTTL is used to control how long KV tombstones are retained. // This provides a window of time where the X-Consul-Index is monotonic. // Outside this window, the index may not be monotonic. This is a result @@ -328,6 +344,8 @@ func DefaultConfig() *Config { // bit longer to try to cover that period. This should be more // than enough when running in the high performance mode. RPCHoldTimeout: 7 * time.Second, + + TLSMinVersion: "tls10", } // Increase our reap interval to 3 days instead of 24h. @@ -350,6 +368,9 @@ func DefaultConfig() *Config { // Disable shutdown on removal conf.RaftConfig.ShutdownOnRemove = false + // Check every 5 seconds to see if there are enough new entries for a snapshot + conf.RaftConfig.SnapshotInterval = 5 * time.Second + return conf } @@ -366,6 +387,7 @@ func (c *Config) ScaleRaft(raftMultRaw uint) { c.RaftConfig.LeaderLeaseTimeout = raftMult * def.LeaderLeaseTimeout } +// tlsConfig maps this config into a tlsutil config. func (c *Config) tlsConfig() *tlsutil.Config { tlsConf := &tlsutil.Config{ VerifyIncoming: c.VerifyIncoming, @@ -377,6 +399,19 @@ func (c *Config) tlsConfig() *tlsutil.Config { NodeName: c.NodeName, ServerName: c.ServerName, Domain: c.Domain, + TLSMinVersion: c.TLSMinVersion, } return tlsConf } + +// GetTokenForAgent returns the token the agent should use for its own internal +// operations, such as registering itself with the catalog. +func (c *Config) GetTokenForAgent() string { + if c.ACLAgentToken != "" { + return c.ACLAgentToken + } else if c.ACLToken != "" { + return c.ACLToken + } else { + return "" + } +} diff --git a/consul/config_test.go b/consul/config_test.go new file mode 100644 index 0000000000..e0d1cb93a8 --- /dev/null +++ b/consul/config_test.go @@ -0,0 +1,20 @@ +package consul + +import ( + "testing" +) + +func TestConfig_GetTokenForAgent(t *testing.T) { + config := DefaultConfig() + if token := config.GetTokenForAgent(); token != "" { + t.Fatalf("bad: %s", token) + } + config.ACLToken = "hello" + if token := config.GetTokenForAgent(); token != "hello" { + t.Fatalf("bad: %s", token) + } + config.ACLAgentToken = "world" + if token := config.GetTokenForAgent(); token != "world" { + t.Fatalf("bad: %s", token) + } +} diff --git a/consul/coordinate_endpoint.go b/consul/coordinate_endpoint.go index 9e0df58212..b818f904cd 100644 --- a/consul/coordinate_endpoint.go +++ b/consul/coordinate_endpoint.go @@ -7,7 +7,9 @@ import ( "sync" "time" + "github.com/hashicorp/consul/consul/state" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/go-memdb" "github.com/hashicorp/serf/coordinate" ) @@ -119,6 +121,17 @@ func (c *Coordinate) Update(args *structs.CoordinateUpdateRequest, reply *struct return fmt.Errorf("rejected bad coordinate: %v", args.Coord) } + // Fetch the ACL token, if any, and enforce the node policy if enabled. + acl, err := c.srv.resolveToken(args.Token) + if err != nil { + return err + } + if acl != nil && c.srv.config.ACLEnforceVersion8 { + if !acl.NodeWrite(args.Node) { + return permissionDeniedErr + } + } + // Add the coordinate to the map of pending updates. c.updatesLock.Lock() c.updates[args.Node] = args.Coord @@ -162,17 +175,18 @@ func (c *Coordinate) ListNodes(args *structs.DCSpecificRequest, reply *structs.I return err } - state := c.srv.fsm.State() - return c.srv.blockingRPC(&args.QueryOptions, + return c.srv.blockingQuery(&args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("Coordinates"), - func() error { - index, coords, err := state.Coordinates() + func(ws memdb.WatchSet, state *state.StateStore) error { + index, coords, err := state.Coordinates(ws) if err != nil { return err } reply.Index, reply.Coordinates = index, coords + if err := c.srv.filterACL(args.Token, reply); err != nil { + return err + } return nil }) } diff --git a/consul/coordinate_endpoint_test.go b/consul/coordinate_endpoint_test.go index 88171a7c8f..42e41c0dcb 100644 --- a/consul/coordinate_endpoint_test.go +++ b/consul/coordinate_endpoint_test.go @@ -187,6 +187,87 @@ func TestCoordinate_Update(t *testing.T) { } } +func TestCoordinate_Update_ACLDeny(t *testing.T) { + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLMasterToken = "root" + c.ACLDefaultPolicy = "deny" + c.ACLEnforceVersion8 = false + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + + // Register some nodes. + nodes := []string{"node1", "node2"} + for _, node := range nodes { + req := structs.RegisterRequest{ + Datacenter: "dc1", + Node: node, + Address: "127.0.0.1", + } + var reply struct{} + if err := msgpackrpc.CallWithCodec(codec, "Catalog.Register", &req, &reply); err != nil { + t.Fatalf("err: %v", err) + } + } + + // Send an update for the first node. This should go through since we + // don't have version 8 ACLs enforced yet. + req := structs.CoordinateUpdateRequest{ + Datacenter: "dc1", + Node: "node1", + Coord: generateRandomCoordinate(), + } + var out struct{} + if err := msgpackrpc.CallWithCodec(codec, "Coordinate.Update", &req, &out); err != nil { + t.Fatalf("err: %v", err) + } + + // Now turn on version 8 enforcement and try again. + s1.config.ACLEnforceVersion8 = true + err := msgpackrpc.CallWithCodec(codec, "Coordinate.Update", &req, &out) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Create an ACL that can write to the node. + arg := structs.ACLRequest{ + Datacenter: "dc1", + Op: structs.ACLSet, + ACL: structs.ACL{ + Name: "User token", + Type: structs.ACLTypeClient, + Rules: ` +node "node1" { + policy = "write" +} +`, + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + var id string + if err := msgpackrpc.CallWithCodec(codec, "ACL.Apply", &arg, &id); err != nil { + t.Fatalf("err: %v", err) + } + + // With the token, it should now go through. + req.Token = id + if err := msgpackrpc.CallWithCodec(codec, "Coordinate.Update", &req, &out); err != nil { + t.Fatalf("err: %v", err) + } + + // But it should be blocked for the other node. + req.Node = "node2" + err = msgpackrpc.CallWithCodec(codec, "Coordinate.Update", &req, &out) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } +} + func TestCoordinate_ListDatacenters(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) @@ -240,8 +321,7 @@ func TestCoordinate_ListNodes(t *testing.T) { } } - // Send coordinate updates for a few nodes, waiting a little while for - // the batch update to run. + // Send coordinate updates for a few nodes. arg1 := structs.CoordinateUpdateRequest{ Datacenter: "dc1", Node: "foo", @@ -269,9 +349,120 @@ func TestCoordinate_ListNodes(t *testing.T) { if err := msgpackrpc.CallWithCodec(codec, "Coordinate.Update", &arg3, &out); err != nil { t.Fatalf("err: %v", err) } - time.Sleep(3 * s1.config.CoordinateUpdatePeriod) // Now query back for all the nodes. + testutil.WaitForResult(func() (bool, error) { + arg := structs.DCSpecificRequest{ + Datacenter: "dc1", + } + resp := structs.IndexedCoordinates{} + if err := msgpackrpc.CallWithCodec(codec, "Coordinate.ListNodes", &arg, &resp); err != nil { + t.Fatalf("err: %v", err) + } + if len(resp.Coordinates) != 3 || + resp.Coordinates[0].Node != "bar" || + resp.Coordinates[1].Node != "baz" || + resp.Coordinates[2].Node != "foo" { + return false, fmt.Errorf("bad: %v", resp.Coordinates) + } + verifyCoordinatesEqual(t, resp.Coordinates[0].Coord, arg2.Coord) // bar + verifyCoordinatesEqual(t, resp.Coordinates[1].Coord, arg3.Coord) // baz + verifyCoordinatesEqual(t, resp.Coordinates[2].Coord, arg1.Coord) // foo + return true, nil + }, func(err error) { t.Fatalf("err: %v", err) }) +} + +func TestCoordinate_ListNodes_ACLFilter(t *testing.T) { + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLMasterToken = "root" + c.ACLDefaultPolicy = "deny" + c.ACLEnforceVersion8 = false + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + + // Register some nodes. + nodes := []string{"foo", "bar", "baz"} + for _, node := range nodes { + req := structs.RegisterRequest{ + Datacenter: "dc1", + Node: node, + Address: "127.0.0.1", + WriteRequest: structs.WriteRequest{ + Token: "root", + }, + } + var reply struct{} + if err := msgpackrpc.CallWithCodec(codec, "Catalog.Register", &req, &reply); err != nil { + t.Fatalf("err: %v", err) + } + } + + // Send coordinate updates for a few nodes. + arg1 := structs.CoordinateUpdateRequest{ + Datacenter: "dc1", + Node: "foo", + Coord: generateRandomCoordinate(), + WriteRequest: structs.WriteRequest{ + Token: "root", + }, + } + var out struct{} + if err := msgpackrpc.CallWithCodec(codec, "Coordinate.Update", &arg1, &out); err != nil { + t.Fatalf("err: %v", err) + } + + arg2 := structs.CoordinateUpdateRequest{ + Datacenter: "dc1", + Node: "bar", + Coord: generateRandomCoordinate(), + WriteRequest: structs.WriteRequest{ + Token: "root", + }, + } + if err := msgpackrpc.CallWithCodec(codec, "Coordinate.Update", &arg2, &out); err != nil { + t.Fatalf("err: %v", err) + } + + arg3 := structs.CoordinateUpdateRequest{ + Datacenter: "dc1", + Node: "baz", + Coord: generateRandomCoordinate(), + WriteRequest: structs.WriteRequest{ + Token: "root", + }, + } + if err := msgpackrpc.CallWithCodec(codec, "Coordinate.Update", &arg3, &out); err != nil { + t.Fatalf("err: %v", err) + } + + // Wait for all the coordinate updates to apply. Since we aren't + // enforcing version 8 ACLs, this should also allow us to read + // everything back without a token. + testutil.WaitForResult(func() (bool, error) { + arg := structs.DCSpecificRequest{ + Datacenter: "dc1", + } + resp := structs.IndexedCoordinates{} + if err := msgpackrpc.CallWithCodec(codec, "Coordinate.ListNodes", &arg, &resp); err != nil { + t.Fatalf("err: %v", err) + } + if len(resp.Coordinates) == 3 { + return true, nil + } + return false, fmt.Errorf("bad: %v", resp.Coordinates) + }, func(err error) { t.Fatalf("err: %v", err) }) + + // Now that we've waited for the batch processing to ingest the + // coordinates we can do the rest of the requests without the loop. We + // will start by turning on version 8 ACL support which should block + // everything. + s1.config.ACLEnforceVersion8 = true arg := structs.DCSpecificRequest{ Datacenter: "dc1", } @@ -279,13 +470,38 @@ func TestCoordinate_ListNodes(t *testing.T) { if err := msgpackrpc.CallWithCodec(codec, "Coordinate.ListNodes", &arg, &resp); err != nil { t.Fatalf("err: %v", err) } - if len(resp.Coordinates) != 3 || - resp.Coordinates[0].Node != "bar" || - resp.Coordinates[1].Node != "baz" || - resp.Coordinates[2].Node != "foo" { - t.Fatalf("bad: %v", resp.Coordinates) + if len(resp.Coordinates) != 0 { + t.Fatalf("bad: %#v", resp.Coordinates) + } + + // Create an ACL that can read one of the nodes. + var id string + { + req := structs.ACLRequest{ + Datacenter: "dc1", + Op: structs.ACLSet, + ACL: structs.ACL{ + Name: "User token", + Type: structs.ACLTypeClient, + Rules: ` +node "foo" { + policy = "read" +} +`, + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + if err := msgpackrpc.CallWithCodec(codec, "ACL.Apply", &req, &id); err != nil { + t.Fatalf("err: %v", err) + } + } + + // With the token, it should now go through. + arg.Token = id + if err := msgpackrpc.CallWithCodec(codec, "Coordinate.ListNodes", &arg, &resp); err != nil { + t.Fatalf("err: %v", err) + } + if len(resp.Coordinates) != 1 || resp.Coordinates[0].Node != "foo" { + t.Fatalf("bad: %#v", resp.Coordinates) } - verifyCoordinatesEqual(t, resp.Coordinates[0].Coord, arg2.Coord) // bar - verifyCoordinatesEqual(t, resp.Coordinates[1].Coord, arg3.Coord) // baz - verifyCoordinatesEqual(t, resp.Coordinates[2].Coord, arg1.Coord) // foo } diff --git a/consul/fsm.go b/consul/fsm.go index 6694b87f79..41fc87acdc 100644 --- a/consul/fsm.go +++ b/consul/fsm.go @@ -5,6 +5,7 @@ import ( "fmt" "io" "log" + "sync" "time" "github.com/armon/go-metrics" @@ -24,8 +25,15 @@ type consulFSM struct { logOutput io.Writer logger *log.Logger path string + + // stateLock is only used to protect outside callers to State() from + // racing with Restore(), which is called by Raft (it puts in a totally + // new state store). Everything internal here is synchronized by the + // Raft side, so doesn't need to lock this. + stateLock sync.RWMutex state *state.StateStore - gc *state.TombstoneGC + + gc *state.TombstoneGC } // consulSnapshot is used to provide a snapshot of the current @@ -60,6 +68,8 @@ func NewFSM(gc *state.TombstoneGC, logOutput io.Writer) (*consulFSM, error) { // State is used to return a handle to the current state func (c *consulFSM) State() *state.StateStore { + c.stateLock.RLock() + defer c.stateLock.RUnlock() return c.state } @@ -127,7 +137,9 @@ func (c *consulFSM) applyDeregister(buf []byte, index uint64) interface{} { panic(fmt.Errorf("failed to decode request: %v", err)) } - // Either remove the service entry or the whole node + // Either remove the service entry or the whole node. The precedence + // here is also baked into vetDeregisterWithACL() in acl.go, so if you + // make changes here, be sure to also adjust the code over there. if req.ServiceID != "" { if err := c.state.DeleteService(index, req.Node, req.ServiceID); err != nil { c.logger.Printf("[INFO] consul.fsm: DeleteNodeService failed: %v", err) @@ -306,18 +318,19 @@ func (c *consulFSM) Snapshot() (raft.FSMSnapshot, error) { return &consulSnapshot{c.state.Snapshot()}, nil } +// Restore streams in the snapshot and replaces the current state store with a +// new one based on the snapshot if all goes OK during the restore. func (c *consulFSM) Restore(old io.ReadCloser) error { defer old.Close() - // Create a new state store + // Create a new state store. stateNew, err := state.NewStateStore(c.gc) if err != nil { return err } - c.state = stateNew // Set up a new restore transaction - restore := c.state.Restore() + restore := stateNew.Restore() defer restore.Abort() // Create a decoder @@ -420,6 +433,18 @@ func (c *consulFSM) Restore(old io.ReadCloser) error { } restore.Commit() + + // External code might be calling State(), so we need to synchronize + // here to make sure we swap in the new state store atomically. + c.stateLock.Lock() + stateOld := c.state + c.state = stateNew + c.stateLock.Unlock() + + // Signal that the old state store has been abandoned. This is required + // because we don't operate on it any more, we just throw it away, so + // blocking queries won't see any changes and need to be woken up. + stateOld.Abandon() return nil } diff --git a/consul/fsm_test.go b/consul/fsm_test.go index 2f63fd89ac..fa0d3d1f8f 100644 --- a/consul/fsm_test.go +++ b/consul/fsm_test.go @@ -84,7 +84,7 @@ func TestFSM_RegisterNode(t *testing.T) { } // Verify service registered - _, services, err := fsm.state.NodeServices("foo") + _, services, err := fsm.state.NodeServices(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -137,7 +137,7 @@ func TestFSM_RegisterNode_Service(t *testing.T) { } // Verify service registered - _, services, err := fsm.state.NodeServices("foo") + _, services, err := fsm.state.NodeServices(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -146,7 +146,7 @@ func TestFSM_RegisterNode_Service(t *testing.T) { } // Verify check - _, checks, err := fsm.state.NodeChecks("foo") + _, checks, err := fsm.state.NodeChecks(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -207,7 +207,7 @@ func TestFSM_DeregisterService(t *testing.T) { } // Verify service not registered - _, services, err := fsm.state.NodeServices("foo") + _, services, err := fsm.state.NodeServices(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -268,7 +268,7 @@ func TestFSM_DeregisterCheck(t *testing.T) { } // Verify check not registered - _, checks, err := fsm.state.NodeChecks("foo") + _, checks, err := fsm.state.NodeChecks(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -335,7 +335,7 @@ func TestFSM_DeregisterNode(t *testing.T) { } // Verify service not registered - _, services, err := fsm.state.NodeServices("foo") + _, services, err := fsm.state.NodeServices(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -344,7 +344,7 @@ func TestFSM_DeregisterNode(t *testing.T) { } // Verify checks not registered - _, checks, err := fsm.state.NodeChecks("foo") + _, checks, err := fsm.state.NodeChecks(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -387,7 +387,7 @@ func TestFSM_SnapshotRestore(t *testing.T) { Value: []byte("foo"), }) fsm.state.KVSDelete(12, "/remove") - idx, _, err := fsm.state.KVSList("/remove") + idx, _, err := fsm.state.KVSList(nil, "/remove") if err != nil { t.Fatalf("err: %s", err) } @@ -449,7 +449,7 @@ func TestFSM_SnapshotRestore(t *testing.T) { } // Verify the contents - _, nodes, err := fsm2.state.Nodes() + _, nodes, err := fsm2.state.Nodes(nil) if err != nil { t.Fatalf("err: %s", err) } @@ -468,7 +468,7 @@ func TestFSM_SnapshotRestore(t *testing.T) { t.Fatalf("bad: %v", nodes[1]) } - _, fooSrv, err := fsm2.state.NodeServices("foo") + _, fooSrv, err := fsm2.state.NodeServices(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -482,7 +482,7 @@ func TestFSM_SnapshotRestore(t *testing.T) { t.Fatalf("Bad: %v", fooSrv) } - _, checks, err := fsm2.state.NodeChecks("foo") + _, checks, err := fsm2.state.NodeChecks(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -491,7 +491,7 @@ func TestFSM_SnapshotRestore(t *testing.T) { } // Verify key is set - _, d, err := fsm2.state.KVSGet("/test") + _, d, err := fsm2.state.KVSGet(nil, "/test") if err != nil { t.Fatalf("err: %v", err) } @@ -500,7 +500,7 @@ func TestFSM_SnapshotRestore(t *testing.T) { } // Verify session is restored - idx, s, err := fsm2.state.SessionGet(session.ID) + idx, s, err := fsm2.state.SessionGet(nil, session.ID) if err != nil { t.Fatalf("err: %v", err) } @@ -512,7 +512,7 @@ func TestFSM_SnapshotRestore(t *testing.T) { } // Verify ACL is restored - _, a, err := fsm2.state.ACLGet(acl.ID) + _, a, err := fsm2.state.ACLGet(nil, acl.ID) if err != nil { t.Fatalf("err: %v", err) } @@ -544,7 +544,7 @@ func TestFSM_SnapshotRestore(t *testing.T) { }() // Verify coordinates are restored - _, coords, err := fsm2.state.Coordinates() + _, coords, err := fsm2.state.Coordinates(nil) if err != nil { t.Fatalf("err: %s", err) } @@ -553,7 +553,7 @@ func TestFSM_SnapshotRestore(t *testing.T) { } // Verify queries are restored. - _, queries, err := fsm2.state.PreparedQueryList() + _, queries, err := fsm2.state.PreparedQueryList(nil) if err != nil { t.Fatalf("err: %s", err) } @@ -563,39 +563,70 @@ func TestFSM_SnapshotRestore(t *testing.T) { if !reflect.DeepEqual(queries[0], &query) { t.Fatalf("bad: %#v", queries[0]) } + + // Snapshot + snap, err = fsm2.Snapshot() + if err != nil { + t.Fatalf("err: %v", err) + } + defer snap.Release() + + // Persist + buf = bytes.NewBuffer(nil) + sink = &MockSink{buf, false} + if err := snap.Persist(sink); err != nil { + t.Fatalf("err: %v", err) + } + + // Try to restore on the old FSM and make sure it abandons the old state + // store. + abandonCh := fsm.state.AbandonCh() + if err := fsm.Restore(sink); err != nil { + t.Fatalf("err: %v", err) + } + select { + case <-abandonCh: + default: + t.Fatalf("bad") + } + } -func TestFSM_KVSSet(t *testing.T) { +func TestFSM_BadRestore(t *testing.T) { + // Create an FSM with some state. fsm, err := NewFSM(nil, os.Stderr) if err != nil { t.Fatalf("err: %v", err) } + fsm.state.EnsureNode(1, &structs.Node{Node: "foo", Address: "127.0.0.1"}) + abandonCh := fsm.state.AbandonCh() - req := structs.KVSRequest{ - Datacenter: "dc1", - Op: structs.KVSSet, - DirEnt: structs.DirEntry{ - Key: "/test/path", - Flags: 0, - Value: []byte("test"), - }, - } - buf, err := structs.Encode(structs.KVSRequestType, req) - if err != nil { + // Do a bad restore. + buf := bytes.NewBuffer([]byte("bad snapshot")) + sink := &MockSink{buf, false} + if err := fsm.Restore(sink); err == nil { t.Fatalf("err: %v", err) } - resp := fsm.Apply(makeLog(buf)) - if resp != nil { - t.Fatalf("resp: %v", resp) + + // Verify the contents didn't get corrupted. + _, nodes, err := fsm.state.Nodes(nil) + if err != nil { + t.Fatalf("err: %s", err) + } + if len(nodes) != 1 { + t.Fatalf("bad: %v", nodes) + } + if nodes[0].Node != "foo" || + nodes[0].Address != "127.0.0.1" || + len(nodes[0].TaggedAddresses) != 0 { + t.Fatalf("bad: %v", nodes[0]) } - // Verify key is set - _, d, err := fsm.state.KVSGet("/test/path") - if err != nil { - t.Fatalf("err: %v", err) - } - if d == nil { - t.Fatalf("missing") + // Verify the old state store didn't get abandoned. + select { + case <-abandonCh: + t.Fatalf("bad") + default: } } @@ -635,7 +666,7 @@ func TestFSM_KVSDelete(t *testing.T) { } // Verify key is not set - _, d, err := fsm.state.KVSGet("/test/path") + _, d, err := fsm.state.KVSGet(nil, "/test/path") if err != nil { t.Fatalf("err: %v", err) } @@ -681,7 +712,7 @@ func TestFSM_KVSDeleteTree(t *testing.T) { } // Verify key is not set - _, d, err := fsm.state.KVSGet("/test/path") + _, d, err := fsm.state.KVSGet(nil, "/test/path") if err != nil { t.Fatalf("err: %v", err) } @@ -715,7 +746,7 @@ func TestFSM_KVSDeleteCheckAndSet(t *testing.T) { } // Verify key is set - _, d, err := fsm.state.KVSGet("/test/path") + _, d, err := fsm.state.KVSGet(nil, "/test/path") if err != nil { t.Fatalf("err: %v", err) } @@ -736,7 +767,7 @@ func TestFSM_KVSDeleteCheckAndSet(t *testing.T) { } // Verify key is gone - _, d, err = fsm.state.KVSGet("/test/path") + _, d, err = fsm.state.KVSGet(nil, "/test/path") if err != nil { t.Fatalf("err: %v", err) } @@ -770,7 +801,7 @@ func TestFSM_KVSCheckAndSet(t *testing.T) { } // Verify key is set - _, d, err := fsm.state.KVSGet("/test/path") + _, d, err := fsm.state.KVSGet(nil, "/test/path") if err != nil { t.Fatalf("err: %v", err) } @@ -792,7 +823,7 @@ func TestFSM_KVSCheckAndSet(t *testing.T) { } // Verify key is updated - _, d, err = fsm.state.KVSGet("/test/path") + _, d, err = fsm.state.KVSGet(nil, "/test/path") if err != nil { t.Fatalf("err: %v", err) } @@ -832,7 +863,7 @@ func TestFSM_CoordinateUpdate(t *testing.T) { } // Read back the two coordinates to make sure they got updated. - _, coords, err := fsm.state.Coordinates() + _, coords, err := fsm.state.Coordinates(nil) if err != nil { t.Fatalf("err: %s", err) } @@ -875,7 +906,7 @@ func TestFSM_SessionCreate_Destroy(t *testing.T) { // Get the session id := resp.(string) - _, session, err := fsm.state.SessionGet(id) + _, session, err := fsm.state.SessionGet(nil, id) if err != nil { t.Fatalf("err: %v", err) } @@ -911,7 +942,7 @@ func TestFSM_SessionCreate_Destroy(t *testing.T) { t.Fatalf("resp: %v", resp) } - _, session, err = fsm.state.SessionGet(id) + _, session, err = fsm.state.SessionGet(nil, id) if err != nil { t.Fatalf("err: %v", err) } @@ -949,7 +980,7 @@ func TestFSM_KVSLock(t *testing.T) { } // Verify key is locked - _, d, err := fsm.state.KVSGet("/test/path") + _, d, err := fsm.state.KVSGet(nil, "/test/path") if err != nil { t.Fatalf("err: %v", err) } @@ -1011,7 +1042,7 @@ func TestFSM_KVSUnlock(t *testing.T) { } // Verify key is unlocked - _, d, err := fsm.state.KVSGet("/test/path") + _, d, err := fsm.state.KVSGet(nil, "/test/path") if err != nil { t.Fatalf("err: %v", err) } @@ -1053,7 +1084,7 @@ func TestFSM_ACL_Set_Delete(t *testing.T) { // Get the ACL id := resp.(string) - _, acl, err := fsm.state.ACLGet(id) + _, acl, err := fsm.state.ACLGet(nil, id) if err != nil { t.Fatalf("err: %v", err) } @@ -1089,7 +1120,7 @@ func TestFSM_ACL_Set_Delete(t *testing.T) { t.Fatalf("resp: %v", resp) } - _, acl, err = fsm.state.ACLGet(id) + _, acl, err = fsm.state.ACLGet(nil, id) if err != nil { t.Fatalf("err: %v", err) } @@ -1131,7 +1162,7 @@ func TestFSM_PreparedQuery_CRUD(t *testing.T) { // Verify it's in the state store. { - _, actual, err := fsm.state.PreparedQueryGet(query.Query.ID) + _, actual, err := fsm.state.PreparedQueryGet(nil, query.Query.ID) if err != nil { t.Fatalf("err: %s", err) } @@ -1158,7 +1189,7 @@ func TestFSM_PreparedQuery_CRUD(t *testing.T) { // Verify the update. { - _, actual, err := fsm.state.PreparedQueryGet(query.Query.ID) + _, actual, err := fsm.state.PreparedQueryGet(nil, query.Query.ID) if err != nil { t.Fatalf("err: %s", err) } @@ -1184,7 +1215,7 @@ func TestFSM_PreparedQuery_CRUD(t *testing.T) { // Make sure it's gone. { - _, actual, err := fsm.state.PreparedQueryGet(query.Query.ID) + _, actual, err := fsm.state.PreparedQueryGet(nil, query.Query.ID) if err != nil { t.Fatalf("err: %s", err) } @@ -1207,7 +1238,7 @@ func TestFSM_TombstoneReap(t *testing.T) { Value: []byte("foo"), }) fsm.state.KVSDelete(12, "/remove") - idx, _, err := fsm.state.KVSList("/remove") + idx, _, err := fsm.state.KVSList(nil, "/remove") if err != nil { t.Fatalf("err: %s", err) } @@ -1274,7 +1305,7 @@ func TestFSM_Txn(t *testing.T) { } // Verify key is set directly in the state store. - _, d, err := fsm.state.KVSGet("/test/path") + _, d, err := fsm.state.KVSGet(nil, "/test/path") if err != nil { t.Fatalf("err: %v", err) } diff --git a/consul/health_endpoint.go b/consul/health_endpoint.go index e5aa5fec24..aa225fb830 100644 --- a/consul/health_endpoint.go +++ b/consul/health_endpoint.go @@ -3,7 +3,9 @@ package consul import ( "fmt" "github.com/armon/go-metrics" + "github.com/hashicorp/consul/consul/state" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/go-memdb" ) // Health endpoint is used to query the health information @@ -18,14 +20,18 @@ func (h *Health) ChecksInState(args *structs.ChecksInStateRequest, return err } - // Get the state specific checks - state := h.srv.fsm.State() - return h.srv.blockingRPC( + return h.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("ChecksInState"), - func() error { - index, checks, err := state.ChecksInState(args.State) + func(ws memdb.WatchSet, state *state.StateStore) error { + var index uint64 + var checks structs.HealthChecks + var err error + if len(args.NodeMetaFilters) > 0 { + index, checks, err = state.ChecksInStateByNodeMeta(ws, args.State, args.NodeMetaFilters) + } else { + index, checks, err = state.ChecksInState(ws, args.State) + } if err != nil { return err } @@ -44,14 +50,11 @@ func (h *Health) NodeChecks(args *structs.NodeSpecificRequest, return err } - // Get the node checks - state := h.srv.fsm.State() - return h.srv.blockingRPC( + return h.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("NodeChecks"), - func() error { - index, checks, err := state.NodeChecks(args.Node) + func(ws memdb.WatchSet, state *state.StateStore) error { + index, checks, err := state.NodeChecks(ws, args.Node) if err != nil { return err } @@ -73,14 +76,18 @@ func (h *Health) ServiceChecks(args *structs.ServiceSpecificRequest, return err } - // Get the service checks - state := h.srv.fsm.State() - return h.srv.blockingRPC( + return h.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("ServiceChecks"), - func() error { - index, checks, err := state.ServiceChecks(args.ServiceName) + func(ws memdb.WatchSet, state *state.StateStore) error { + var index uint64 + var checks structs.HealthChecks + var err error + if len(args.NodeMetaFilters) > 0 { + index, checks, err = state.ServiceChecksByNodeMeta(ws, args.ServiceName, args.NodeMetaFilters) + } else { + index, checks, err = state.ServiceChecks(ws, args.ServiceName) + } if err != nil { return err } @@ -103,26 +110,26 @@ func (h *Health) ServiceNodes(args *structs.ServiceSpecificRequest, reply *struc return fmt.Errorf("Must provide service name") } - // Get the nodes - state := h.srv.fsm.State() - err := h.srv.blockingRPC( + err := h.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("CheckServiceNodes"), - func() error { + func(ws memdb.WatchSet, state *state.StateStore) error { var index uint64 var nodes structs.CheckServiceNodes var err error if args.TagFilter { - index, nodes, err = state.CheckServiceTagNodes(args.ServiceName, args.ServiceTag) + index, nodes, err = state.CheckServiceTagNodes(ws, args.ServiceName, args.ServiceTag) } else { - index, nodes, err = state.CheckServiceNodes(args.ServiceName) + index, nodes, err = state.CheckServiceNodes(ws, args.ServiceName) } if err != nil { return err } reply.Index, reply.Nodes = index, nodes + if len(args.NodeMetaFilters) > 0 { + reply.Nodes = nodeMetaFilter(args.NodeMetaFilters, reply.Nodes) + } if err := h.srv.filterACL(args.Token, reply); err != nil { return err } diff --git a/consul/health_endpoint_test.go b/consul/health_endpoint_test.go index 23a063de3a..f0290947af 100644 --- a/consul/health_endpoint_test.go +++ b/consul/health_endpoint_test.go @@ -57,6 +57,101 @@ func TestHealth_ChecksInState(t *testing.T) { } } +func TestHealth_ChecksInState_NodeMetaFilter(t *testing.T) { + dir1, s1 := testServer(t) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + + arg := structs.RegisterRequest{ + Datacenter: "dc1", + Node: "foo", + Address: "127.0.0.1", + NodeMeta: map[string]string{ + "somekey": "somevalue", + "common": "1", + }, + Check: &structs.HealthCheck{ + Name: "memory utilization", + Status: structs.HealthPassing, + }, + } + var out struct{} + if err := msgpackrpc.CallWithCodec(codec, "Catalog.Register", &arg, &out); err != nil { + t.Fatalf("err: %v", err) + } + arg = structs.RegisterRequest{ + Datacenter: "dc1", + Node: "bar", + Address: "127.0.0.2", + NodeMeta: map[string]string{ + "common": "1", + }, + Check: &structs.HealthCheck{ + Name: "disk space", + Status: structs.HealthPassing, + }, + } + if err := msgpackrpc.CallWithCodec(codec, "Catalog.Register", &arg, &out); err != nil { + t.Fatalf("err: %v", err) + } + + cases := []struct { + filters map[string]string + checkNames []string + }{ + // Get foo's check by its unique meta value + { + filters: map[string]string{"somekey": "somevalue"}, + checkNames: []string{"memory utilization"}, + }, + // Get both foo/bar's checks by their common meta value + { + filters: map[string]string{"common": "1"}, + checkNames: []string{"disk space", "memory utilization"}, + }, + // Use an invalid meta value, should get empty result + { + filters: map[string]string{"invalid": "nope"}, + checkNames: []string{}, + }, + // Use multiple filters to get foo's check + { + filters: map[string]string{ + "somekey": "somevalue", + "common": "1", + }, + checkNames: []string{"memory utilization"}, + }, + } + + for _, tc := range cases { + var out structs.IndexedHealthChecks + inState := structs.ChecksInStateRequest{ + Datacenter: "dc1", + NodeMetaFilters: tc.filters, + State: structs.HealthPassing, + } + if err := msgpackrpc.CallWithCodec(codec, "Health.ChecksInState", &inState, &out); err != nil { + t.Fatalf("err: %v", err) + } + + checks := out.HealthChecks + if len(checks) != len(tc.checkNames) { + t.Fatalf("Bad: %v, %v", checks, tc.checkNames) + } + + for i, check := range checks { + if tc.checkNames[i] != check.Name { + t.Fatalf("Bad: %v %v", checks, tc.checkNames) + } + } + } +} + func TestHealth_ChecksInState_DistanceSort(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) @@ -221,6 +316,111 @@ func TestHealth_ServiceChecks(t *testing.T) { } } +func TestHealth_ServiceChecks_NodeMetaFilter(t *testing.T) { + dir1, s1 := testServer(t) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + + arg := structs.RegisterRequest{ + Datacenter: "dc1", + Node: "foo", + Address: "127.0.0.1", + NodeMeta: map[string]string{ + "somekey": "somevalue", + "common": "1", + }, + Service: &structs.NodeService{ + ID: "db", + Service: "db", + }, + Check: &structs.HealthCheck{ + Name: "memory utilization", + Status: structs.HealthPassing, + ServiceID: "db", + }, + } + var out struct{} + if err := msgpackrpc.CallWithCodec(codec, "Catalog.Register", &arg, &out); err != nil { + t.Fatalf("err: %v", err) + } + arg = structs.RegisterRequest{ + Datacenter: "dc1", + Node: "bar", + Address: "127.0.0.2", + NodeMeta: map[string]string{ + "common": "1", + }, + Service: &structs.NodeService{ + ID: "db", + Service: "db", + }, + Check: &structs.HealthCheck{ + Name: "disk space", + Status: structs.HealthPassing, + ServiceID: "db", + }, + } + if err := msgpackrpc.CallWithCodec(codec, "Catalog.Register", &arg, &out); err != nil { + t.Fatalf("err: %v", err) + } + + cases := []struct { + filters map[string]string + checkNames []string + }{ + // Get foo's check by its unique meta value + { + filters: map[string]string{"somekey": "somevalue"}, + checkNames: []string{"memory utilization"}, + }, + // Get both foo/bar's checks by their common meta value + { + filters: map[string]string{"common": "1"}, + checkNames: []string{"disk space", "memory utilization"}, + }, + // Use an invalid meta value, should get empty result + { + filters: map[string]string{"invalid": "nope"}, + checkNames: []string{}, + }, + // Use multiple filters to get foo's check + { + filters: map[string]string{ + "somekey": "somevalue", + "common": "1", + }, + checkNames: []string{"memory utilization"}, + }, + } + + for _, tc := range cases { + var out structs.IndexedHealthChecks + args := structs.ServiceSpecificRequest{ + Datacenter: "dc1", + NodeMetaFilters: tc.filters, + ServiceName: "db", + } + if err := msgpackrpc.CallWithCodec(codec, "Health.ServiceChecks", &args, &out); err != nil { + t.Fatalf("err: %v", err) + } + + checks := out.HealthChecks + if len(checks) != len(tc.checkNames) { + t.Fatalf("Bad: %v, %v", checks, tc.checkNames) + } + + for i, check := range checks { + if tc.checkNames[i] != check.Name { + t.Fatalf("Bad: %v %v", checks, tc.checkNames) + } + } + } +} + func TestHealth_ServiceChecks_DistanceSort(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) @@ -392,6 +592,136 @@ func TestHealth_ServiceNodes(t *testing.T) { } } +func TestHealth_ServiceNodes_NodeMetaFilter(t *testing.T) { + dir1, s1 := testServer(t) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + + arg := structs.RegisterRequest{ + Datacenter: "dc1", + Node: "foo", + Address: "127.0.0.1", + NodeMeta: map[string]string{ + "somekey": "somevalue", + "common": "1", + }, + Service: &structs.NodeService{ + ID: "db", + Service: "db", + }, + Check: &structs.HealthCheck{ + Name: "memory utilization", + Status: structs.HealthPassing, + ServiceID: "db", + }, + } + var out struct{} + if err := msgpackrpc.CallWithCodec(codec, "Catalog.Register", &arg, &out); err != nil { + t.Fatalf("err: %v", err) + } + + arg = structs.RegisterRequest{ + Datacenter: "dc1", + Node: "bar", + Address: "127.0.0.2", + NodeMeta: map[string]string{ + "common": "1", + }, + Service: &structs.NodeService{ + ID: "db", + Service: "db", + }, + Check: &structs.HealthCheck{ + Name: "disk space", + Status: structs.HealthWarning, + ServiceID: "db", + }, + } + if err := msgpackrpc.CallWithCodec(codec, "Catalog.Register", &arg, &out); err != nil { + t.Fatalf("err: %v", err) + } + + cases := []struct { + filters map[string]string + nodes structs.CheckServiceNodes + }{ + // Get foo's check by its unique meta value + { + filters: map[string]string{"somekey": "somevalue"}, + nodes: structs.CheckServiceNodes{ + structs.CheckServiceNode{ + Node: &structs.Node{Node: "foo"}, + Checks: structs.HealthChecks{&structs.HealthCheck{Name: "memory utilization"}}, + }, + }, + }, + // Get both foo/bar's checks by their common meta value + { + filters: map[string]string{"common": "1"}, + nodes: structs.CheckServiceNodes{ + structs.CheckServiceNode{ + Node: &structs.Node{Node: "bar"}, + Checks: structs.HealthChecks{&structs.HealthCheck{Name: "disk space"}}, + }, + structs.CheckServiceNode{ + Node: &structs.Node{Node: "foo"}, + Checks: structs.HealthChecks{&structs.HealthCheck{Name: "memory utilization"}}, + }, + }, + }, + // Use an invalid meta value, should get empty result + { + filters: map[string]string{"invalid": "nope"}, + nodes: structs.CheckServiceNodes{}, + }, + // Use multiple filters to get foo's check + { + filters: map[string]string{ + "somekey": "somevalue", + "common": "1", + }, + nodes: structs.CheckServiceNodes{ + structs.CheckServiceNode{ + Node: &structs.Node{Node: "foo"}, + Checks: structs.HealthChecks{&structs.HealthCheck{Name: "memory utilization"}}, + }, + }, + }, + } + + for _, tc := range cases { + var out structs.IndexedCheckServiceNodes + req := structs.ServiceSpecificRequest{ + Datacenter: "dc1", + NodeMetaFilters: tc.filters, + ServiceName: "db", + } + if err := msgpackrpc.CallWithCodec(codec, "Health.ServiceNodes", &req, &out); err != nil { + t.Fatalf("err: %v", err) + } + + if len(out.Nodes) != len(tc.nodes) { + t.Fatalf("bad: %v, %v, filters: %v", out.Nodes, tc.nodes, tc.filters) + } + + for i, node := range out.Nodes { + checks := tc.nodes[i].Checks + if len(node.Checks) != len(checks) { + t.Fatalf("bad: %v, %v, filters: %v", node.Checks, checks, tc.filters) + } + for j, check := range node.Checks { + if check.Name != checks[j].Name { + t.Fatalf("bad: %v, %v, filters: %v", check, checks[j], tc.filters) + } + } + } + } +} + func TestHealth_ServiceNodes_DistanceSort(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) @@ -507,6 +837,12 @@ func TestHealth_NodeChecks_FilterACL(t *testing.T) { if !found { t.Fatalf("bad: %#v", reply.HealthChecks) } + + // We've already proven that we call the ACL filtering function so we + // test node filtering down in acl.go for node cases. This also proves + // that we respect the version 8 ACL flag, since the test server sets + // that to false (the regression value of *not* changing this is better + // for now until we change the sense of the version 8 ACL flag). } func TestHealth_ServiceChecks_FilterACL(t *testing.T) { @@ -543,6 +879,12 @@ func TestHealth_ServiceChecks_FilterACL(t *testing.T) { if len(reply.HealthChecks) != 0 { t.Fatalf("bad: %#v", reply.HealthChecks) } + + // We've already proven that we call the ACL filtering function so we + // test node filtering down in acl.go for node cases. This also proves + // that we respect the version 8 ACL flag, since the test server sets + // that to false (the regression value of *not* changing this is better + // for now until we change the sense of the version 8 ACL flag). } func TestHealth_ServiceNodes_FilterACL(t *testing.T) { @@ -572,6 +914,12 @@ func TestHealth_ServiceNodes_FilterACL(t *testing.T) { if len(reply.Nodes) != 0 { t.Fatalf("bad: %#v", reply.Nodes) } + + // We've already proven that we call the ACL filtering function so we + // test node filtering down in acl.go for node cases. This also proves + // that we respect the version 8 ACL flag, since the test server sets + // that to false (the regression value of *not* changing this is better + // for now until we change the sense of the version 8 ACL flag). } func TestHealth_ChecksInState_FilterACL(t *testing.T) { @@ -602,4 +950,10 @@ func TestHealth_ChecksInState_FilterACL(t *testing.T) { if !found { t.Fatalf("missing service 'foo': %#v", reply.HealthChecks) } + + // We've already proven that we call the ACL filtering function so we + // test node filtering down in acl.go for node cases. This also proves + // that we respect the version 8 ACL flag, since the test server sets + // that to false (the regression value of *not* changing this is better + // for now until we change the sense of the version 8 ACL flag). } diff --git a/consul/internal_endpoint.go b/consul/internal_endpoint.go index a30086f94c..2be6de14c8 100644 --- a/consul/internal_endpoint.go +++ b/consul/internal_endpoint.go @@ -3,7 +3,9 @@ package consul import ( "fmt" + "github.com/hashicorp/consul/consul/state" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/go-memdb" "github.com/hashicorp/serf/serf" ) @@ -21,14 +23,11 @@ func (m *Internal) NodeInfo(args *structs.NodeSpecificRequest, return err } - // Get the node info - state := m.srv.fsm.State() - return m.srv.blockingRPC( + return m.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("NodeInfo"), - func() error { - index, dump, err := state.NodeInfo(args.Node) + func(ws memdb.WatchSet, state *state.StateStore) error { + index, dump, err := state.NodeInfo(ws, args.Node) if err != nil { return err } @@ -45,14 +44,11 @@ func (m *Internal) NodeDump(args *structs.DCSpecificRequest, return err } - // Get all the node info - state := m.srv.fsm.State() - return m.srv.blockingRPC( + return m.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("NodeDump"), - func() error { - index, dump, err := state.NodeDump() + func(ws memdb.WatchSet, state *state.StateStore) error { + index, dump, err := state.NodeDump(ws) if err != nil { return err } @@ -151,15 +147,16 @@ func (m *Internal) executeKeyringOp( mgr = m.srv.KeyManagerLAN() } + opts := &serf.KeyRequestOptions{RelayFactor: args.RelayFactor} switch args.Operation { case structs.KeyringList: - serfResp, err = mgr.ListKeys() + serfResp, err = mgr.ListKeysWithOptions(opts) case structs.KeyringInstall: - serfResp, err = mgr.InstallKey(args.Key) + serfResp, err = mgr.InstallKeyWithOptions(args.Key, opts) case structs.KeyringUse: - serfResp, err = mgr.UseKey(args.Key) + serfResp, err = mgr.UseKeyWithOptions(args.Key, opts) case structs.KeyringRemove: - serfResp, err = mgr.RemoveKey(args.Key) + serfResp, err = mgr.RemoveKeyWithOptions(args.Key, opts) } errStr := "" diff --git a/consul/internal_endpoint_test.go b/consul/internal_endpoint_test.go index 94a59cafbd..042ddd8e37 100644 --- a/consul/internal_endpoint_test.go +++ b/consul/internal_endpoint_test.go @@ -284,6 +284,12 @@ func TestInternal_NodeInfo_FilterACL(t *testing.T) { t.Fatalf("bad: %#v", info.Services) } } + + // We've already proven that we call the ACL filtering function so we + // test node filtering down in acl.go for node cases. This also proves + // that we respect the version 8 ACL flag, since the test server sets + // that to false (the regression value of *not* changing this is better + // for now until we change the sense of the version 8 ACL flag). } func TestInternal_NodeDump_FilterACL(t *testing.T) { @@ -327,6 +333,12 @@ func TestInternal_NodeDump_FilterACL(t *testing.T) { t.Fatalf("bad: %#v", info.Services) } } + + // We've already proven that we call the ACL filtering function so we + // test node filtering down in acl.go for node cases. This also proves + // that we respect the version 8 ACL flag, since the test server sets + // that to false (the regression value of *not* changing this is better + // for now until we change the sense of the version 8 ACL flag). } func TestInternal_EventFire_Token(t *testing.T) { diff --git a/consul/issue_test.go b/consul/issue_test.go index 45f9e91c6a..e2fdf9470e 100644 --- a/consul/issue_test.go +++ b/consul/issue_test.go @@ -45,7 +45,7 @@ func TestHealthCheckRace(t *testing.T) { } // Verify the index - idx, out1, err := state.CheckServiceNodes("db") + idx, out1, err := state.CheckServiceNodes(nil, "db") if err != nil { t.Fatalf("err: %s", err) } @@ -68,7 +68,7 @@ func TestHealthCheckRace(t *testing.T) { } // Verify the index changed - idx, out2, err := state.CheckServiceNodes("db") + idx, out2, err := state.CheckServiceNodes(nil, "db") if err != nil { t.Fatalf("err: %s", err) } diff --git a/consul/kvs_endpoint.go b/consul/kvs_endpoint.go index 95ce7576ea..9f0d4cd0c5 100644 --- a/consul/kvs_endpoint.go +++ b/consul/kvs_endpoint.go @@ -6,7 +6,9 @@ import ( "github.com/armon/go-metrics" "github.com/hashicorp/consul/acl" + "github.com/hashicorp/consul/consul/state" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/go-memdb" ) // KVS endpoint is used to manipulate the Key-Value store @@ -117,14 +119,11 @@ func (k *KVS) Get(args *structs.KeyRequest, reply *structs.IndexedDirEntries) er return err } - // Get the local state - state := k.srv.fsm.State() - return k.srv.blockingRPC( + return k.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetKVSWatch(args.Key), - func() error { - index, ent, err := state.KVSGet(args.Key) + func(ws memdb.WatchSet, state *state.StateStore) error { + index, ent, err := state.KVSGet(ws, args.Key) if err != nil { return err } @@ -159,14 +158,11 @@ func (k *KVS) List(args *structs.KeyRequest, reply *structs.IndexedDirEntries) e return err } - // Get the local state - state := k.srv.fsm.State() - return k.srv.blockingRPC( + return k.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetKVSWatch(args.Key), - func() error { - index, ent, err := state.KVSList(args.Key) + func(ws memdb.WatchSet, state *state.StateStore) error { + index, ent, err := state.KVSList(ws, args.Key) if err != nil { return err } @@ -202,14 +198,11 @@ func (k *KVS) ListKeys(args *structs.KeyListRequest, reply *structs.IndexedKeyLi return err } - // Get the local state - state := k.srv.fsm.State() - return k.srv.blockingRPC( + return k.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetKVSWatch(args.Prefix), - func() error { - index, keys, err := state.KVSListKeys(args.Prefix, args.Seperator) + func(ws memdb.WatchSet, state *state.StateStore) error { + index, keys, err := state.KVSListKeys(ws, args.Prefix, args.Seperator) if err != nil { return err } diff --git a/consul/kvs_endpoint_test.go b/consul/kvs_endpoint_test.go index 50bd58b257..86cd36476c 100644 --- a/consul/kvs_endpoint_test.go +++ b/consul/kvs_endpoint_test.go @@ -36,7 +36,7 @@ func TestKVS_Apply(t *testing.T) { // Verify state := s1.fsm.State() - _, d, err := state.KVSGet("test") + _, d, err := state.KVSGet(nil, "test") if err != nil { t.Fatalf("err: %v", err) } @@ -58,7 +58,7 @@ func TestKVS_Apply(t *testing.T) { } // Verify - _, d, err = state.KVSGet("test") + _, d, err = state.KVSGet(nil, "test") if err != nil { t.Fatalf("err: %v", err) } diff --git a/consul/leader.go b/consul/leader.go index 375b01ae5c..5cfcec4632 100644 --- a/consul/leader.go +++ b/consul/leader.go @@ -185,7 +185,7 @@ func (s *Server) initializeACL() error { // Look for the anonymous token state := s.fsm.State() - _, acl, err := state.ACLGet(anonymousToken) + _, acl, err := state.ACLGet(nil, anonymousToken) if err != nil { return fmt.Errorf("failed to get anonymous token: %v", err) } @@ -214,7 +214,7 @@ func (s *Server) initializeACL() error { } // Look for the master token - _, acl, err = state.ACLGet(master) + _, acl, err = state.ACLGet(nil, master) if err != nil { return fmt.Errorf("failed to get master token: %v", err) } @@ -262,7 +262,7 @@ func (s *Server) reconcile() (err error) { // a "reap" event to cause the node to be cleaned up. func (s *Server) reconcileReaped(known map[string]struct{}) error { state := s.fsm.State() - _, checks, err := state.ChecksInState(structs.HealthAny) + _, checks, err := state.ChecksInState(nil, structs.HealthAny) if err != nil { return err } @@ -287,7 +287,7 @@ func (s *Server) reconcileReaped(known map[string]struct{}) error { } // Get the node services, look for ConsulServiceID - _, services, err := state.NodeServices(check.Node) + _, services, err := state.NodeServices(nil, check.Node) if err != nil { return err } @@ -385,7 +385,7 @@ func (s *Server) handleAliveMember(member serf.Member) error { // Check if the associated service is available if service != nil { match := false - _, services, err := state.NodeServices(member.Name) + _, services, err := state.NodeServices(nil, member.Name) if err != nil { return err } @@ -402,7 +402,7 @@ func (s *Server) handleAliveMember(member serf.Member) error { } // Check if the serfCheck is in the passing state - _, checks, err := state.NodeChecks(member.Name) + _, checks, err := state.NodeChecks(nil, member.Name) if err != nil { return err } @@ -418,6 +418,7 @@ AFTER_CHECK: // Register with the catalog req := structs.RegisterRequest{ Datacenter: s.config.Datacenter, + ID: types.NodeID(member.Tags["id"]), Node: member.Name, Address: member.Addr.String(), Service: service, @@ -428,7 +429,7 @@ AFTER_CHECK: Status: structs.HealthPassing, Output: SerfCheckAliveOutput, }, - WriteRequest: structs.WriteRequest{Token: s.config.ACLToken}, + WriteRequest: structs.WriteRequest{Token: s.config.GetTokenForAgent()}, } var out struct{} return s.endpoints.Catalog.Register(&req, &out) @@ -445,7 +446,7 @@ func (s *Server) handleFailedMember(member serf.Member) error { } if node != nil && node.Address == member.Addr.String() { // Check if the serfCheck is in the critical state - _, checks, err := state.NodeChecks(member.Name) + _, checks, err := state.NodeChecks(nil, member.Name) if err != nil { return err } @@ -469,7 +470,7 @@ func (s *Server) handleFailedMember(member serf.Member) error { Status: structs.HealthCritical, Output: SerfCheckFailedOutput, }, - WriteRequest: structs.WriteRequest{Token: s.config.ACLToken}, + WriteRequest: structs.WriteRequest{Token: s.config.GetTokenForAgent()}, } var out struct{} return s.endpoints.Catalog.Register(&req, &out) @@ -612,7 +613,7 @@ func (s *Server) reapTombstones(index uint64) { Datacenter: s.config.Datacenter, Op: structs.TombstoneReap, ReapIndex: index, - WriteRequest: structs.WriteRequest{Token: s.config.ACLToken}, + WriteRequest: structs.WriteRequest{Token: s.config.GetTokenForAgent()}, } _, err := s.raftApply(structs.TombstoneRequestType, &req) if err != nil { diff --git a/consul/leader_test.go b/consul/leader_test.go index 6e0f6d5f33..329bf41a35 100644 --- a/consul/leader_test.go +++ b/consul/leader_test.go @@ -44,7 +44,7 @@ func TestLeader_RegisterMember(t *testing.T) { }) // Should have a check - _, checks, err := state.NodeChecks(c1.config.NodeName) + _, checks, err := state.NodeChecks(nil, c1.config.NodeName) if err != nil { t.Fatalf("err: %v", err) } @@ -71,7 +71,7 @@ func TestLeader_RegisterMember(t *testing.T) { } // Service should be registered - _, services, err := state.NodeServices(s1.config.NodeName) + _, services, err := state.NodeServices(nil, s1.config.NodeName) if err != nil { t.Fatalf("err: %v", err) } @@ -114,7 +114,7 @@ func TestLeader_FailedMember(t *testing.T) { }) // Should have a check - _, checks, err := state.NodeChecks(c1.config.NodeName) + _, checks, err := state.NodeChecks(nil, c1.config.NodeName) if err != nil { t.Fatalf("err: %v", err) } @@ -129,7 +129,7 @@ func TestLeader_FailedMember(t *testing.T) { } testutil.WaitForResult(func() (bool, error) { - _, checks, err = state.NodeChecks(c1.config.NodeName) + _, checks, err = state.NodeChecks(nil, c1.config.NodeName) if err != nil { t.Fatalf("err: %v", err) } @@ -225,16 +225,22 @@ func TestLeader_ReapMember(t *testing.T) { } s1.reconcileCh <- c1mem - // Should be deregistered - testutil.WaitForResult(func() (bool, error) { + // Should be deregistered; we have to poll quickly here because + // anti-entropy will put it back. + reaped := false + for start := time.Now(); time.Since(start) < 5*time.Second; { _, node, err := state.GetNode(c1.config.NodeName) if err != nil { t.Fatalf("err: %v", err) } - return node == nil, nil - }, func(err error) { + if node == nil { + reaped = true + break + } + } + if !reaped { t.Fatalf("client should not be registered") - }) + } } func TestLeader_Reconcile_ReapMember(t *testing.T) { diff --git a/consul/pool.go b/consul/pool.go index 0906b28278..2002b997a4 100644 --- a/consul/pool.go +++ b/consul/pool.go @@ -248,18 +248,29 @@ func (p *ConnPool) acquire(dc string, addr net.Addr, version int) (*Conn, error) return nil, fmt.Errorf("rpc error: lead thread didn't get connection") } -// getNewConn is used to return a new connection -func (p *ConnPool) getNewConn(dc string, addr net.Addr, version int) (*Conn, error) { +// HalfCloser is an interface that exposes a TCP half-close. We need this +// because we want to expose the raw TCP connection underlying a TLS one in a +// way that's hard to screw up and use for anything else. There's a change +// brewing that will allow us to use the TLS connection for this instead - +// https://go-review.googlesource.com/#/c/25159/. +type HalfCloser interface { + CloseWrite() error +} + +// Dial is used to establish a raw connection to the given server. +func (p *ConnPool) Dial(dc string, addr net.Addr) (net.Conn, HalfCloser, error) { // Try to dial the conn conn, err := net.DialTimeout("tcp", addr.String(), 10*time.Second) if err != nil { - return nil, err + return nil, nil, err } // Cast to TCPConn + var hc HalfCloser if tcp, ok := conn.(*net.TCPConn); ok { tcp.SetKeepAlive(true) tcp.SetNoDelay(true) + hc = tcp } // Check if TLS is enabled @@ -267,18 +278,29 @@ func (p *ConnPool) getNewConn(dc string, addr net.Addr, version int) (*Conn, err // Switch the connection into TLS mode if _, err := conn.Write([]byte{byte(rpcTLS)}); err != nil { conn.Close() - return nil, err + return nil, nil, err } // Wrap the connection in a TLS client tlsConn, err := p.tlsWrap(dc, conn) if err != nil { conn.Close() - return nil, err + return nil, nil, err } conn = tlsConn } + return conn, hc, nil +} + +// getNewConn is used to return a new connection +func (p *ConnPool) getNewConn(dc string, addr net.Addr, version int) (*Conn, error) { + // Get a new, raw connection. + conn, _, err := p.Dial(dc, addr) + if err != nil { + return nil, err + } + // Switch the multiplexing based on version var session muxSession if version < 2 { diff --git a/consul/prepared_query/template_test.go b/consul/prepared_query/template_test.go index 5d58d37989..9a9ad90a87 100644 --- a/consul/prepared_query/template_test.go +++ b/consul/prepared_query/template_test.go @@ -38,6 +38,11 @@ var ( "${match(1)}", "${match(2)}", }, + NodeMeta: map[string]string{ + "foo": "${name.prefix}", + "bar": "${match(0)}", + "baz": "${match(1)}", + }, }, } @@ -222,6 +227,7 @@ func TestTemplate_Render(t *testing.T) { "${match(4)}", "${40 + 2}", }, + NodeMeta: map[string]string{"foo": "${match(1)}"}, }, } ct, err := Compile(query) @@ -252,6 +258,7 @@ func TestTemplate_Render(t *testing.T) { "", "42", }, + NodeMeta: map[string]string{"foo": "hello"}, }, } if !reflect.DeepEqual(actual, expected) { @@ -282,6 +289,7 @@ func TestTemplate_Render(t *testing.T) { "", "42", }, + NodeMeta: map[string]string{"foo": ""}, }, } if !reflect.DeepEqual(actual, expected) { diff --git a/consul/prepared_query/walk.go b/consul/prepared_query/walk.go index 11f6c14dc8..e8f914da15 100644 --- a/consul/prepared_query/walk.go +++ b/consul/prepared_query/walk.go @@ -34,6 +34,20 @@ func visit(path string, v reflect.Value, t reflect.Type, fn visitor) error { return err } } + case reflect.Map: + for _, key := range v.MapKeys() { + value := v.MapIndex(key) + + newValue := reflect.New(value.Type()).Elem() + newValue.SetString(value.String()) + + if err := visit(fmt.Sprintf("%s[%s]", path, key.String()), newValue, newValue.Type(), fn); err != nil { + return err + } + + // overwrite the entry in case it was modified by the callback + v.SetMapIndex(key, newValue) + } } return nil } diff --git a/consul/prepared_query/walk_test.go b/consul/prepared_query/walk_test.go index 05294e3b65..33de1a3f80 100644 --- a/consul/prepared_query/walk_test.go +++ b/consul/prepared_query/walk_test.go @@ -6,6 +6,7 @@ import ( "testing" "github.com/hashicorp/consul/consul/structs" + "sort" ) func TestWalk_ServiceQuery(t *testing.T) { @@ -20,22 +21,26 @@ func TestWalk_ServiceQuery(t *testing.T) { Failover: structs.QueryDatacenterOptions{ Datacenters: []string{"dc1", "dc2"}, }, - Near: "_agent", - Tags: []string{"tag1", "tag2", "tag3"}, + Near: "_agent", + Tags: []string{"tag1", "tag2", "tag3"}, + NodeMeta: map[string]string{"foo": "bar", "role": "server"}, } if err := walk(service, fn); err != nil { t.Fatalf("err: %v", err) } expected := []string{ - ".Service:the-service", ".Failover.Datacenters[0]:dc1", ".Failover.Datacenters[1]:dc2", ".Near:_agent", + ".NodeMeta[foo]:bar", + ".NodeMeta[role]:server", + ".Service:the-service", ".Tags[0]:tag1", ".Tags[1]:tag2", ".Tags[2]:tag3", } + sort.Strings(actual) if !reflect.DeepEqual(actual, expected) { t.Fatalf("bad: %#v", actual) } diff --git a/consul/prepared_query_endpoint.go b/consul/prepared_query_endpoint.go index 47b6fe1a77..84ad808148 100644 --- a/consul/prepared_query_endpoint.go +++ b/consul/prepared_query_endpoint.go @@ -8,7 +8,9 @@ import ( "time" "github.com/armon/go-metrics" + "github.com/hashicorp/consul/consul/state" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/go-memdb" "github.com/hashicorp/go-uuid" ) @@ -45,7 +47,7 @@ func (p *PreparedQuery) Apply(args *structs.PreparedQueryRequest, reply *string) if args.Query.ID, err = uuid.GenerateUUID(); err != nil { return fmt.Errorf("UUID generation for prepared query failed: %v", err) } - _, query, err := state.PreparedQueryGet(args.Query.ID) + _, query, err := state.PreparedQueryGet(nil, args.Query.ID) if err != nil { return fmt.Errorf("Prepared query lookup failed: %v", err) } @@ -77,7 +79,7 @@ func (p *PreparedQuery) Apply(args *structs.PreparedQueryRequest, reply *string) // access to whatever they are changing, if prefix ACLs apply to it. if args.Op != structs.PreparedQueryCreate { state := p.srv.fsm.State() - _, query, err := state.PreparedQueryGet(args.Query.ID) + _, query, err := state.PreparedQueryGet(nil, args.Query.ID) if err != nil { return fmt.Errorf("Prepared Query lookup failed: %v", err) } @@ -96,7 +98,7 @@ func (p *PreparedQuery) Apply(args *structs.PreparedQueryRequest, reply *string) // Parse the query and prep it for the state store. switch args.Op { case structs.PreparedQueryCreate, structs.PreparedQueryUpdate: - if err := parseQuery(args.Query); err != nil { + if err := parseQuery(args.Query, p.srv.config.ACLEnforceVersion8); err != nil { return fmt.Errorf("Invalid prepared query: %v", err) } @@ -125,7 +127,7 @@ func (p *PreparedQuery) Apply(args *structs.PreparedQueryRequest, reply *string) // update operation. Some of the fields are not checked or are partially // checked, as noted in the comments below. This also updates all the parsed // fields of the query. -func parseQuery(query *structs.PreparedQuery) error { +func parseQuery(query *structs.PreparedQuery, enforceVersion8 bool) error { // We skip a few fields: // - ID is checked outside this fn. // - Name is optional with no restrictions, except for uniqueness which @@ -133,10 +135,16 @@ func parseQuery(query *structs.PreparedQuery) error { // names do not overlap with IDs, which is also checked during the // transaction. Otherwise, people could "steal" queries that they don't // have proper ACL rights to change. - // - Session is optional and checked for integrity during the transaction. // - Template is checked during the transaction since that's where we // compile it. + // Anonymous queries require a session or need to be part of a template. + if enforceVersion8 { + if query.Name == "" && query.Template.Type == "" && query.Session == "" { + return fmt.Errorf("Must be bound to a session") + } + } + // Token is checked when the query is executed, but we do make sure the // user hasn't accidentally pasted-in the special redacted token name, // which if we allowed in would be super hard to debug and understand. @@ -172,6 +180,11 @@ func parseService(svc *structs.ServiceQuery) error { return fmt.Errorf("Bad NearestN '%d', must be >= 0", svc.Failover.NearestN) } + // Make sure the metadata filters are valid + if err := structs.ValidateMetadata(svc.NodeMeta); err != nil { + return err + } + // We skip a few fields: // - There's no validation for Datacenters; we skip any unknown entries // at execution time. @@ -205,14 +218,11 @@ func (p *PreparedQuery) Get(args *structs.PreparedQuerySpecificRequest, return err } - // Get the requested query. - state := p.srv.fsm.State() - return p.srv.blockingRPC( + return p.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("PreparedQueryGet"), - func() error { - index, query, err := state.PreparedQueryGet(args.QueryID) + func(ws memdb.WatchSet, state *state.StateStore) error { + index, query, err := state.PreparedQueryGet(ws, args.QueryID) if err != nil { return err } @@ -252,14 +262,11 @@ func (p *PreparedQuery) List(args *structs.DCSpecificRequest, reply *structs.Ind return err } - // Get the list of queries. - state := p.srv.fsm.State() - return p.srv.blockingRPC( + return p.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("PreparedQueryList"), - func() error { - index, queries, err := state.PreparedQueryList() + func(ws memdb.WatchSet, state *state.StateStore) error { + index, queries, err := state.PreparedQueryList(ws) if err != nil { return err } @@ -478,7 +485,7 @@ func (p *PreparedQuery) ExecuteRemote(args *structs.PreparedQueryExecuteRemoteRe func (p *PreparedQuery) execute(query *structs.PreparedQuery, reply *structs.PreparedQueryExecuteResponse) error { state := p.srv.fsm.State() - _, nodes, err := state.CheckServiceNodes(query.Service.Service) + _, nodes, err := state.CheckServiceNodes(nil, query.Service.Service) if err != nil { return err } @@ -486,6 +493,11 @@ func (p *PreparedQuery) execute(query *structs.PreparedQuery, // Filter out any unhealthy nodes. nodes = nodes.Filter(query.Service.OnlyPassing) + // Apply the node metadata filters, if any. + if len(query.Service.NodeMeta) > 0 { + nodes = nodeMetaFilter(query.Service.NodeMeta, nodes) + } + // Apply the tag filters, if any. if len(query.Service.Tags) > 0 { nodes = tagFilter(query.Service.Tags, nodes) @@ -556,6 +568,18 @@ func tagFilter(tags []string, nodes structs.CheckServiceNodes) structs.CheckServ return nodes[:n] } +// nodeMetaFilter returns a list of the nodes who satisfy the given metadata filters. Nodes +// must have ALL the given tags. +func nodeMetaFilter(filters map[string]string, nodes structs.CheckServiceNodes) structs.CheckServiceNodes { + var filtered structs.CheckServiceNodes + for _, node := range nodes { + if structs.SatisfiesMetaFilters(node.Node.Meta, filters) { + filtered = append(filtered, node) + } + } + return filtered +} + // queryServer is a wrapper that makes it easier to test the failover logic. type queryServer interface { GetLogger() *log.Logger diff --git a/consul/prepared_query_endpoint_test.go b/consul/prepared_query_endpoint_test.go index 49075ed928..8189e2293c 100644 --- a/consul/prepared_query_endpoint_test.go +++ b/consul/prepared_query_endpoint_test.go @@ -32,6 +32,7 @@ func TestPreparedQuery_Apply(t *testing.T) { Datacenter: "dc1", Op: structs.PreparedQueryCreate, Query: &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Service: "redis", }, @@ -459,7 +460,9 @@ func TestPreparedQuery_Apply_ACLDeny(t *testing.T) { } func TestPreparedQuery_Apply_ForwardLeader(t *testing.T) { - dir1, s1 := testServer(t) + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.Bootstrap = false + }) defer os.RemoveAll(dir1) defer s1.Shutdown() codec1 := rpcClient(t, s1) @@ -513,6 +516,7 @@ func TestPreparedQuery_Apply_ForwardLeader(t *testing.T) { Datacenter: "dc1", Op: structs.PreparedQueryCreate, Query: &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Service: "redis", }, @@ -529,53 +533,88 @@ func TestPreparedQuery_Apply_ForwardLeader(t *testing.T) { func TestPreparedQuery_parseQuery(t *testing.T) { query := &structs.PreparedQuery{} - err := parseQuery(query) + err := parseQuery(query, true) + if err == nil || !strings.Contains(err.Error(), "Must be bound to a session") { + t.Fatalf("bad: %v", err) + } + + query.Session = "adf4238a-882b-9ddc-4a9d-5b6758e4159e" + err = parseQuery(query, true) if err == nil || !strings.Contains(err.Error(), "Must provide a Service") { t.Fatalf("bad: %v", err) } - query.Service.Service = "foo" - if err := parseQuery(query); err != nil { - t.Fatalf("err: %v", err) - } - - query.Token = redactedToken - err = parseQuery(query) - if err == nil || !strings.Contains(err.Error(), "Bad Token") { + query.Session = "" + query.Template.Type = "some-kind-of-template" + err = parseQuery(query, true) + if err == nil || !strings.Contains(err.Error(), "Must provide a Service") { t.Fatalf("bad: %v", err) } - query.Token = "adf4238a-882b-9ddc-4a9d-5b6758e4159e" - if err := parseQuery(query); err != nil { - t.Fatalf("err: %v", err) - } - - query.Service.Failover.NearestN = -1 - err = parseQuery(query) - if err == nil || !strings.Contains(err.Error(), "Bad NearestN") { + query.Template.Type = "" + err = parseQuery(query, false) + if err == nil || !strings.Contains(err.Error(), "Must provide a Service") { t.Fatalf("bad: %v", err) } - query.Service.Failover.NearestN = 3 - if err := parseQuery(query); err != nil { - t.Fatalf("err: %v", err) - } + // None of the rest of these care about version 8 ACL enforcement. + for _, version8 := range []bool{true, false} { + query = &structs.PreparedQuery{} + query.Session = "adf4238a-882b-9ddc-4a9d-5b6758e4159e" + query.Service.Service = "foo" + if err := parseQuery(query, version8); err != nil { + t.Fatalf("err: %v", err) + } - query.DNS.TTL = "two fortnights" - err = parseQuery(query) - if err == nil || !strings.Contains(err.Error(), "Bad DNS TTL") { - t.Fatalf("bad: %v", err) - } + query.Token = redactedToken + err = parseQuery(query, version8) + if err == nil || !strings.Contains(err.Error(), "Bad Token") { + t.Fatalf("bad: %v", err) + } - query.DNS.TTL = "-3s" - err = parseQuery(query) - if err == nil || !strings.Contains(err.Error(), "must be >=0") { - t.Fatalf("bad: %v", err) - } + query.Token = "adf4238a-882b-9ddc-4a9d-5b6758e4159e" + if err := parseQuery(query, version8); err != nil { + t.Fatalf("err: %v", err) + } - query.DNS.TTL = "3s" - if err := parseQuery(query); err != nil { - t.Fatalf("err: %v", err) + query.Service.Failover.NearestN = -1 + err = parseQuery(query, version8) + if err == nil || !strings.Contains(err.Error(), "Bad NearestN") { + t.Fatalf("bad: %v", err) + } + + query.Service.Failover.NearestN = 3 + if err := parseQuery(query, version8); err != nil { + t.Fatalf("err: %v", err) + } + + query.DNS.TTL = "two fortnights" + err = parseQuery(query, version8) + if err == nil || !strings.Contains(err.Error(), "Bad DNS TTL") { + t.Fatalf("bad: %v", err) + } + + query.DNS.TTL = "-3s" + err = parseQuery(query, version8) + if err == nil || !strings.Contains(err.Error(), "must be >=0") { + t.Fatalf("bad: %v", err) + } + + query.DNS.TTL = "3s" + if err := parseQuery(query, version8); err != nil { + t.Fatalf("err: %v", err) + } + + query.Service.NodeMeta = map[string]string{"": "somevalue"} + err = parseQuery(query, version8) + if err == nil || !strings.Contains(err.Error(), "cannot be blank") { + t.Fatalf("bad: %v", err) + } + + query.Service.NodeMeta = map[string]string{"somekey": "somevalue"} + if err := parseQuery(query, version8); err != nil { + t.Fatalf("err: %v", err) + } } } @@ -915,9 +954,25 @@ func TestPreparedQuery_Get(t *testing.T) { } } + // Create a session. + var session string + { + req := structs.SessionRequest{ + Datacenter: "dc1", + Op: structs.SessionCreate, + Session: structs.Session{ + Node: s1.config.NodeName, + }, + } + if err := msgpackrpc.CallWithCodec(codec, "Session.Apply", &req, &session); err != nil { + t.Fatalf("err: %v", err) + } + } + // Now update the query to take away its name. query.Op = structs.PreparedQueryUpdate query.Query.Name = "" + query.Query.Session = session if err := msgpackrpc.CallWithCodec(codec, "PreparedQuery.Apply", &query, &reply); err != nil { t.Fatalf("err: %v", err) } @@ -1168,9 +1223,25 @@ func TestPreparedQuery_List(t *testing.T) { } } + // Create a session. + var session string + { + req := structs.SessionRequest{ + Datacenter: "dc1", + Op: structs.SessionCreate, + Session: structs.Session{ + Node: s1.config.NodeName, + }, + } + if err := msgpackrpc.CallWithCodec(codec, "Session.Apply", &req, &session); err != nil { + t.Fatalf("err: %v", err) + } + } + // Now take away the query name. query.Op = structs.PreparedQueryUpdate query.Query.Name = "" + query.Query.Session = session if err := msgpackrpc.CallWithCodec(codec, "PreparedQuery.Apply", &query, &reply); err != nil { t.Fatalf("err: %v", err) } @@ -1357,6 +1428,7 @@ func TestPreparedQuery_Execute(t *testing.T) { c.ACLDatacenter = "dc1" c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" + c.ACLEnforceVersion8 = false }) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -1421,6 +1493,10 @@ func TestPreparedQuery_Execute(t *testing.T) { Datacenter: dc, Node: fmt.Sprintf("node%d", i+1), Address: fmt.Sprintf("127.0.0.%d", i+1), + NodeMeta: map[string]string{ + "group": fmt.Sprintf("%d", i/5), + "instance_type": "t2.micro", + }, Service: &structs.NodeService{ Service: "foo", Port: 8000, @@ -1428,6 +1504,9 @@ func TestPreparedQuery_Execute(t *testing.T) { }, WriteRequest: structs.WriteRequest{Token: "root"}, } + if i == 0 { + req.NodeMeta["unique"] = "true" + } var codec rpc.ClientCodec if dc == "dc1" { @@ -1449,6 +1528,7 @@ func TestPreparedQuery_Execute(t *testing.T) { Datacenter: "dc1", Op: structs.PreparedQueryCreate, Query: &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Service: "foo", }, @@ -1525,6 +1605,72 @@ func TestPreparedQuery_Execute(t *testing.T) { } } + // Run various service queries with node metadata filters. + if false { + cases := []struct { + filters map[string]string + numNodes int + }{ + { + filters: map[string]string{}, + numNodes: 10, + }, + { + filters: map[string]string{"instance_type": "t2.micro"}, + numNodes: 10, + }, + { + filters: map[string]string{"group": "1"}, + numNodes: 5, + }, + { + filters: map[string]string{"group": "0", "unique": "true"}, + numNodes: 1, + }, + } + + for _, tc := range cases { + nodeMetaQuery := structs.PreparedQueryRequest{ + Datacenter: "dc1", + Op: structs.PreparedQueryCreate, + Query: &structs.PreparedQuery{ + Service: structs.ServiceQuery{ + Service: "foo", + NodeMeta: tc.filters, + }, + DNS: structs.QueryDNSOptions{ + TTL: "10s", + }, + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + if err := msgpackrpc.CallWithCodec(codec1, "PreparedQuery.Apply", &nodeMetaQuery, &nodeMetaQuery.Query.ID); err != nil { + t.Fatalf("err: %v", err) + } + + req := structs.PreparedQueryExecuteRequest{ + Datacenter: "dc1", + QueryIDOrName: nodeMetaQuery.Query.ID, + QueryOptions: structs.QueryOptions{Token: execToken}, + } + + var reply structs.PreparedQueryExecuteResponse + if err := msgpackrpc.CallWithCodec(codec1, "PreparedQuery.Execute", &req, &reply); err != nil { + t.Fatalf("err: %v", err) + } + + if len(reply.Nodes) != tc.numNodes { + t.Fatalf("bad: %v, %v", len(reply.Nodes), tc.numNodes) + } + + for _, node := range reply.Nodes { + if !structs.SatisfiesMetaFilters(node.Node.Meta, tc.filters) { + t.Fatalf("bad: %v", node.Node.Meta) + } + } + } + } + // Push a coordinate for one of the nodes so we can try an RTT sort. We // have to sleep a little while for the coordinate batch to get flushed. { @@ -1628,9 +1774,8 @@ func TestPreparedQuery_Execute(t *testing.T) { QueryOptions: structs.QueryOptions{Token: execToken}, } - var reply structs.PreparedQueryExecuteResponse - for i := 0; i < 10; i++ { + var reply structs.PreparedQueryExecuteResponse if err := msgpackrpc.CallWithCodec(codec1, "PreparedQuery.Execute", &req, &reply); err != nil { t.Fatalf("err: %v", err) } @@ -1663,10 +1808,9 @@ func TestPreparedQuery_Execute(t *testing.T) { QueryOptions: structs.QueryOptions{Token: execToken}, } - var reply structs.PreparedQueryExecuteResponse - shuffled := false for i := 0; i < 10; i++ { + var reply structs.PreparedQueryExecuteResponse if err := msgpackrpc.CallWithCodec(codec1, "PreparedQuery.Execute", &req, &reply); err != nil { t.Fatalf("err: %v", err) } @@ -1697,9 +1841,8 @@ func TestPreparedQuery_Execute(t *testing.T) { QueryOptions: structs.QueryOptions{Token: execToken}, } - var reply structs.PreparedQueryExecuteResponse - for i := 0; i < 10; i++ { + var reply structs.PreparedQueryExecuteResponse if err := msgpackrpc.CallWithCodec(codec1, "PreparedQuery.Execute", &req, &reply); err != nil { t.Fatalf("err: %v", err) } @@ -1730,9 +1873,8 @@ func TestPreparedQuery_Execute(t *testing.T) { QueryOptions: structs.QueryOptions{Token: execToken}, } - var reply structs.PreparedQueryExecuteResponse - for i := 0; i < 10; i++ { + var reply structs.PreparedQueryExecuteResponse if err := msgpackrpc.CallWithCodec(codec1, "PreparedQuery.Execute", &req, &reply); err != nil { t.Fatalf("err: %v", err) } @@ -1759,12 +1901,11 @@ func TestPreparedQuery_Execute(t *testing.T) { QueryOptions: structs.QueryOptions{Token: execToken}, } - var reply structs.PreparedQueryExecuteResponse - // Expect the set to be shuffled since we have no coordinates // on the "foo" node. shuffled := false for i := 0; i < 10; i++ { + var reply structs.PreparedQueryExecuteResponse if err := msgpackrpc.CallWithCodec(codec1, "PreparedQuery.Execute", &req, &reply); err != nil { t.Fatalf("err: %v", err) } @@ -1799,10 +1940,9 @@ func TestPreparedQuery_Execute(t *testing.T) { QueryOptions: structs.QueryOptions{Token: execToken}, } - var reply structs.PreparedQueryExecuteResponse - shuffled := false for i := 0; i < 10; i++ { + var reply structs.PreparedQueryExecuteResponse if err := msgpackrpc.CallWithCodec(codec1, "PreparedQuery.Execute", &req, &reply); err != nil { t.Fatalf("err: %v", err) } @@ -2077,6 +2217,58 @@ func TestPreparedQuery_Execute(t *testing.T) { } } + // Turn on version 8 ACLs, which will start to filter even with the exec + // token. + s1.config.ACLEnforceVersion8 = true + { + req := structs.PreparedQueryExecuteRequest{ + Datacenter: "dc1", + QueryIDOrName: query.Query.ID, + QueryOptions: structs.QueryOptions{Token: execToken}, + } + + var reply structs.PreparedQueryExecuteResponse + if err := msgpackrpc.CallWithCodec(codec1, "PreparedQuery.Execute", &req, &reply); err != nil { + t.Fatalf("err: %v", err) + } + + if len(reply.Nodes) != 0 || + reply.Datacenter != "dc1" || reply.Failovers != 0 || + reply.Service != query.Query.Service.Service || + !reflect.DeepEqual(reply.DNS, query.Query.DNS) || + !reply.QueryMeta.KnownLeader { + t.Fatalf("bad: %v", reply) + } + } + + // Revert version 8 ACLs and make sure the query works again. + s1.config.ACLEnforceVersion8 = false + { + req := structs.PreparedQueryExecuteRequest{ + Datacenter: "dc1", + QueryIDOrName: query.Query.ID, + QueryOptions: structs.QueryOptions{Token: execToken}, + } + + var reply structs.PreparedQueryExecuteResponse + if err := msgpackrpc.CallWithCodec(codec1, "PreparedQuery.Execute", &req, &reply); err != nil { + t.Fatalf("err: %v", err) + } + + if len(reply.Nodes) != 8 || + reply.Datacenter != "dc1" || reply.Failovers != 0 || + reply.Service != query.Query.Service.Service || + !reflect.DeepEqual(reply.DNS, query.Query.DNS) || + !reply.QueryMeta.KnownLeader { + t.Fatalf("bad: %v", reply) + } + for _, node := range reply.Nodes { + if node.Node.Node == "node1" || node.Node.Node == "node3" { + t.Fatalf("bad: %v", node) + } + } + } + // Now fail everything in dc1 and we should get an empty list back. for i := 0; i < 10; i++ { setHealth(fmt.Sprintf("node%d", i+1), structs.HealthCritical) @@ -2312,6 +2504,7 @@ func TestPreparedQuery_Execute_ForwardLeader(t *testing.T) { Datacenter: "dc1", Op: structs.PreparedQueryCreate, Query: &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Service: "redis", }, @@ -2575,6 +2768,7 @@ func (m *mockQueryServer) ForwardDC(method, dc string, args interface{}, reply i func TestPreparedQuery_queryFailover(t *testing.T) { query := &structs.PreparedQuery{ + Name: "test", Service: structs.ServiceQuery{ Failover: structs.QueryDatacenterOptions{ NearestN: 0, diff --git a/consul/rpc.go b/consul/rpc.go index d5a6a694e3..43ff3b4a48 100644 --- a/consul/rpc.go +++ b/consul/rpc.go @@ -14,6 +14,7 @@ import ( "github.com/hashicorp/consul/consul/state" "github.com/hashicorp/consul/consul/structs" "github.com/hashicorp/consul/lib" + "github.com/hashicorp/go-memdb" "github.com/hashicorp/memberlist" "github.com/hashicorp/net-rpc-msgpackrpc" "github.com/hashicorp/yamux" @@ -27,6 +28,7 @@ const ( rpcMultiplex // Old Muxado byte, no longer supported. rpcTLS rpcMultiplexV2 + rpcSnapshot ) const ( @@ -119,6 +121,9 @@ func (s *Server) handleConn(conn net.Conn, isTLS bool) { case rpcMultiplexV2: s.handleMultiplexV2(conn) + case rpcSnapshot: + s.handleSnapshotConn(conn) + default: s.logger.Printf("[ERR] consul.rpc: unrecognized RPC byte: %v %s", buf[0], logConn(conn)) conn.Close() @@ -167,6 +172,17 @@ func (s *Server) handleConsulConn(conn net.Conn) { } } +// handleSnapshotConn is used to dispatch snapshot saves and restores, which +// stream so don't use the normal RPC mechanism. +func (s *Server) handleSnapshotConn(conn net.Conn) { + go func() { + defer conn.Close() + if err := s.handleSnapshotRequest(conn); err != nil { + s.logger.Printf("[ERR] consul.rpc: Snapshot RPC error: %v %s", err, logConn(conn)) + } + }() +} + // forward is used to forward to a remote DC or to forward to the local leader // Returns a bool of if forwarding was performed, as well as any error func (s *Server) forward(method string, info structs.RPCInfo, args interface{}, reply interface{}) (bool, error) { @@ -216,9 +232,9 @@ CHECK_LEADER: return true, structs.ErrNoLeader } -// getLeader returns if the current node is the leader, and if not -// then it returns the leader which is potentially nil if the cluster -// has not yet elected a leader. +// getLeader returns if the current node is the leader, and if not then it +// returns the leader which is potentially nil if the cluster has not yet +// elected a leader. func (s *Server) getLeader() (bool, *agent.Server) { // Check if we are the leader if s.IsLeader() { @@ -249,23 +265,29 @@ func (s *Server) forwardLeader(server *agent.Server, method string, args interfa return s.connPool.RPC(s.config.Datacenter, server.Addr, server.Version, method, args, reply) } -// forwardDC is used to forward an RPC call to a remote DC, or fail if no servers -func (s *Server) forwardDC(method, dc string, args interface{}, reply interface{}) error { - // Bail if we can't find any servers +// getRemoteServer returns a random server from a remote datacenter. This uses +// the bool parameter to signal that none were available. +func (s *Server) getRemoteServer(dc string) (*agent.Server, bool) { s.remoteLock.RLock() + defer s.remoteLock.RUnlock() servers := s.remoteConsuls[dc] if len(servers) == 0 { - s.remoteLock.RUnlock() + return nil, false + } + + offset := rand.Int31n(int32(len(servers))) + server := servers[offset] + return server, true +} + +// forwardDC is used to forward an RPC call to a remote DC, or fail if no servers +func (s *Server) forwardDC(method, dc string, args interface{}, reply interface{}) error { + server, ok := s.getRemoteServer(dc) + if !ok { s.logger.Printf("[WARN] consul.rpc: RPC request for DC '%s', no path found", dc) return structs.ErrNoDCPath } - // Select a random addr - offset := rand.Int31n(int32(len(servers))) - server := servers[offset] - s.remoteLock.RUnlock() - - // Forward to remote Consul metrics.IncrCounter([]string{"consul", "rpc", "cross-dc", dc}, 1) return s.connPool.RPC(dc, server.Addr, server.Version, method, args, reply) } @@ -331,23 +353,23 @@ func (s *Server) raftApply(t structs.MessageType, msg interface{}) (interface{}, return future.Response(), nil } -// blockingRPC is used for queries that need to wait for a minimum index. This -// is used to block and wait for changes. -func (s *Server) blockingRPC(queryOpts *structs.QueryOptions, queryMeta *structs.QueryMeta, - watch state.Watch, run func() error) error { +// queryFn is used to perform a query operation. If a re-query is needed, the +// passed-in watch set will be used to block for changes. The passed-in state +// store should be used (vs. calling fsm.State()) since the given state store +// will be correctly watched for changes if the state store is restored from +// a snapshot. +type queryFn func(memdb.WatchSet, *state.StateStore) error + +// blockingQuery is used to process a potentially blocking query operation. +func (s *Server) blockingQuery(queryOpts *structs.QueryOptions, queryMeta *structs.QueryMeta, + fn queryFn) error { var timeout *time.Timer - var notifyCh chan struct{} // Fast path right to the non-blocking query. if queryOpts.MinQueryIndex == 0 { goto RUN_QUERY } - // Make sure a watch was given if we were asked to block. - if watch == nil { - panic("no watch given for blocking query") - } - // Restrict the max query time, and ensure there is always one. if queryOpts.MaxQueryTime > maxQueryTime { queryOpts.MaxQueryTime = maxQueryTime @@ -360,20 +382,7 @@ func (s *Server) blockingRPC(queryOpts *structs.QueryOptions, queryMeta *structs // Setup a query timeout. timeout = time.NewTimer(queryOpts.MaxQueryTime) - - // Setup the notify channel. - notifyCh = make(chan struct{}, 1) - - // Ensure we tear down any watches on return. - defer func() { - timeout.Stop() - watch.Clear(notifyCh) - }() - -REGISTER_NOTIFY: - // Register the notification channel. This may be done multiple times if - // we haven't reached the target wait index. - watch.Wait(notifyCh) + defer timeout.Stop() RUN_QUERY: // Update the query metadata. @@ -388,14 +397,36 @@ RUN_QUERY: // Run the query. metrics.IncrCounter([]string{"consul", "rpc", "query"}, 1) - err := run() - // Check for minimum query time. + // Operate on a consistent set of state. This makes sure that the + // abandon channel goes with the state that the caller is using to + // build watches. + state := s.fsm.State() + + // We can skip all watch tracking if this isn't a blocking query. + var ws memdb.WatchSet + if queryOpts.MinQueryIndex > 0 { + ws = memdb.NewWatchSet() + + // This channel will be closed if a snapshot is restored and the + // whole state store is abandoned. + ws.Add(state.AbandonCh()) + } + + // Block up to the timeout if we didn't see anything fresh. + err := fn(ws, state) if err == nil && queryMeta.Index > 0 && queryMeta.Index <= queryOpts.MinQueryIndex { - select { - case <-notifyCh: - goto REGISTER_NOTIFY - case <-timeout.C: + if expired := ws.Watch(timeout.C); !expired { + // If a restore may have woken us up then bail out from + // the query immediately. This is slightly race-ey since + // this might have been interrupted for other reasons, + // but it's OK to kick it back to the caller in either + // case. + select { + case <-state.AbandonCh(): + default: + goto RUN_QUERY + } } } return err diff --git a/consul/rpc_test.go b/consul/rpc_test.go index e77f6ea10f..8b8d99f525 100644 --- a/consul/rpc_test.go +++ b/consul/rpc_test.go @@ -1,12 +1,15 @@ package consul import ( + "bytes" "os" "testing" "time" + "github.com/hashicorp/consul/consul/state" "github.com/hashicorp/consul/consul/structs" "github.com/hashicorp/consul/testutil" + "github.com/hashicorp/go-memdb" "github.com/hashicorp/net-rpc-msgpackrpc" ) @@ -70,3 +73,93 @@ func TestRPC_NoLeader_Retry(t *testing.T) { t.Fatalf("bad: %v", err) } } + +func TestRPC_blockingQuery(t *testing.T) { + dir, s := testServer(t) + defer os.RemoveAll(dir) + defer s.Shutdown() + + // Perform a non-blocking query. + { + var opts structs.QueryOptions + var meta structs.QueryMeta + var calls int + fn := func(ws memdb.WatchSet, state *state.StateStore) error { + calls++ + return nil + } + if err := s.blockingQuery(&opts, &meta, fn); err != nil { + t.Fatalf("err: %v", err) + } + if calls != 1 { + t.Fatalf("bad: %d", calls) + } + } + + // Perform a blocking query that gets woken up and loops around once. + { + opts := structs.QueryOptions{ + MinQueryIndex: 3, + } + var meta structs.QueryMeta + var calls int + fn := func(ws memdb.WatchSet, state *state.StateStore) error { + if calls == 0 { + meta.Index = 3 + + fakeCh := make(chan struct{}) + close(fakeCh) + ws.Add(fakeCh) + } else { + meta.Index = 4 + } + calls++ + return nil + } + if err := s.blockingQuery(&opts, &meta, fn); err != nil { + t.Fatalf("err: %v", err) + } + if calls != 2 { + t.Fatalf("bad: %d", calls) + } + } + + // Perform a query that blocks and gets interrupted when the state store + // is abandoned. + { + opts := structs.QueryOptions{ + MinQueryIndex: 3, + } + var meta structs.QueryMeta + var calls int + fn := func(ws memdb.WatchSet, state *state.StateStore) error { + if calls == 0 { + meta.Index = 3 + + snap, err := s.fsm.Snapshot() + if err != nil { + t.Fatalf("err: %v", err) + } + defer snap.Release() + + buf := bytes.NewBuffer(nil) + sink := &MockSink{buf, false} + if err := snap.Persist(sink); err != nil { + t.Fatalf("err: %v", err) + } + + if err := s.fsm.Restore(sink); err != nil { + t.Fatalf("err: %v", err) + } + } + calls++ + return nil + } + if err := s.blockingQuery(&opts, &meta, fn); err != nil { + t.Fatalf("err: %v", err) + } + if calls != 1 { + t.Fatalf("bad: %d", calls) + } + } +} diff --git a/consul/serf.go b/consul/serf.go index 1e089ac38c..6306bd405a 100644 --- a/consul/serf.go +++ b/consul/serf.go @@ -2,6 +2,7 @@ package consul import ( "strings" + "time" "github.com/hashicorp/consul/consul/agent" "github.com/hashicorp/raft" @@ -15,6 +16,12 @@ const ( // userEventPrefix is pre-pended to a user event to distinguish it userEventPrefix = "consul:event:" + + // maxPeerRetries limits how many invalidate attempts are made + maxPeerRetries = 6 + + // peerRetryBase is a baseline retry time + peerRetryBase = 1 * time.Second ) // userEventName computes the name of a user event @@ -154,7 +161,7 @@ func (s *Server) lanNodeJoin(me serf.MemberEvent) { s.localLock.Unlock() } - // If we still expecting to bootstrap, may need to handle this. + // If we're still expecting to bootstrap, may need to handle this. if s.config.BootstrapExpect != 0 { s.maybeBootstrap() } @@ -238,10 +245,18 @@ func (s *Server) maybeBootstrap() { // Query each of the servers and make sure they report no Raft peers. for _, server := range servers { var peers []string - if err := s.connPool.RPC(s.config.Datacenter, server.Addr, server.Version, - "Status.Peers", &struct{}{}, &peers); err != nil { - s.logger.Printf("[ERR] consul: Failed to confirm peer status for %s: %v", server.Name, err) - return + + // Retry with exponential backoff to get peer status from this server + for attempt := uint(0); attempt < maxPeerRetries; attempt++ { + if err := s.connPool.RPC(s.config.Datacenter, server.Addr, server.Version, + "Status.Peers", &struct{}{}, &peers); err != nil { + nextRetry := time.Duration((1 << attempt) * peerRetryBase) + s.logger.Printf("[ERR] consul: Failed to confirm peer status for %s: %v. Retrying in "+ + "%v...", server.Name, err, nextRetry.String()) + time.Sleep(nextRetry) + } else { + break + } } // Found a node with some Raft peers, stop bootstrap since there's diff --git a/consul/server.go b/consul/server.go index ed9a7f7881..13d3088052 100644 --- a/consul/server.go +++ b/consul/server.go @@ -4,6 +4,7 @@ import ( "crypto/tls" "errors" "fmt" + "io" "io/ioutil" "log" "net" @@ -19,6 +20,7 @@ import ( "github.com/hashicorp/consul/consul/agent" "github.com/hashicorp/consul/consul/state" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/consul/lib" "github.com/hashicorp/consul/tlsutil" "github.com/hashicorp/raft" "github.com/hashicorp/raft-boltdb" @@ -282,6 +284,10 @@ func NewServer(config *Config) (*Server, error) { } go s.wanEventHandler() + // Start monitoring leadership. This must happen after Serf is set up + // since it can fire events when leadership is obtained. + go s.monitorLeadership() + // Start ACL replication. if s.IsACLReplicationEnabled() { go s.runACLReplication() @@ -307,6 +313,7 @@ func (s *Server) setupSerf(conf *serf.Config, ch chan serf.Event, path string, w } conf.Tags["role"] = "consul" conf.Tags["dc"] = s.config.Datacenter + conf.Tags["id"] = string(s.config.NodeID) conf.Tags["vsn"] = fmt.Sprintf("%d", s.config.ProtocolVersion) conf.Tags["vsn_min"] = fmt.Sprintf("%d", ProtocolVersionMin) conf.Tags["vsn_max"] = fmt.Sprintf("%d", ProtocolVersionMax) @@ -336,7 +343,7 @@ func (s *Server) setupSerf(conf *serf.Config, ch chan serf.Event, path string, w // When enabled, the Serf gossip may just turn off if we are the minority // node which is rather unexpected. conf.EnableNameConflictResolution = false - if err := ensurePath(conf.SnapshotPath, false); err != nil { + if err := lib.EnsurePath(conf.SnapshotPath, false); err != nil { return nil, err } @@ -385,11 +392,11 @@ func (s *Server) setupRaft() error { s.raftInmem = store stable = store log = store - snap = raft.NewDiscardSnapshotStore() + snap = raft.NewInmemSnapshotStore() } else { // Create the base raft path. path := filepath.Join(s.config.DataDir, raftState) - if err := ensurePath(path, true); err != nil { + if err := lib.EnsurePath(path, true); err != nil { return err } @@ -488,9 +495,6 @@ func (s *Server) setupRaft() error { if err != nil { return err } - - // Start monitoring leadership. - go s.monitorLeadership() return nil } @@ -806,6 +810,39 @@ func (s *Server) RPC(method string, args interface{}, reply interface{}) error { return codec.err } +// SnapshotRPC dispatches the given snapshot request, reading from the streaming +// input and writing to the streaming output depending on the operation. +func (s *Server) SnapshotRPC(args *structs.SnapshotRequest, in io.Reader, out io.Writer, + replyFn SnapshotReplyFn) error { + + // Perform the operation. + var reply structs.SnapshotResponse + snap, err := s.dispatchSnapshotRequest(args, in, &reply) + if err != nil { + return err + } + defer func() { + if err := snap.Close(); err != nil { + s.logger.Printf("[ERR] consul: Failed to close snapshot: %v", err) + } + }() + + // Let the caller peek at the reply. + if replyFn != nil { + if err := replyFn(&reply); err != nil { + return nil + } + } + + // Stream the snapshot. + if out != nil { + if _, err := io.Copy(out, snap); err != nil { + return fmt.Errorf("failed to stream snapshot: %v", err) + } + } + return nil +} + // InjectEndpoint is used to substitute an endpoint for testing. func (s *Server) InjectEndpoint(endpoint interface{}) error { s.logger.Printf("[WARN] consul: endpoint injected; this should only be used for testing") diff --git a/consul/session_endpoint.go b/consul/session_endpoint.go index c6ddbc75c3..557535c56f 100644 --- a/consul/session_endpoint.go +++ b/consul/session_endpoint.go @@ -5,7 +5,9 @@ import ( "time" "github.com/armon/go-metrics" + "github.com/hashicorp/consul/consul/state" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/go-memdb" "github.com/hashicorp/go-uuid" ) @@ -30,6 +32,33 @@ func (s *Session) Apply(args *structs.SessionRequest, reply *string) error { return fmt.Errorf("Must provide Node") } + // Fetch the ACL token, if any, and apply the policy. + acl, err := s.srv.resolveToken(args.Token) + if err != nil { + return err + } + if acl != nil && s.srv.config.ACLEnforceVersion8 { + switch args.Op { + case structs.SessionDestroy: + state := s.srv.fsm.State() + _, existing, err := state.SessionGet(nil, args.Session.ID) + if err != nil { + return fmt.Errorf("Unknown session %q", args.Session.ID) + } + if !acl.SessionWrite(existing.Node) { + return permissionDeniedErr + } + + case structs.SessionCreate: + if !acl.SessionWrite(args.Session.Node) { + return permissionDeniedErr + } + + default: + return fmt.Errorf("Invalid session operation %q", args.Op) + } + } + // Ensure that the specified behavior is allowed switch args.Session.Behavior { case "": @@ -67,7 +96,7 @@ func (s *Session) Apply(args *structs.SessionRequest, reply *string) error { s.srv.logger.Printf("[ERR] consul.session: UUID generation failed: %v", err) return err } - _, sess, err := state.SessionGet(args.Session.ID) + _, sess, err := state.SessionGet(nil, args.Session.ID) if err != nil { s.srv.logger.Printf("[ERR] consul.session: Session lookup failed: %v", err) return err @@ -112,14 +141,11 @@ func (s *Session) Get(args *structs.SessionSpecificRequest, return err } - // Get the local state - state := s.srv.fsm.State() - return s.srv.blockingRPC( + return s.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("SessionGet"), - func() error { - index, session, err := state.SessionGet(args.Session) + func(ws memdb.WatchSet, state *state.StateStore) error { + index, session, err := state.SessionGet(ws, args.Session) if err != nil { return err } @@ -130,6 +156,9 @@ func (s *Session) Get(args *structs.SessionSpecificRequest, } else { reply.Sessions = nil } + if err := s.srv.filterACL(args.Token, reply); err != nil { + return err + } return nil }) } @@ -141,19 +170,19 @@ func (s *Session) List(args *structs.DCSpecificRequest, return err } - // Get the local state - state := s.srv.fsm.State() - return s.srv.blockingRPC( + return s.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("SessionList"), - func() error { - index, sessions, err := state.SessionList() + func(ws memdb.WatchSet, state *state.StateStore) error { + index, sessions, err := state.SessionList(ws) if err != nil { return err } reply.Index, reply.Sessions = index, sessions + if err := s.srv.filterACL(args.Token, reply); err != nil { + return err + } return nil }) } @@ -165,19 +194,19 @@ func (s *Session) NodeSessions(args *structs.NodeSpecificRequest, return err } - // Get the local state - state := s.srv.fsm.State() - return s.srv.blockingRPC( + return s.srv.blockingQuery( &args.QueryOptions, &reply.QueryMeta, - state.GetQueryWatch("NodeSessions"), - func() error { - index, sessions, err := state.NodeSessions(args.Node) + func(ws memdb.WatchSet, state *state.StateStore) error { + index, sessions, err := state.NodeSessions(ws, args.Node) if err != nil { return err } reply.Index, reply.Sessions = index, sessions + if err := s.srv.filterACL(args.Token, reply); err != nil { + return err + } return nil }) } @@ -190,21 +219,35 @@ func (s *Session) Renew(args *structs.SessionSpecificRequest, } defer metrics.MeasureSince([]string{"consul", "session", "renew"}, time.Now()) - // Get the session, from local state + // Get the session, from local state. state := s.srv.fsm.State() - index, session, err := state.SessionGet(args.Session) + index, session, err := state.SessionGet(nil, args.Session) if err != nil { return err } - // Reset the session TTL timer reply.Index = index - if session != nil { - reply.Sessions = structs.Sessions{session} - if err := s.srv.resetSessionTimer(args.Session, session); err != nil { - s.srv.logger.Printf("[ERR] consul.session: Session renew failed: %v", err) - return err + if session == nil { + return nil + } + + // Fetch the ACL token, if any, and apply the policy. + acl, err := s.srv.resolveToken(args.Token) + if err != nil { + return err + } + if acl != nil && s.srv.config.ACLEnforceVersion8 { + if !acl.SessionWrite(session.Node) { + return permissionDeniedErr } } + + // Reset the session TTL timer. + reply.Sessions = structs.Sessions{session} + if err := s.srv.resetSessionTimer(args.Session, session); err != nil { + s.srv.logger.Printf("[ERR] consul.session: Session renew failed: %v", err) + return err + } + return nil } diff --git a/consul/session_endpoint_test.go b/consul/session_endpoint_test.go index e5e0bed184..326c36c1a5 100644 --- a/consul/session_endpoint_test.go +++ b/consul/session_endpoint_test.go @@ -2,6 +2,7 @@ package consul import ( "os" + "strings" "testing" "time" @@ -11,7 +12,7 @@ import ( "github.com/hashicorp/net-rpc-msgpackrpc" ) -func TestSessionEndpoint_Apply(t *testing.T) { +func TestSession_Apply(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -39,7 +40,7 @@ func TestSessionEndpoint_Apply(t *testing.T) { // Verify state := s1.fsm.State() - _, s, err := state.SessionGet(out) + _, s, err := state.SessionGet(nil, out) if err != nil { t.Fatalf("err: %v", err) } @@ -61,7 +62,7 @@ func TestSessionEndpoint_Apply(t *testing.T) { } // Verify - _, s, err = state.SessionGet(id) + _, s, err = state.SessionGet(nil, id) if err != nil { t.Fatalf("err: %v", err) } @@ -70,7 +71,7 @@ func TestSessionEndpoint_Apply(t *testing.T) { } } -func TestSessionEndpoint_DeleteApply(t *testing.T) { +func TestSession_DeleteApply(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -99,7 +100,7 @@ func TestSessionEndpoint_DeleteApply(t *testing.T) { // Verify state := s1.fsm.State() - _, s, err := state.SessionGet(out) + _, s, err := state.SessionGet(nil, out) if err != nil { t.Fatalf("err: %v", err) } @@ -124,7 +125,7 @@ func TestSessionEndpoint_DeleteApply(t *testing.T) { } // Verify - _, s, err = state.SessionGet(id) + _, s, err = state.SessionGet(nil, id) if err != nil { t.Fatalf("err: %v", err) } @@ -133,7 +134,101 @@ func TestSessionEndpoint_DeleteApply(t *testing.T) { } } -func TestSessionEndpoint_Get(t *testing.T) { +func TestSession_Apply_ACLDeny(t *testing.T) { + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLMasterToken = "root" + c.ACLDefaultPolicy = "deny" + c.ACLEnforceVersion8 = false + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + + // Create the ACL. + req := structs.ACLRequest{ + Datacenter: "dc1", + Op: structs.ACLSet, + ACL: structs.ACL{ + Name: "User token", + Type: structs.ACLTypeClient, + Rules: ` +session "foo" { + policy = "write" +} +`, + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + + var token string + if err := msgpackrpc.CallWithCodec(codec, "ACL.Apply", &req, &token); err != nil { + t.Fatalf("err: %v", err) + } + + // Just add a node. + s1.fsm.State().EnsureNode(1, &structs.Node{Node: "foo", Address: "127.0.0.1"}) + + // Try to create without a token, which will go through since version 8 + // enforcement isn't enabled. + arg := structs.SessionRequest{ + Datacenter: "dc1", + Op: structs.SessionCreate, + Session: structs.Session{ + Node: "foo", + Name: "my-session", + }, + } + var id1 string + if err := msgpackrpc.CallWithCodec(codec, "Session.Apply", &arg, &id1); err != nil { + t.Fatalf("err: %v", err) + } + + // Now turn on version 8 enforcement and try again, it should be denied. + var id2 string + s1.config.ACLEnforceVersion8 = true + err := msgpackrpc.CallWithCodec(codec, "Session.Apply", &arg, &id2) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Now set a token and try again. This should go through. + arg.Token = token + if err := msgpackrpc.CallWithCodec(codec, "Session.Apply", &arg, &id2); err != nil { + t.Fatalf("err: %v", err) + } + + // Do a delete on the first session with version 8 enforcement off and + // no token. This should go through. + var out string + s1.config.ACLEnforceVersion8 = false + arg.Op = structs.SessionDestroy + arg.Token = "" + arg.Session.ID = id1 + if err := msgpackrpc.CallWithCodec(codec, "Session.Apply", &arg, &out); err != nil { + t.Fatalf("err: %v", err) + } + + // Turn on version 8 enforcement and make sure the delete of the second + // session fails. + s1.config.ACLEnforceVersion8 = true + arg.Session.ID = id2 + err = msgpackrpc.CallWithCodec(codec, "Session.Apply", &arg, &out) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Now set a token and try again. This should go through. + arg.Token = token + if err := msgpackrpc.CallWithCodec(codec, "Session.Apply", &arg, &out); err != nil { + t.Fatalf("err: %v", err) + } +} + +func TestSession_Get(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -176,7 +271,7 @@ func TestSessionEndpoint_Get(t *testing.T) { } } -func TestSessionEndpoint_List(t *testing.T) { +func TestSession_List(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -227,7 +322,175 @@ func TestSessionEndpoint_List(t *testing.T) { } } -func TestSessionEndpoint_ApplyTimers(t *testing.T) { +func TestSession_Get_List_NodeSessions_ACLFilter(t *testing.T) { + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLMasterToken = "root" + c.ACLDefaultPolicy = "deny" + c.ACLEnforceVersion8 = false + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + + // Create the ACL. + req := structs.ACLRequest{ + Datacenter: "dc1", + Op: structs.ACLSet, + ACL: structs.ACL{ + Name: "User token", + Type: structs.ACLTypeClient, + Rules: ` +session "foo" { + policy = "read" +} +`, + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + + var token string + if err := msgpackrpc.CallWithCodec(codec, "ACL.Apply", &req, &token); err != nil { + t.Fatalf("err: %v", err) + } + + // Create a node and a session. + s1.fsm.State().EnsureNode(1, &structs.Node{Node: "foo", Address: "127.0.0.1"}) + arg := structs.SessionRequest{ + Datacenter: "dc1", + Op: structs.SessionCreate, + Session: structs.Session{ + Node: "foo", + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + var out string + if err := msgpackrpc.CallWithCodec(codec, "Session.Apply", &arg, &out); err != nil { + t.Fatalf("err: %v", err) + } + + // Perform all the read operations, which should go through since version + // 8 ACL enforcement isn't enabled. + getR := structs.SessionSpecificRequest{ + Datacenter: "dc1", + Session: out, + } + { + var sessions structs.IndexedSessions + if err := msgpackrpc.CallWithCodec(codec, "Session.Get", &getR, &sessions); err != nil { + t.Fatalf("err: %v", err) + } + if len(sessions.Sessions) != 1 { + t.Fatalf("bad: %v", sessions.Sessions) + } + } + listR := structs.DCSpecificRequest{ + Datacenter: "dc1", + } + { + var sessions structs.IndexedSessions + if err := msgpackrpc.CallWithCodec(codec, "Session.List", &listR, &sessions); err != nil { + t.Fatalf("err: %v", err) + } + if len(sessions.Sessions) != 1 { + t.Fatalf("bad: %v", sessions.Sessions) + } + } + nodeR := structs.NodeSpecificRequest{ + Datacenter: "dc1", + Node: "foo", + } + { + var sessions structs.IndexedSessions + if err := msgpackrpc.CallWithCodec(codec, "Session.NodeSessions", &nodeR, &sessions); err != nil { + t.Fatalf("err: %v", err) + } + if len(sessions.Sessions) != 1 { + t.Fatalf("bad: %v", sessions.Sessions) + } + } + + // Now turn on version 8 enforcement and make sure everything is empty. + s1.config.ACLEnforceVersion8 = true + { + var sessions structs.IndexedSessions + if err := msgpackrpc.CallWithCodec(codec, "Session.Get", &getR, &sessions); err != nil { + t.Fatalf("err: %v", err) + } + if len(sessions.Sessions) != 0 { + t.Fatalf("bad: %v", sessions.Sessions) + } + } + { + var sessions structs.IndexedSessions + + if err := msgpackrpc.CallWithCodec(codec, "Session.List", &listR, &sessions); err != nil { + t.Fatalf("err: %v", err) + } + if len(sessions.Sessions) != 0 { + t.Fatalf("bad: %v", sessions.Sessions) + } + } + { + var sessions structs.IndexedSessions + if err := msgpackrpc.CallWithCodec(codec, "Session.NodeSessions", &nodeR, &sessions); err != nil { + t.Fatalf("err: %v", err) + } + if len(sessions.Sessions) != 0 { + t.Fatalf("bad: %v", sessions.Sessions) + } + } + + // Finally, supply the token and make sure the reads are allowed. + getR.Token = token + { + var sessions structs.IndexedSessions + if err := msgpackrpc.CallWithCodec(codec, "Session.Get", &getR, &sessions); err != nil { + t.Fatalf("err: %v", err) + } + if len(sessions.Sessions) != 1 { + t.Fatalf("bad: %v", sessions.Sessions) + } + } + listR.Token = token + { + var sessions structs.IndexedSessions + if err := msgpackrpc.CallWithCodec(codec, "Session.List", &listR, &sessions); err != nil { + t.Fatalf("err: %v", err) + } + if len(sessions.Sessions) != 1 { + t.Fatalf("bad: %v", sessions.Sessions) + } + } + nodeR.Token = token + { + var sessions structs.IndexedSessions + if err := msgpackrpc.CallWithCodec(codec, "Session.NodeSessions", &nodeR, &sessions); err != nil { + t.Fatalf("err: %v", err) + } + if len(sessions.Sessions) != 1 { + t.Fatalf("bad: %v", sessions.Sessions) + } + } + + // Try to get a session that doesn't exist to make sure that's handled + // correctly by the filter (it will get passed a nil slice). + getR.Session = "adf4238a-882b-9ddc-4a9d-5b6758e4159e" + { + var sessions structs.IndexedSessions + if err := msgpackrpc.CallWithCodec(codec, "Session.Get", &getR, &sessions); err != nil { + t.Fatalf("err: %v", err) + } + if len(sessions.Sessions) != 0 { + t.Fatalf("bad: %v", sessions.Sessions) + } + } +} + +func TestSession_ApplyTimers(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -268,7 +531,7 @@ func TestSessionEndpoint_ApplyTimers(t *testing.T) { } } -func TestSessionEndpoint_Renew(t *testing.T) { +func TestSession_Renew(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -428,7 +691,85 @@ func TestSessionEndpoint_Renew(t *testing.T) { } } -func TestSessionEndpoint_NodeSessions(t *testing.T) { +func TestSession_Renew_ACLDeny(t *testing.T) { + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLMasterToken = "root" + c.ACLDefaultPolicy = "deny" + c.ACLEnforceVersion8 = false + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + + // Create the ACL. + req := structs.ACLRequest{ + Datacenter: "dc1", + Op: structs.ACLSet, + ACL: structs.ACL{ + Name: "User token", + Type: structs.ACLTypeClient, + Rules: ` +session "foo" { + policy = "write" +} +`, + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + + var token string + if err := msgpackrpc.CallWithCodec(codec, "ACL.Apply", &req, &token); err != nil { + t.Fatalf("err: %v", err) + } + + // Just add a node. + s1.fsm.State().EnsureNode(1, &structs.Node{Node: "foo", Address: "127.0.0.1"}) + + // Create a session. The token won't matter here since we don't have + // version 8 ACL enforcement on yet. + arg := structs.SessionRequest{ + Datacenter: "dc1", + Op: structs.SessionCreate, + Session: structs.Session{ + Node: "foo", + Name: "my-session", + }, + } + var id string + if err := msgpackrpc.CallWithCodec(codec, "Session.Apply", &arg, &id); err != nil { + t.Fatalf("err: %v", err) + } + + // Renew without a token should go through without version 8 ACL + // enforcement. + renewR := structs.SessionSpecificRequest{ + Datacenter: "dc1", + Session: id, + } + var session structs.IndexedSessions + if err := msgpackrpc.CallWithCodec(codec, "Session.Renew", &renewR, &session); err != nil { + t.Fatalf("err: %v", err) + } + + // Now turn on version 8 enforcement and the renew should be rejected. + s1.config.ACLEnforceVersion8 = true + err := msgpackrpc.CallWithCodec(codec, "Session.Renew", &renewR, &session) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + + // Set the token and it should go through. + renewR.Token = token + if err := msgpackrpc.CallWithCodec(codec, "Session.Renew", &renewR, &session); err != nil { + t.Fatalf("err: %v", err) + } +} + +func TestSession_NodeSessions(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -486,7 +827,7 @@ func TestSessionEndpoint_NodeSessions(t *testing.T) { } } -func TestSessionEndpoint_Apply_BadTTL(t *testing.T) { +func TestSession_Apply_BadTTL(t *testing.T) { dir1, s1 := testServer(t) defer os.RemoveAll(dir1) defer s1.Shutdown() diff --git a/consul/session_ttl.go b/consul/session_ttl.go index 172ef945e9..c4398fe63f 100644 --- a/consul/session_ttl.go +++ b/consul/session_ttl.go @@ -8,13 +8,21 @@ import ( "github.com/hashicorp/consul/consul/structs" ) +const ( + // maxInvalidateAttempts limits how many invalidate attempts are made + maxInvalidateAttempts = 6 + + // invalidateRetryBase is a baseline retry time + invalidateRetryBase = 10 * time.Second +) + // initializeSessionTimers is used when a leader is newly elected to create // a new map to track session expiration and to reset all the timers from // the previously known set of timers. func (s *Server) initializeSessionTimers() error { // Scan all sessions and reset their timer state := s.fsm.State() - _, sessions, err := state.SessionList() + _, sessions, err := state.SessionList(nil) if err != nil { return err } @@ -33,7 +41,7 @@ func (s *Server) resetSessionTimer(id string, session *structs.Session) error { // Fault the session in if not given if session == nil { state := s.fsm.State() - _, s, err := state.SessionGet(id) + _, s, err := state.SessionGet(nil, id) if err != nil { return err } @@ -110,12 +118,19 @@ func (s *Server) invalidateSession(id string) { ID: id, }, } - s.logger.Printf("[DEBUG] consul.state: Session %s TTL expired", id) - // Apply the update to destroy the session - if _, err := s.raftApply(structs.SessionRequestType, args); err != nil { + // Retry with exponential backoff to invalidate the session + for attempt := uint(0); attempt < maxInvalidateAttempts; attempt++ { + _, err := s.raftApply(structs.SessionRequestType, args) + if err == nil { + s.logger.Printf("[DEBUG] consul.state: Session %s TTL expired", id) + return + } + s.logger.Printf("[ERR] consul.session: Invalidation failed: %v", err) + time.Sleep((1 << attempt) * invalidateRetryBase) } + s.logger.Printf("[ERR] consul.session: maximum revoke attempts reached for session: %s", id) } // clearSessionTimer is used to clear the session time for diff --git a/consul/session_ttl_test.go b/consul/session_ttl_test.go index 79bd094771..880211899c 100644 --- a/consul/session_ttl_test.go +++ b/consul/session_ttl_test.go @@ -143,6 +143,8 @@ func TestResetSessionTimerLocked(t *testing.T) { defer os.RemoveAll(dir1) defer s1.Shutdown() + testutil.WaitForLeader(t, s1.RPC, "dc1") + s1.sessionTimersLock.Lock() s1.resetSessionTimerLocked("foo", 5*time.Millisecond) s1.sessionTimersLock.Unlock() @@ -223,7 +225,7 @@ func TestInvalidateSession(t *testing.T) { s1.invalidateSession(session.ID) // Check it is gone - _, sess, err := state.SessionGet(session.ID) + _, sess, err := state.SessionGet(nil, session.ID) if err != nil { t.Fatalf("err: %v", err) } diff --git a/consul/snapshot_endpoint.go b/consul/snapshot_endpoint.go new file mode 100644 index 0000000000..274f071af6 --- /dev/null +++ b/consul/snapshot_endpoint.go @@ -0,0 +1,211 @@ +// The snapshot endpoint is a special non-RPC endpoint that supports streaming +// for taking and restoring snapshots for disaster recovery. This gets wired +// directly into Consul's stream handler, and a new TCP connection is made for +// each request. +// +// This also includes a SnapshotRPC() function, which acts as a lightweight +// client that knows the details of the stream protocol. +package consul + +import ( + "bytes" + "errors" + "fmt" + "io" + "io/ioutil" + "net" + + "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/consul/snapshot" + "github.com/hashicorp/go-msgpack/codec" +) + +// dispatchSnapshotRequest takes an incoming request structure with possibly some +// streaming data (for a restore) and returns possibly some streaming data (for +// a snapshot save). We can't use the normal RPC mechanism in a streaming manner +// like this, so we have to dispatch these by hand. +func (s *Server) dispatchSnapshotRequest(args *structs.SnapshotRequest, in io.Reader, + reply *structs.SnapshotResponse) (io.ReadCloser, error) { + + // Perform DC forwarding. + if dc := args.Datacenter; dc != s.config.Datacenter { + server, ok := s.getRemoteServer(dc) + if !ok { + return nil, structs.ErrNoDCPath + } + return SnapshotRPC(s.connPool, dc, server.Addr, args, in, reply) + } + + // Perform leader forwarding if required. + if !args.AllowStale { + if isLeader, server := s.getLeader(); !isLeader { + if server == nil { + return nil, structs.ErrNoLeader + } + return SnapshotRPC(s.connPool, args.Datacenter, server.Addr, args, in, reply) + } + } + + // Verify token is allowed to operate on snapshots. There's only a + // single ACL sense here (not read and write) since reading gets you + // all the ACLs and you could escalate from there. + if acl, err := s.resolveToken(args.Token); err != nil { + return nil, err + } else if acl != nil && !acl.Snapshot() { + return nil, permissionDeniedErr + } + + // Dispatch the operation. + switch args.Op { + case structs.SnapshotSave: + if !args.AllowStale { + if err := s.consistentRead(); err != nil { + return nil, err + } + } + + // Set the metadata here before we do anything; this should always be + // pessimistic if we get more data while the snapshot is being taken. + s.setQueryMeta(&reply.QueryMeta) + + // Take the snapshot and capture the index. + snap, err := snapshot.New(s.logger, s.raft) + reply.Index = snap.Index() + return snap, err + + case structs.SnapshotRestore: + if args.AllowStale { + return nil, fmt.Errorf("stale not allowed for restore") + } + + // Restore the snapshot. + if err := snapshot.Restore(s.logger, in, s.raft); err != nil { + return nil, err + } + + // Run a barrier so we are sure that our FSM is caught up with + // any snapshot restore details (it's also part of Raft's restore + // process but we don't want to depend on that detail for this to + // be correct). Once that works, we can redo the leader actions + // so our leader-maintained state will be up to date. + barrier := s.raft.Barrier(0) + if err := barrier.Error(); err != nil { + return nil, err + } + if err := s.revokeLeadership(); err != nil { + return nil, err + } + if err := s.establishLeadership(); err != nil { + return nil, err + } + + // Give the caller back an empty reader since there's nothing to + // stream back. + return ioutil.NopCloser(bytes.NewReader([]byte(""))), nil + + default: + return nil, fmt.Errorf("unrecognized snapshot op %q", args.Op) + } +} + +// handleSnapshotRequest reads the request from the conn and dispatches it. This +// will be called from a goroutine after an incoming stream is determined to be +// a snapshot request. +func (s *Server) handleSnapshotRequest(conn net.Conn) error { + var args structs.SnapshotRequest + dec := codec.NewDecoder(conn, &codec.MsgpackHandle{}) + if err := dec.Decode(&args); err != nil { + return fmt.Errorf("failed to decode request: %v", err) + } + + var reply structs.SnapshotResponse + snap, err := s.dispatchSnapshotRequest(&args, conn, &reply) + if err != nil { + reply.Error = err.Error() + goto RESPOND + } + defer func() { + if err := snap.Close(); err != nil { + s.logger.Printf("[ERR] consul: Failed to close snapshot: %v", err) + } + }() + +RESPOND: + enc := codec.NewEncoder(conn, &codec.MsgpackHandle{}) + if err := enc.Encode(&reply); err != nil { + return fmt.Errorf("failed to encode response: %v", err) + } + if snap != nil { + if _, err := io.Copy(conn, snap); err != nil { + return fmt.Errorf("failed to stream snapshot: %v", err) + } + } + + return nil +} + +// SnapshotRPC is a streaming client function for performing a snapshot RPC +// request to a remote server. It will create a fresh connection for each +// request, send the request header, and then stream in any data from the +// reader (for a restore). It will then parse the received response header, and +// if there's no error will return an io.ReadCloser (that you must close) with +// the streaming output (for a snapshot). If the reply contains an error, this +// will always return an error as well, so you don't need to check the error +// inside the filled-in reply. +func SnapshotRPC(pool *ConnPool, dc string, addr net.Addr, + args *structs.SnapshotRequest, in io.Reader, reply *structs.SnapshotResponse) (io.ReadCloser, error) { + + conn, hc, err := pool.Dial(dc, addr) + if err != nil { + return nil, err + } + + // keep will disarm the defer on success if we are returning the caller + // our connection to stream the output. + var keep bool + defer func() { + if !keep { + conn.Close() + } + }() + + // Write the snapshot RPC byte to set the mode, then perform the + // request. + if _, err := conn.Write([]byte{byte(rpcSnapshot)}); err != nil { + return nil, fmt.Errorf("failed to write stream type: %v", err) + } + + // Push the header encoded as msgpack, then stream the input. + enc := codec.NewEncoder(conn, &codec.MsgpackHandle{}) + if err := enc.Encode(&args); err != nil { + return nil, fmt.Errorf("failed to encode request: %v", err) + } + if _, err := io.Copy(conn, in); err != nil { + return nil, fmt.Errorf("failed to copy snapshot in: %v", err) + } + + // Our RPC protocol requires support for a half-close in order to signal + // the other side that they are done reading the stream, since we don't + // know the size in advance. This saves us from having to buffer just to + // calculate the size. + if hc != nil { + if err := hc.CloseWrite(); err != nil { + return nil, fmt.Errorf("failed to half close snapshot connection: %v", err) + } + } else { + return nil, fmt.Errorf("snapshot connection requires half-close support") + } + + // Pull the header decoded as msgpack. The caller can continue to read + // the conn to stream the remaining data. + dec := codec.NewDecoder(conn, &codec.MsgpackHandle{}) + if err := dec.Decode(reply); err != nil { + return nil, fmt.Errorf("failed to decode response: %v", err) + } + if reply.Error != "" { + return nil, errors.New(reply.Error) + } + + keep = true + return conn, nil +} diff --git a/consul/snapshot_endpoint_test.go b/consul/snapshot_endpoint_test.go new file mode 100644 index 0000000000..b72b715bd8 --- /dev/null +++ b/consul/snapshot_endpoint_test.go @@ -0,0 +1,393 @@ +package consul + +import ( + "bytes" + "fmt" + "os" + "strings" + "testing" + + "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/consul/testutil" + "github.com/hashicorp/net-rpc-msgpackrpc" +) + +// verifySnapshot is a helper that does a snapshot and restore. +func verifySnapshot(t *testing.T, s *Server, dc, token string) { + codec := rpcClient(t, s) + defer codec.Close() + + // Set a key to a before value. + { + args := structs.KVSRequest{ + Datacenter: dc, + Op: structs.KVSSet, + DirEnt: structs.DirEntry{ + Key: "test", + Value: []byte("hello"), + }, + WriteRequest: structs.WriteRequest{ + Token: token, + }, + } + var out bool + if err := msgpackrpc.CallWithCodec(codec, "KVS.Apply", &args, &out); err != nil { + t.Fatalf("err: %v", err) + } + } + + // Take a snapshot. + args := structs.SnapshotRequest{ + Datacenter: dc, + Token: token, + Op: structs.SnapshotSave, + } + var reply structs.SnapshotResponse + snap, err := SnapshotRPC(s.connPool, s.config.Datacenter, s.config.RPCAddr, + &args, bytes.NewReader([]byte("")), &reply) + if err != nil { + t.Fatalf("err: %v", err) + } + defer snap.Close() + + // Read back the before value. + { + getR := structs.KeyRequest{ + Datacenter: dc, + Key: "test", + QueryOptions: structs.QueryOptions{ + Token: token, + }, + } + var dirent structs.IndexedDirEntries + if err := msgpackrpc.CallWithCodec(codec, "KVS.Get", &getR, &dirent); err != nil { + t.Fatalf("err: %v", err) + } + if len(dirent.Entries) != 1 { + t.Fatalf("Bad: %v", dirent) + } + d := dirent.Entries[0] + if string(d.Value) != "hello" { + t.Fatalf("bad: %v", d) + } + } + + // Set a key to an after value. + { + args := structs.KVSRequest{ + Datacenter: dc, + Op: structs.KVSSet, + DirEnt: structs.DirEntry{ + Key: "test", + Value: []byte("goodbye"), + }, + WriteRequest: structs.WriteRequest{ + Token: token, + }, + } + var out bool + if err := msgpackrpc.CallWithCodec(codec, "KVS.Apply", &args, &out); err != nil { + t.Fatalf("err: %v", err) + } + } + + // Read back the before value. + { + getR := structs.KeyRequest{ + Datacenter: dc, + Key: "test", + QueryOptions: structs.QueryOptions{ + Token: token, + }, + } + var dirent structs.IndexedDirEntries + if err := msgpackrpc.CallWithCodec(codec, "KVS.Get", &getR, &dirent); err != nil { + t.Fatalf("err: %v", err) + } + if len(dirent.Entries) != 1 { + t.Fatalf("Bad: %v", dirent) + } + d := dirent.Entries[0] + if string(d.Value) != "goodbye" { + t.Fatalf("bad: %v", d) + } + } + + // Restore the snapshot. + args.Op = structs.SnapshotRestore + restore, err := SnapshotRPC(s.connPool, s.config.Datacenter, s.config.RPCAddr, + &args, snap, &reply) + if err != nil { + t.Fatalf("err: %v", err) + } + defer restore.Close() + + // Read back the before value post-snapshot. + { + getR := structs.KeyRequest{ + Datacenter: dc, + Key: "test", + QueryOptions: structs.QueryOptions{ + Token: token, + }, + } + var dirent structs.IndexedDirEntries + if err := msgpackrpc.CallWithCodec(codec, "KVS.Get", &getR, &dirent); err != nil { + t.Fatalf("err: %v", err) + } + if len(dirent.Entries) != 1 { + t.Fatalf("Bad: %v", dirent) + } + d := dirent.Entries[0] + if string(d.Value) != "hello" { + t.Fatalf("bad: %v", d) + } + } +} + +func TestSnapshot(t *testing.T) { + dir1, s1 := testServer(t) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + verifySnapshot(t, s1, "dc1", "") +} + +func TestSnapshot_LeaderState(t *testing.T) { + dir1, s1 := testServer(t) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + + codec := rpcClient(t, s1) + defer codec.Close() + + // Make a before session. + var before string + { + args := structs.SessionRequest{ + Datacenter: s1.config.Datacenter, + Op: structs.SessionCreate, + Session: structs.Session{ + Node: s1.config.NodeName, + TTL: "60s", + }, + } + if err := msgpackrpc.CallWithCodec(codec, "Session.Apply", &args, &before); err != nil { + t.Fatalf("err: %v", err) + } + } + + // Take a snapshot. + args := structs.SnapshotRequest{ + Datacenter: s1.config.Datacenter, + Op: structs.SnapshotSave, + } + var reply structs.SnapshotResponse + snap, err := SnapshotRPC(s1.connPool, s1.config.Datacenter, s1.config.RPCAddr, + &args, bytes.NewReader([]byte("")), &reply) + if err != nil { + t.Fatalf("err: %v", err) + } + defer snap.Close() + + // Make an after session. + var after string + { + args := structs.SessionRequest{ + Datacenter: s1.config.Datacenter, + Op: structs.SessionCreate, + Session: structs.Session{ + Node: s1.config.NodeName, + TTL: "60s", + }, + } + if err := msgpackrpc.CallWithCodec(codec, "Session.Apply", &args, &after); err != nil { + t.Fatalf("err: %v", err) + } + } + + // Make sure the leader has timers setup. + if _, ok := s1.sessionTimers[before]; !ok { + t.Fatalf("missing session timer") + } + if _, ok := s1.sessionTimers[after]; !ok { + t.Fatalf("missing session timer") + } + + // Restore the snapshot. + args.Op = structs.SnapshotRestore + restore, err := SnapshotRPC(s1.connPool, s1.config.Datacenter, s1.config.RPCAddr, + &args, snap, &reply) + if err != nil { + t.Fatalf("err: %v", err) + } + defer restore.Close() + + // Make sure the before time is still there, and that the after timer + // got reverted. This proves we fully cycled the leader state. + if _, ok := s1.sessionTimers[before]; !ok { + t.Fatalf("missing session timer") + } + if _, ok := s1.sessionTimers[after]; ok { + t.Fatalf("unexpected session timer") + } +} + +func TestSnapshot_ACLDeny(t *testing.T) { + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLMasterToken = "root" + c.ACLDefaultPolicy = "deny" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + + // Take a snapshot. + func() { + args := structs.SnapshotRequest{ + Datacenter: "dc1", + Op: structs.SnapshotSave, + } + var reply structs.SnapshotResponse + _, err := SnapshotRPC(s1.connPool, s1.config.Datacenter, s1.config.RPCAddr, + &args, bytes.NewReader([]byte("")), &reply) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + }() + + // Restore a snapshot. + func() { + args := structs.SnapshotRequest{ + Datacenter: "dc1", + Op: structs.SnapshotRestore, + } + var reply structs.SnapshotResponse + _, err := SnapshotRPC(s1.connPool, s1.config.Datacenter, s1.config.RPCAddr, + &args, bytes.NewReader([]byte("")), &reply) + if err == nil || !strings.Contains(err.Error(), permissionDenied) { + t.Fatalf("err: %v", err) + } + }() + + // With the token in place everything should go through. + verifySnapshot(t, s1, "dc1", "root") +} + +func TestSnapshot_Forward_Leader(t *testing.T) { + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.Bootstrap = true + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + + dir2, s2 := testServerWithConfig(t, func(c *Config) { + c.Bootstrap = false + }) + defer os.RemoveAll(dir2) + defer s2.Shutdown() + + // Try to join. + addr := fmt.Sprintf("127.0.0.1:%d", + s1.config.SerfLANConfig.MemberlistConfig.BindPort) + if _, err := s2.JoinLAN([]string{addr}); err != nil { + t.Fatalf("err: %v", err) + } + + testutil.WaitForLeader(t, s1.RPC, "dc1") + testutil.WaitForLeader(t, s2.RPC, "dc1") + + // Run against the leader and the follower to ensure we forward. + for _, s := range []*Server{s1, s2} { + verifySnapshot(t, s, "dc1", "") + verifySnapshot(t, s, "dc1", "") + } +} + +func TestSnapshot_Forward_Datacenter(t *testing.T) { + dir1, s1 := testServerDC(t, "dc1") + defer os.RemoveAll(dir1) + defer s1.Shutdown() + + dir2, s2 := testServerDC(t, "dc2") + defer os.RemoveAll(dir2) + defer s2.Shutdown() + + testutil.WaitForLeader(t, s1.RPC, "dc1") + testutil.WaitForLeader(t, s2.RPC, "dc2") + + // Try to WAN join. + addr := fmt.Sprintf("127.0.0.1:%d", + s1.config.SerfWANConfig.MemberlistConfig.BindPort) + if _, err := s2.JoinWAN([]string{addr}); err != nil { + t.Fatalf("err: %v", err) + } + testutil.WaitForResult( + func() (bool, error) { + return len(s1.WANMembers()) > 1, nil + }, + func(err error) { + t.Fatalf("Failed waiting for WAN join: %v", err) + }) + + // Run a snapshot from each server locally and remotely to ensure we + // forward. + for _, s := range []*Server{s1, s2} { + verifySnapshot(t, s, "dc1", "") + verifySnapshot(t, s, "dc2", "") + } +} + +func TestSnapshot_AllowStale(t *testing.T) { + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.Bootstrap = false + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + + dir2, s2 := testServerWithConfig(t, func(c *Config) { + c.Bootstrap = false + }) + defer os.RemoveAll(dir2) + defer s2.Shutdown() + + // Run against the servers which aren't haven't been set up to establish + // a leader and make sure we get a no leader error. + for _, s := range []*Server{s1, s2} { + // Take a snapshot. + args := structs.SnapshotRequest{ + Datacenter: s.config.Datacenter, + Op: structs.SnapshotSave, + } + var reply structs.SnapshotResponse + _, err := SnapshotRPC(s.connPool, s.config.Datacenter, s.config.RPCAddr, + &args, bytes.NewReader([]byte("")), &reply) + if err == nil || !strings.Contains(err.Error(), structs.ErrNoLeader.Error()) { + t.Fatalf("err: %v", err) + } + } + + // Run in stale mode and make sure we get an error from Raft (snapshot + // was attempted), and not a no leader error. + for _, s := range []*Server{s1, s2} { + // Take a snapshot. + args := structs.SnapshotRequest{ + Datacenter: s.config.Datacenter, + AllowStale: true, + Op: structs.SnapshotSave, + } + var reply structs.SnapshotResponse + _, err := SnapshotRPC(s.connPool, s.config.Datacenter, s.config.RPCAddr, + &args, bytes.NewReader([]byte("")), &reply) + if err == nil || !strings.Contains(err.Error(), "Raft error when taking snapshot") { + t.Fatalf("err: %v", err) + } + } +} diff --git a/consul/state/acl.go b/consul/state/acl.go new file mode 100644 index 0000000000..c99600fe85 --- /dev/null +++ b/consul/state/acl.go @@ -0,0 +1,172 @@ +package state + +import ( + "fmt" + + "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/go-memdb" +) + +// ACLs is used to pull all the ACLs from the snapshot. +func (s *StateSnapshot) ACLs() (memdb.ResultIterator, error) { + iter, err := s.tx.Get("acls", "id") + if err != nil { + return nil, err + } + return iter, nil +} + +// ACL is used when restoring from a snapshot. For general inserts, use ACLSet. +func (s *StateRestore) ACL(acl *structs.ACL) error { + if err := s.tx.Insert("acls", acl); err != nil { + return fmt.Errorf("failed restoring acl: %s", err) + } + + if err := indexUpdateMaxTxn(s.tx, acl.ModifyIndex, "acls"); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + return nil +} + +// ACLSet is used to insert an ACL rule into the state store. +func (s *StateStore) ACLSet(idx uint64, acl *structs.ACL) error { + tx := s.db.Txn(true) + defer tx.Abort() + + // Call set on the ACL + if err := s.aclSetTxn(tx, idx, acl); err != nil { + return err + } + + tx.Commit() + return nil +} + +// aclSetTxn is the inner method used to insert an ACL rule with the +// proper indexes into the state store. +func (s *StateStore) aclSetTxn(tx *memdb.Txn, idx uint64, acl *structs.ACL) error { + // Check that the ID is set + if acl.ID == "" { + return ErrMissingACLID + } + + // Check for an existing ACL + existing, err := tx.First("acls", "id", acl.ID) + if err != nil { + return fmt.Errorf("failed acl lookup: %s", err) + } + + // Set the indexes + if existing != nil { + acl.CreateIndex = existing.(*structs.ACL).CreateIndex + acl.ModifyIndex = idx + } else { + acl.CreateIndex = idx + acl.ModifyIndex = idx + } + + // Insert the ACL + if err := tx.Insert("acls", acl); err != nil { + return fmt.Errorf("failed inserting acl: %s", err) + } + if err := tx.Insert("index", &IndexEntry{"acls", idx}); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + return nil +} + +// ACLGet is used to look up an existing ACL by ID. +func (s *StateStore) ACLGet(ws memdb.WatchSet, aclID string) (uint64, *structs.ACL, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "acls") + + // Query for the existing ACL + watchCh, acl, err := tx.FirstWatch("acls", "id", aclID) + if err != nil { + return 0, nil, fmt.Errorf("failed acl lookup: %s", err) + } + ws.Add(watchCh) + + if acl != nil { + return idx, acl.(*structs.ACL), nil + } + return idx, nil, nil +} + +// ACLList is used to list out all of the ACLs in the state store. +func (s *StateStore) ACLList(ws memdb.WatchSet) (uint64, structs.ACLs, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "acls") + + // Return the ACLs. + acls, err := s.aclListTxn(tx, ws) + if err != nil { + return 0, nil, fmt.Errorf("failed acl lookup: %s", err) + } + return idx, acls, nil +} + +// aclListTxn is used to list out all of the ACLs in the state store. This is a +// function vs. a method so it can be called from the snapshotter. +func (s *StateStore) aclListTxn(tx *memdb.Txn, ws memdb.WatchSet) (structs.ACLs, error) { + // Query all of the ACLs in the state store + iter, err := tx.Get("acls", "id") + if err != nil { + return nil, fmt.Errorf("failed acl lookup: %s", err) + } + ws.Add(iter.WatchCh()) + + // Go over all of the ACLs and build the response + var result structs.ACLs + for acl := iter.Next(); acl != nil; acl = iter.Next() { + a := acl.(*structs.ACL) + result = append(result, a) + } + return result, nil +} + +// ACLDelete is used to remove an existing ACL from the state store. If +// the ACL does not exist this is a no-op and no error is returned. +func (s *StateStore) ACLDelete(idx uint64, aclID string) error { + tx := s.db.Txn(true) + defer tx.Abort() + + // Call the ACL delete + if err := s.aclDeleteTxn(tx, idx, aclID); err != nil { + return err + } + + tx.Commit() + return nil +} + +// aclDeleteTxn is used to delete an ACL from the state store within +// an existing transaction. +func (s *StateStore) aclDeleteTxn(tx *memdb.Txn, idx uint64, aclID string) error { + // Look up the existing ACL + acl, err := tx.First("acls", "id", aclID) + if err != nil { + return fmt.Errorf("failed acl lookup: %s", err) + } + if acl == nil { + return nil + } + + // Delete the ACL from the state store and update indexes + if err := tx.Delete("acls", acl); err != nil { + return fmt.Errorf("failed deleting acl: %s", err) + } + if err := tx.Insert("index", &IndexEntry{"acls", idx}); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + return nil +} diff --git a/consul/state/acl_test.go b/consul/state/acl_test.go new file mode 100644 index 0000000000..2d7bb21396 --- /dev/null +++ b/consul/state/acl_test.go @@ -0,0 +1,290 @@ +package state + +import ( + "reflect" + "testing" + + "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/go-memdb" +) + +func TestStateStore_ACLSet_ACLGet(t *testing.T) { + s := testStateStore(t) + + // Querying ACLs with no results returns nil + ws := memdb.NewWatchSet() + idx, res, err := s.ACLGet(ws, "nope") + if idx != 0 || res != nil || err != nil { + t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) + } + + // Inserting an ACL with empty ID is disallowed + if err := s.ACLSet(1, &structs.ACL{}); err == nil { + t.Fatalf("expected %#v, got: %#v", ErrMissingACLID, err) + } + if watchFired(ws) { + t.Fatalf("bad") + } + + // Index is not updated if nothing is saved + if idx := s.maxIndex("acls"); idx != 0 { + t.Fatalf("bad index: %d", idx) + } + + // Inserting valid ACL works + acl := &structs.ACL{ + ID: "acl1", + Name: "First ACL", + Type: structs.ACLTypeClient, + Rules: "rules1", + } + if err := s.ACLSet(1, acl); err != nil { + t.Fatalf("err: %s", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Check that the index was updated + if idx := s.maxIndex("acls"); idx != 1 { + t.Fatalf("bad index: %d", idx) + } + + // Retrieve the ACL again + ws = memdb.NewWatchSet() + idx, result, err := s.ACLGet(ws, "acl1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 1 { + t.Fatalf("bad index: %d", idx) + } + + // Check that the ACL matches the result + expect := &structs.ACL{ + ID: "acl1", + Name: "First ACL", + Type: structs.ACLTypeClient, + Rules: "rules1", + RaftIndex: structs.RaftIndex{ + CreateIndex: 1, + ModifyIndex: 1, + }, + } + if !reflect.DeepEqual(result, expect) { + t.Fatalf("bad: %#v", result) + } + + // Update the ACL + acl = &structs.ACL{ + ID: "acl1", + Name: "First ACL", + Type: structs.ACLTypeClient, + Rules: "rules2", + } + if err := s.ACLSet(2, acl); err != nil { + t.Fatalf("err: %s", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Index was updated + if idx := s.maxIndex("acls"); idx != 2 { + t.Fatalf("bad: %d", idx) + } + + // ACL was updated and matches expected value + expect = &structs.ACL{ + ID: "acl1", + Name: "First ACL", + Type: structs.ACLTypeClient, + Rules: "rules2", + RaftIndex: structs.RaftIndex{ + CreateIndex: 1, + ModifyIndex: 2, + }, + } + if !reflect.DeepEqual(acl, expect) { + t.Fatalf("bad: %#v", acl) + } +} + +func TestStateStore_ACLList(t *testing.T) { + s := testStateStore(t) + + // Listing when no ACLs exist returns nil + ws := memdb.NewWatchSet() + idx, res, err := s.ACLList(ws) + if idx != 0 || res != nil || err != nil { + t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) + } + + // Insert some ACLs + acls := structs.ACLs{ + &structs.ACL{ + ID: "acl1", + Type: structs.ACLTypeClient, + Rules: "rules1", + RaftIndex: structs.RaftIndex{ + CreateIndex: 1, + ModifyIndex: 1, + }, + }, + &structs.ACL{ + ID: "acl2", + Type: structs.ACLTypeClient, + Rules: "rules2", + RaftIndex: structs.RaftIndex{ + CreateIndex: 2, + ModifyIndex: 2, + }, + }, + } + for _, acl := range acls { + if err := s.ACLSet(acl.ModifyIndex, acl); err != nil { + t.Fatalf("err: %s", err) + } + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Query the ACLs + idx, res, err = s.ACLList(nil) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 2 { + t.Fatalf("bad index: %d", idx) + } + + // Check that the result matches + if !reflect.DeepEqual(res, acls) { + t.Fatalf("bad: %#v", res) + } +} + +func TestStateStore_ACLDelete(t *testing.T) { + s := testStateStore(t) + + // Calling delete on an ACL which doesn't exist returns nil + if err := s.ACLDelete(1, "nope"); err != nil { + t.Fatalf("err: %s", err) + } + + // Index isn't updated if nothing is deleted + if idx := s.maxIndex("acls"); idx != 0 { + t.Fatalf("bad index: %d", idx) + } + + // Insert an ACL + if err := s.ACLSet(1, &structs.ACL{ID: "acl1"}); err != nil { + t.Fatalf("err: %s", err) + } + + // Delete the ACL and check that the index was updated + if err := s.ACLDelete(2, "acl1"); err != nil { + t.Fatalf("err: %s", err) + } + if idx := s.maxIndex("acls"); idx != 2 { + t.Fatalf("bad index: %d", idx) + } + + tx := s.db.Txn(false) + defer tx.Abort() + + // Check that the ACL was really deleted + result, err := tx.First("acls", "id", "acl1") + if err != nil { + t.Fatalf("err: %s", err) + } + if result != nil { + t.Fatalf("expected nil, got: %#v", result) + } +} + +func TestStateStore_ACL_Snapshot_Restore(t *testing.T) { + s := testStateStore(t) + + // Insert some ACLs. + acls := structs.ACLs{ + &structs.ACL{ + ID: "acl1", + Type: structs.ACLTypeClient, + Rules: "rules1", + RaftIndex: structs.RaftIndex{ + CreateIndex: 1, + ModifyIndex: 1, + }, + }, + &structs.ACL{ + ID: "acl2", + Type: structs.ACLTypeClient, + Rules: "rules2", + RaftIndex: structs.RaftIndex{ + CreateIndex: 2, + ModifyIndex: 2, + }, + }, + } + for _, acl := range acls { + if err := s.ACLSet(acl.ModifyIndex, acl); err != nil { + t.Fatalf("err: %s", err) + } + } + + // Snapshot the ACLs. + snap := s.Snapshot() + defer snap.Close() + + // Alter the real state store. + if err := s.ACLDelete(3, "acl1"); err != nil { + t.Fatalf("err: %s", err) + } + + // Verify the snapshot. + if idx := snap.LastIndex(); idx != 2 { + t.Fatalf("bad index: %d", idx) + } + iter, err := snap.ACLs() + if err != nil { + t.Fatalf("err: %s", err) + } + var dump structs.ACLs + for acl := iter.Next(); acl != nil; acl = iter.Next() { + dump = append(dump, acl.(*structs.ACL)) + } + if !reflect.DeepEqual(dump, acls) { + t.Fatalf("bad: %#v", dump) + } + + // Restore the values into a new state store. + func() { + s := testStateStore(t) + restore := s.Restore() + for _, acl := range dump { + if err := restore.ACL(acl); err != nil { + t.Fatalf("err: %s", err) + } + } + restore.Commit() + + // Read the restored ACLs back out and verify that they match. + idx, res, err := s.ACLList(nil) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 2 { + t.Fatalf("bad index: %d", idx) + } + if !reflect.DeepEqual(res, acls) { + t.Fatalf("bad: %#v", res) + } + + // Check that the index was updated. + if idx := s.maxIndex("acls"); idx != 2 { + t.Fatalf("bad index: %d", idx) + } + }() +} diff --git a/consul/state/catalog.go b/consul/state/catalog.go new file mode 100644 index 0000000000..ca5eb61103 --- /dev/null +++ b/consul/state/catalog.go @@ -0,0 +1,1389 @@ +package state + +import ( + "fmt" + "strings" + + "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/consul/types" + "github.com/hashicorp/go-memdb" +) + +const ( + // minUUIDLookupLen is used as a minimum length of a node name required before + // we test to see if the name is actually a UUID and perform an ID-based node + // lookup. + minUUIDLookupLen = 2 +) + +func resizeNodeLookupKey(s string) string { + l := len(s) + + if l%2 != 0 { + return s[0 : l-1] + } + + return s +} + +// Nodes is used to pull the full list of nodes for use during snapshots. +func (s *StateSnapshot) Nodes() (memdb.ResultIterator, error) { + iter, err := s.tx.Get("nodes", "id") + if err != nil { + return nil, err + } + return iter, nil +} + +// Services is used to pull the full list of services for a given node for use +// during snapshots. +func (s *StateSnapshot) Services(node string) (memdb.ResultIterator, error) { + iter, err := s.tx.Get("services", "node", node) + if err != nil { + return nil, err + } + return iter, nil +} + +// Checks is used to pull the full list of checks for a given node for use +// during snapshots. +func (s *StateSnapshot) Checks(node string) (memdb.ResultIterator, error) { + iter, err := s.tx.Get("checks", "node", node) + if err != nil { + return nil, err + } + return iter, nil +} + +// Registration is used to make sure a node, service, and check registration is +// performed within a single transaction to avoid race conditions on state +// updates. +func (s *StateRestore) Registration(idx uint64, req *structs.RegisterRequest) error { + if err := s.store.ensureRegistrationTxn(s.tx, idx, req); err != nil { + return err + } + return nil +} + +// EnsureRegistration is used to make sure a node, service, and check +// registration is performed within a single transaction to avoid race +// conditions on state updates. +func (s *StateStore) EnsureRegistration(idx uint64, req *structs.RegisterRequest) error { + tx := s.db.Txn(true) + defer tx.Abort() + + if err := s.ensureRegistrationTxn(tx, idx, req); err != nil { + return err + } + + tx.Commit() + return nil +} + +// ensureRegistrationTxn is used to make sure a node, service, and check +// registration is performed within a single transaction to avoid race +// conditions on state updates. +func (s *StateStore) ensureRegistrationTxn(tx *memdb.Txn, idx uint64, req *structs.RegisterRequest) error { + // Create a node structure. + node := &structs.Node{ + ID: req.ID, + Node: req.Node, + Address: req.Address, + TaggedAddresses: req.TaggedAddresses, + Meta: req.NodeMeta, + } + + // Since this gets called for all node operations (service and check + // updates) and churn on the node itself is basically none after the + // node updates itself the first time, it's worth seeing if we need to + // modify the node at all so we prevent watch churn and useless writes + // and modify index bumps on the node. + { + existing, err := tx.First("nodes", "id", node.Node) + if err != nil { + return fmt.Errorf("node lookup failed: %s", err) + } + if existing == nil || req.ChangesNode(existing.(*structs.Node)) { + if err := s.ensureNodeTxn(tx, idx, node); err != nil { + return fmt.Errorf("failed inserting node: %s", err) + } + } + } + + // Add the service, if any. We perform a similar check as we do for the + // node info above to make sure we actually need to update the service + // definition in order to prevent useless churn if nothing has changed. + if req.Service != nil { + existing, err := tx.First("services", "id", req.Node, req.Service.ID) + if err != nil { + return fmt.Errorf("failed service lookup: %s", err) + } + if existing == nil || !(existing.(*structs.ServiceNode).ToNodeService()).IsSame(req.Service) { + if err := s.ensureServiceTxn(tx, idx, req.Node, req.Service); err != nil { + return fmt.Errorf("failed inserting service: %s", err) + + } + } + } + + // TODO (slackpad) In Consul 0.8 ban checks that don't have the same + // node as the top-level registration. This is just weird to be able to + // update unrelated nodes' checks from in here. In 0.7.2 we banned this + // up in the ACL check since that's guarded behind an opt-in flag until + // Consul 0.8. + + // Add the checks, if any. + if req.Check != nil { + if err := s.ensureCheckTxn(tx, idx, req.Check); err != nil { + return fmt.Errorf("failed inserting check: %s", err) + } + } + for _, check := range req.Checks { + if err := s.ensureCheckTxn(tx, idx, check); err != nil { + return fmt.Errorf("failed inserting check: %s", err) + } + } + + return nil +} + +// EnsureNode is used to upsert node registration or modification. +func (s *StateStore) EnsureNode(idx uint64, node *structs.Node) error { + tx := s.db.Txn(true) + defer tx.Abort() + + // Call the node upsert + if err := s.ensureNodeTxn(tx, idx, node); err != nil { + return err + } + + tx.Commit() + return nil +} + +// ensureNodeTxn is the inner function called to actually create a node +// registration or modify an existing one in the state store. It allows +// passing in a memdb transaction so it may be part of a larger txn. +func (s *StateStore) ensureNodeTxn(tx *memdb.Txn, idx uint64, node *structs.Node) error { + // Check for an existing node + existing, err := tx.First("nodes", "id", node.Node) + if err != nil { + return fmt.Errorf("node name lookup failed: %s", err) + } + + // Get the indexes + if existing != nil { + node.CreateIndex = existing.(*structs.Node).CreateIndex + node.ModifyIndex = idx + } else { + node.CreateIndex = idx + node.ModifyIndex = idx + } + + // Insert the node and update the index + if err := tx.Insert("nodes", node); err != nil { + return fmt.Errorf("failed inserting node: %s", err) + } + if err := tx.Insert("index", &IndexEntry{"nodes", idx}); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + return nil +} + +// GetNode is used to retrieve a node registration by node name ID. +func (s *StateStore) GetNode(id string) (uint64, *structs.Node, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "nodes") + + // Retrieve the node from the state store + node, err := tx.First("nodes", "id", id) + if err != nil { + return 0, nil, fmt.Errorf("node lookup failed: %s", err) + } + if node != nil { + return idx, node.(*structs.Node), nil + } + return idx, nil, nil +} + +// GetNodeID is used to retrieve a node registration by node ID. +func (s *StateStore) GetNodeID(id types.NodeID) (uint64, *structs.Node, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "nodes") + + // Retrieve the node from the state store + node, err := tx.First("nodes", "uuid", string(id)) + if err != nil { + return 0, nil, fmt.Errorf("node lookup failed: %s", err) + } + if node != nil { + return idx, node.(*structs.Node), nil + } + return idx, nil, nil +} + +// Nodes is used to return all of the known nodes. +func (s *StateStore) Nodes(ws memdb.WatchSet) (uint64, structs.Nodes, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "nodes") + + // Retrieve all of the nodes + nodes, err := tx.Get("nodes", "id") + if err != nil { + return 0, nil, fmt.Errorf("failed nodes lookup: %s", err) + } + ws.Add(nodes.WatchCh()) + + // Create and return the nodes list. + var results structs.Nodes + for node := nodes.Next(); node != nil; node = nodes.Next() { + results = append(results, node.(*structs.Node)) + } + return idx, results, nil +} + +// NodesByMeta is used to return all nodes with the given metadata key/value pairs. +func (s *StateStore) NodesByMeta(ws memdb.WatchSet, filters map[string]string) (uint64, structs.Nodes, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "nodes") + + // Retrieve all of the nodes + var args []interface{} + for key, value := range filters { + args = append(args, key, value) + break + } + nodes, err := tx.Get("nodes", "meta", args...) + if err != nil { + return 0, nil, fmt.Errorf("failed nodes lookup: %s", err) + } + ws.Add(nodes.WatchCh()) + + // Create and return the nodes list. + var results structs.Nodes + for node := nodes.Next(); node != nil; node = nodes.Next() { + n := node.(*structs.Node) + if len(filters) <= 1 || structs.SatisfiesMetaFilters(n.Meta, filters) { + results = append(results, n) + } + } + return idx, results, nil +} + +// DeleteNode is used to delete a given node by its ID. +func (s *StateStore) DeleteNode(idx uint64, nodeName string) error { + tx := s.db.Txn(true) + defer tx.Abort() + + // Call the node deletion. + if err := s.deleteNodeTxn(tx, idx, nodeName); err != nil { + return err + } + + tx.Commit() + return nil +} + +// deleteNodeTxn is the inner method used for removing a node from +// the store within a given transaction. +func (s *StateStore) deleteNodeTxn(tx *memdb.Txn, idx uint64, nodeName string) error { + // Look up the node. + node, err := tx.First("nodes", "id", nodeName) + if err != nil { + return fmt.Errorf("node lookup failed: %s", err) + } + if node == nil { + return nil + } + + // Delete all services associated with the node and update the service index. + services, err := tx.Get("services", "node", nodeName) + if err != nil { + return fmt.Errorf("failed service lookup: %s", err) + } + var sids []string + for service := services.Next(); service != nil; service = services.Next() { + sids = append(sids, service.(*structs.ServiceNode).ServiceID) + } + + // Do the delete in a separate loop so we don't trash the iterator. + for _, sid := range sids { + if err := s.deleteServiceTxn(tx, idx, nodeName, sid); err != nil { + return err + } + } + + // Delete all checks associated with the node. This will invalidate + // sessions as necessary. + checks, err := tx.Get("checks", "node", nodeName) + if err != nil { + return fmt.Errorf("failed check lookup: %s", err) + } + var cids []types.CheckID + for check := checks.Next(); check != nil; check = checks.Next() { + cids = append(cids, check.(*structs.HealthCheck).CheckID) + } + + // Do the delete in a separate loop so we don't trash the iterator. + for _, cid := range cids { + if err := s.deleteCheckTxn(tx, idx, nodeName, cid); err != nil { + return err + } + } + + // Delete any coordinate associated with this node. + coord, err := tx.First("coordinates", "id", nodeName) + if err != nil { + return fmt.Errorf("failed coordinate lookup: %s", err) + } + if coord != nil { + if err := tx.Delete("coordinates", coord); err != nil { + return fmt.Errorf("failed deleting coordinate: %s", err) + } + if err := tx.Insert("index", &IndexEntry{"coordinates", idx}); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + } + + // Delete the node and update the index. + if err := tx.Delete("nodes", node); err != nil { + return fmt.Errorf("failed deleting node: %s", err) + } + if err := tx.Insert("index", &IndexEntry{"nodes", idx}); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + // Invalidate any sessions for this node. + sessions, err := tx.Get("sessions", "node", nodeName) + if err != nil { + return fmt.Errorf("failed session lookup: %s", err) + } + var ids []string + for sess := sessions.Next(); sess != nil; sess = sessions.Next() { + ids = append(ids, sess.(*structs.Session).ID) + } + + // Do the delete in a separate loop so we don't trash the iterator. + for _, id := range ids { + if err := s.deleteSessionTxn(tx, idx, id); err != nil { + return fmt.Errorf("failed session delete: %s", err) + } + } + + return nil +} + +// EnsureService is called to upsert creation of a given NodeService. +func (s *StateStore) EnsureService(idx uint64, node string, svc *structs.NodeService) error { + tx := s.db.Txn(true) + defer tx.Abort() + + // Call the service registration upsert + if err := s.ensureServiceTxn(tx, idx, node, svc); err != nil { + return err + } + + tx.Commit() + return nil +} + +// ensureServiceTxn is used to upsert a service registration within an +// existing memdb transaction. +func (s *StateStore) ensureServiceTxn(tx *memdb.Txn, idx uint64, node string, svc *structs.NodeService) error { + // Check for existing service + existing, err := tx.First("services", "id", node, svc.ID) + if err != nil { + return fmt.Errorf("failed service lookup: %s", err) + } + + // Create the service node entry and populate the indexes. Note that + // conversion doesn't populate any of the node-specific information. + // That's always populated when we read from the state store. + entry := svc.ToServiceNode(node) + if existing != nil { + entry.CreateIndex = existing.(*structs.ServiceNode).CreateIndex + entry.ModifyIndex = idx + } else { + entry.CreateIndex = idx + entry.ModifyIndex = idx + } + + // Get the node + n, err := tx.First("nodes", "id", node) + if err != nil { + return fmt.Errorf("failed node lookup: %s", err) + } + if n == nil { + return ErrMissingNode + } + + // Insert the service and update the index + if err := tx.Insert("services", entry); err != nil { + return fmt.Errorf("failed inserting service: %s", err) + } + if err := tx.Insert("index", &IndexEntry{"services", idx}); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + return nil +} + +// Services returns all services along with a list of associated tags. +func (s *StateStore) Services(ws memdb.WatchSet) (uint64, structs.Services, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "services") + + // List all the services. + services, err := tx.Get("services", "id") + if err != nil { + return 0, nil, fmt.Errorf("failed querying services: %s", err) + } + ws.Add(services.WatchCh()) + + // Rip through the services and enumerate them and their unique set of + // tags. + unique := make(map[string]map[string]struct{}) + for service := services.Next(); service != nil; service = services.Next() { + svc := service.(*structs.ServiceNode) + tags, ok := unique[svc.ServiceName] + if !ok { + unique[svc.ServiceName] = make(map[string]struct{}) + tags = unique[svc.ServiceName] + } + for _, tag := range svc.ServiceTags { + tags[tag] = struct{}{} + } + } + + // Generate the output structure. + var results = make(structs.Services) + for service, tags := range unique { + results[service] = make([]string, 0) + for tag, _ := range tags { + results[service] = append(results[service], tag) + } + } + return idx, results, nil +} + +// ServicesByNodeMeta returns all services, filtered by the given node metadata. +func (s *StateStore) ServicesByNodeMeta(ws memdb.WatchSet, filters map[string]string) (uint64, structs.Services, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "services", "nodes") + + // Retrieve all of the nodes with the meta k/v pair + var args []interface{} + for key, value := range filters { + args = append(args, key, value) + break + } + nodes, err := tx.Get("nodes", "meta", args...) + if err != nil { + return 0, nil, fmt.Errorf("failed nodes lookup: %s", err) + } + ws.Add(nodes.WatchCh()) + + // We don't want to track an unlimited number of services, so we pull a + // top-level watch to use as a fallback. + allServices, err := tx.Get("services", "id") + if err != nil { + return 0, nil, fmt.Errorf("failed services lookup: %s", err) + } + allServicesCh := allServices.WatchCh() + + // Populate the services map + unique := make(map[string]map[string]struct{}) + for node := nodes.Next(); node != nil; node = nodes.Next() { + n := node.(*structs.Node) + if len(filters) > 1 && !structs.SatisfiesMetaFilters(n.Meta, filters) { + continue + } + + // List all the services on the node + services, err := tx.Get("services", "node", n.Node) + if err != nil { + return 0, nil, fmt.Errorf("failed querying services: %s", err) + } + ws.AddWithLimit(watchLimit, services.WatchCh(), allServicesCh) + + // Rip through the services and enumerate them and their unique set of + // tags. + for service := services.Next(); service != nil; service = services.Next() { + svc := service.(*structs.ServiceNode) + tags, ok := unique[svc.ServiceName] + if !ok { + unique[svc.ServiceName] = make(map[string]struct{}) + tags = unique[svc.ServiceName] + } + for _, tag := range svc.ServiceTags { + tags[tag] = struct{}{} + } + } + } + + // Generate the output structure. + var results = make(structs.Services) + for service, tags := range unique { + results[service] = make([]string, 0) + for tag, _ := range tags { + results[service] = append(results[service], tag) + } + } + return idx, results, nil +} + +// ServiceNodes returns the nodes associated with a given service name. +func (s *StateStore) ServiceNodes(ws memdb.WatchSet, serviceName string) (uint64, structs.ServiceNodes, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "nodes", "services") + + // List all the services. + services, err := tx.Get("services", "service", serviceName) + if err != nil { + return 0, nil, fmt.Errorf("failed service lookup: %s", err) + } + ws.Add(services.WatchCh()) + + var results structs.ServiceNodes + for service := services.Next(); service != nil; service = services.Next() { + results = append(results, service.(*structs.ServiceNode)) + } + + // Fill in the node details. + results, err = s.parseServiceNodes(tx, ws, results) + if err != nil { + return 0, nil, fmt.Errorf("failed parsing service nodes: %s", err) + } + return idx, results, nil +} + +// ServiceTagNodes returns the nodes associated with a given service, filtering +// out services that don't contain the given tag. +func (s *StateStore) ServiceTagNodes(ws memdb.WatchSet, service string, tag string) (uint64, structs.ServiceNodes, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "nodes", "services") + + // List all the services. + services, err := tx.Get("services", "service", service) + if err != nil { + return 0, nil, fmt.Errorf("failed service lookup: %s", err) + } + ws.Add(services.WatchCh()) + + // Gather all the services and apply the tag filter. + var results structs.ServiceNodes + for service := services.Next(); service != nil; service = services.Next() { + svc := service.(*structs.ServiceNode) + if !serviceTagFilter(svc, tag) { + results = append(results, svc) + } + } + + // Fill in the node details. + results, err = s.parseServiceNodes(tx, ws, results) + if err != nil { + return 0, nil, fmt.Errorf("failed parsing service nodes: %s", err) + } + return idx, results, nil +} + +// serviceTagFilter returns true (should filter) if the given service node +// doesn't contain the given tag. +func serviceTagFilter(sn *structs.ServiceNode, tag string) bool { + tag = strings.ToLower(tag) + + // Look for the lower cased version of the tag. + for _, t := range sn.ServiceTags { + if strings.ToLower(t) == tag { + return false + } + } + + // If we didn't hit the tag above then we should filter. + return true +} + +// parseServiceNodes iterates over a services query and fills in the node details, +// returning a ServiceNodes slice. +func (s *StateStore) parseServiceNodes(tx *memdb.Txn, ws memdb.WatchSet, services structs.ServiceNodes) (structs.ServiceNodes, error) { + // We don't want to track an unlimited number of nodes, so we pull a + // top-level watch to use as a fallback. + allNodes, err := tx.Get("nodes", "id") + if err != nil { + return nil, fmt.Errorf("failed nodes lookup: %s", err) + } + allNodesCh := allNodes.WatchCh() + + // Fill in the node data for each service instance. + var results structs.ServiceNodes + for _, sn := range services { + // Note that we have to clone here because we don't want to + // modify the node-related fields on the object in the database, + // which is what we are referencing. + s := sn.PartialClone() + + // Grab the corresponding node record. + watchCh, n, err := tx.FirstWatch("nodes", "id", sn.Node) + if err != nil { + return nil, fmt.Errorf("failed node lookup: %s", err) + } + ws.AddWithLimit(watchLimit, watchCh, allNodesCh) + + // Populate the node-related fields. The tagged addresses may be + // used by agents to perform address translation if they are + // configured to do that. + node := n.(*structs.Node) + s.ID = node.ID + s.Address = node.Address + s.TaggedAddresses = node.TaggedAddresses + s.NodeMeta = node.Meta + + results = append(results, s) + } + return results, nil +} + +// NodeService is used to retrieve a specific service associated with the given +// node. +func (s *StateStore) NodeService(nodeName string, serviceID string) (uint64, *structs.NodeService, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "services") + + // Query the service + service, err := tx.First("services", "id", nodeName, serviceID) + if err != nil { + return 0, nil, fmt.Errorf("failed querying service for node %q: %s", nodeName, err) + } + + if service != nil { + return idx, service.(*structs.ServiceNode).ToNodeService(), nil + } else { + return idx, nil, nil + } +} + +// NodeServices is used to query service registrations by node name or UUID. +func (s *StateStore) NodeServices(ws memdb.WatchSet, nodeNameOrID string) (uint64, *structs.NodeServices, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "nodes", "services") + + // Query the node by node name + watchCh, n, err := tx.FirstWatch("nodes", "id", nodeNameOrID) + if err != nil { + return 0, nil, fmt.Errorf("node lookup failed: %s", err) + } + + if n != nil { + ws.Add(watchCh) + } else { + if len(nodeNameOrID) < minUUIDLookupLen { + ws.Add(watchCh) + return 0, nil, nil + } + + // Attempt to lookup the node by its node ID + iter, err := tx.Get("nodes", "uuid_prefix", resizeNodeLookupKey(nodeNameOrID)) + if err != nil { + ws.Add(watchCh) + // TODO(sean@): We could/should log an error re: the uuid_prefix lookup + // failing once a logger has been introduced to the catalog. + return 0, nil, nil + } + + n = iter.Next() + if n == nil { + // No nodes matched, even with the Node ID: add a watch on the node name. + ws.Add(watchCh) + return 0, nil, nil + } + + idWatchCh := iter.WatchCh() + if iter.Next() != nil { + // More than one match present: Watch on the node name channel and return + // an empty result (node lookups can not be ambiguous). + ws.Add(watchCh) + return 0, nil, nil + } + + ws.Add(idWatchCh) + } + + node := n.(*structs.Node) + nodeName := node.Node + + // Read all of the services + services, err := tx.Get("services", "node", nodeName) + if err != nil { + return 0, nil, fmt.Errorf("failed querying services for node %q: %s", nodeName, err) + } + ws.Add(services.WatchCh()) + + // Initialize the node services struct + ns := &structs.NodeServices{ + Node: node, + Services: make(map[string]*structs.NodeService), + } + + // Add all of the services to the map. + for service := services.Next(); service != nil; service = services.Next() { + svc := service.(*structs.ServiceNode).ToNodeService() + ns.Services[svc.ID] = svc + } + + return idx, ns, nil +} + +// DeleteService is used to delete a given service associated with a node. +func (s *StateStore) DeleteService(idx uint64, nodeName, serviceID string) error { + tx := s.db.Txn(true) + defer tx.Abort() + + // Call the service deletion + if err := s.deleteServiceTxn(tx, idx, nodeName, serviceID); err != nil { + return err + } + + tx.Commit() + return nil +} + +// deleteServiceTxn is the inner method called to remove a service +// registration within an existing transaction. +func (s *StateStore) deleteServiceTxn(tx *memdb.Txn, idx uint64, nodeName, serviceID string) error { + // Look up the service. + service, err := tx.First("services", "id", nodeName, serviceID) + if err != nil { + return fmt.Errorf("failed service lookup: %s", err) + } + if service == nil { + return nil + } + + // Delete any checks associated with the service. This will invalidate + // sessions as necessary. + checks, err := tx.Get("checks", "node_service", nodeName, serviceID) + if err != nil { + return fmt.Errorf("failed service check lookup: %s", err) + } + var cids []types.CheckID + for check := checks.Next(); check != nil; check = checks.Next() { + cids = append(cids, check.(*structs.HealthCheck).CheckID) + } + + // Do the delete in a separate loop so we don't trash the iterator. + for _, cid := range cids { + if err := s.deleteCheckTxn(tx, idx, nodeName, cid); err != nil { + return err + } + } + + // Update the index. + if err := tx.Insert("index", &IndexEntry{"checks", idx}); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + // Delete the service and update the index + if err := tx.Delete("services", service); err != nil { + return fmt.Errorf("failed deleting service: %s", err) + } + if err := tx.Insert("index", &IndexEntry{"services", idx}); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + return nil +} + +// EnsureCheck is used to store a check registration in the db. +func (s *StateStore) EnsureCheck(idx uint64, hc *structs.HealthCheck) error { + tx := s.db.Txn(true) + defer tx.Abort() + + // Call the check registration + if err := s.ensureCheckTxn(tx, idx, hc); err != nil { + return err + } + + tx.Commit() + return nil +} + +// ensureCheckTransaction is used as the inner method to handle inserting +// a health check into the state store. It ensures safety against inserting +// checks with no matching node or service. +func (s *StateStore) ensureCheckTxn(tx *memdb.Txn, idx uint64, hc *structs.HealthCheck) error { + // Check if we have an existing health check + existing, err := tx.First("checks", "id", hc.Node, string(hc.CheckID)) + if err != nil { + return fmt.Errorf("failed health check lookup: %s", err) + } + + // Set the indexes + if existing != nil { + hc.CreateIndex = existing.(*structs.HealthCheck).CreateIndex + hc.ModifyIndex = idx + } else { + hc.CreateIndex = idx + hc.ModifyIndex = idx + } + + // Use the default check status if none was provided + if hc.Status == "" { + hc.Status = structs.HealthCritical + } + + // Get the node + node, err := tx.First("nodes", "id", hc.Node) + if err != nil { + return fmt.Errorf("failed node lookup: %s", err) + } + if node == nil { + return ErrMissingNode + } + + // If the check is associated with a service, check that we have + // a registration for the service. + if hc.ServiceID != "" { + service, err := tx.First("services", "id", hc.Node, hc.ServiceID) + if err != nil { + return fmt.Errorf("failed service lookup: %s", err) + } + if service == nil { + return ErrMissingService + } + + // Copy in the service name + hc.ServiceName = service.(*structs.ServiceNode).ServiceName + } + + // Delete any sessions for this check if the health is critical. + if hc.Status == structs.HealthCritical { + mappings, err := tx.Get("session_checks", "node_check", hc.Node, string(hc.CheckID)) + if err != nil { + return fmt.Errorf("failed session checks lookup: %s", err) + } + + var ids []string + for mapping := mappings.Next(); mapping != nil; mapping = mappings.Next() { + ids = append(ids, mapping.(*sessionCheck).Session) + } + + // Delete the session in a separate loop so we don't trash the + // iterator. + for _, id := range ids { + if err := s.deleteSessionTxn(tx, idx, id); err != nil { + return fmt.Errorf("failed deleting session: %s", err) + } + } + } + + // Persist the check registration in the db. + if err := tx.Insert("checks", hc); err != nil { + return fmt.Errorf("failed inserting check: %s", err) + } + if err := tx.Insert("index", &IndexEntry{"checks", idx}); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + return nil +} + +// NodeCheck is used to retrieve a specific check associated with the given +// node. +func (s *StateStore) NodeCheck(nodeName string, checkID types.CheckID) (uint64, *structs.HealthCheck, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "checks") + + // Return the check. + check, err := tx.First("checks", "id", nodeName, string(checkID)) + if err != nil { + return 0, nil, fmt.Errorf("failed check lookup: %s", err) + } + + if check != nil { + return idx, check.(*structs.HealthCheck), nil + } else { + return idx, nil, nil + } +} + +// NodeChecks is used to retrieve checks associated with the +// given node from the state store. +func (s *StateStore) NodeChecks(ws memdb.WatchSet, nodeName string) (uint64, structs.HealthChecks, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "checks") + + // Return the checks. + iter, err := tx.Get("checks", "node", nodeName) + if err != nil { + return 0, nil, fmt.Errorf("failed check lookup: %s", err) + } + ws.Add(iter.WatchCh()) + + var results structs.HealthChecks + for check := iter.Next(); check != nil; check = iter.Next() { + results = append(results, check.(*structs.HealthCheck)) + } + return idx, results, nil +} + +// ServiceChecks is used to get all checks associated with a +// given service ID. The query is performed against a service +// _name_ instead of a service ID. +func (s *StateStore) ServiceChecks(ws memdb.WatchSet, serviceName string) (uint64, structs.HealthChecks, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "checks") + + // Return the checks. + iter, err := tx.Get("checks", "service", serviceName) + if err != nil { + return 0, nil, fmt.Errorf("failed check lookup: %s", err) + } + ws.Add(iter.WatchCh()) + + var results structs.HealthChecks + for check := iter.Next(); check != nil; check = iter.Next() { + results = append(results, check.(*structs.HealthCheck)) + } + return idx, results, nil +} + +// ServiceChecksByNodeMeta is used to get all checks associated with a +// given service ID, filtered by the given node metadata values. The query +// is performed against a service _name_ instead of a service ID. +func (s *StateStore) ServiceChecksByNodeMeta(ws memdb.WatchSet, serviceName string, + filters map[string]string) (uint64, structs.HealthChecks, error) { + + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "nodes", "checks") + + // Return the checks. + iter, err := tx.Get("checks", "service", serviceName) + if err != nil { + return 0, nil, fmt.Errorf("failed check lookup: %s", err) + } + ws.Add(iter.WatchCh()) + + return s.parseChecksByNodeMeta(tx, ws, idx, iter, filters) +} + +// ChecksInState is used to query the state store for all checks +// which are in the provided state. +func (s *StateStore) ChecksInState(ws memdb.WatchSet, state string) (uint64, structs.HealthChecks, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "checks") + + // Query all checks if HealthAny is passed, otherwise use the index. + var iter memdb.ResultIterator + var err error + if state == structs.HealthAny { + iter, err = tx.Get("checks", "status") + if err != nil { + return 0, nil, fmt.Errorf("failed check lookup: %s", err) + } + } else { + iter, err = tx.Get("checks", "status", state) + if err != nil { + return 0, nil, fmt.Errorf("failed check lookup: %s", err) + } + } + ws.Add(iter.WatchCh()) + + var results structs.HealthChecks + for check := iter.Next(); check != nil; check = iter.Next() { + results = append(results, check.(*structs.HealthCheck)) + } + return idx, results, nil +} + +// ChecksInStateByNodeMeta is used to query the state store for all checks +// which are in the provided state, filtered by the given node metadata values. +func (s *StateStore) ChecksInStateByNodeMeta(ws memdb.WatchSet, state string, filters map[string]string) (uint64, structs.HealthChecks, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "nodes", "checks") + + // Query all checks if HealthAny is passed, otherwise use the index. + var iter memdb.ResultIterator + var err error + if state == structs.HealthAny { + iter, err = tx.Get("checks", "status") + if err != nil { + return 0, nil, fmt.Errorf("failed check lookup: %s", err) + } + } else { + iter, err = tx.Get("checks", "status", state) + if err != nil { + return 0, nil, fmt.Errorf("failed check lookup: %s", err) + } + } + ws.Add(iter.WatchCh()) + + return s.parseChecksByNodeMeta(tx, ws, idx, iter, filters) +} + +// parseChecksByNodeMeta is a helper function used to deduplicate some +// repetitive code for returning health checks filtered by node metadata fields. +func (s *StateStore) parseChecksByNodeMeta(tx *memdb.Txn, ws memdb.WatchSet, + idx uint64, iter memdb.ResultIterator, filters map[string]string) (uint64, structs.HealthChecks, error) { + + // We don't want to track an unlimited number of nodes, so we pull a + // top-level watch to use as a fallback. + allNodes, err := tx.Get("nodes", "id") + if err != nil { + return 0, nil, fmt.Errorf("failed nodes lookup: %s", err) + } + allNodesCh := allNodes.WatchCh() + + // Only take results for nodes that satisfy the node metadata filters. + var results structs.HealthChecks + for check := iter.Next(); check != nil; check = iter.Next() { + healthCheck := check.(*structs.HealthCheck) + watchCh, node, err := tx.FirstWatch("nodes", "id", healthCheck.Node) + if err != nil { + return 0, nil, fmt.Errorf("failed node lookup: %s", err) + } + if node == nil { + return 0, nil, ErrMissingNode + } + + // Add even the filtered nodes so we wake up if the node metadata + // changes. + ws.AddWithLimit(watchLimit, watchCh, allNodesCh) + if structs.SatisfiesMetaFilters(node.(*structs.Node).Meta, filters) { + results = append(results, healthCheck) + } + } + return idx, results, nil +} + +// DeleteCheck is used to delete a health check registration. +func (s *StateStore) DeleteCheck(idx uint64, node string, checkID types.CheckID) error { + tx := s.db.Txn(true) + defer tx.Abort() + + // Call the check deletion + if err := s.deleteCheckTxn(tx, idx, node, checkID); err != nil { + return err + } + + tx.Commit() + return nil +} + +// deleteCheckTxn is the inner method used to call a health +// check deletion within an existing transaction. +func (s *StateStore) deleteCheckTxn(tx *memdb.Txn, idx uint64, node string, checkID types.CheckID) error { + // Try to retrieve the existing health check. + hc, err := tx.First("checks", "id", node, string(checkID)) + if err != nil { + return fmt.Errorf("check lookup failed: %s", err) + } + if hc == nil { + return nil + } + + // Delete the check from the DB and update the index. + if err := tx.Delete("checks", hc); err != nil { + return fmt.Errorf("failed removing check: %s", err) + } + if err := tx.Insert("index", &IndexEntry{"checks", idx}); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + // Delete any sessions for this check. + mappings, err := tx.Get("session_checks", "node_check", node, string(checkID)) + if err != nil { + return fmt.Errorf("failed session checks lookup: %s", err) + } + var ids []string + for mapping := mappings.Next(); mapping != nil; mapping = mappings.Next() { + ids = append(ids, mapping.(*sessionCheck).Session) + } + + // Do the delete in a separate loop so we don't trash the iterator. + for _, id := range ids { + if err := s.deleteSessionTxn(tx, idx, id); err != nil { + return fmt.Errorf("failed deleting session: %s", err) + } + } + + return nil +} + +// CheckServiceNodes is used to query all nodes and checks for a given service. +func (s *StateStore) CheckServiceNodes(ws memdb.WatchSet, serviceName string) (uint64, structs.CheckServiceNodes, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "nodes", "services", "checks") + + // Query the state store for the service. + iter, err := tx.Get("services", "service", serviceName) + if err != nil { + return 0, nil, fmt.Errorf("failed service lookup: %s", err) + } + ws.Add(iter.WatchCh()) + + // Return the results. + var results structs.ServiceNodes + for service := iter.Next(); service != nil; service = iter.Next() { + results = append(results, service.(*structs.ServiceNode)) + } + return s.parseCheckServiceNodes(tx, ws, idx, serviceName, results, err) +} + +// CheckServiceTagNodes is used to query all nodes and checks for a given +// service, filtering out services that don't contain the given tag. +func (s *StateStore) CheckServiceTagNodes(ws memdb.WatchSet, serviceName, tag string) (uint64, structs.CheckServiceNodes, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "nodes", "services", "checks") + + // Query the state store for the service. + iter, err := tx.Get("services", "service", serviceName) + if err != nil { + return 0, nil, fmt.Errorf("failed service lookup: %s", err) + } + ws.Add(iter.WatchCh()) + + // Return the results, filtering by tag. + var results structs.ServiceNodes + for service := iter.Next(); service != nil; service = iter.Next() { + svc := service.(*structs.ServiceNode) + if !serviceTagFilter(svc, tag) { + results = append(results, svc) + } + } + return s.parseCheckServiceNodes(tx, ws, idx, serviceName, results, err) +} + +// parseCheckServiceNodes is used to parse through a given set of services, +// and query for an associated node and a set of checks. This is the inner +// method used to return a rich set of results from a more simple query. +func (s *StateStore) parseCheckServiceNodes( + tx *memdb.Txn, ws memdb.WatchSet, idx uint64, + serviceName string, services structs.ServiceNodes, + err error) (uint64, structs.CheckServiceNodes, error) { + if err != nil { + return 0, nil, err + } + + // Special-case the zero return value to nil, since this ends up in + // external APIs. + if len(services) == 0 { + return idx, nil, nil + } + + // We don't want to track an unlimited number of nodes, so we pull a + // top-level watch to use as a fallback. + allNodes, err := tx.Get("nodes", "id") + if err != nil { + return 0, nil, fmt.Errorf("failed nodes lookup: %s", err) + } + allNodesCh := allNodes.WatchCh() + + // We need a similar fallback for checks. Since services need the + // status of node + service-specific checks, we pull in a top-level + // watch over all checks. + allChecks, err := tx.Get("checks", "id") + if err != nil { + return 0, nil, fmt.Errorf("failed checks lookup: %s", err) + } + allChecksCh := allChecks.WatchCh() + + results := make(structs.CheckServiceNodes, 0, len(services)) + for _, sn := range services { + // Retrieve the node. + watchCh, n, err := tx.FirstWatch("nodes", "id", sn.Node) + if err != nil { + return 0, nil, fmt.Errorf("failed node lookup: %s", err) + } + ws.AddWithLimit(watchLimit, watchCh, allNodesCh) + + if n == nil { + return 0, nil, ErrMissingNode + } + node := n.(*structs.Node) + + // First add the node-level checks. These always apply to any + // service on the node. + var checks structs.HealthChecks + iter, err := tx.Get("checks", "node_service_check", sn.Node, false) + if err != nil { + return 0, nil, err + } + ws.AddWithLimit(watchLimit, iter.WatchCh(), allChecksCh) + for check := iter.Next(); check != nil; check = iter.Next() { + checks = append(checks, check.(*structs.HealthCheck)) + } + + // Now add the service-specific checks. + iter, err = tx.Get("checks", "node_service", sn.Node, sn.ServiceID) + if err != nil { + return 0, nil, err + } + ws.AddWithLimit(watchLimit, iter.WatchCh(), allChecksCh) + for check := iter.Next(); check != nil; check = iter.Next() { + checks = append(checks, check.(*structs.HealthCheck)) + } + + // Append to the results. + results = append(results, structs.CheckServiceNode{ + Node: node, + Service: sn.ToNodeService(), + Checks: checks, + }) + } + + return idx, results, nil +} + +// NodeInfo is used to generate a dump of a single node. The dump includes +// all services and checks which are registered against the node. +func (s *StateStore) NodeInfo(ws memdb.WatchSet, node string) (uint64, structs.NodeDump, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "nodes", "services", "checks") + + // Query the node by the passed node + nodes, err := tx.Get("nodes", "id", node) + if err != nil { + return 0, nil, fmt.Errorf("failed node lookup: %s", err) + } + ws.Add(nodes.WatchCh()) + return s.parseNodes(tx, ws, idx, nodes) +} + +// NodeDump is used to generate a dump of all nodes. This call is expensive +// as it has to query every node, service, and check. The response can also +// be quite large since there is currently no filtering applied. +func (s *StateStore) NodeDump(ws memdb.WatchSet) (uint64, structs.NodeDump, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "nodes", "services", "checks") + + // Fetch all of the registered nodes + nodes, err := tx.Get("nodes", "id") + if err != nil { + return 0, nil, fmt.Errorf("failed node lookup: %s", err) + } + ws.Add(nodes.WatchCh()) + return s.parseNodes(tx, ws, idx, nodes) +} + +// parseNodes takes an iterator over a set of nodes and returns a struct +// containing the nodes along with all of their associated services +// and/or health checks. +func (s *StateStore) parseNodes(tx *memdb.Txn, ws memdb.WatchSet, idx uint64, + iter memdb.ResultIterator) (uint64, structs.NodeDump, error) { + + // We don't want to track an unlimited number of services, so we pull a + // top-level watch to use as a fallback. + allServices, err := tx.Get("services", "id") + if err != nil { + return 0, nil, fmt.Errorf("failed services lookup: %s", err) + } + allServicesCh := allServices.WatchCh() + + // We need a similar fallback for checks. + allChecks, err := tx.Get("checks", "id") + if err != nil { + return 0, nil, fmt.Errorf("failed checks lookup: %s", err) + } + allChecksCh := allChecks.WatchCh() + + var results structs.NodeDump + for n := iter.Next(); n != nil; n = iter.Next() { + node := n.(*structs.Node) + + // Create the wrapped node + dump := &structs.NodeInfo{ + ID: node.ID, + Node: node.Node, + Address: node.Address, + TaggedAddresses: node.TaggedAddresses, + Meta: node.Meta, + } + + // Query the node services + services, err := tx.Get("services", "node", node.Node) + if err != nil { + return 0, nil, fmt.Errorf("failed services lookup: %s", err) + } + ws.AddWithLimit(watchLimit, services.WatchCh(), allServicesCh) + for service := services.Next(); service != nil; service = services.Next() { + ns := service.(*structs.ServiceNode).ToNodeService() + dump.Services = append(dump.Services, ns) + } + + // Query the node checks + checks, err := tx.Get("checks", "node", node.Node) + if err != nil { + return 0, nil, fmt.Errorf("failed node lookup: %s", err) + } + ws.AddWithLimit(watchLimit, checks.WatchCh(), allChecksCh) + for check := checks.Next(); check != nil; check = checks.Next() { + hc := check.(*structs.HealthCheck) + dump.Checks = append(dump.Checks, hc) + } + + // Add the result to the slice + results = append(results, dump) + } + return idx, results, nil +} diff --git a/consul/state/catalog_test.go b/consul/state/catalog_test.go new file mode 100644 index 0000000000..88dcff5a8f --- /dev/null +++ b/consul/state/catalog_test.go @@ -0,0 +1,2595 @@ +package state + +import ( + "fmt" + "reflect" + "sort" + "testing" + + "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/consul/lib" + "github.com/hashicorp/consul/types" + "github.com/hashicorp/go-memdb" + uuid "github.com/hashicorp/go-uuid" +) + +func makeRandomNodeID(t *testing.T) types.NodeID { + id, err := uuid.GenerateUUID() + if err != nil { + t.Fatalf("err: %v", err) + } + return types.NodeID(id) +} + +func TestStateStore_EnsureRegistration(t *testing.T) { + s := testStateStore(t) + + // Start with just a node. + req := &structs.RegisterRequest{ + ID: makeRandomNodeID(t), + Node: "node1", + Address: "1.2.3.4", + TaggedAddresses: map[string]string{ + "hello": "world", + }, + NodeMeta: map[string]string{ + "somekey": "somevalue", + }, + } + nodeID := req.ID + if err := s.EnsureRegistration(1, req); err != nil { + t.Fatalf("err: %s", err) + } + + // Retrieve the node and verify its contents. + verifyNode := func() { + _, out, err := s.GetNode("node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if out.ID != nodeID || + out.Node != "node1" || out.Address != "1.2.3.4" || + len(out.TaggedAddresses) != 1 || + out.TaggedAddresses["hello"] != "world" || + out.Meta["somekey"] != "somevalue" || + out.CreateIndex != 1 || out.ModifyIndex != 1 { + t.Fatalf("bad node returned: %#v", out) + } + _, out2, err := s.GetNodeID(nodeID) + if err != nil { + t.Fatalf("err: %s", err) + } + if !reflect.DeepEqual(out, out2) { + t.Fatalf("bad node returned: %#v -- %#v", out, out2) + } + } + verifyNode() + + // Add in a service definition. + req.Service = &structs.NodeService{ + ID: "redis1", + Service: "redis", + Address: "1.1.1.1", + Port: 8080, + } + if err := s.EnsureRegistration(2, req); err != nil { + t.Fatalf("err: %s", err) + } + + // Verify that the service got registered. + verifyService := func() { + idx, out, err := s.NodeServices(nil, "node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 2 { + t.Fatalf("bad index: %d", idx) + } + if len(out.Services) != 1 { + t.Fatalf("bad: %#v", out.Services) + } + r := out.Services["redis1"] + if r == nil || r.ID != "redis1" || r.Service != "redis" || + r.Address != "1.1.1.1" || r.Port != 8080 || + r.CreateIndex != 2 || r.ModifyIndex != 2 { + t.Fatalf("bad service returned: %#v", r) + } + + idx, r, err = s.NodeService("node1", "redis1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 2 { + t.Fatalf("bad index: %d", idx) + } + if r == nil || r.ID != "redis1" || r.Service != "redis" || + r.Address != "1.1.1.1" || r.Port != 8080 || + r.CreateIndex != 2 || r.ModifyIndex != 2 { + t.Fatalf("bad service returned: %#v", r) + } + } + verifyNode() + verifyService() + + // Add in a top-level check. + req.Check = &structs.HealthCheck{ + Node: "node1", + CheckID: "check1", + Name: "check", + } + if err := s.EnsureRegistration(3, req); err != nil { + t.Fatalf("err: %s", err) + } + + // Verify that the check got registered. + verifyCheck := func() { + idx, out, err := s.NodeChecks(nil, "node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 3 { + t.Fatalf("bad index: %d", idx) + } + if len(out) != 1 { + t.Fatalf("bad: %#v", out) + } + c := out[0] + if c.Node != "node1" || c.CheckID != "check1" || c.Name != "check" || + c.CreateIndex != 3 || c.ModifyIndex != 3 { + t.Fatalf("bad check returned: %#v", c) + } + + idx, c, err = s.NodeCheck("node1", "check1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 3 { + t.Fatalf("bad index: %d", idx) + } + if c.Node != "node1" || c.CheckID != "check1" || c.Name != "check" || + c.CreateIndex != 3 || c.ModifyIndex != 3 { + t.Fatalf("bad check returned: %#v", c) + } + } + verifyNode() + verifyService() + verifyCheck() + + // Add in another check via the slice. + req.Checks = structs.HealthChecks{ + &structs.HealthCheck{ + Node: "node1", + CheckID: "check2", + Name: "check", + }, + } + if err := s.EnsureRegistration(4, req); err != nil { + t.Fatalf("err: %s", err) + } + + // Verify that the additional check got registered. + verifyNode() + verifyService() + { + idx, out, err := s.NodeChecks(nil, "node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 4 { + t.Fatalf("bad index: %d", idx) + } + if len(out) != 2 { + t.Fatalf("bad: %#v", out) + } + c1 := out[0] + if c1.Node != "node1" || c1.CheckID != "check1" || c1.Name != "check" || + c1.CreateIndex != 3 || c1.ModifyIndex != 4 { + t.Fatalf("bad check returned: %#v", c1) + } + + c2 := out[1] + if c2.Node != "node1" || c2.CheckID != "check2" || c2.Name != "check" || + c2.CreateIndex != 4 || c2.ModifyIndex != 4 { + t.Fatalf("bad check returned: %#v", c2) + } + } +} + +func TestStateStore_EnsureRegistration_Restore(t *testing.T) { + s := testStateStore(t) + + // Start with just a node. + req := &structs.RegisterRequest{ + ID: makeRandomNodeID(t), + Node: "node1", + Address: "1.2.3.4", + } + nodeID := string(req.ID) + nodeName := string(req.Node) + restore := s.Restore() + if err := restore.Registration(1, req); err != nil { + t.Fatalf("err: %s", err) + } + restore.Commit() + + // Retrieve the node and verify its contents. + verifyNode := func(nodeLookup string) { + _, out, err := s.GetNode(nodeLookup) + if err != nil { + t.Fatalf("err: %s", err) + } + if out == nil { + _, out, err = s.GetNodeID(types.NodeID(nodeLookup)) + if err != nil { + t.Fatalf("err: %s", err) + } + } + + if out == nil || out.Address != "1.2.3.4" || + !(out.Node == nodeLookup || string(out.ID) == nodeLookup) || + out.CreateIndex != 1 || out.ModifyIndex != 1 { + t.Fatalf("bad node returned: %#v", out) + } + } + verifyNode(nodeID) + verifyNode(nodeName) + + // Add in a service definition. + req.Service = &structs.NodeService{ + ID: "redis1", + Service: "redis", + Address: "1.1.1.1", + Port: 8080, + } + restore = s.Restore() + if err := restore.Registration(2, req); err != nil { + t.Fatalf("err: %s", err) + } + restore.Commit() + + // Verify that the service got registered. + verifyService := func(nodeLookup string) { + idx, out, err := s.NodeServices(nil, nodeLookup) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 2 { + t.Fatalf("bad index: %d", idx) + } + if len(out.Services) != 1 { + t.Fatalf("bad: %#v", out.Services) + } + s := out.Services["redis1"] + if s.ID != "redis1" || s.Service != "redis" || + s.Address != "1.1.1.1" || s.Port != 8080 || + s.CreateIndex != 2 || s.ModifyIndex != 2 { + t.Fatalf("bad service returned: %#v", s) + } + } + + // Add in a top-level check. + req.Check = &structs.HealthCheck{ + Node: nodeName, + CheckID: "check1", + Name: "check", + } + restore = s.Restore() + if err := restore.Registration(3, req); err != nil { + t.Fatalf("err: %s", err) + } + restore.Commit() + + // Verify that the check got registered. + verifyCheck := func() { + idx, out, err := s.NodeChecks(nil, nodeName) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 3 { + t.Fatalf("bad index: %d", idx) + } + if len(out) != 1 { + t.Fatalf("bad: %#v", out) + } + c := out[0] + if c.Node != nodeName || c.CheckID != "check1" || c.Name != "check" || + c.CreateIndex != 3 || c.ModifyIndex != 3 { + t.Fatalf("bad check returned: %#v", c) + } + } + verifyNode(nodeID) + verifyNode(nodeName) + verifyService(nodeID) + verifyService(nodeName) + verifyCheck() + + // Add in another check via the slice. + req.Checks = structs.HealthChecks{ + &structs.HealthCheck{ + Node: nodeName, + CheckID: "check2", + Name: "check", + }, + } + restore = s.Restore() + if err := restore.Registration(4, req); err != nil { + t.Fatalf("err: %s", err) + } + restore.Commit() + + // Verify that the additional check got registered. + verifyNode(nodeID) + verifyNode(nodeName) + verifyService(nodeID) + verifyService(nodeName) + func() { + idx, out, err := s.NodeChecks(nil, nodeName) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 4 { + t.Fatalf("bad index: %d", idx) + } + if len(out) != 2 { + t.Fatalf("bad: %#v", out) + } + c1 := out[0] + if c1.Node != nodeName || c1.CheckID != "check1" || c1.Name != "check" || + c1.CreateIndex != 3 || c1.ModifyIndex != 4 { + t.Fatalf("bad check returned: %#v", c1) + } + + c2 := out[1] + if c2.Node != nodeName || c2.CheckID != "check2" || c2.Name != "check" || + c2.CreateIndex != 4 || c2.ModifyIndex != 4 { + t.Fatalf("bad check returned: %#v", c2) + } + }() +} + +func TestStateStore_EnsureNode(t *testing.T) { + s := testStateStore(t) + + // Fetching a non-existent node returns nil + if _, node, err := s.GetNode("node1"); node != nil || err != nil { + t.Fatalf("expected (nil, nil), got: (%#v, %#v)", node, err) + } + + // Create a node registration request + in := &structs.Node{ + Node: "node1", + Address: "1.1.1.1", + } + + // Ensure the node is registered in the db + if err := s.EnsureNode(1, in); err != nil { + t.Fatalf("err: %s", err) + } + + // Retrieve the node again + idx, out, err := s.GetNode("node1") + if err != nil { + t.Fatalf("err: %s", err) + } + + // Correct node was returned + if out.Node != "node1" || out.Address != "1.1.1.1" { + t.Fatalf("bad node returned: %#v", out) + } + + // Indexes are set properly + if out.CreateIndex != 1 || out.ModifyIndex != 1 { + t.Fatalf("bad node index: %#v", out) + } + if idx != 1 { + t.Fatalf("bad index: %d", idx) + } + + // Update the node registration + in.Address = "1.1.1.2" + if err := s.EnsureNode(2, in); err != nil { + t.Fatalf("err: %s", err) + } + + // Retrieve the node + idx, out, err = s.GetNode("node1") + if err != nil { + t.Fatalf("err: %s", err) + } + + // Node and indexes were updated + if out.CreateIndex != 1 || out.ModifyIndex != 2 || out.Address != "1.1.1.2" { + t.Fatalf("bad: %#v", out) + } + if idx != 2 { + t.Fatalf("bad index: %d", idx) + } + + // Node upsert preserves the create index + if err := s.EnsureNode(3, in); err != nil { + t.Fatalf("err: %s", err) + } + idx, out, err = s.GetNode("node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if out.CreateIndex != 1 || out.ModifyIndex != 3 || out.Address != "1.1.1.2" { + t.Fatalf("node was modified: %#v", out) + } + if idx != 3 { + t.Fatalf("bad index: %d", idx) + } +} + +func TestStateStore_GetNodes(t *testing.T) { + s := testStateStore(t) + + // Listing with no results returns nil. + ws := memdb.NewWatchSet() + idx, res, err := s.Nodes(ws) + if idx != 0 || res != nil || err != nil { + t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) + } + + // Create some nodes in the state store. + testRegisterNode(t, s, 0, "node0") + testRegisterNode(t, s, 1, "node1") + testRegisterNode(t, s, 2, "node2") + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Retrieve the nodes. + ws = memdb.NewWatchSet() + idx, nodes, err := s.Nodes(ws) + if err != nil { + t.Fatalf("err: %s", err) + } + + // Highest index was returned. + if idx != 2 { + t.Fatalf("bad index: %d", idx) + } + + // All nodes were returned. + if n := len(nodes); n != 3 { + t.Fatalf("bad node count: %d", n) + } + + // Make sure the nodes match. + for i, node := range nodes { + if node.CreateIndex != uint64(i) || node.ModifyIndex != uint64(i) { + t.Fatalf("bad node index: %d, %d", node.CreateIndex, node.ModifyIndex) + } + name := fmt.Sprintf("node%d", i) + if node.Node != name { + t.Fatalf("bad: %#v", node) + } + } + + // Make sure a node delete fires the watch. + if watchFired(ws) { + t.Fatalf("bad") + } + if err := s.DeleteNode(3, "node1"); err != nil { + t.Fatalf("err: %s", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } +} + +func BenchmarkGetNodes(b *testing.B) { + s, err := NewStateStore(nil) + if err != nil { + b.Fatalf("err: %s", err) + } + + if err := s.EnsureNode(100, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { + b.Fatalf("err: %v", err) + } + if err := s.EnsureNode(101, &structs.Node{Node: "bar", Address: "127.0.0.2"}); err != nil { + b.Fatalf("err: %v", err) + } + + ws := memdb.NewWatchSet() + for i := 0; i < b.N; i++ { + s.Nodes(ws) + } +} + +func TestStateStore_GetNodesByMeta(t *testing.T) { + s := testStateStore(t) + + // Listing with no results returns nil + ws := memdb.NewWatchSet() + idx, res, err := s.NodesByMeta(ws, map[string]string{"somekey": "somevalue"}) + if idx != 0 || res != nil || err != nil { + t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) + } + + // Create some nodes in the state store. + testRegisterNodeWithMeta(t, s, 0, "node0", map[string]string{"role": "client"}) + testRegisterNodeWithMeta(t, s, 1, "node1", map[string]string{"role": "client", "common": "1"}) + testRegisterNodeWithMeta(t, s, 2, "node2", map[string]string{"role": "server", "common": "1"}) + if !watchFired(ws) { + t.Fatalf("bad") + } + + cases := []struct { + filters map[string]string + nodes []string + }{ + // Simple meta filter + { + filters: map[string]string{"role": "server"}, + nodes: []string{"node2"}, + }, + // Common meta filter + { + filters: map[string]string{"common": "1"}, + nodes: []string{"node1", "node2"}, + }, + // Invalid meta filter + { + filters: map[string]string{"invalid": "nope"}, + nodes: []string{}, + }, + // Multiple meta filters + { + filters: map[string]string{"role": "client", "common": "1"}, + nodes: []string{"node1"}, + }, + } + + for _, tc := range cases { + _, result, err := s.NodesByMeta(nil, tc.filters) + if err != nil { + t.Fatalf("bad: %v", err) + } + + if len(result) != len(tc.nodes) { + t.Fatalf("bad: %v %v", result, tc.nodes) + } + + for i, node := range result { + if node.Node != tc.nodes[i] { + t.Fatalf("bad: %v %v", node.Node, tc.nodes[i]) + } + } + } + + // Set up a watch. + ws = memdb.NewWatchSet() + _, _, err = s.NodesByMeta(ws, map[string]string{"role": "client"}) + if err != nil { + t.Fatalf("err: %v", err) + } + + // Make an unrelated modification and make sure the watch doesn't fire. + testRegisterNodeWithMeta(t, s, 3, "node3", map[string]string{"foo": "bar"}) + if watchFired(ws) { + t.Fatalf("bad") + } + + // Change a watched key and make sure it fires. + testRegisterNodeWithMeta(t, s, 4, "node0", map[string]string{"role": "different"}) + if !watchFired(ws) { + t.Fatalf("bad") + } +} + +func TestStateStore_NodeServices(t *testing.T) { + s := testStateStore(t) + + // Register some nodes with similar IDs. + { + req := &structs.RegisterRequest{ + ID: types.NodeID("40e4a748-2192-161a-0510-aaaaaaaaaaaa"), + Node: "node1", + Address: "1.2.3.4", + } + if err := s.EnsureRegistration(1, req); err != nil { + t.Fatalf("err: %s", err) + } + } + { + req := &structs.RegisterRequest{ + ID: types.NodeID("40e4a748-2192-161a-0510-bbbbbbbbbbbb"), + Node: "node2", + Address: "5.6.7.8", + } + if err := s.EnsureRegistration(2, req); err != nil { + t.Fatalf("err: %s", err) + } + } + + // Look up by name. + { + _, ns, err := s.NodeServices(nil, "node1") + if err != nil { + t.Fatalf("err: %v", err) + } + if ns == nil || ns.Node.Node != "node1" { + t.Fatalf("bad: %#v", *ns) + } + } + { + _, ns, err := s.NodeServices(nil, "node2") + if err != nil { + t.Fatalf("err: %v", err) + } + if ns == nil || ns.Node.Node != "node2" { + t.Fatalf("bad: %#v", *ns) + } + } + + // Look up by UUID. + { + _, ns, err := s.NodeServices(nil, "40e4a748-2192-161a-0510-aaaaaaaaaaaa") + if err != nil { + t.Fatalf("err: %v", err) + } + if ns == nil || ns.Node.Node != "node1" { + t.Fatalf("bad: %#v", ns) + } + } + { + _, ns, err := s.NodeServices(nil, "40e4a748-2192-161a-0510-bbbbbbbbbbbb") + if err != nil { + t.Fatalf("err: %v", err) + } + if ns == nil || ns.Node.Node != "node2" { + t.Fatalf("bad: %#v", ns) + } + } + + // Ambiguous prefix. + { + _, ns, err := s.NodeServices(nil, "40e4a748-2192-161a-0510") + if err != nil { + t.Fatalf("err: %v", err) + } + if ns != nil { + t.Fatalf("bad: %#v", ns) + } + } + + // Bad node, and not a UUID (should not get a UUID error). + { + _, ns, err := s.NodeServices(nil, "nope") + if err != nil { + t.Fatalf("err: %v", err) + } + if ns != nil { + t.Fatalf("bad: %#v", ns) + } + } + + // Specific prefix. + { + _, ns, err := s.NodeServices(nil, "40e4a748-2192-161a-0510-bb") + if err != nil { + t.Fatalf("err: %v", err) + } + if ns == nil || ns.Node.Node != "node2" { + t.Fatalf("bad: %#v", ns) + } + } +} + +func TestStateStore_DeleteNode(t *testing.T) { + s := testStateStore(t) + + // Create a node and register a service and health check with it. + testRegisterNode(t, s, 0, "node1") + testRegisterService(t, s, 1, "node1", "service1") + testRegisterCheck(t, s, 2, "node1", "", "check1", structs.HealthPassing) + + // Delete the node + if err := s.DeleteNode(3, "node1"); err != nil { + t.Fatalf("err: %s", err) + } + + // The node was removed + if idx, n, err := s.GetNode("node1"); err != nil || n != nil || idx != 3 { + t.Fatalf("bad: %#v %d (err: %#v)", n, idx, err) + } + + // Associated service was removed. Need to query this directly out of + // the DB to make sure it is actually gone. + tx := s.db.Txn(false) + defer tx.Abort() + services, err := tx.Get("services", "id", "node1", "service1") + if err != nil { + t.Fatalf("err: %s", err) + } + if service := services.Next(); service != nil { + t.Fatalf("bad: %#v", service) + } + + // Associated health check was removed. + checks, err := tx.Get("checks", "id", "node1", "check1") + if err != nil { + t.Fatalf("err: %s", err) + } + if check := checks.Next(); check != nil { + t.Fatalf("bad: %#v", check) + } + + // Indexes were updated. + for _, tbl := range []string{"nodes", "services", "checks"} { + if idx := s.maxIndex(tbl); idx != 3 { + t.Fatalf("bad index: %d (%s)", idx, tbl) + } + } + + // Deleting a nonexistent node should be idempotent and not return + // an error + if err := s.DeleteNode(4, "node1"); err != nil { + t.Fatalf("err: %s", err) + } + if idx := s.maxIndex("nodes"); idx != 3 { + t.Fatalf("bad index: %d", idx) + } +} + +func TestStateStore_Node_Snapshot(t *testing.T) { + s := testStateStore(t) + + // Create some nodes in the state store. + testRegisterNode(t, s, 0, "node0") + testRegisterNode(t, s, 1, "node1") + testRegisterNode(t, s, 2, "node2") + + // Snapshot the nodes. + snap := s.Snapshot() + defer snap.Close() + + // Alter the real state store. + testRegisterNode(t, s, 3, "node3") + + // Verify the snapshot. + if idx := snap.LastIndex(); idx != 2 { + t.Fatalf("bad index: %d", idx) + } + nodes, err := snap.Nodes() + if err != nil { + t.Fatalf("err: %s", err) + } + for i := 0; i < 3; i++ { + node := nodes.Next().(*structs.Node) + if node == nil { + t.Fatalf("unexpected end of nodes") + } + + if node.CreateIndex != uint64(i) || node.ModifyIndex != uint64(i) { + t.Fatalf("bad node index: %d, %d", node.CreateIndex, node.ModifyIndex) + } + if node.Node != fmt.Sprintf("node%d", i) { + t.Fatalf("bad: %#v", node) + } + } + if nodes.Next() != nil { + t.Fatalf("unexpected extra nodes") + } +} + +func TestStateStore_EnsureService(t *testing.T) { + s := testStateStore(t) + + // Fetching services for a node with none returns nil. + ws := memdb.NewWatchSet() + idx, res, err := s.NodeServices(ws, "node1") + if err != nil || res != nil || idx != 0 { + t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) + } + + // Create the service registration. + ns1 := &structs.NodeService{ + ID: "service1", + Service: "redis", + Tags: []string{"prod"}, + Address: "1.1.1.1", + Port: 1111, + } + + // Creating a service without a node returns an error. + if err := s.EnsureService(1, "node1", ns1); err != ErrMissingNode { + t.Fatalf("expected %#v, got: %#v", ErrMissingNode, err) + } + if watchFired(ws) { + t.Fatalf("bad") + } + + // Register the nodes. + testRegisterNode(t, s, 0, "node1") + testRegisterNode(t, s, 1, "node2") + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Service successfully registers into the state store. + ws = memdb.NewWatchSet() + _, _, err = s.NodeServices(ws, "node1") + if err != nil { + t.Fatalf("err: %v", err) + } + if err = s.EnsureService(10, "node1", ns1); err != nil { + t.Fatalf("err: %s", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Register a similar service against both nodes. + ns2 := *ns1 + ns2.ID = "service2" + for _, n := range []string{"node1", "node2"} { + if err := s.EnsureService(20, n, &ns2); err != nil { + t.Fatalf("err: %s", err) + } + } + + // Register a different service on the bad node. + ws = memdb.NewWatchSet() + _, _, err = s.NodeServices(ws, "node1") + if err != nil { + t.Fatalf("err: %v", err) + } + ns3 := *ns1 + ns3.ID = "service3" + if err := s.EnsureService(30, "node2", &ns3); err != nil { + t.Fatalf("err: %s", err) + } + if watchFired(ws) { + t.Fatalf("bad") + } + + // Retrieve the services. + ws = memdb.NewWatchSet() + idx, out, err := s.NodeServices(ws, "node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 30 { + t.Fatalf("bad index: %d", idx) + } + + // Only the services for the requested node are returned. + if out == nil || len(out.Services) != 2 { + t.Fatalf("bad services: %#v", out) + } + + // Results match the inserted services and have the proper indexes set. + expect1 := *ns1 + expect1.CreateIndex, expect1.ModifyIndex = 10, 10 + if svc := out.Services["service1"]; !reflect.DeepEqual(&expect1, svc) { + t.Fatalf("bad: %#v", svc) + } + + expect2 := ns2 + expect2.CreateIndex, expect2.ModifyIndex = 20, 20 + if svc := out.Services["service2"]; !reflect.DeepEqual(&expect2, svc) { + t.Fatalf("bad: %#v %#v", ns2, svc) + } + + // Index tables were updated. + if idx := s.maxIndex("services"); idx != 30 { + t.Fatalf("bad index: %d", idx) + } + + // Update a service registration. + ns1.Address = "1.1.1.2" + if err := s.EnsureService(40, "node1", ns1); err != nil { + t.Fatalf("err: %s", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Retrieve the service again and ensure it matches.. + idx, out, err = s.NodeServices(nil, "node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 40 { + t.Fatalf("bad index: %d", idx) + } + if out == nil || len(out.Services) != 2 { + t.Fatalf("bad: %#v", out) + } + expect1.Address = "1.1.1.2" + expect1.ModifyIndex = 40 + if svc := out.Services["service1"]; !reflect.DeepEqual(&expect1, svc) { + t.Fatalf("bad: %#v", svc) + } + + // Index tables were updated. + if idx := s.maxIndex("services"); idx != 40 { + t.Fatalf("bad index: %d", idx) + } +} + +func TestStateStore_Services(t *testing.T) { + s := testStateStore(t) + + // Listing with no results returns an empty list. + ws := memdb.NewWatchSet() + idx, services, err := s.Services(ws) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 0 { + t.Fatalf("bad: %d", idx) + } + if len(services) != 0 { + t.Fatalf("bad: %v", services) + } + + // Register several nodes and services. + testRegisterNode(t, s, 1, "node1") + ns1 := &structs.NodeService{ + ID: "service1", + Service: "redis", + Tags: []string{"prod", "master"}, + Address: "1.1.1.1", + Port: 1111, + } + if err := s.EnsureService(2, "node1", ns1); err != nil { + t.Fatalf("err: %s", err) + } + testRegisterService(t, s, 3, "node1", "dogs") + testRegisterNode(t, s, 4, "node2") + ns2 := &structs.NodeService{ + ID: "service3", + Service: "redis", + Tags: []string{"prod", "slave"}, + Address: "1.1.1.1", + Port: 1111, + } + if err := s.EnsureService(5, "node2", ns2); err != nil { + t.Fatalf("err: %s", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Pull all the services. + ws = memdb.NewWatchSet() + idx, services, err = s.Services(ws) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 5 { + t.Fatalf("bad index: %d", idx) + } + + // Verify the result. We sort the lists since the order is + // non-deterministic (it's built using a map internally). + expected := structs.Services{ + "redis": []string{"prod", "master", "slave"}, + "dogs": []string{}, + } + sort.Strings(expected["redis"]) + for _, tags := range services { + sort.Strings(tags) + } + if !reflect.DeepEqual(expected, services) { + t.Fatalf("bad: %#v", services) + } + + // Deleting a node with a service should fire the watch. + if err := s.DeleteNode(6, "node1"); err != nil { + t.Fatalf("err: %s", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } +} + +func TestStateStore_ServicesByNodeMeta(t *testing.T) { + s := testStateStore(t) + + // Listing with no results returns nil. + ws := memdb.NewWatchSet() + idx, res, err := s.ServicesByNodeMeta(ws, map[string]string{"somekey": "somevalue"}) + if idx != 0 || len(res) != 0 || err != nil { + t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) + } + + // Create some nodes and services in the state store. + node0 := &structs.Node{Node: "node0", Address: "127.0.0.1", Meta: map[string]string{"role": "client", "common": "1"}} + if err := s.EnsureNode(0, node0); err != nil { + t.Fatalf("err: %v", err) + } + node1 := &structs.Node{Node: "node1", Address: "127.0.0.1", Meta: map[string]string{"role": "server", "common": "1"}} + if err := s.EnsureNode(1, node1); err != nil { + t.Fatalf("err: %v", err) + } + ns1 := &structs.NodeService{ + ID: "service1", + Service: "redis", + Tags: []string{"prod", "master"}, + Address: "1.1.1.1", + Port: 1111, + } + if err := s.EnsureService(2, "node0", ns1); err != nil { + t.Fatalf("err: %s", err) + } + ns2 := &structs.NodeService{ + ID: "service1", + Service: "redis", + Tags: []string{"prod", "slave"}, + Address: "1.1.1.1", + Port: 1111, + } + if err := s.EnsureService(3, "node1", ns2); err != nil { + t.Fatalf("err: %s", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Filter the services by the first node's meta value. + ws = memdb.NewWatchSet() + _, res, err = s.ServicesByNodeMeta(ws, map[string]string{"role": "client"}) + if err != nil { + t.Fatalf("err: %s", err) + } + expected := structs.Services{ + "redis": []string{"master", "prod"}, + } + sort.Strings(res["redis"]) + if !reflect.DeepEqual(res, expected) { + t.Fatalf("bad: %v %v", res, expected) + } + + // Get all services using the common meta value + _, res, err = s.ServicesByNodeMeta(ws, map[string]string{"common": "1"}) + if err != nil { + t.Fatalf("err: %s", err) + } + expected = structs.Services{ + "redis": []string{"master", "prod", "slave"}, + } + sort.Strings(res["redis"]) + if !reflect.DeepEqual(res, expected) { + t.Fatalf("bad: %v %v", res, expected) + } + + // Get an empty list for an invalid meta value + _, res, err = s.ServicesByNodeMeta(ws, map[string]string{"invalid": "nope"}) + if err != nil { + t.Fatalf("err: %s", err) + } + expected = structs.Services{} + if !reflect.DeepEqual(res, expected) { + t.Fatalf("bad: %v %v", res, expected) + } + + // Get the first node's service instance using multiple meta filters + _, res, err = s.ServicesByNodeMeta(ws, map[string]string{"role": "client", "common": "1"}) + if err != nil { + t.Fatalf("err: %s", err) + } + expected = structs.Services{ + "redis": []string{"master", "prod"}, + } + sort.Strings(res["redis"]) + if !reflect.DeepEqual(res, expected) { + t.Fatalf("bad: %v %v", res, expected) + } + + // Sanity check the watch before we proceed. + if watchFired(ws) { + t.Fatalf("bad") + } + + // Registering some unrelated node + service should not fire the watch. + testRegisterNode(t, s, 4, "nope") + testRegisterService(t, s, 5, "nope", "nope") + if watchFired(ws) { + t.Fatalf("bad") + } + + // Overwhelm the service tracking. + idx = 6 + for i := 0; i < 2*watchLimit; i++ { + node := fmt.Sprintf("many%d", i) + testRegisterNodeWithMeta(t, s, idx, node, map[string]string{"common": "1"}) + idx++ + testRegisterService(t, s, idx, node, "nope") + idx++ + } + + // Now get a fresh watch, which will be forced to watch the whole + // service table. + ws = memdb.NewWatchSet() + _, _, err = s.ServicesByNodeMeta(ws, map[string]string{"common": "1"}) + if err != nil { + t.Fatalf("err: %s", err) + } + + // Registering some unrelated node + service should not fire the watch. + testRegisterService(t, s, idx, "nope", "more-nope") + if !watchFired(ws) { + t.Fatalf("bad") + } +} + +func TestStateStore_ServiceNodes(t *testing.T) { + s := testStateStore(t) + + // Listing with no results returns an empty list. + ws := memdb.NewWatchSet() + idx, nodes, err := s.ServiceNodes(ws, "db") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 0 { + t.Fatalf("bad: %d", idx) + } + if len(nodes) != 0 { + t.Fatalf("bad: %v", nodes) + } + + // Create some nodes and services. + if err := s.EnsureNode(10, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { + t.Fatalf("err: %v", err) + } + if err := s.EnsureNode(11, &structs.Node{Node: "bar", Address: "127.0.0.2"}); err != nil { + t.Fatalf("err: %v", err) + } + if err := s.EnsureService(12, "foo", &structs.NodeService{ID: "api", Service: "api", Tags: nil, Address: "", Port: 5000}); err != nil { + t.Fatalf("err: %v", err) + } + if err := s.EnsureService(13, "bar", &structs.NodeService{ID: "api", Service: "api", Tags: nil, Address: "", Port: 5000}); err != nil { + t.Fatalf("err: %v", err) + } + if err := s.EnsureService(14, "foo", &structs.NodeService{ID: "db", Service: "db", Tags: []string{"master"}, Address: "", Port: 8000}); err != nil { + t.Fatalf("err: %v", err) + } + if err := s.EnsureService(15, "bar", &structs.NodeService{ID: "db", Service: "db", Tags: []string{"slave"}, Address: "", Port: 8000}); err != nil { + t.Fatalf("err: %v", err) + } + if err := s.EnsureService(16, "bar", &structs.NodeService{ID: "db2", Service: "db", Tags: []string{"slave"}, Address: "", Port: 8001}); err != nil { + t.Fatalf("err: %v", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Read everything back. + ws = memdb.NewWatchSet() + idx, nodes, err = s.ServiceNodes(ws, "db") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 16 { + t.Fatalf("bad: %d", idx) + } + if len(nodes) != 3 { + t.Fatalf("bad: %v", nodes) + } + if nodes[0].Node != "bar" { + t.Fatalf("bad: %v", nodes) + } + if nodes[0].Address != "127.0.0.2" { + t.Fatalf("bad: %v", nodes) + } + if nodes[0].ServiceID != "db" { + t.Fatalf("bad: %v", nodes) + } + if !lib.StrContains(nodes[0].ServiceTags, "slave") { + t.Fatalf("bad: %v", nodes) + } + if nodes[0].ServicePort != 8000 { + t.Fatalf("bad: %v", nodes) + } + if nodes[1].Node != "bar" { + t.Fatalf("bad: %v", nodes) + } + if nodes[1].Address != "127.0.0.2" { + t.Fatalf("bad: %v", nodes) + } + if nodes[1].ServiceID != "db2" { + t.Fatalf("bad: %v", nodes) + } + if !lib.StrContains(nodes[1].ServiceTags, "slave") { + t.Fatalf("bad: %v", nodes) + } + if nodes[1].ServicePort != 8001 { + t.Fatalf("bad: %v", nodes) + } + if nodes[2].Node != "foo" { + t.Fatalf("bad: %v", nodes) + } + if nodes[2].Address != "127.0.0.1" { + t.Fatalf("bad: %v", nodes) + } + if nodes[2].ServiceID != "db" { + t.Fatalf("bad: %v", nodes) + } + if !lib.StrContains(nodes[2].ServiceTags, "master") { + t.Fatalf("bad: %v", nodes) + } + if nodes[2].ServicePort != 8000 { + t.Fatalf("bad: %v", nodes) + } + + // Registering some unrelated node should not fire the watch. + testRegisterNode(t, s, 17, "nope") + if watchFired(ws) { + t.Fatalf("bad") + } + + // But removing a node with the "db" service should fire the watch. + if err := s.DeleteNode(18, "bar"); err != nil { + t.Fatalf("err: %s", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Overwhelm the node tracking. + idx = 19 + for i := 0; i < 2*watchLimit; i++ { + node := fmt.Sprintf("many%d", i) + if err := s.EnsureNode(idx, &structs.Node{Node: node, Address: "127.0.0.1"}); err != nil { + t.Fatalf("err: %v", err) + } + if err := s.EnsureService(idx, node, &structs.NodeService{ID: "db", Service: "db", Port: 8000}); err != nil { + t.Fatalf("err: %v", err) + } + idx++ + } + + // Now get a fresh watch, which will be forced to watch the whole nodes + // table. + ws = memdb.NewWatchSet() + _, _, err = s.ServiceNodes(ws, "db") + if err != nil { + t.Fatalf("err: %s", err) + } + + // Registering some unrelated node should fire the watch now. + testRegisterNode(t, s, idx, "more-nope") + if !watchFired(ws) { + t.Fatalf("bad") + } +} + +func TestStateStore_ServiceTagNodes(t *testing.T) { + s := testStateStore(t) + + // Listing with no results returns an empty list. + ws := memdb.NewWatchSet() + idx, nodes, err := s.ServiceTagNodes(ws, "db", "master") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 0 { + t.Fatalf("bad: %d", idx) + } + if len(nodes) != 0 { + t.Fatalf("bad: %v", nodes) + } + + // Create some nodes and services. + if err := s.EnsureNode(15, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { + t.Fatalf("err: %v", err) + } + if err := s.EnsureNode(16, &structs.Node{Node: "bar", Address: "127.0.0.2"}); err != nil { + t.Fatalf("err: %v", err) + } + if err := s.EnsureService(17, "foo", &structs.NodeService{ID: "db", Service: "db", Tags: []string{"master"}, Address: "", Port: 8000}); err != nil { + t.Fatalf("err: %v", err) + } + if err := s.EnsureService(18, "foo", &structs.NodeService{ID: "db2", Service: "db", Tags: []string{"slave"}, Address: "", Port: 8001}); err != nil { + t.Fatalf("err: %v", err) + } + if err := s.EnsureService(19, "bar", &structs.NodeService{ID: "db", Service: "db", Tags: []string{"slave"}, Address: "", Port: 8000}); err != nil { + t.Fatalf("err: %v", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Read everything back. + ws = memdb.NewWatchSet() + idx, nodes, err = s.ServiceTagNodes(ws, "db", "master") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 19 { + t.Fatalf("bad: %v", idx) + } + if len(nodes) != 1 { + t.Fatalf("bad: %v", nodes) + } + if nodes[0].Node != "foo" { + t.Fatalf("bad: %v", nodes) + } + if nodes[0].Address != "127.0.0.1" { + t.Fatalf("bad: %v", nodes) + } + if !lib.StrContains(nodes[0].ServiceTags, "master") { + t.Fatalf("bad: %v", nodes) + } + if nodes[0].ServicePort != 8000 { + t.Fatalf("bad: %v", nodes) + } + + // Registering some unrelated node should not fire the watch. + testRegisterNode(t, s, 20, "nope") + if watchFired(ws) { + t.Fatalf("bad") + } + + // But removing a node with the "db:master" service should fire the watch. + if err := s.DeleteNode(21, "foo"); err != nil { + t.Fatalf("err: %s", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } +} + +func TestStateStore_ServiceTagNodes_MultipleTags(t *testing.T) { + s := testStateStore(t) + + if err := s.EnsureNode(15, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { + t.Fatalf("err: %v", err) + } + + if err := s.EnsureNode(16, &structs.Node{Node: "bar", Address: "127.0.0.2"}); err != nil { + t.Fatalf("err: %v", err) + } + + if err := s.EnsureService(17, "foo", &structs.NodeService{ID: "db", Service: "db", Tags: []string{"master", "v2"}, Address: "", Port: 8000}); err != nil { + t.Fatalf("err: %v", err) + } + + if err := s.EnsureService(18, "foo", &structs.NodeService{ID: "db2", Service: "db", Tags: []string{"slave", "v2", "dev"}, Address: "", Port: 8001}); err != nil { + t.Fatalf("err: %v", err) + } + + if err := s.EnsureService(19, "bar", &structs.NodeService{ID: "db", Service: "db", Tags: []string{"slave", "v2"}, Address: "", Port: 8000}); err != nil { + t.Fatalf("err: %v", err) + } + + idx, nodes, err := s.ServiceTagNodes(nil, "db", "master") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 19 { + t.Fatalf("bad: %v", idx) + } + if len(nodes) != 1 { + t.Fatalf("bad: %v", nodes) + } + if nodes[0].Node != "foo" { + t.Fatalf("bad: %v", nodes) + } + if nodes[0].Address != "127.0.0.1" { + t.Fatalf("bad: %v", nodes) + } + if !lib.StrContains(nodes[0].ServiceTags, "master") { + t.Fatalf("bad: %v", nodes) + } + if nodes[0].ServicePort != 8000 { + t.Fatalf("bad: %v", nodes) + } + + idx, nodes, err = s.ServiceTagNodes(nil, "db", "v2") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 19 { + t.Fatalf("bad: %v", idx) + } + if len(nodes) != 3 { + t.Fatalf("bad: %v", nodes) + } + + idx, nodes, err = s.ServiceTagNodes(nil, "db", "dev") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 19 { + t.Fatalf("bad: %v", idx) + } + if len(nodes) != 1 { + t.Fatalf("bad: %v", nodes) + } + if nodes[0].Node != "foo" { + t.Fatalf("bad: %v", nodes) + } + if nodes[0].Address != "127.0.0.1" { + t.Fatalf("bad: %v", nodes) + } + if !lib.StrContains(nodes[0].ServiceTags, "dev") { + t.Fatalf("bad: %v", nodes) + } + if nodes[0].ServicePort != 8001 { + t.Fatalf("bad: %v", nodes) + } +} + +func TestStateStore_DeleteService(t *testing.T) { + s := testStateStore(t) + + // Register a node with one service and a check. + testRegisterNode(t, s, 1, "node1") + testRegisterService(t, s, 2, "node1", "service1") + testRegisterCheck(t, s, 3, "node1", "service1", "check1", structs.HealthPassing) + + // Delete the service. + ws := memdb.NewWatchSet() + _, _, err := s.NodeServices(ws, "node1") + if err := s.DeleteService(4, "node1", "service1"); err != nil { + t.Fatalf("err: %s", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Service doesn't exist. + ws = memdb.NewWatchSet() + _, ns, err := s.NodeServices(ws, "node1") + if err != nil || ns == nil || len(ns.Services) != 0 { + t.Fatalf("bad: %#v (err: %#v)", ns, err) + } + + // Check doesn't exist. Check using the raw DB so we can test + // that it actually is removed in the state store. + tx := s.db.Txn(false) + defer tx.Abort() + check, err := tx.First("checks", "id", "node1", "check1") + if err != nil || check != nil { + t.Fatalf("bad: %#v (err: %s)", check, err) + } + + // Index tables were updated. + if idx := s.maxIndex("services"); idx != 4 { + t.Fatalf("bad index: %d", idx) + } + if idx := s.maxIndex("checks"); idx != 4 { + t.Fatalf("bad index: %d", idx) + } + + // Deleting a nonexistent service should be idempotent and not return an + // error, nor fire a watch. + if err := s.DeleteService(5, "node1", "service1"); err != nil { + t.Fatalf("err: %s", err) + } + if idx := s.maxIndex("services"); idx != 4 { + t.Fatalf("bad index: %d", idx) + } + if watchFired(ws) { + t.Fatalf("bad") + } +} + +func TestStateStore_Service_Snapshot(t *testing.T) { + s := testStateStore(t) + + // Register a node with two services. + testRegisterNode(t, s, 0, "node1") + ns := []*structs.NodeService{ + &structs.NodeService{ + ID: "service1", + Service: "redis", + Tags: []string{"prod"}, + Address: "1.1.1.1", + Port: 1111, + }, + &structs.NodeService{ + ID: "service2", + Service: "nomad", + Tags: []string{"dev"}, + Address: "1.1.1.2", + Port: 1112, + }, + } + for i, svc := range ns { + if err := s.EnsureService(uint64(i+1), "node1", svc); err != nil { + t.Fatalf("err: %s", err) + } + } + + // Create a second node/service to make sure node filtering works. This + // will affect the index but not the dump. + testRegisterNode(t, s, 3, "node2") + testRegisterService(t, s, 4, "node2", "service2") + + // Snapshot the service. + snap := s.Snapshot() + defer snap.Close() + + // Alter the real state store. + testRegisterService(t, s, 5, "node2", "service3") + + // Verify the snapshot. + if idx := snap.LastIndex(); idx != 4 { + t.Fatalf("bad index: %d", idx) + } + services, err := snap.Services("node1") + if err != nil { + t.Fatalf("err: %s", err) + } + for i := 0; i < len(ns); i++ { + svc := services.Next().(*structs.ServiceNode) + if svc == nil { + t.Fatalf("unexpected end of services") + } + + ns[i].CreateIndex, ns[i].ModifyIndex = uint64(i+1), uint64(i+1) + if !reflect.DeepEqual(ns[i], svc.ToNodeService()) { + t.Fatalf("bad: %#v != %#v", svc, ns[i]) + } + } + if services.Next() != nil { + t.Fatalf("unexpected extra services") + } +} + +func TestStateStore_EnsureCheck(t *testing.T) { + s := testStateStore(t) + + // Create a check associated with the node + check := &structs.HealthCheck{ + Node: "node1", + CheckID: "check1", + Name: "redis check", + Status: structs.HealthPassing, + Notes: "test check", + Output: "aaa", + ServiceID: "service1", + ServiceName: "redis", + } + + // Creating a check without a node returns error + if err := s.EnsureCheck(1, check); err != ErrMissingNode { + t.Fatalf("expected %#v, got: %#v", ErrMissingNode, err) + } + + // Register the node + testRegisterNode(t, s, 1, "node1") + + // Creating a check with a bad services returns error + if err := s.EnsureCheck(1, check); err != ErrMissingService { + t.Fatalf("expected: %#v, got: %#v", ErrMissingService, err) + } + + // Register the service + testRegisterService(t, s, 2, "node1", "service1") + + // Inserting the check with the prerequisites succeeds + if err := s.EnsureCheck(3, check); err != nil { + t.Fatalf("err: %s", err) + } + + // Retrieve the check and make sure it matches + idx, checks, err := s.NodeChecks(nil, "node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 3 { + t.Fatalf("bad index: %d", idx) + } + if len(checks) != 1 { + t.Fatalf("wrong number of checks: %d", len(checks)) + } + if !reflect.DeepEqual(checks[0], check) { + t.Fatalf("bad: %#v", checks[0]) + } + + // Modify the health check + check.Output = "bbb" + if err := s.EnsureCheck(4, check); err != nil { + t.Fatalf("err: %s", err) + } + + // Check that we successfully updated + idx, checks, err = s.NodeChecks(nil, "node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 4 { + t.Fatalf("bad index: %d", idx) + } + if len(checks) != 1 { + t.Fatalf("wrong number of checks: %d", len(checks)) + } + if checks[0].Output != "bbb" { + t.Fatalf("wrong check output: %#v", checks[0]) + } + if checks[0].CreateIndex != 3 || checks[0].ModifyIndex != 4 { + t.Fatalf("bad index: %#v", checks[0]) + } + + // Index tables were updated + if idx := s.maxIndex("checks"); idx != 4 { + t.Fatalf("bad index: %d", idx) + } +} + +func TestStateStore_EnsureCheck_defaultStatus(t *testing.T) { + s := testStateStore(t) + + // Register a node + testRegisterNode(t, s, 1, "node1") + + // Create and register a check with no health status + check := &structs.HealthCheck{ + Node: "node1", + CheckID: "check1", + Status: "", + } + if err := s.EnsureCheck(2, check); err != nil { + t.Fatalf("err: %s", err) + } + + // Get the check again + _, result, err := s.NodeChecks(nil, "node1") + if err != nil { + t.Fatalf("err: %s", err) + } + + // Check that the status was set to the proper default + if len(result) != 1 || result[0].Status != structs.HealthCritical { + t.Fatalf("bad: %#v", result) + } +} + +func TestStateStore_NodeChecks(t *testing.T) { + s := testStateStore(t) + + // Do an initial query for a node that doesn't exist. + ws := memdb.NewWatchSet() + idx, checks, err := s.NodeChecks(ws, "node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 0 { + t.Fatalf("bad: %d", idx) + } + if len(checks) != 0 { + t.Fatalf("bad: %#v", checks) + } + + // Create some nodes and checks. + testRegisterNode(t, s, 0, "node1") + testRegisterService(t, s, 1, "node1", "service1") + testRegisterCheck(t, s, 2, "node1", "service1", "check1", structs.HealthPassing) + testRegisterCheck(t, s, 3, "node1", "service1", "check2", structs.HealthPassing) + testRegisterNode(t, s, 4, "node2") + testRegisterService(t, s, 5, "node2", "service2") + testRegisterCheck(t, s, 6, "node2", "service2", "check3", structs.HealthPassing) + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Try querying for all checks associated with node1 + ws = memdb.NewWatchSet() + idx, checks, err = s.NodeChecks(ws, "node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 6 { + t.Fatalf("bad index: %d", idx) + } + if len(checks) != 2 || checks[0].CheckID != "check1" || checks[1].CheckID != "check2" { + t.Fatalf("bad checks: %#v", checks) + } + + // Creating some unrelated node should not fire the watch. + testRegisterNode(t, s, 7, "node3") + testRegisterCheck(t, s, 8, "node3", "", "check1", structs.HealthPassing) + if watchFired(ws) { + t.Fatalf("bad") + } + + // Try querying for all checks associated with node2 + ws = memdb.NewWatchSet() + idx, checks, err = s.NodeChecks(ws, "node2") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 8 { + t.Fatalf("bad index: %d", idx) + } + if len(checks) != 1 || checks[0].CheckID != "check3" { + t.Fatalf("bad checks: %#v", checks) + } + + // Changing node2 should fire the watch. + testRegisterCheck(t, s, 9, "node2", "service2", "check3", structs.HealthCritical) + if !watchFired(ws) { + t.Fatalf("bad") + } +} + +func TestStateStore_ServiceChecks(t *testing.T) { + s := testStateStore(t) + + // Do an initial query for a service that doesn't exist. + ws := memdb.NewWatchSet() + idx, checks, err := s.ServiceChecks(ws, "service1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 0 { + t.Fatalf("bad: %d", idx) + } + if len(checks) != 0 { + t.Fatalf("bad: %#v", checks) + } + + // Create some nodes and checks. + testRegisterNode(t, s, 0, "node1") + testRegisterService(t, s, 1, "node1", "service1") + testRegisterCheck(t, s, 2, "node1", "service1", "check1", structs.HealthPassing) + testRegisterCheck(t, s, 3, "node1", "service1", "check2", structs.HealthPassing) + testRegisterNode(t, s, 4, "node2") + testRegisterService(t, s, 5, "node2", "service2") + testRegisterCheck(t, s, 6, "node2", "service2", "check3", structs.HealthPassing) + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Try querying for all checks associated with service1. + ws = memdb.NewWatchSet() + idx, checks, err = s.ServiceChecks(ws, "service1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 6 { + t.Fatalf("bad index: %d", idx) + } + if len(checks) != 2 || checks[0].CheckID != "check1" || checks[1].CheckID != "check2" { + t.Fatalf("bad checks: %#v", checks) + } + + // Adding some unrelated service + check should not fire the watch. + testRegisterService(t, s, 7, "node1", "service3") + testRegisterCheck(t, s, 8, "node1", "service3", "check3", structs.HealthPassing) + if watchFired(ws) { + t.Fatalf("bad") + } + + // Updating a related check should fire the watch. + testRegisterCheck(t, s, 9, "node1", "service1", "check2", structs.HealthCritical) + if !watchFired(ws) { + t.Fatalf("bad") + } +} + +func TestStateStore_ServiceChecksByNodeMeta(t *testing.T) { + s := testStateStore(t) + + // Querying with no results returns nil. + ws := memdb.NewWatchSet() + idx, checks, err := s.ServiceChecksByNodeMeta(ws, "service1", nil) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 0 { + t.Fatalf("bad: %d", idx) + } + if len(checks) != 0 { + t.Fatalf("bad: %#v", checks) + } + + // Create some nodes and checks. + testRegisterNodeWithMeta(t, s, 0, "node1", map[string]string{"somekey": "somevalue", "common": "1"}) + testRegisterService(t, s, 1, "node1", "service1") + testRegisterCheck(t, s, 2, "node1", "service1", "check1", structs.HealthPassing) + testRegisterCheck(t, s, 3, "node1", "service1", "check2", structs.HealthPassing) + testRegisterNodeWithMeta(t, s, 4, "node2", map[string]string{"common": "1"}) + testRegisterService(t, s, 5, "node2", "service1") + testRegisterCheck(t, s, 6, "node2", "service1", "check3", structs.HealthPassing) + if !watchFired(ws) { + t.Fatalf("bad") + } + + cases := []struct { + filters map[string]string + checks []string + }{ + // Basic meta filter + { + filters: map[string]string{"somekey": "somevalue"}, + checks: []string{"check1", "check2"}, + }, + // Common meta field + { + filters: map[string]string{"common": "1"}, + checks: []string{"check1", "check2", "check3"}, + }, + // Invalid meta filter + { + filters: map[string]string{"invalid": "nope"}, + checks: []string{}, + }, + // Multiple filters + { + filters: map[string]string{"somekey": "somevalue", "common": "1"}, + checks: []string{"check1", "check2"}, + }, + } + + // Try querying for all checks associated with service1. + idx = 7 + for _, tc := range cases { + ws = memdb.NewWatchSet() + _, checks, err := s.ServiceChecksByNodeMeta(ws, "service1", tc.filters) + if err != nil { + t.Fatalf("err: %s", err) + } + if len(checks) != len(tc.checks) { + t.Fatalf("bad checks: %#v", checks) + } + for i, check := range checks { + if check.CheckID != types.CheckID(tc.checks[i]) { + t.Fatalf("bad checks: %#v", checks) + } + } + + // Registering some unrelated node should not fire the watch. + testRegisterNode(t, s, idx, fmt.Sprintf("nope%d", idx)) + idx++ + if watchFired(ws) { + t.Fatalf("bad") + } + } + + // Overwhelm the node tracking. + for i := 0; i < 2*watchLimit; i++ { + node := fmt.Sprintf("many%d", idx) + testRegisterNodeWithMeta(t, s, idx, node, map[string]string{"common": "1"}) + idx++ + testRegisterService(t, s, idx, node, "service1") + idx++ + testRegisterCheck(t, s, idx, node, "service1", "check1", structs.HealthPassing) + idx++ + } + + // Now get a fresh watch, which will be forced to watch the whole + // node table. + ws = memdb.NewWatchSet() + _, _, err = s.ServiceChecksByNodeMeta(ws, "service1", + map[string]string{"common": "1"}) + if err != nil { + t.Fatalf("err: %s", err) + } + + // Registering some unrelated node should now fire the watch. + testRegisterNode(t, s, idx, "nope") + if !watchFired(ws) { + t.Fatalf("bad") + } +} + +func TestStateStore_ChecksInState(t *testing.T) { + s := testStateStore(t) + + // Querying with no results returns nil + ws := memdb.NewWatchSet() + idx, res, err := s.ChecksInState(ws, structs.HealthPassing) + if idx != 0 || res != nil || err != nil { + t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) + } + + // Register a node with checks in varied states + testRegisterNode(t, s, 0, "node1") + testRegisterCheck(t, s, 1, "node1", "", "check1", structs.HealthPassing) + testRegisterCheck(t, s, 2, "node1", "", "check2", structs.HealthCritical) + testRegisterCheck(t, s, 3, "node1", "", "check3", structs.HealthPassing) + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Query the state store for passing checks. + ws = memdb.NewWatchSet() + _, checks, err := s.ChecksInState(ws, structs.HealthPassing) + if err != nil { + t.Fatalf("err: %s", err) + } + + // Make sure we only get the checks which match the state + if n := len(checks); n != 2 { + t.Fatalf("expected 2 checks, got: %d", n) + } + if checks[0].CheckID != "check1" || checks[1].CheckID != "check3" { + t.Fatalf("bad: %#v", checks) + } + if watchFired(ws) { + t.Fatalf("bad") + } + + // Changing the state of a check should fire the watch. + testRegisterCheck(t, s, 4, "node1", "", "check1", structs.HealthCritical) + if !watchFired(ws) { + t.Fatalf("bad") + } + + // HealthAny just returns everything. + ws = memdb.NewWatchSet() + _, checks, err = s.ChecksInState(ws, structs.HealthAny) + if err != nil { + t.Fatalf("err: %s", err) + } + if n := len(checks); n != 3 { + t.Fatalf("expected 3 checks, got: %d", n) + } + if watchFired(ws) { + t.Fatalf("bad") + } + + // Adding a new check should fire the watch. + testRegisterCheck(t, s, 5, "node1", "", "check4", structs.HealthCritical) + if !watchFired(ws) { + t.Fatalf("bad") + } +} + +func TestStateStore_ChecksInStateByNodeMeta(t *testing.T) { + s := testStateStore(t) + + // Querying with no results returns nil. + ws := memdb.NewWatchSet() + idx, res, err := s.ChecksInStateByNodeMeta(ws, structs.HealthPassing, nil) + if idx != 0 || res != nil || err != nil { + t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) + } + + // Register a node with checks in varied states. + testRegisterNodeWithMeta(t, s, 0, "node1", map[string]string{"somekey": "somevalue", "common": "1"}) + testRegisterCheck(t, s, 1, "node1", "", "check1", structs.HealthPassing) + testRegisterCheck(t, s, 2, "node1", "", "check2", structs.HealthCritical) + testRegisterNodeWithMeta(t, s, 3, "node2", map[string]string{"common": "1"}) + testRegisterCheck(t, s, 4, "node2", "", "check3", structs.HealthPassing) + if !watchFired(ws) { + t.Fatalf("bad") + } + + cases := []struct { + filters map[string]string + state string + checks []string + }{ + // Basic meta filter, any status + { + filters: map[string]string{"somekey": "somevalue"}, + state: structs.HealthAny, + checks: []string{"check2", "check1"}, + }, + // Basic meta filter, only passing + { + filters: map[string]string{"somekey": "somevalue"}, + state: structs.HealthPassing, + checks: []string{"check1"}, + }, + // Common meta filter, any status + { + filters: map[string]string{"common": "1"}, + state: structs.HealthAny, + checks: []string{"check2", "check1", "check3"}, + }, + // Common meta filter, only passing + { + filters: map[string]string{"common": "1"}, + state: structs.HealthPassing, + checks: []string{"check1", "check3"}, + }, + // Invalid meta filter + { + filters: map[string]string{"invalid": "nope"}, + checks: []string{}, + }, + // Multiple filters, any status + { + filters: map[string]string{"somekey": "somevalue", "common": "1"}, + state: structs.HealthAny, + checks: []string{"check2", "check1"}, + }, + // Multiple filters, only passing + { + filters: map[string]string{"somekey": "somevalue", "common": "1"}, + state: structs.HealthPassing, + checks: []string{"check1"}, + }, + } + + // Try querying for all checks associated with service1. + idx = 5 + for _, tc := range cases { + ws = memdb.NewWatchSet() + _, checks, err := s.ChecksInStateByNodeMeta(ws, tc.state, tc.filters) + if err != nil { + t.Fatalf("err: %s", err) + } + if len(checks) != len(tc.checks) { + t.Fatalf("bad checks: %#v", checks) + } + for i, check := range checks { + if check.CheckID != types.CheckID(tc.checks[i]) { + t.Fatalf("bad checks: %#v, %v", checks, tc.checks) + } + } + + // Registering some unrelated node should not fire the watch. + testRegisterNode(t, s, idx, fmt.Sprintf("nope%d", idx)) + idx++ + if watchFired(ws) { + t.Fatalf("bad") + } + } + + // Overwhelm the node tracking. + for i := 0; i < 2*watchLimit; i++ { + node := fmt.Sprintf("many%d", idx) + testRegisterNodeWithMeta(t, s, idx, node, map[string]string{"common": "1"}) + idx++ + testRegisterService(t, s, idx, node, "service1") + idx++ + testRegisterCheck(t, s, idx, node, "service1", "check1", structs.HealthPassing) + idx++ + } + + // Now get a fresh watch, which will be forced to watch the whole + // node table. + ws = memdb.NewWatchSet() + _, _, err = s.ChecksInStateByNodeMeta(ws, structs.HealthPassing, + map[string]string{"common": "1"}) + if err != nil { + t.Fatalf("err: %s", err) + } + + // Registering some unrelated node should now fire the watch. + testRegisterNode(t, s, idx, "nope") + if !watchFired(ws) { + t.Fatalf("bad") + } +} + +func TestStateStore_DeleteCheck(t *testing.T) { + s := testStateStore(t) + + // Register a node and a node-level health check. + testRegisterNode(t, s, 1, "node1") + testRegisterCheck(t, s, 2, "node1", "", "check1", structs.HealthPassing) + + // Make sure the check is there. + ws := memdb.NewWatchSet() + _, checks, err := s.NodeChecks(ws, "node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if len(checks) != 1 { + t.Fatalf("bad: %#v", checks) + } + + // Delete the check. + if err := s.DeleteCheck(3, "node1", "check1"); err != nil { + t.Fatalf("err: %s", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Check is gone + ws = memdb.NewWatchSet() + _, checks, err = s.NodeChecks(ws, "node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if len(checks) != 0 { + t.Fatalf("bad: %#v", checks) + } + + // Index tables were updated. + if idx := s.maxIndex("checks"); idx != 3 { + t.Fatalf("bad index: %d", idx) + } + + // Deleting a nonexistent check should be idempotent and not return an + // error. + if err := s.DeleteCheck(4, "node1", "check1"); err != nil { + t.Fatalf("err: %s", err) + } + if idx := s.maxIndex("checks"); idx != 3 { + t.Fatalf("bad index: %d", idx) + } + if watchFired(ws) { + t.Fatalf("bad") + } +} + +func TestStateStore_CheckServiceNodes(t *testing.T) { + s := testStateStore(t) + + // Querying with no matches gives an empty response + ws := memdb.NewWatchSet() + idx, res, err := s.CheckServiceNodes(ws, "service1") + if idx != 0 || res != nil || err != nil { + t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) + } + + // Register some nodes. + testRegisterNode(t, s, 0, "node1") + testRegisterNode(t, s, 1, "node2") + + // Register node-level checks. These should be the final result. + testRegisterCheck(t, s, 2, "node1", "", "check1", structs.HealthPassing) + testRegisterCheck(t, s, 3, "node2", "", "check2", structs.HealthPassing) + + // Register a service against the nodes. + testRegisterService(t, s, 4, "node1", "service1") + testRegisterService(t, s, 5, "node2", "service2") + + // Register checks against the services. + testRegisterCheck(t, s, 6, "node1", "service1", "check3", structs.HealthPassing) + testRegisterCheck(t, s, 7, "node2", "service2", "check4", structs.HealthPassing) + + // At this point all the changes should have fired the watch. + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Query the state store for nodes and checks which have been registered + // with a specific service. + ws = memdb.NewWatchSet() + idx, results, err := s.CheckServiceNodes(ws, "service1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 7 { + t.Fatalf("bad index: %d", idx) + } + + // Make sure we get the expected result (service check + node check). + if n := len(results); n != 1 { + t.Fatalf("expected 1 result, got: %d", n) + } + csn := results[0] + if csn.Node == nil || csn.Service == nil || len(csn.Checks) != 2 || + csn.Checks[0].ServiceID != "" || csn.Checks[0].CheckID != "check1" || + csn.Checks[1].ServiceID != "service1" || csn.Checks[1].CheckID != "check3" { + t.Fatalf("bad output: %#v", csn) + } + + // Node updates alter the returned index and fire the watch. + testRegisterNode(t, s, 8, "node1") + if !watchFired(ws) { + t.Fatalf("bad") + } + ws = memdb.NewWatchSet() + idx, results, err = s.CheckServiceNodes(ws, "service1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 8 { + t.Fatalf("bad index: %d", idx) + } + + // Service updates alter the returned index and fire the watch. + testRegisterService(t, s, 9, "node1", "service1") + if !watchFired(ws) { + t.Fatalf("bad") + } + ws = memdb.NewWatchSet() + idx, results, err = s.CheckServiceNodes(ws, "service1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 9 { + t.Fatalf("bad index: %d", idx) + } + + // Check updates alter the returned index and fire the watch. + testRegisterCheck(t, s, 10, "node1", "service1", "check1", structs.HealthCritical) + if !watchFired(ws) { + t.Fatalf("bad") + } + ws = memdb.NewWatchSet() + idx, results, err = s.CheckServiceNodes(ws, "service1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 10 { + t.Fatalf("bad index: %d", idx) + } + + // Registering some unrelated node + service should not fire the watch. + testRegisterNode(t, s, 11, "nope") + testRegisterService(t, s, 12, "nope", "nope") + if watchFired(ws) { + t.Fatalf("bad") + } + + // Overwhelm node and check tracking. + idx = 13 + for i := 0; i < 2*watchLimit; i++ { + node := fmt.Sprintf("many%d", i) + testRegisterNode(t, s, idx, node) + idx++ + testRegisterCheck(t, s, idx, node, "", "check1", structs.HealthPassing) + idx++ + testRegisterService(t, s, idx, node, "service1") + idx++ + testRegisterCheck(t, s, idx, node, "service1", "check2", structs.HealthPassing) + idx++ + } + + // Now registering an unrelated node will fire the watch. + ws = memdb.NewWatchSet() + idx, results, err = s.CheckServiceNodes(ws, "service1") + if err != nil { + t.Fatalf("err: %s", err) + } + testRegisterNode(t, s, idx, "more-nope") + idx++ + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Also, registering an unrelated check will fire the watch. + ws = memdb.NewWatchSet() + idx, results, err = s.CheckServiceNodes(ws, "service1") + if err != nil { + t.Fatalf("err: %s", err) + } + testRegisterCheck(t, s, idx, "more-nope", "", "check1", structs.HealthPassing) + idx++ + if !watchFired(ws) { + t.Fatalf("bad") + } +} + +func BenchmarkCheckServiceNodes(b *testing.B) { + s, err := NewStateStore(nil) + if err != nil { + b.Fatalf("err: %s", err) + } + + if err := s.EnsureNode(1, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { + b.Fatalf("err: %v", err) + } + if err := s.EnsureService(2, "foo", &structs.NodeService{ID: "db1", Service: "db", Tags: []string{"master"}, Address: "", Port: 8000}); err != nil { + b.Fatalf("err: %v", err) + } + check := &structs.HealthCheck{ + Node: "foo", + CheckID: "db", + Name: "can connect", + Status: structs.HealthPassing, + ServiceID: "db1", + } + if err := s.EnsureCheck(3, check); err != nil { + b.Fatalf("err: %v", err) + } + check = &structs.HealthCheck{ + Node: "foo", + CheckID: "check1", + Name: "check1", + Status: structs.HealthPassing, + } + if err := s.EnsureCheck(4, check); err != nil { + b.Fatalf("err: %v", err) + } + + ws := memdb.NewWatchSet() + for i := 0; i < b.N; i++ { + s.CheckServiceNodes(ws, "db") + } +} + +func TestStateStore_CheckServiceTagNodes(t *testing.T) { + s := testStateStore(t) + + if err := s.EnsureNode(1, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { + t.Fatalf("err: %v", err) + } + if err := s.EnsureService(2, "foo", &structs.NodeService{ID: "db1", Service: "db", Tags: []string{"master"}, Address: "", Port: 8000}); err != nil { + t.Fatalf("err: %v", err) + } + check := &structs.HealthCheck{ + Node: "foo", + CheckID: "db", + Name: "can connect", + Status: structs.HealthPassing, + ServiceID: "db1", + } + if err := s.EnsureCheck(3, check); err != nil { + t.Fatalf("err: %v", err) + } + check = &structs.HealthCheck{ + Node: "foo", + CheckID: "check1", + Name: "another check", + Status: structs.HealthPassing, + } + if err := s.EnsureCheck(4, check); err != nil { + t.Fatalf("err: %v", err) + } + + ws := memdb.NewWatchSet() + idx, nodes, err := s.CheckServiceTagNodes(ws, "db", "master") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 4 { + t.Fatalf("bad: %v", idx) + } + if len(nodes) != 1 { + t.Fatalf("Bad: %v", nodes) + } + if nodes[0].Node.Node != "foo" { + t.Fatalf("Bad: %v", nodes[0]) + } + if nodes[0].Service.ID != "db1" { + t.Fatalf("Bad: %v", nodes[0]) + } + if len(nodes[0].Checks) != 2 { + t.Fatalf("Bad: %v", nodes[0]) + } + if nodes[0].Checks[0].CheckID != "check1" { + t.Fatalf("Bad: %v", nodes[0]) + } + if nodes[0].Checks[1].CheckID != "db" { + t.Fatalf("Bad: %v", nodes[0]) + } + + // Changing a tag should fire the watch. + if err := s.EnsureService(4, "foo", &structs.NodeService{ID: "db1", Service: "db", Tags: []string{"nope"}, Address: "", Port: 8000}); err != nil { + t.Fatalf("err: %v", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } +} + +func TestStateStore_Check_Snapshot(t *testing.T) { + s := testStateStore(t) + + // Create a node, a service, and a service check as well as a node check. + testRegisterNode(t, s, 0, "node1") + testRegisterService(t, s, 1, "node1", "service1") + checks := structs.HealthChecks{ + &structs.HealthCheck{ + Node: "node1", + CheckID: "check1", + Name: "node check", + Status: structs.HealthPassing, + }, + &structs.HealthCheck{ + Node: "node1", + CheckID: "check2", + Name: "service check", + Status: structs.HealthCritical, + ServiceID: "service1", + }, + } + for i, hc := range checks { + if err := s.EnsureCheck(uint64(i+1), hc); err != nil { + t.Fatalf("err: %s", err) + } + } + + // Create a second node/service to make sure node filtering works. This + // will affect the index but not the dump. + testRegisterNode(t, s, 3, "node2") + testRegisterService(t, s, 4, "node2", "service2") + testRegisterCheck(t, s, 5, "node2", "service2", "check3", structs.HealthPassing) + + // Snapshot the checks. + snap := s.Snapshot() + defer snap.Close() + + // Alter the real state store. + testRegisterCheck(t, s, 6, "node2", "service2", "check4", structs.HealthPassing) + + // Verify the snapshot. + if idx := snap.LastIndex(); idx != 5 { + t.Fatalf("bad index: %d", idx) + } + iter, err := snap.Checks("node1") + if err != nil { + t.Fatalf("err: %s", err) + } + for i := 0; i < len(checks); i++ { + check := iter.Next().(*structs.HealthCheck) + if check == nil { + t.Fatalf("unexpected end of checks") + } + + checks[i].CreateIndex, checks[i].ModifyIndex = uint64(i+1), uint64(i+1) + if !reflect.DeepEqual(check, checks[i]) { + t.Fatalf("bad: %#v != %#v", check, checks[i]) + } + } + if iter.Next() != nil { + t.Fatalf("unexpected extra checks") + } +} + +func TestStateStore_NodeInfo_NodeDump(t *testing.T) { + s := testStateStore(t) + + // Generating a node dump that matches nothing returns empty + wsInfo := memdb.NewWatchSet() + idx, dump, err := s.NodeInfo(wsInfo, "node1") + if idx != 0 || dump != nil || err != nil { + t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, dump, err) + } + wsDump := memdb.NewWatchSet() + idx, dump, err = s.NodeDump(wsDump) + if idx != 0 || dump != nil || err != nil { + t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, dump, err) + } + + // Register some nodes + testRegisterNode(t, s, 0, "node1") + testRegisterNode(t, s, 1, "node2") + + // Register services against them + testRegisterService(t, s, 2, "node1", "service1") + testRegisterService(t, s, 3, "node1", "service2") + testRegisterService(t, s, 4, "node2", "service1") + testRegisterService(t, s, 5, "node2", "service2") + + // Register service-level checks + testRegisterCheck(t, s, 6, "node1", "service1", "check1", structs.HealthPassing) + testRegisterCheck(t, s, 7, "node2", "service1", "check1", structs.HealthPassing) + + // Register node-level checks + testRegisterCheck(t, s, 8, "node1", "", "check2", structs.HealthPassing) + testRegisterCheck(t, s, 9, "node2", "", "check2", structs.HealthPassing) + + // Both watches should have fired due to the changes above. + if !watchFired(wsInfo) { + t.Fatalf("bad") + } + if !watchFired(wsDump) { + t.Fatalf("bad") + } + + // Check that our result matches what we expect. + expect := structs.NodeDump{ + &structs.NodeInfo{ + Node: "node1", + Checks: structs.HealthChecks{ + &structs.HealthCheck{ + Node: "node1", + CheckID: "check1", + ServiceID: "service1", + ServiceName: "service1", + Status: structs.HealthPassing, + RaftIndex: structs.RaftIndex{ + CreateIndex: 6, + ModifyIndex: 6, + }, + }, + &structs.HealthCheck{ + Node: "node1", + CheckID: "check2", + ServiceID: "", + ServiceName: "", + Status: structs.HealthPassing, + RaftIndex: structs.RaftIndex{ + CreateIndex: 8, + ModifyIndex: 8, + }, + }, + }, + Services: []*structs.NodeService{ + &structs.NodeService{ + ID: "service1", + Service: "service1", + Address: "1.1.1.1", + Port: 1111, + RaftIndex: structs.RaftIndex{ + CreateIndex: 2, + ModifyIndex: 2, + }, + }, + &structs.NodeService{ + ID: "service2", + Service: "service2", + Address: "1.1.1.1", + Port: 1111, + RaftIndex: structs.RaftIndex{ + CreateIndex: 3, + ModifyIndex: 3, + }, + }, + }, + }, + &structs.NodeInfo{ + Node: "node2", + Checks: structs.HealthChecks{ + &structs.HealthCheck{ + Node: "node2", + CheckID: "check1", + ServiceID: "service1", + ServiceName: "service1", + Status: structs.HealthPassing, + RaftIndex: structs.RaftIndex{ + CreateIndex: 7, + ModifyIndex: 7, + }, + }, + &structs.HealthCheck{ + Node: "node2", + CheckID: "check2", + ServiceID: "", + ServiceName: "", + Status: structs.HealthPassing, + RaftIndex: structs.RaftIndex{ + CreateIndex: 9, + ModifyIndex: 9, + }, + }, + }, + Services: []*structs.NodeService{ + &structs.NodeService{ + ID: "service1", + Service: "service1", + Address: "1.1.1.1", + Port: 1111, + RaftIndex: structs.RaftIndex{ + CreateIndex: 4, + ModifyIndex: 4, + }, + }, + &structs.NodeService{ + ID: "service2", + Service: "service2", + Address: "1.1.1.1", + Port: 1111, + RaftIndex: structs.RaftIndex{ + CreateIndex: 5, + ModifyIndex: 5, + }, + }, + }, + }, + } + + // Get a dump of just a single node + ws := memdb.NewWatchSet() + idx, dump, err = s.NodeInfo(ws, "node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 9 { + t.Fatalf("bad index: %d", idx) + } + if len(dump) != 1 || !reflect.DeepEqual(dump[0], expect[0]) { + t.Fatalf("bad: %#v", dump) + } + + // Generate a dump of all the nodes + idx, dump, err = s.NodeDump(nil) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 9 { + t.Fatalf("bad index: %d", 9) + } + if !reflect.DeepEqual(dump, expect) { + t.Fatalf("bad: %#v", dump[0].Services[0]) + } + + // Registering some unrelated node + service + check should not fire the + // watch. + testRegisterNode(t, s, 10, "nope") + testRegisterService(t, s, 11, "nope", "nope") + if watchFired(ws) { + t.Fatalf("bad") + } +} diff --git a/consul/state/coordinate.go b/consul/state/coordinate.go new file mode 100644 index 0000000000..6cfba415ea --- /dev/null +++ b/consul/state/coordinate.go @@ -0,0 +1,117 @@ +package state + +import ( + "fmt" + + "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/go-memdb" + "github.com/hashicorp/serf/coordinate" +) + +// Coordinates is used to pull all the coordinates from the snapshot. +func (s *StateSnapshot) Coordinates() (memdb.ResultIterator, error) { + iter, err := s.tx.Get("coordinates", "id") + if err != nil { + return nil, err + } + return iter, nil +} + +// Coordinates is used when restoring from a snapshot. For general inserts, use +// CoordinateBatchUpdate. We do less vetting of the updates here because they +// already got checked on the way in during a batch update. +func (s *StateRestore) Coordinates(idx uint64, updates structs.Coordinates) error { + for _, update := range updates { + if err := s.tx.Insert("coordinates", update); err != nil { + return fmt.Errorf("failed restoring coordinate: %s", err) + } + } + + if err := indexUpdateMaxTxn(s.tx, idx, "coordinates"); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + return nil +} + +// CoordinateGetRaw queries for the coordinate of the given node. This is an +// unusual state store method because it just returns the raw coordinate or +// nil, none of the Raft or node information is returned. This hits the 90% +// internal-to-Consul use case for this data, and this isn't exposed via an +// endpoint, so it doesn't matter that the Raft info isn't available. +func (s *StateStore) CoordinateGetRaw(node string) (*coordinate.Coordinate, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Pull the full coordinate entry. + coord, err := tx.First("coordinates", "id", node) + if err != nil { + return nil, fmt.Errorf("failed coordinate lookup: %s", err) + } + + // Pick out just the raw coordinate. + if coord != nil { + return coord.(*structs.Coordinate).Coord, nil + } + return nil, nil +} + +// Coordinates queries for all nodes with coordinates. +func (s *StateStore) Coordinates(ws memdb.WatchSet) (uint64, structs.Coordinates, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "coordinates") + + // Pull all the coordinates. + iter, err := tx.Get("coordinates", "id") + if err != nil { + return 0, nil, fmt.Errorf("failed coordinate lookup: %s", err) + } + ws.Add(iter.WatchCh()) + + var results structs.Coordinates + for coord := iter.Next(); coord != nil; coord = iter.Next() { + results = append(results, coord.(*structs.Coordinate)) + } + return idx, results, nil +} + +// CoordinateBatchUpdate processes a batch of coordinate updates and applies +// them in a single transaction. +func (s *StateStore) CoordinateBatchUpdate(idx uint64, updates structs.Coordinates) error { + tx := s.db.Txn(true) + defer tx.Abort() + + // Upsert the coordinates. + for _, update := range updates { + // Since the cleanup of coordinates is tied to deletion of + // nodes, we silently drop any updates for nodes that we don't + // know about. This might be possible during normal operation + // if we happen to get a coordinate update for a node that + // hasn't been able to add itself to the catalog yet. Since we + // don't carefully sequence this, and since it will fix itself + // on the next coordinate update from that node, we don't return + // an error or log anything. + node, err := tx.First("nodes", "id", update.Node) + if err != nil { + return fmt.Errorf("failed node lookup: %s", err) + } + if node == nil { + continue + } + + if err := tx.Insert("coordinates", update); err != nil { + return fmt.Errorf("failed inserting coordinate: %s", err) + } + } + + // Update the index. + if err := tx.Insert("index", &IndexEntry{"coordinates", idx}); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + tx.Commit() + return nil +} diff --git a/consul/state/coordinate_test.go b/consul/state/coordinate_test.go new file mode 100644 index 0000000000..c8af3a9f41 --- /dev/null +++ b/consul/state/coordinate_test.go @@ -0,0 +1,286 @@ +package state + +import ( + "math/rand" + "reflect" + "testing" + + "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/go-memdb" + "github.com/hashicorp/serf/coordinate" +) + +// generateRandomCoordinate creates a random coordinate. This mucks with the +// underlying structure directly, so it's not really useful for any particular +// position in the network, but it's a good payload to send through to make +// sure things come out the other side or get stored correctly. +func generateRandomCoordinate() *coordinate.Coordinate { + config := coordinate.DefaultConfig() + coord := coordinate.NewCoordinate(config) + for i := range coord.Vec { + coord.Vec[i] = rand.NormFloat64() + } + coord.Error = rand.NormFloat64() + coord.Adjustment = rand.NormFloat64() + return coord +} + +func TestStateStore_Coordinate_Updates(t *testing.T) { + s := testStateStore(t) + + // Make sure the coordinates list starts out empty, and that a query for + // a raw coordinate for a nonexistent node doesn't do anything bad. + ws := memdb.NewWatchSet() + idx, coords, err := s.Coordinates(ws) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 0 { + t.Fatalf("bad index: %d", idx) + } + if coords != nil { + t.Fatalf("bad: %#v", coords) + } + coord, err := s.CoordinateGetRaw("nope") + if err != nil { + t.Fatalf("err: %s", err) + } + if coord != nil { + t.Fatalf("bad: %#v", coord) + } + + // Make an update for nodes that don't exist and make sure they get + // ignored. + updates := structs.Coordinates{ + &structs.Coordinate{ + Node: "node1", + Coord: generateRandomCoordinate(), + }, + &structs.Coordinate{ + Node: "node2", + Coord: generateRandomCoordinate(), + }, + } + if err := s.CoordinateBatchUpdate(1, updates); err != nil { + t.Fatalf("err: %s", err) + } + if watchFired(ws) { + t.Fatalf("bad") + } + + // Should still be empty, though applying an empty batch does bump + // the table index. + ws = memdb.NewWatchSet() + idx, coords, err = s.Coordinates(ws) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 1 { + t.Fatalf("bad index: %d", idx) + } + if coords != nil { + t.Fatalf("bad: %#v", coords) + } + + // Register the nodes then do the update again. + testRegisterNode(t, s, 1, "node1") + testRegisterNode(t, s, 2, "node2") + if err := s.CoordinateBatchUpdate(3, updates); err != nil { + t.Fatalf("err: %s", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Should go through now. + ws = memdb.NewWatchSet() + idx, coords, err = s.Coordinates(ws) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 3 { + t.Fatalf("bad index: %d", idx) + } + if !reflect.DeepEqual(coords, updates) { + t.Fatalf("bad: %#v", coords) + } + + // Also verify the raw coordinate interface. + for _, update := range updates { + coord, err := s.CoordinateGetRaw(update.Node) + if err != nil { + t.Fatalf("err: %s", err) + } + if !reflect.DeepEqual(coord, update.Coord) { + t.Fatalf("bad: %#v", coord) + } + } + + // Update the coordinate for one of the nodes. + updates[1].Coord = generateRandomCoordinate() + if err := s.CoordinateBatchUpdate(4, updates); err != nil { + t.Fatalf("err: %s", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Verify it got applied. + idx, coords, err = s.Coordinates(nil) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 4 { + t.Fatalf("bad index: %d", idx) + } + if !reflect.DeepEqual(coords, updates) { + t.Fatalf("bad: %#v", coords) + } + + // And check the raw coordinate version of the same thing. + for _, update := range updates { + coord, err := s.CoordinateGetRaw(update.Node) + if err != nil { + t.Fatalf("err: %s", err) + } + if !reflect.DeepEqual(coord, update.Coord) { + t.Fatalf("bad: %#v", coord) + } + } +} + +func TestStateStore_Coordinate_Cleanup(t *testing.T) { + s := testStateStore(t) + + // Register a node and update its coordinate. + testRegisterNode(t, s, 1, "node1") + updates := structs.Coordinates{ + &structs.Coordinate{ + Node: "node1", + Coord: generateRandomCoordinate(), + }, + } + if err := s.CoordinateBatchUpdate(2, updates); err != nil { + t.Fatalf("err: %s", err) + } + + // Make sure it's in there. + coord, err := s.CoordinateGetRaw("node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if !reflect.DeepEqual(coord, updates[0].Coord) { + t.Fatalf("bad: %#v", coord) + } + + // Now delete the node. + if err := s.DeleteNode(3, "node1"); err != nil { + t.Fatalf("err: %s", err) + } + + // Make sure the coordinate is gone. + coord, err = s.CoordinateGetRaw("node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if coord != nil { + t.Fatalf("bad: %#v", coord) + } + + // Make sure the index got updated. + idx, coords, err := s.Coordinates(nil) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 3 { + t.Fatalf("bad index: %d", idx) + } + if coords != nil { + t.Fatalf("bad: %#v", coords) + } +} + +func TestStateStore_Coordinate_Snapshot_Restore(t *testing.T) { + s := testStateStore(t) + + // Register two nodes and update their coordinates. + testRegisterNode(t, s, 1, "node1") + testRegisterNode(t, s, 2, "node2") + updates := structs.Coordinates{ + &structs.Coordinate{ + Node: "node1", + Coord: generateRandomCoordinate(), + }, + &structs.Coordinate{ + Node: "node2", + Coord: generateRandomCoordinate(), + }, + } + if err := s.CoordinateBatchUpdate(3, updates); err != nil { + t.Fatalf("err: %s", err) + } + + // Snapshot the coordinates. + snap := s.Snapshot() + defer snap.Close() + + // Alter the real state store. + trash := structs.Coordinates{ + &structs.Coordinate{ + Node: "node1", + Coord: generateRandomCoordinate(), + }, + &structs.Coordinate{ + Node: "node2", + Coord: generateRandomCoordinate(), + }, + } + if err := s.CoordinateBatchUpdate(4, trash); err != nil { + t.Fatalf("err: %s", err) + } + + // Verify the snapshot. + if idx := snap.LastIndex(); idx != 3 { + t.Fatalf("bad index: %d", idx) + } + iter, err := snap.Coordinates() + if err != nil { + t.Fatalf("err: %s", err) + } + var dump structs.Coordinates + for coord := iter.Next(); coord != nil; coord = iter.Next() { + dump = append(dump, coord.(*structs.Coordinate)) + } + if !reflect.DeepEqual(dump, updates) { + t.Fatalf("bad: %#v", dump) + } + + // Restore the values into a new state store. + func() { + s := testStateStore(t) + restore := s.Restore() + if err := restore.Coordinates(5, dump); err != nil { + t.Fatalf("err: %s", err) + } + restore.Commit() + + // Read the restored coordinates back out and verify that they match. + idx, res, err := s.Coordinates(nil) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 5 { + t.Fatalf("bad index: %d", idx) + } + if !reflect.DeepEqual(res, updates) { + t.Fatalf("bad: %#v", res) + } + + // Check that the index was updated (note that it got passed + // in during the restore). + if idx := s.maxIndex("coordinates"); idx != 5 { + t.Fatalf("bad index: %d", idx) + } + }() + +} diff --git a/consul/state/kvs.go b/consul/state/kvs.go index 3dccdebd31..c111380a9a 100644 --- a/consul/state/kvs.go +++ b/consul/state/kvs.go @@ -32,9 +32,6 @@ func (s *StateRestore) KVS(entry *structs.DirEntry) error { if err := indexUpdateMaxTxn(s.tx, entry.ModifyIndex, "kvs"); err != nil { return fmt.Errorf("failed updating index: %s", err) } - - // We have a single top-level KVS watch trigger instead of doing - // tons of prefix watches. return nil } @@ -114,29 +111,29 @@ func (s *StateStore) kvsSetTxn(tx *memdb.Txn, idx uint64, entry *structs.DirEntr return fmt.Errorf("failed updating index: %s", err) } - tx.Defer(func() { s.kvsWatch.Notify(entry.Key, false) }) return nil } // KVSGet is used to retrieve a key/value pair from the state store. -func (s *StateStore) KVSGet(key string) (uint64, *structs.DirEntry, error) { +func (s *StateStore) KVSGet(ws memdb.WatchSet, key string) (uint64, *structs.DirEntry, error) { tx := s.db.Txn(false) defer tx.Abort() - return s.kvsGetTxn(tx, key) + return s.kvsGetTxn(tx, ws, key) } // kvsGetTxn is the inner method that gets a KVS entry inside an existing // transaction. -func (s *StateStore) kvsGetTxn(tx *memdb.Txn, key string) (uint64, *structs.DirEntry, error) { +func (s *StateStore) kvsGetTxn(tx *memdb.Txn, ws memdb.WatchSet, key string) (uint64, *structs.DirEntry, error) { // Get the table index. idx := maxIndexTxn(tx, "kvs", "tombstones") // Retrieve the key. - entry, err := tx.First("kvs", "id", key) + watchCh, entry, err := tx.FirstWatch("kvs", "id", key) if err != nil { return 0, nil, fmt.Errorf("failed kvs lookup: %s", err) } + ws.Add(watchCh) if entry != nil { return idx, entry.(*structs.DirEntry), nil } @@ -147,16 +144,16 @@ func (s *StateStore) kvsGetTxn(tx *memdb.Txn, key string) (uint64, *structs.DirE // prefix is left empty, all keys in the KVS will be returned. The returned // is the max index of the returned kvs entries or applicable tombstones, or // else it's the full table indexes for kvs and tombstones. -func (s *StateStore) KVSList(prefix string) (uint64, structs.DirEntries, error) { +func (s *StateStore) KVSList(ws memdb.WatchSet, prefix string) (uint64, structs.DirEntries, error) { tx := s.db.Txn(false) defer tx.Abort() - return s.kvsListTxn(tx, prefix) + return s.kvsListTxn(tx, ws, prefix) } // kvsListTxn is the inner method that gets a list of KVS entries matching a // prefix. -func (s *StateStore) kvsListTxn(tx *memdb.Txn, prefix string) (uint64, structs.DirEntries, error) { +func (s *StateStore) kvsListTxn(tx *memdb.Txn, ws memdb.WatchSet, prefix string) (uint64, structs.DirEntries, error) { // Get the table indexes. idx := maxIndexTxn(tx, "kvs", "tombstones") @@ -165,6 +162,7 @@ func (s *StateStore) kvsListTxn(tx *memdb.Txn, prefix string) (uint64, structs.D if err != nil { return 0, nil, fmt.Errorf("failed kvs lookup: %s", err) } + ws.Add(entries.WatchCh()) // Gather all of the keys found in the store var ents structs.DirEntries @@ -203,7 +201,7 @@ func (s *StateStore) kvsListTxn(tx *memdb.Txn, prefix string) (uint64, structs.D // An optional separator may be specified, which can be used to slice off a part // of the response so that only a subset of the prefix is returned. In this // mode, the keys which are omitted are still counted in the returned index. -func (s *StateStore) KVSListKeys(prefix, sep string) (uint64, []string, error) { +func (s *StateStore) KVSListKeys(ws memdb.WatchSet, prefix, sep string) (uint64, []string, error) { tx := s.db.Txn(false) defer tx.Abort() @@ -215,6 +213,7 @@ func (s *StateStore) KVSListKeys(prefix, sep string) (uint64, []string, error) { if err != nil { return 0, nil, fmt.Errorf("failed kvs lookup: %s", err) } + ws.Add(entries.WatchCh()) prefixLen := len(prefix) sepLen := len(sep) @@ -313,7 +312,6 @@ func (s *StateStore) kvsDeleteTxn(tx *memdb.Txn, idx uint64, key string) error { return fmt.Errorf("failed updating index: %s", err) } - tx.Defer(func() { s.kvsWatch.Notify(key, false) }) return nil } @@ -452,7 +450,6 @@ func (s *StateStore) kvsDeleteTreeTxn(tx *memdb.Txn, idx uint64, prefix string) // Update the index if modified { - tx.Defer(func() { s.kvsWatch.Notify(prefix, true) }) if err := tx.Insert("index", &IndexEntry{"kvs", idx}); err != nil { return fmt.Errorf("failed updating index: %s", err) } diff --git a/consul/state/kvs_test.go b/consul/state/kvs_test.go index bd8996a014..e3134563cc 100644 --- a/consul/state/kvs_test.go +++ b/consul/state/kvs_test.go @@ -7,6 +7,7 @@ import ( "time" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/go-memdb" ) func TestStateStore_GC(t *testing.T) { @@ -121,7 +122,7 @@ func TestStateStore_ReapTombstones(t *testing.T) { // Pull out the list and check the index, which should come from the // tombstones. - idx, _, err := s.KVSList("foo/") + idx, _, err := s.KVSList(nil, "foo/") if err != nil { t.Fatalf("err: %s", err) } @@ -135,7 +136,7 @@ func TestStateStore_ReapTombstones(t *testing.T) { } // Should still be good because 7 is in there. - idx, _, err = s.KVSList("foo/") + idx, _, err = s.KVSList(nil, "foo/") if err != nil { t.Fatalf("err: %s", err) } @@ -149,7 +150,7 @@ func TestStateStore_ReapTombstones(t *testing.T) { } // At this point the sub index will slide backwards. - idx, _, err = s.KVSList("foo/") + idx, _, err = s.KVSList(nil, "foo/") if err != nil { t.Fatalf("err: %s", err) } @@ -173,7 +174,8 @@ func TestStateStore_KVSSet_KVSGet(t *testing.T) { s := testStateStore(t) // Get on an nonexistent key returns nil. - idx, result, err := s.KVSGet("foo") + ws := memdb.NewWatchSet() + idx, result, err := s.KVSGet(ws, "foo") if result != nil || err != nil || idx != 0 { t.Fatalf("expected (0, nil, nil), got : (%#v, %#v, %#v)", idx, result, err) } @@ -186,9 +188,13 @@ func TestStateStore_KVSSet_KVSGet(t *testing.T) { if err := s.KVSSet(1, entry); err != nil { t.Fatalf("err: %s", err) } + if !watchFired(ws) { + t.Fatalf("bad") + } // Retrieve the K/V entry again. - idx, result, err = s.KVSGet("foo") + ws = memdb.NewWatchSet() + idx, result, err = s.KVSGet(ws, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -217,9 +223,13 @@ func TestStateStore_KVSSet_KVSGet(t *testing.T) { if err := s.KVSSet(2, update); err != nil { t.Fatalf("err: %s", err) } + if !watchFired(ws) { + t.Fatalf("bad") + } // Fetch the kv pair and check. - idx, result, err = s.KVSGet("foo") + ws = memdb.NewWatchSet() + idx, result, err = s.KVSGet(ws, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -242,9 +252,13 @@ func TestStateStore_KVSSet_KVSGet(t *testing.T) { if err := s.KVSSet(3, update); err != nil { t.Fatalf("err: %s", err) } + if !watchFired(ws) { + t.Fatalf("bad") + } // Fetch the kv pair and check. - idx, result, err = s.KVSGet("foo") + ws = memdb.NewWatchSet() + idx, result, err = s.KVSGet(ws, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -276,9 +290,13 @@ func TestStateStore_KVSSet_KVSGet(t *testing.T) { if !ok || err != nil { t.Fatalf("didn't get the lock: %v %s", ok, err) } + if !watchFired(ws) { + t.Fatalf("bad") + } // Fetch the kv pair and check. - idx, result, err = s.KVSGet("foo") + ws = memdb.NewWatchSet() + idx, result, err = s.KVSGet(ws, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -304,9 +322,13 @@ func TestStateStore_KVSSet_KVSGet(t *testing.T) { if err := s.KVSSet(7, update); err != nil { t.Fatalf("err: %s", err) } + if !watchFired(ws) { + t.Fatalf("bad") + } // Fetch the kv pair and check. - idx, result, err = s.KVSGet("foo") + ws = memdb.NewWatchSet() + idx, result, err = s.KVSGet(ws, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -323,11 +345,17 @@ func TestStateStore_KVSSet_KVSGet(t *testing.T) { t.Fatalf("bad index: %d", idx) } + // Setting some unrelated key should not fire the watch. + testSetKey(t, s, 8, "other", "yup") + if watchFired(ws) { + t.Fatalf("bad") + } + // Fetch a key that doesn't exist and make sure we get the right // response. - idx, result, err = s.KVSGet("nope") - if result != nil || err != nil || idx != 7 { - t.Fatalf("expected (7, nil, nil), got : (%#v, %#v, %#v)", idx, result, err) + idx, result, err = s.KVSGet(nil, "nope") + if result != nil || err != nil || idx != 8 { + t.Fatalf("expected (8, nil, nil), got : (%#v, %#v, %#v)", idx, result, err) } } @@ -335,7 +363,8 @@ func TestStateStore_KVSList(t *testing.T) { s := testStateStore(t) // Listing an empty KVS returns nothing - idx, entries, err := s.KVSList("") + ws := memdb.NewWatchSet() + idx, entries, err := s.KVSList(ws, "") if idx != 0 || entries != nil || err != nil { t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, entries, err) } @@ -346,9 +375,12 @@ func TestStateStore_KVSList(t *testing.T) { testSetKey(t, s, 3, "foo/bar/zip", "zip") testSetKey(t, s, 4, "foo/bar/zip/zorp", "zorp") testSetKey(t, s, 5, "foo/bar/baz", "baz") + if !watchFired(ws) { + t.Fatalf("bad") + } // List out all of the keys - idx, entries, err = s.KVSList("") + idx, entries, err = s.KVSList(nil, "") if err != nil { t.Fatalf("err: %s", err) } @@ -362,7 +394,7 @@ func TestStateStore_KVSList(t *testing.T) { } // Try listing with a provided prefix - idx, entries, err = s.KVSList("foo/bar/zip") + idx, entries, err = s.KVSList(nil, "foo/bar/zip") if err != nil { t.Fatalf("err: %s", err) } @@ -379,10 +411,19 @@ func TestStateStore_KVSList(t *testing.T) { } // Delete a key and make sure the index comes from the tombstone. + ws = memdb.NewWatchSet() + idx, _, err = s.KVSList(ws, "foo/bar/baz") + if err != nil { + t.Fatalf("err: %s", err) + } if err := s.KVSDelete(6, "foo/bar/baz"); err != nil { t.Fatalf("err: %s", err) } - idx, _, err = s.KVSList("foo/bar/baz") + if !watchFired(ws) { + t.Fatalf("bad") + } + ws = memdb.NewWatchSet() + idx, _, err = s.KVSList(ws, "foo/bar/baz") if err != nil { t.Fatalf("err: %s", err) } @@ -390,11 +431,15 @@ func TestStateStore_KVSList(t *testing.T) { t.Fatalf("bad index: %d", idx) } - // Set a different key to bump the index. + // Set a different key to bump the index. This shouldn't fire the + // watch since there's a different prefix. testSetKey(t, s, 7, "some/other/key", "") + if watchFired(ws) { + t.Fatalf("bad") + } // Make sure we get the right index from the tombstone. - idx, _, err = s.KVSList("foo/bar/baz") + idx, _, err = s.KVSList(nil, "foo/bar/baz") if err != nil { t.Fatalf("err: %s", err) } @@ -407,7 +452,7 @@ func TestStateStore_KVSList(t *testing.T) { if err := s.ReapTombstones(6); err != nil { t.Fatalf("err: %s", err) } - idx, _, err = s.KVSList("foo/bar/baz") + idx, _, err = s.KVSList(nil, "foo/bar/baz") if err != nil { t.Fatalf("err: %s", err) } @@ -416,7 +461,7 @@ func TestStateStore_KVSList(t *testing.T) { } // List all the keys to make sure the index is also correct. - idx, _, err = s.KVSList("") + idx, _, err = s.KVSList(nil, "") if err != nil { t.Fatalf("err: %s", err) } @@ -429,7 +474,8 @@ func TestStateStore_KVSListKeys(t *testing.T) { s := testStateStore(t) // Listing keys with no results returns nil. - idx, keys, err := s.KVSListKeys("", "") + ws := memdb.NewWatchSet() + idx, keys, err := s.KVSListKeys(ws, "", "") if idx != 0 || keys != nil || err != nil { t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, keys, err) } @@ -442,9 +488,12 @@ func TestStateStore_KVSListKeys(t *testing.T) { testSetKey(t, s, 5, "foo/bar/zip/zam", "zam") testSetKey(t, s, 6, "foo/bar/zip/zorp", "zorp") testSetKey(t, s, 7, "some/other/prefix", "nack") + if !watchFired(ws) { + t.Fatalf("bad") + } // List all the keys. - idx, keys, err = s.KVSListKeys("", "") + idx, keys, err = s.KVSListKeys(nil, "", "") if err != nil { t.Fatalf("err: %s", err) } @@ -456,7 +505,7 @@ func TestStateStore_KVSListKeys(t *testing.T) { } // Query using a prefix and pass a separator. - idx, keys, err = s.KVSListKeys("foo/bar/", "/") + idx, keys, err = s.KVSListKeys(nil, "foo/bar/", "/") if err != nil { t.Fatalf("err: %s", err) } @@ -474,7 +523,7 @@ func TestStateStore_KVSListKeys(t *testing.T) { } // Listing keys with no separator returns everything. - idx, keys, err = s.KVSListKeys("foo", "") + idx, keys, err = s.KVSListKeys(nil, "foo", "") if err != nil { t.Fatalf("err: %s", err) } @@ -488,10 +537,19 @@ func TestStateStore_KVSListKeys(t *testing.T) { } // Delete a key and make sure the index comes from the tombstone. + ws = memdb.NewWatchSet() + idx, _, err = s.KVSListKeys(ws, "foo/bar/baz", "") + if err != nil { + t.Fatalf("err: %s", err) + } if err := s.KVSDelete(8, "foo/bar/baz"); err != nil { t.Fatalf("err: %s", err) } - idx, _, err = s.KVSListKeys("foo/bar/baz", "") + if !watchFired(ws) { + t.Fatalf("bad") + } + ws = memdb.NewWatchSet() + idx, _, err = s.KVSListKeys(ws, "foo/bar/baz", "") if err != nil { t.Fatalf("err: %s", err) } @@ -499,11 +557,15 @@ func TestStateStore_KVSListKeys(t *testing.T) { t.Fatalf("bad index: %d", idx) } - // Set a different key to bump the index. + // Set a different key to bump the index. This shouldn't fire the watch + // since there's a different prefix. testSetKey(t, s, 9, "some/other/key", "") + if watchFired(ws) { + t.Fatalf("bad") + } // Make sure the index still comes from the tombstone. - idx, _, err = s.KVSListKeys("foo/bar/baz", "") + idx, _, err = s.KVSListKeys(nil, "foo/bar/baz", "") if err != nil { t.Fatalf("err: %s", err) } @@ -516,7 +578,7 @@ func TestStateStore_KVSListKeys(t *testing.T) { if err := s.ReapTombstones(8); err != nil { t.Fatalf("err: %s", err) } - idx, _, err = s.KVSListKeys("foo/bar/baz", "") + idx, _, err = s.KVSListKeys(nil, "foo/bar/baz", "") if err != nil { t.Fatalf("err: %s", err) } @@ -525,7 +587,7 @@ func TestStateStore_KVSListKeys(t *testing.T) { } // List all the keys to make sure the index is also correct. - idx, _, err = s.KVSListKeys("", "") + idx, _, err = s.KVSListKeys(nil, "", "") if err != nil { t.Fatalf("err: %s", err) } @@ -573,7 +635,7 @@ func TestStateStore_KVSDelete(t *testing.T) { // Check that the tombstone was created and that prevents the index // from sliding backwards. - idx, _, err := s.KVSList("foo") + idx, _, err := s.KVSList(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -586,7 +648,7 @@ func TestStateStore_KVSDelete(t *testing.T) { if err := s.ReapTombstones(3); err != nil { t.Fatalf("err: %s", err) } - idx, _, err = s.KVSList("foo") + idx, _, err = s.KVSList(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -620,7 +682,7 @@ func TestStateStore_KVSDeleteCAS(t *testing.T) { // Check that the index is untouched and the entry // has not been deleted. - idx, e, err := s.KVSGet("foo") + idx, e, err := s.KVSGet(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -639,7 +701,7 @@ func TestStateStore_KVSDeleteCAS(t *testing.T) { } // Entry was deleted and index was updated - idx, e, err = s.KVSGet("bar") + idx, e, err = s.KVSGet(nil, "bar") if err != nil { t.Fatalf("err: %s", err) } @@ -655,7 +717,7 @@ func TestStateStore_KVSDeleteCAS(t *testing.T) { // Check that the tombstone was created and that prevents the index // from sliding backwards. - idx, _, err = s.KVSList("bar") + idx, _, err = s.KVSList(nil, "bar") if err != nil { t.Fatalf("err: %s", err) } @@ -668,7 +730,7 @@ func TestStateStore_KVSDeleteCAS(t *testing.T) { if err := s.ReapTombstones(4); err != nil { t.Fatalf("err: %s", err) } - idx, _, err = s.KVSList("bar") + idx, _, err = s.KVSList(nil, "bar") if err != nil { t.Fatalf("err: %s", err) } @@ -733,7 +795,7 @@ func TestStateStore_KVSSetCAS(t *testing.T) { } // Entry was inserted - idx, entry, err := s.KVSGet("foo") + idx, entry, err := s.KVSGet(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -775,7 +837,7 @@ func TestStateStore_KVSSetCAS(t *testing.T) { } // Entry was not updated in the store - idx, entry, err = s.KVSGet("foo") + idx, entry, err = s.KVSGet(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -802,7 +864,7 @@ func TestStateStore_KVSSetCAS(t *testing.T) { } // Entry was updated - idx, entry, err = s.KVSGet("foo") + idx, entry, err = s.KVSGet(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -829,7 +891,7 @@ func TestStateStore_KVSSetCAS(t *testing.T) { } // Entry was updated, but the session should have been ignored. - idx, entry, err = s.KVSGet("foo") + idx, entry, err = s.KVSGet(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -874,7 +936,7 @@ func TestStateStore_KVSSetCAS(t *testing.T) { } // Entry was updated, and the lock status should have stayed the same. - idx, entry, err = s.KVSGet("foo") + idx, entry, err = s.KVSGet(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -938,7 +1000,7 @@ func TestStateStore_KVSDeleteTree(t *testing.T) { // Check that the tombstones ware created and that prevents the index // from sliding backwards. - idx, _, err := s.KVSList("foo") + idx, _, err := s.KVSList(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -951,7 +1013,7 @@ func TestStateStore_KVSDeleteTree(t *testing.T) { if err := s.ReapTombstones(5); err != nil { t.Fatalf("err: %s", err) } - idx, _, err = s.KVSList("foo") + idx, _, err = s.KVSList(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -1000,7 +1062,7 @@ func TestStateStore_KVSLock(t *testing.T) { } // Make sure the indexes got set properly. - idx, result, err := s.KVSGet("foo") + idx, result, err := s.KVSGet(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -1021,7 +1083,7 @@ func TestStateStore_KVSLock(t *testing.T) { // Make sure the indexes got set properly, note that the lock index // won't go up since we didn't lock it again. - idx, result, err = s.KVSGet("foo") + idx, result, err = s.KVSGet(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -1044,7 +1106,7 @@ func TestStateStore_KVSLock(t *testing.T) { } // Make sure the indexes got set properly. - idx, result, err = s.KVSGet("foo") + idx, result, err = s.KVSGet(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -1064,7 +1126,7 @@ func TestStateStore_KVSLock(t *testing.T) { } // Make sure the indexes got set properly. - idx, result, err = s.KVSGet("bar") + idx, result, err = s.KVSGet(nil, "bar") if err != nil { t.Fatalf("err: %s", err) } @@ -1090,7 +1152,7 @@ func TestStateStore_KVSLock(t *testing.T) { } // Make sure the indexes didn't update. - idx, result, err = s.KVSGet("bar") + idx, result, err = s.KVSGet(nil, "bar") if err != nil { t.Fatalf("err: %s", err) } @@ -1134,7 +1196,7 @@ func TestStateStore_KVSUnlock(t *testing.T) { } // Make sure the indexes didn't update. - idx, result, err := s.KVSGet("foo") + idx, result, err := s.KVSGet(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -1163,7 +1225,7 @@ func TestStateStore_KVSUnlock(t *testing.T) { } // Make sure the indexes didn't update. - idx, result, err = s.KVSGet("foo") + idx, result, err = s.KVSGet(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -1182,7 +1244,7 @@ func TestStateStore_KVSUnlock(t *testing.T) { } // Make sure the indexes got set properly. - idx, result, err = s.KVSGet("foo") + idx, result, err = s.KVSGet(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -1201,7 +1263,7 @@ func TestStateStore_KVSUnlock(t *testing.T) { } // Make sure the indexes didn't update. - idx, result, err = s.KVSGet("foo") + idx, result, err = s.KVSGet(nil, "foo") if err != nil { t.Fatalf("err: %s", err) } @@ -1294,7 +1356,7 @@ func TestStateStore_KVS_Snapshot_Restore(t *testing.T) { restore.Commit() // Read the restored keys back out and verify they match. - idx, res, err := s.KVSList("") + idx, res, err := s.KVSList(nil, "") if err != nil { t.Fatalf("err: %s", err) } @@ -1312,142 +1374,6 @@ func TestStateStore_KVS_Snapshot_Restore(t *testing.T) { }() } -func TestStateStore_KVS_Watches(t *testing.T) { - s := testStateStore(t) - - // This is used when locking down below. - testRegisterNode(t, s, 1, "node1") - session := testUUID() - if err := s.SessionCreate(2, &structs.Session{ID: session, Node: "node1"}); err != nil { - t.Fatalf("err: %s", err) - } - - // An empty prefix watch should hit on all KVS ops, and some other - // prefix should not be affected ever. We also add a positive prefix - // match. - verifyWatch(t, s.GetKVSWatch(""), func() { - verifyWatch(t, s.GetKVSWatch("a"), func() { - verifyNoWatch(t, s.GetKVSWatch("/nope"), func() { - if err := s.KVSSet(1, &structs.DirEntry{Key: "aaa"}); err != nil { - t.Fatalf("err: %s", err) - } - }) - }) - }) - verifyWatch(t, s.GetKVSWatch(""), func() { - verifyWatch(t, s.GetKVSWatch("a"), func() { - verifyNoWatch(t, s.GetKVSWatch("/nope"), func() { - if err := s.KVSSet(2, &structs.DirEntry{Key: "aaa"}); err != nil { - t.Fatalf("err: %s", err) - } - }) - }) - }) - - // Restore just fires off a top-level watch, so we should get hits on - // any prefix, including ones for keys that aren't in there. - verifyWatch(t, s.GetKVSWatch(""), func() { - verifyWatch(t, s.GetKVSWatch("b"), func() { - verifyWatch(t, s.GetKVSWatch("/nope"), func() { - restore := s.Restore() - if err := restore.KVS(&structs.DirEntry{Key: "bbb"}); err != nil { - t.Fatalf("err: %s", err) - } - restore.Commit() - }) - }) - }) - - verifyWatch(t, s.GetKVSWatch(""), func() { - verifyWatch(t, s.GetKVSWatch("a"), func() { - verifyNoWatch(t, s.GetKVSWatch("/nope"), func() { - if err := s.KVSDelete(3, "aaa"); err != nil { - t.Fatalf("err: %s", err) - } - }) - }) - }) - verifyWatch(t, s.GetKVSWatch(""), func() { - verifyWatch(t, s.GetKVSWatch("a"), func() { - verifyNoWatch(t, s.GetKVSWatch("/nope"), func() { - if ok, err := s.KVSSetCAS(4, &structs.DirEntry{Key: "aaa"}); !ok || err != nil { - t.Fatalf("ok: %v err: %s", ok, err) - } - }) - }) - }) - verifyWatch(t, s.GetKVSWatch(""), func() { - verifyWatch(t, s.GetKVSWatch("a"), func() { - verifyNoWatch(t, s.GetKVSWatch("/nope"), func() { - if ok, err := s.KVSLock(5, &structs.DirEntry{Key: "aaa", Session: session}); !ok || err != nil { - t.Fatalf("ok: %v err: %s", ok, err) - } - }) - }) - }) - verifyWatch(t, s.GetKVSWatch(""), func() { - verifyWatch(t, s.GetKVSWatch("a"), func() { - verifyNoWatch(t, s.GetKVSWatch("/nope"), func() { - if ok, err := s.KVSUnlock(6, &structs.DirEntry{Key: "aaa", Session: session}); !ok || err != nil { - t.Fatalf("ok: %v err: %s", ok, err) - } - }) - }) - }) - verifyWatch(t, s.GetKVSWatch(""), func() { - verifyWatch(t, s.GetKVSWatch("a"), func() { - verifyNoWatch(t, s.GetKVSWatch("/nope"), func() { - if err := s.KVSDeleteTree(7, "aaa"); err != nil { - t.Fatalf("err: %s", err) - } - }) - }) - }) - - // A delete tree operation at the top level will notify all the watches. - verifyWatch(t, s.GetKVSWatch(""), func() { - verifyWatch(t, s.GetKVSWatch("a"), func() { - verifyWatch(t, s.GetKVSWatch("/nope"), func() { - if err := s.KVSDeleteTree(8, ""); err != nil { - t.Fatalf("err: %s", err) - } - }) - }) - }) - - // Create a more interesting tree. - testSetKey(t, s, 9, "foo/bar", "bar") - testSetKey(t, s, 10, "foo/bar/baz", "baz") - testSetKey(t, s, 11, "foo/bar/zip", "zip") - testSetKey(t, s, 12, "foo/zorp", "zorp") - - // Deleting just the foo/bar key should not trigger watches on the - // children. - verifyWatch(t, s.GetKVSWatch("foo/bar"), func() { - verifyNoWatch(t, s.GetKVSWatch("foo/bar/baz"), func() { - verifyNoWatch(t, s.GetKVSWatch("foo/bar/zip"), func() { - if err := s.KVSDelete(13, "foo/bar"); err != nil { - t.Fatalf("err: %s", err) - } - }) - }) - }) - - // But a delete tree from that point should notify the whole subtree, - // even for keys that don't exist. - verifyWatch(t, s.GetKVSWatch("foo/bar"), func() { - verifyWatch(t, s.GetKVSWatch("foo/bar/baz"), func() { - verifyWatch(t, s.GetKVSWatch("foo/bar/zip"), func() { - verifyWatch(t, s.GetKVSWatch("foo/bar/uh/nope"), func() { - if err := s.KVSDeleteTree(14, "foo/bar"); err != nil { - t.Fatalf("err: %s", err) - } - }) - }) - }) - }) -} - func TestStateStore_Tombstone_Snapshot_Restore(t *testing.T) { s := testStateStore(t) @@ -1467,7 +1393,7 @@ func TestStateStore_Tombstone_Snapshot_Restore(t *testing.T) { if err := s.ReapTombstones(4); err != nil { t.Fatalf("err: %s", err) } - idx, _, err := s.KVSList("foo/bar") + idx, _, err := s.KVSList(nil, "foo/bar") if err != nil { t.Fatalf("err: %s", err) } @@ -1504,7 +1430,7 @@ func TestStateStore_Tombstone_Snapshot_Restore(t *testing.T) { restore.Commit() // See if the stone works properly in a list query. - idx, _, err := s.KVSList("foo/bar") + idx, _, err := s.KVSList(nil, "foo/bar") if err != nil { t.Fatalf("err: %s", err) } @@ -1518,7 +1444,7 @@ func TestStateStore_Tombstone_Snapshot_Restore(t *testing.T) { if err := s.ReapTombstones(4); err != nil { t.Fatalf("err: %s", err) } - idx, _, err = s.KVSList("foo/bar") + idx, _, err = s.KVSList(nil, "foo/bar") if err != nil { t.Fatalf("err: %s", err) } diff --git a/consul/state/prepared_query.go b/consul/state/prepared_query.go index c84496fbdd..e49ebceebd 100644 --- a/consul/state/prepared_query.go +++ b/consul/state/prepared_query.go @@ -14,6 +14,11 @@ var validUUID = regexp.MustCompile(`(?i)^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f // isUUID returns true if the given string is a valid UUID. func isUUID(str string) bool { + const uuidLen = 36 + if len(str) != uuidLen { + return false + } + return validUUID.MatchString(str) } @@ -75,7 +80,6 @@ func (s *StateRestore) PreparedQuery(query *structs.PreparedQuery) error { return fmt.Errorf("failed updating index: %s", err) } - s.watches.Arm("prepared-queries") return nil } @@ -193,7 +197,6 @@ func (s *StateStore) preparedQuerySetTxn(tx *memdb.Txn, idx uint64, query *struc return fmt.Errorf("failed updating index: %s", err) } - tx.Defer(func() { s.tableWatches["prepared-queries"].Notify() }) return nil } @@ -202,20 +205,17 @@ func (s *StateStore) PreparedQueryDelete(idx uint64, queryID string) error { tx := s.db.Txn(true) defer tx.Abort() - watches := NewDumbWatchManager(s.tableWatches) - if err := s.preparedQueryDeleteTxn(tx, idx, watches, queryID); err != nil { + if err := s.preparedQueryDeleteTxn(tx, idx, queryID); err != nil { return fmt.Errorf("failed prepared query delete: %s", err) } - tx.Defer(func() { watches.Notify() }) tx.Commit() return nil } // preparedQueryDeleteTxn is the inner method used to delete a prepared query // with the proper indexes into the state store. -func (s *StateStore) preparedQueryDeleteTxn(tx *memdb.Txn, idx uint64, watches *DumbWatchManager, - queryID string) error { +func (s *StateStore) preparedQueryDeleteTxn(tx *memdb.Txn, idx uint64, queryID string) error { // Pull the query. wrapped, err := tx.First("prepared-queries", "id", queryID) if err != nil { @@ -233,23 +233,23 @@ func (s *StateStore) preparedQueryDeleteTxn(tx *memdb.Txn, idx uint64, watches * return fmt.Errorf("failed updating index: %s", err) } - watches.Arm("prepared-queries") return nil } // PreparedQueryGet returns the given prepared query by ID. -func (s *StateStore) PreparedQueryGet(queryID string) (uint64, *structs.PreparedQuery, error) { +func (s *StateStore) PreparedQueryGet(ws memdb.WatchSet, queryID string) (uint64, *structs.PreparedQuery, error) { tx := s.db.Txn(false) defer tx.Abort() // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("PreparedQueryGet")...) + idx := maxIndexTxn(tx, "prepared-queries") // Look up the query by its ID. - wrapped, err := tx.First("prepared-queries", "id", queryID) + watchCh, wrapped, err := tx.FirstWatch("prepared-queries", "id", queryID) if err != nil { return 0, nil, fmt.Errorf("failed prepared query lookup: %s", err) } + ws.Add(watchCh) return idx, toPreparedQuery(wrapped), nil } @@ -261,7 +261,7 @@ func (s *StateStore) PreparedQueryResolve(queryIDOrName string) (uint64, *struct defer tx.Abort() // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("PreparedQueryResolve")...) + idx := maxIndexTxn(tx, "prepared-queries") // Explicitly ban an empty query. This will never match an ID and the // schema is set up so it will never match a query with an empty name, @@ -331,18 +331,19 @@ func (s *StateStore) PreparedQueryResolve(queryIDOrName string) (uint64, *struct } // PreparedQueryList returns all the prepared queries. -func (s *StateStore) PreparedQueryList() (uint64, structs.PreparedQueries, error) { +func (s *StateStore) PreparedQueryList(ws memdb.WatchSet) (uint64, structs.PreparedQueries, error) { tx := s.db.Txn(false) defer tx.Abort() // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("PreparedQueryList")...) + idx := maxIndexTxn(tx, "prepared-queries") // Query all of the prepared queries in the state store. queries, err := tx.Get("prepared-queries", "id") if err != nil { return 0, nil, fmt.Errorf("failed prepared query lookup: %s", err) } + ws.Add(queries.WatchCh()) // Go over all of the queries and build the response. var result structs.PreparedQueries diff --git a/consul/state/prepared_query_test.go b/consul/state/prepared_query_test.go index c0581986be..b42bde8e79 100644 --- a/consul/state/prepared_query_test.go +++ b/consul/state/prepared_query_test.go @@ -6,6 +6,7 @@ import ( "testing" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/go-memdb" ) func TestStateStore_PreparedQuery_isUUID(t *testing.T) { @@ -37,7 +38,8 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { s := testStateStore(t) // Querying with no results returns nil. - idx, res, err := s.PreparedQueryGet(testUUID()) + ws := memdb.NewWatchSet() + idx, res, err := s.PreparedQueryGet(ws, testUUID()) if idx != 0 || res != nil || err != nil { t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) } @@ -51,6 +53,9 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { if idx := s.maxIndex("prepared-queries"); idx != 0 { t.Fatalf("bad index: %d", idx) } + if watchFired(ws) { + t.Fatalf("bad") + } // Build a legit-looking query with the most basic options. query := &structs.PreparedQuery{ @@ -71,6 +76,9 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { if idx := s.maxIndex("prepared-queries"); idx != 0 { t.Fatalf("bad index: %d", idx) } + if watchFired(ws) { + t.Fatalf("bad") + } // Now register the service and remove the bogus session. testRegisterNode(t, s, 1, "foo") @@ -86,6 +94,9 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { if idx := s.maxIndex("prepared-queries"); idx != 3 { t.Fatalf("bad index: %d", idx) } + if !watchFired(ws) { + t.Fatalf("bad") + } // Read it back out and verify it. expected := &structs.PreparedQuery{ @@ -98,7 +109,8 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { ModifyIndex: 3, }, } - idx, actual, err := s.PreparedQueryGet(query.ID) + ws = memdb.NewWatchSet() + idx, actual, err := s.PreparedQueryGet(ws, query.ID) if err != nil { t.Fatalf("err: %s", err) } @@ -119,11 +131,15 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { if idx := s.maxIndex("prepared-queries"); idx != 4 { t.Fatalf("bad index: %d", idx) } + if !watchFired(ws) { + t.Fatalf("bad") + } // Read it back and verify the data was updated as well as the index. expected.Name = "test-query" expected.ModifyIndex = 4 - idx, actual, err = s.PreparedQueryGet(query.ID) + ws = memdb.NewWatchSet() + idx, actual, err = s.PreparedQueryGet(ws, query.ID) if err != nil { t.Fatalf("err: %s", err) } @@ -145,6 +161,9 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { if idx := s.maxIndex("prepared-queries"); idx != 4 { t.Fatalf("bad index: %d", idx) } + if watchFired(ws) { + t.Fatalf("bad") + } // Now make a session and try again. session := &structs.Session{ @@ -162,11 +181,15 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { if idx := s.maxIndex("prepared-queries"); idx != 6 { t.Fatalf("bad index: %d", idx) } + if !watchFired(ws) { + t.Fatalf("bad") + } // Read it back and verify the data was updated as well as the index. expected.Session = query.Session expected.ModifyIndex = 6 - idx, actual, err = s.PreparedQueryGet(query.ID) + ws = memdb.NewWatchSet() + idx, actual, err = s.PreparedQueryGet(ws, query.ID) if err != nil { t.Fatalf("err: %s", err) } @@ -192,7 +215,7 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { } // Sanity check to make sure it's not there. - idx, actual, err := s.PreparedQueryGet(evil.ID) + idx, actual, err := s.PreparedQueryGet(nil, evil.ID) if err != nil { t.Fatalf("err: %s", err) } @@ -220,7 +243,7 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { } // Sanity check to make sure it's not there. - idx, actual, err := s.PreparedQueryGet(evil.ID) + idx, actual, err := s.PreparedQueryGet(nil, evil.ID) if err != nil { t.Fatalf("err: %s", err) } @@ -250,7 +273,7 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { } // Sanity check to make sure it's not there. - idx, actual, err := s.PreparedQueryGet(evil.ID) + idx, actual, err := s.PreparedQueryGet(nil, evil.ID) if err != nil { t.Fatalf("err: %s", err) } @@ -266,6 +289,9 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { if idx := s.maxIndex("prepared-queries"); idx != 6 { t.Fatalf("bad index: %d", idx) } + if watchFired(ws) { + t.Fatalf("bad") + } // Turn the query into a template with an empty name. query.Name = "" @@ -280,6 +306,9 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { if idx := s.maxIndex("prepared-queries"); idx != 9 { t.Fatalf("bad index: %d", idx) } + if !watchFired(ws) { + t.Fatalf("bad") + } // Read it back and verify the data was updated as well as the index. expected.Name = "" @@ -287,7 +316,8 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { Type: structs.QueryTemplateTypeNamePrefixMatch, } expected.ModifyIndex = 9 - idx, actual, err = s.PreparedQueryGet(query.ID) + ws = memdb.NewWatchSet() + idx, actual, err = s.PreparedQueryGet(ws, query.ID) if err != nil { t.Fatalf("err: %s", err) } @@ -316,7 +346,7 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { } // Sanity check to make sure it's not there. - idx, actual, err := s.PreparedQueryGet(evil.ID) + idx, actual, err := s.PreparedQueryGet(nil, evil.ID) if err != nil { t.Fatalf("err: %s", err) } @@ -338,11 +368,15 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { if idx := s.maxIndex("prepared-queries"); idx != 11 { t.Fatalf("bad index: %d", idx) } + if !watchFired(ws) { + t.Fatalf("bad") + } // Read it back and verify the data was updated as well as the index. expected.Name = "prefix" expected.ModifyIndex = 11 - idx, actual, err = s.PreparedQueryGet(query.ID) + ws = memdb.NewWatchSet() + idx, actual, err = s.PreparedQueryGet(ws, query.ID) if err != nil { t.Fatalf("err: %s", err) } @@ -371,7 +405,7 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { } // Sanity check to make sure it's not there. - idx, actual, err := s.PreparedQueryGet(evil.ID) + idx, actual, err := s.PreparedQueryGet(nil, evil.ID) if err != nil { t.Fatalf("err: %s", err) } @@ -401,7 +435,7 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { } // Sanity check to make sure it's not there. - idx, actual, err := s.PreparedQueryGet(evil.ID) + idx, actual, err := s.PreparedQueryGet(nil, evil.ID) if err != nil { t.Fatalf("err: %s", err) } @@ -412,6 +446,10 @@ func TestStateStore_PreparedQuerySet_PreparedQueryGet(t *testing.T) { t.Fatalf("bad: %v", actual) } } + + if watchFired(ws) { + t.Fatalf("bad") + } } func TestStateStore_PreparedQueryDelete(t *testing.T) { @@ -460,7 +498,8 @@ func TestStateStore_PreparedQueryDelete(t *testing.T) { ModifyIndex: 3, }, } - idx, actual, err := s.PreparedQueryGet(query.ID) + ws := memdb.NewWatchSet() + idx, actual, err := s.PreparedQueryGet(ws, query.ID) if err != nil { t.Fatalf("err: %s", err) } @@ -480,9 +519,12 @@ func TestStateStore_PreparedQueryDelete(t *testing.T) { if idx := s.maxIndex("prepared-queries"); idx != 4 { t.Fatalf("bad index: %d", idx) } + if !watchFired(ws) { + t.Fatalf("bad") + } // Sanity check to make sure it's not there. - idx, actual, err = s.PreparedQueryGet(query.ID) + idx, actual, err = s.PreparedQueryGet(nil, query.ID) if err != nil { t.Fatalf("err: %s", err) } @@ -716,7 +758,8 @@ func TestStateStore_PreparedQueryList(t *testing.T) { s := testStateStore(t) // Make sure nothing is returned for an empty query - idx, actual, err := s.PreparedQueryList() + ws := memdb.NewWatchSet() + idx, actual, err := s.PreparedQueryList(ws) if err != nil { t.Fatalf("err: %s", err) } @@ -761,6 +804,9 @@ func TestStateStore_PreparedQueryList(t *testing.T) { t.Fatalf("err: %s", err) } } + if !watchFired(ws) { + t.Fatalf("bad") + } // Read it back and verify. expected := structs.PreparedQueries{ @@ -787,7 +833,7 @@ func TestStateStore_PreparedQueryList(t *testing.T) { }, }, } - idx, actual, err = s.PreparedQueryList() + idx, actual, err = s.PreparedQueryList(nil) if err != nil { t.Fatalf("err: %s", err) } @@ -901,7 +947,7 @@ func TestStateStore_PreparedQuery_Snapshot_Restore(t *testing.T) { // Read the restored queries back out and verify that they // match. - idx, actual, err := s.PreparedQueryList() + idx, actual, err := s.PreparedQueryList(nil) if err != nil { t.Fatalf("err: %s", err) } @@ -926,38 +972,3 @@ func TestStateStore_PreparedQuery_Snapshot_Restore(t *testing.T) { } }() } - -func TestStateStore_PreparedQuery_Watches(t *testing.T) { - s := testStateStore(t) - - // Set up our test environment. - testRegisterNode(t, s, 1, "foo") - testRegisterService(t, s, 2, "foo", "redis") - - query := &structs.PreparedQuery{ - ID: testUUID(), - Service: structs.ServiceQuery{ - Service: "redis", - }, - } - - // Call functions that update the queries table and make sure a watch - // fires each time. - verifyWatch(t, s.getTableWatch("prepared-queries"), func() { - if err := s.PreparedQuerySet(3, query); err != nil { - t.Fatalf("err: %s", err) - } - }) - verifyWatch(t, s.getTableWatch("prepared-queries"), func() { - if err := s.PreparedQueryDelete(4, query.ID); err != nil { - t.Fatalf("err: %s", err) - } - }) - verifyWatch(t, s.getTableWatch("prepared-queries"), func() { - restore := s.Restore() - if err := restore.PreparedQuery(query); err != nil { - t.Fatalf("err: %s", err) - } - restore.Commit() - }) -} diff --git a/consul/state/schema.go b/consul/state/schema.go index fca8a3cf23..9b93e2b5fb 100644 --- a/consul/state/schema.go +++ b/consul/state/schema.go @@ -78,6 +78,23 @@ func nodesTableSchema() *memdb.TableSchema { Lowercase: true, }, }, + "uuid": &memdb.IndexSchema{ + Name: "uuid", + AllowMissing: true, + Unique: true, + Indexer: &memdb.UUIDFieldIndex{ + Field: "ID", + }, + }, + "meta": &memdb.IndexSchema{ + Name: "meta", + AllowMissing: true, + Unique: false, + Indexer: &memdb.StringMapFieldIndex{ + Field: "Meta", + Lowercase: false, + }, + }, }, } } @@ -179,6 +196,22 @@ func checksTableSchema() *memdb.TableSchema { Lowercase: true, }, }, + "node_service_check": &memdb.IndexSchema{ + Name: "node_service_check", + AllowMissing: true, + Unique: false, + Indexer: &memdb.CompoundIndex{ + Indexes: []memdb.Indexer{ + &memdb.StringFieldIndex{ + Field: "Node", + Lowercase: true, + }, + &memdb.FieldSetIndex{ + Field: "ServiceID", + }, + }, + }, + }, "node_service": &memdb.IndexSchema{ Name: "node_service", AllowMissing: true, diff --git a/consul/state/session.go b/consul/state/session.go new file mode 100644 index 0000000000..78442146dd --- /dev/null +++ b/consul/state/session.go @@ -0,0 +1,343 @@ +package state + +import ( + "fmt" + "time" + + "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/go-memdb" +) + +// Sessions is used to pull the full list of sessions for use during snapshots. +func (s *StateSnapshot) Sessions() (memdb.ResultIterator, error) { + iter, err := s.tx.Get("sessions", "id") + if err != nil { + return nil, err + } + return iter, nil +} + +// Session is used when restoring from a snapshot. For general inserts, use +// SessionCreate. +func (s *StateRestore) Session(sess *structs.Session) error { + // Insert the session. + if err := s.tx.Insert("sessions", sess); err != nil { + return fmt.Errorf("failed inserting session: %s", err) + } + + // Insert the check mappings. + for _, checkID := range sess.Checks { + mapping := &sessionCheck{ + Node: sess.Node, + CheckID: checkID, + Session: sess.ID, + } + if err := s.tx.Insert("session_checks", mapping); err != nil { + return fmt.Errorf("failed inserting session check mapping: %s", err) + } + } + + // Update the index. + if err := indexUpdateMaxTxn(s.tx, sess.ModifyIndex, "sessions"); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + return nil +} + +// SessionCreate is used to register a new session in the state store. +func (s *StateStore) SessionCreate(idx uint64, sess *structs.Session) error { + tx := s.db.Txn(true) + defer tx.Abort() + + // This code is technically able to (incorrectly) update an existing + // session but we never do that in practice. The upstream endpoint code + // always adds a unique ID when doing a create operation so we never hit + // an existing session again. It isn't worth the overhead to verify + // that here, but it's worth noting that we should never do this in the + // future. + + // Call the session creation + if err := s.sessionCreateTxn(tx, idx, sess); err != nil { + return err + } + + tx.Commit() + return nil +} + +// sessionCreateTxn is the inner method used for creating session entries in +// an open transaction. Any health checks registered with the session will be +// checked for failing status. Returns any error encountered. +func (s *StateStore) sessionCreateTxn(tx *memdb.Txn, idx uint64, sess *structs.Session) error { + // Check that we have a session ID + if sess.ID == "" { + return ErrMissingSessionID + } + + // Verify the session behavior is valid + switch sess.Behavior { + case "": + // Release by default to preserve backwards compatibility + sess.Behavior = structs.SessionKeysRelease + case structs.SessionKeysRelease: + case structs.SessionKeysDelete: + default: + return fmt.Errorf("Invalid session behavior: %s", sess.Behavior) + } + + // Assign the indexes. ModifyIndex likely will not be used but + // we set it here anyways for sanity. + sess.CreateIndex = idx + sess.ModifyIndex = idx + + // Check that the node exists + node, err := tx.First("nodes", "id", sess.Node) + if err != nil { + return fmt.Errorf("failed node lookup: %s", err) + } + if node == nil { + return ErrMissingNode + } + + // Go over the session checks and ensure they exist. + for _, checkID := range sess.Checks { + check, err := tx.First("checks", "id", sess.Node, string(checkID)) + if err != nil { + return fmt.Errorf("failed check lookup: %s", err) + } + if check == nil { + return fmt.Errorf("Missing check '%s' registration", checkID) + } + + // Check that the check is not in critical state + status := check.(*structs.HealthCheck).Status + if status == structs.HealthCritical { + return fmt.Errorf("Check '%s' is in %s state", checkID, status) + } + } + + // Insert the session + if err := tx.Insert("sessions", sess); err != nil { + return fmt.Errorf("failed inserting session: %s", err) + } + + // Insert the check mappings + for _, checkID := range sess.Checks { + mapping := &sessionCheck{ + Node: sess.Node, + CheckID: checkID, + Session: sess.ID, + } + if err := tx.Insert("session_checks", mapping); err != nil { + return fmt.Errorf("failed inserting session check mapping: %s", err) + } + } + + // Update the index + if err := tx.Insert("index", &IndexEntry{"sessions", idx}); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + return nil +} + +// SessionGet is used to retrieve an active session from the state store. +func (s *StateStore) SessionGet(ws memdb.WatchSet, sessionID string) (uint64, *structs.Session, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "sessions") + + // Look up the session by its ID + watchCh, session, err := tx.FirstWatch("sessions", "id", sessionID) + if err != nil { + return 0, nil, fmt.Errorf("failed session lookup: %s", err) + } + ws.Add(watchCh) + if session != nil { + return idx, session.(*structs.Session), nil + } + return idx, nil, nil +} + +// SessionList returns a slice containing all of the active sessions. +func (s *StateStore) SessionList(ws memdb.WatchSet) (uint64, structs.Sessions, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "sessions") + + // Query all of the active sessions. + sessions, err := tx.Get("sessions", "id") + if err != nil { + return 0, nil, fmt.Errorf("failed session lookup: %s", err) + } + ws.Add(sessions.WatchCh()) + + // Go over the sessions and create a slice of them. + var result structs.Sessions + for session := sessions.Next(); session != nil; session = sessions.Next() { + result = append(result, session.(*structs.Session)) + } + return idx, result, nil +} + +// NodeSessions returns a set of active sessions associated +// with the given node ID. The returned index is the highest +// index seen from the result set. +func (s *StateStore) NodeSessions(ws memdb.WatchSet, nodeID string) (uint64, structs.Sessions, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // Get the table index. + idx := maxIndexTxn(tx, "sessions") + + // Get all of the sessions which belong to the node + sessions, err := tx.Get("sessions", "node", nodeID) + if err != nil { + return 0, nil, fmt.Errorf("failed session lookup: %s", err) + } + ws.Add(sessions.WatchCh()) + + // Go over all of the sessions and return them as a slice + var result structs.Sessions + for session := sessions.Next(); session != nil; session = sessions.Next() { + result = append(result, session.(*structs.Session)) + } + return idx, result, nil +} + +// SessionDestroy is used to remove an active session. This will +// implicitly invalidate the session and invoke the specified +// session destroy behavior. +func (s *StateStore) SessionDestroy(idx uint64, sessionID string) error { + tx := s.db.Txn(true) + defer tx.Abort() + + // Call the session deletion. + if err := s.deleteSessionTxn(tx, idx, sessionID); err != nil { + return err + } + + tx.Commit() + return nil +} + +// deleteSessionTxn is the inner method, which is used to do the actual +// session deletion and handle session invalidation, etc. +func (s *StateStore) deleteSessionTxn(tx *memdb.Txn, idx uint64, sessionID string) error { + // Look up the session. + sess, err := tx.First("sessions", "id", sessionID) + if err != nil { + return fmt.Errorf("failed session lookup: %s", err) + } + if sess == nil { + return nil + } + + // Delete the session and write the new index. + if err := tx.Delete("sessions", sess); err != nil { + return fmt.Errorf("failed deleting session: %s", err) + } + if err := tx.Insert("index", &IndexEntry{"sessions", idx}); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + // Enforce the max lock delay. + session := sess.(*structs.Session) + delay := session.LockDelay + if delay > structs.MaxLockDelay { + delay = structs.MaxLockDelay + } + + // Snag the current now time so that all the expirations get calculated + // the same way. + now := time.Now() + + // Get an iterator over all of the keys with the given session. + entries, err := tx.Get("kvs", "session", sessionID) + if err != nil { + return fmt.Errorf("failed kvs lookup: %s", err) + } + var kvs []interface{} + for entry := entries.Next(); entry != nil; entry = entries.Next() { + kvs = append(kvs, entry) + } + + // Invalidate any held locks. + switch session.Behavior { + case structs.SessionKeysRelease: + for _, obj := range kvs { + // Note that we clone here since we are modifying the + // returned object and want to make sure our set op + // respects the transaction we are in. + e := obj.(*structs.DirEntry).Clone() + e.Session = "" + if err := s.kvsSetTxn(tx, idx, e, true); err != nil { + return fmt.Errorf("failed kvs update: %s", err) + } + + // Apply the lock delay if present. + if delay > 0 { + s.lockDelay.SetExpiration(e.Key, now, delay) + } + } + case structs.SessionKeysDelete: + for _, obj := range kvs { + e := obj.(*structs.DirEntry) + if err := s.kvsDeleteTxn(tx, idx, e.Key); err != nil { + return fmt.Errorf("failed kvs delete: %s", err) + } + + // Apply the lock delay if present. + if delay > 0 { + s.lockDelay.SetExpiration(e.Key, now, delay) + } + } + default: + return fmt.Errorf("unknown session behavior %#v", session.Behavior) + } + + // Delete any check mappings. + mappings, err := tx.Get("session_checks", "session", sessionID) + if err != nil { + return fmt.Errorf("failed session checks lookup: %s", err) + } + { + var objs []interface{} + for mapping := mappings.Next(); mapping != nil; mapping = mappings.Next() { + objs = append(objs, mapping) + } + + // Do the delete in a separate loop so we don't trash the iterator. + for _, obj := range objs { + if err := tx.Delete("session_checks", obj); err != nil { + return fmt.Errorf("failed deleting session check: %s", err) + } + } + } + + // Delete any prepared queries. + queries, err := tx.Get("prepared-queries", "session", sessionID) + if err != nil { + return fmt.Errorf("failed prepared query lookup: %s", err) + } + { + var ids []string + for wrapped := queries.Next(); wrapped != nil; wrapped = queries.Next() { + ids = append(ids, toPreparedQuery(wrapped).ID) + } + + // Do the delete in a separate loop so we don't trash the iterator. + for _, id := range ids { + if err := s.preparedQueryDeleteTxn(tx, idx, id); err != nil { + return fmt.Errorf("failed prepared query delete: %s", err) + } + } + } + + return nil +} diff --git a/consul/state/session_test.go b/consul/state/session_test.go new file mode 100644 index 0000000000..e3280ae167 --- /dev/null +++ b/consul/state/session_test.go @@ -0,0 +1,932 @@ +package state + +import ( + "fmt" + "reflect" + "strings" + "testing" + "time" + + "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/consul/types" + "github.com/hashicorp/go-memdb" +) + +func TestStateStore_SessionCreate_SessionGet(t *testing.T) { + s := testStateStore(t) + + // SessionGet returns nil if the session doesn't exist + ws := memdb.NewWatchSet() + idx, session, err := s.SessionGet(ws, testUUID()) + if session != nil || err != nil { + t.Fatalf("expected (nil, nil), got: (%#v, %#v)", session, err) + } + if idx != 0 { + t.Fatalf("bad index: %d", idx) + } + + // Registering without a session ID is disallowed + err = s.SessionCreate(1, &structs.Session{}) + if err != ErrMissingSessionID { + t.Fatalf("expected %#v, got: %#v", ErrMissingSessionID, err) + } + + // Invalid session behavior throws error + sess := &structs.Session{ + ID: testUUID(), + Behavior: "nope", + } + err = s.SessionCreate(1, sess) + if err == nil || !strings.Contains(err.Error(), "session behavior") { + t.Fatalf("expected session behavior error, got: %#v", err) + } + + // Registering with an unknown node is disallowed + sess = &structs.Session{ID: testUUID()} + if err := s.SessionCreate(1, sess); err != ErrMissingNode { + t.Fatalf("expected %#v, got: %#v", ErrMissingNode, err) + } + + // None of the errored operations modified the index + if idx := s.maxIndex("sessions"); idx != 0 { + t.Fatalf("bad index: %d", idx) + } + if watchFired(ws) { + t.Fatalf("bad") + } + + // Valid session is able to register + testRegisterNode(t, s, 1, "node1") + sess = &structs.Session{ + ID: testUUID(), + Node: "node1", + } + if err := s.SessionCreate(2, sess); err != nil { + t.Fatalf("err: %s", err) + } + if idx := s.maxIndex("sessions"); idx != 2 { + t.Fatalf("bad index: %s", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Retrieve the session again + ws = memdb.NewWatchSet() + idx, session, err = s.SessionGet(ws, sess.ID) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 2 { + t.Fatalf("bad index: %d", idx) + } + + // Ensure the session looks correct and was assigned the + // proper default value for session behavior. + expect := &structs.Session{ + ID: sess.ID, + Behavior: structs.SessionKeysRelease, + Node: "node1", + RaftIndex: structs.RaftIndex{ + CreateIndex: 2, + ModifyIndex: 2, + }, + } + if !reflect.DeepEqual(expect, session) { + t.Fatalf("bad session: %#v", session) + } + + // Registering with a non-existent check is disallowed + sess = &structs.Session{ + ID: testUUID(), + Node: "node1", + Checks: []types.CheckID{"check1"}, + } + err = s.SessionCreate(3, sess) + if err == nil || !strings.Contains(err.Error(), "Missing check") { + t.Fatalf("expected missing check error, got: %#v", err) + } + + // Registering with a critical check is disallowed + testRegisterCheck(t, s, 3, "node1", "", "check1", structs.HealthCritical) + err = s.SessionCreate(4, sess) + if err == nil || !strings.Contains(err.Error(), structs.HealthCritical) { + t.Fatalf("expected critical state error, got: %#v", err) + } + if watchFired(ws) { + t.Fatalf("bad") + } + + // Registering with a healthy check succeeds (doesn't hit the watch since + // we are looking at the old session). + testRegisterCheck(t, s, 4, "node1", "", "check1", structs.HealthPassing) + if err := s.SessionCreate(5, sess); err != nil { + t.Fatalf("err: %s", err) + } + if watchFired(ws) { + t.Fatalf("bad") + } + + // Register a session against two checks. + testRegisterCheck(t, s, 5, "node1", "", "check2", structs.HealthPassing) + sess2 := &structs.Session{ + ID: testUUID(), + Node: "node1", + Checks: []types.CheckID{"check1", "check2"}, + } + if err := s.SessionCreate(6, sess2); err != nil { + t.Fatalf("err: %s", err) + } + + tx := s.db.Txn(false) + defer tx.Abort() + + // Check mappings were inserted + { + check, err := tx.First("session_checks", "session", sess.ID) + if err != nil { + t.Fatalf("err: %s", err) + } + if check == nil { + t.Fatalf("missing session check") + } + expectCheck := &sessionCheck{ + Node: "node1", + CheckID: "check1", + Session: sess.ID, + } + if actual := check.(*sessionCheck); !reflect.DeepEqual(actual, expectCheck) { + t.Fatalf("expected %#v, got: %#v", expectCheck, actual) + } + } + checks, err := tx.Get("session_checks", "session", sess2.ID) + if err != nil { + t.Fatalf("err: %s", err) + } + for i, check := 0, checks.Next(); check != nil; i, check = i+1, checks.Next() { + expectCheck := &sessionCheck{ + Node: "node1", + CheckID: types.CheckID(fmt.Sprintf("check%d", i+1)), + Session: sess2.ID, + } + if actual := check.(*sessionCheck); !reflect.DeepEqual(actual, expectCheck) { + t.Fatalf("expected %#v, got: %#v", expectCheck, actual) + } + } + + // Pulling a nonexistent session gives the table index. + idx, session, err = s.SessionGet(nil, testUUID()) + if err != nil { + t.Fatalf("err: %s", err) + } + if session != nil { + t.Fatalf("expected not to get a session: %v", session) + } + if idx != 6 { + t.Fatalf("bad index: %d", idx) + } +} + +func TegstStateStore_SessionList(t *testing.T) { + s := testStateStore(t) + + // Listing when no sessions exist returns nil + ws := memdb.NewWatchSet() + idx, res, err := s.SessionList(ws) + if idx != 0 || res != nil || err != nil { + t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) + } + + // Register some nodes + testRegisterNode(t, s, 1, "node1") + testRegisterNode(t, s, 2, "node2") + testRegisterNode(t, s, 3, "node3") + + // Create some sessions in the state store + sessions := structs.Sessions{ + &structs.Session{ + ID: testUUID(), + Node: "node1", + Behavior: structs.SessionKeysDelete, + }, + &structs.Session{ + ID: testUUID(), + Node: "node2", + Behavior: structs.SessionKeysRelease, + }, + &structs.Session{ + ID: testUUID(), + Node: "node3", + Behavior: structs.SessionKeysDelete, + }, + } + for i, session := range sessions { + if err := s.SessionCreate(uint64(4+i), session); err != nil { + t.Fatalf("err: %s", err) + } + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // List out all of the sessions + idx, sessionList, err := s.SessionList(nil) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 6 { + t.Fatalf("bad index: %d", idx) + } + if !reflect.DeepEqual(sessionList, sessions) { + t.Fatalf("bad: %#v", sessions) + } +} + +func TestStateStore_NodeSessions(t *testing.T) { + s := testStateStore(t) + + // Listing sessions with no results returns nil + ws := memdb.NewWatchSet() + idx, res, err := s.NodeSessions(ws, "node1") + if idx != 0 || res != nil || err != nil { + t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) + } + + // Create the nodes + testRegisterNode(t, s, 1, "node1") + testRegisterNode(t, s, 2, "node2") + + // Register some sessions with the nodes + sessions1 := structs.Sessions{ + &structs.Session{ + ID: testUUID(), + Node: "node1", + }, + &structs.Session{ + ID: testUUID(), + Node: "node1", + }, + } + sessions2 := []*structs.Session{ + &structs.Session{ + ID: testUUID(), + Node: "node2", + }, + &structs.Session{ + ID: testUUID(), + Node: "node2", + }, + } + for i, sess := range append(sessions1, sessions2...) { + if err := s.SessionCreate(uint64(3+i), sess); err != nil { + t.Fatalf("err: %s", err) + } + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Query all of the sessions associated with a specific + // node in the state store. + ws1 := memdb.NewWatchSet() + idx, res, err = s.NodeSessions(ws1, "node1") + if err != nil { + t.Fatalf("err: %s", err) + } + if len(res) != len(sessions1) { + t.Fatalf("bad: %#v", res) + } + if idx != 6 { + t.Fatalf("bad index: %d", idx) + } + + ws2 := memdb.NewWatchSet() + idx, res, err = s.NodeSessions(ws2, "node2") + if err != nil { + t.Fatalf("err: %s", err) + } + if len(res) != len(sessions2) { + t.Fatalf("bad: %#v", res) + } + if idx != 6 { + t.Fatalf("bad index: %d", idx) + } + + // Destroying a session on node1 should not affect node2's watch. + if err := s.SessionDestroy(100, sessions1[0].ID); err != nil { + t.Fatalf("err: %s", err) + } + if !watchFired(ws1) { + t.Fatalf("bad") + } + if watchFired(ws2) { + t.Fatalf("bad") + } +} + +func TestStateStore_SessionDestroy(t *testing.T) { + s := testStateStore(t) + + // Session destroy is idempotent and returns no error + // if the session doesn't exist. + if err := s.SessionDestroy(1, testUUID()); err != nil { + t.Fatalf("err: %s", err) + } + + // Ensure the index was not updated if nothing was destroyed. + if idx := s.maxIndex("sessions"); idx != 0 { + t.Fatalf("bad index: %d", idx) + } + + // Register a node. + testRegisterNode(t, s, 1, "node1") + + // Register a new session + sess := &structs.Session{ + ID: testUUID(), + Node: "node1", + } + if err := s.SessionCreate(2, sess); err != nil { + t.Fatalf("err: %s", err) + } + + // Destroy the session. + if err := s.SessionDestroy(3, sess.ID); err != nil { + t.Fatalf("err: %s", err) + } + + // Check that the index was updated + if idx := s.maxIndex("sessions"); idx != 3 { + t.Fatalf("bad index: %d", idx) + } + + // Make sure the session is really gone. + tx := s.db.Txn(false) + sessions, err := tx.Get("sessions", "id") + if err != nil || sessions.Next() != nil { + t.Fatalf("session should not exist") + } + tx.Abort() +} + +func TestStateStore_Session_Snapshot_Restore(t *testing.T) { + s := testStateStore(t) + + // Register some nodes and checks. + testRegisterNode(t, s, 1, "node1") + testRegisterNode(t, s, 2, "node2") + testRegisterNode(t, s, 3, "node3") + testRegisterCheck(t, s, 4, "node1", "", "check1", structs.HealthPassing) + + // Create some sessions in the state store. + session1 := testUUID() + sessions := structs.Sessions{ + &structs.Session{ + ID: session1, + Node: "node1", + Behavior: structs.SessionKeysDelete, + Checks: []types.CheckID{"check1"}, + }, + &structs.Session{ + ID: testUUID(), + Node: "node2", + Behavior: structs.SessionKeysRelease, + LockDelay: 10 * time.Second, + }, + &structs.Session{ + ID: testUUID(), + Node: "node3", + Behavior: structs.SessionKeysDelete, + TTL: "1.5s", + }, + } + for i, session := range sessions { + if err := s.SessionCreate(uint64(5+i), session); err != nil { + t.Fatalf("err: %s", err) + } + } + + // Snapshot the sessions. + snap := s.Snapshot() + defer snap.Close() + + // Alter the real state store. + if err := s.SessionDestroy(8, session1); err != nil { + t.Fatalf("err: %s", err) + } + + // Verify the snapshot. + if idx := snap.LastIndex(); idx != 7 { + t.Fatalf("bad index: %d", idx) + } + iter, err := snap.Sessions() + if err != nil { + t.Fatalf("err: %s", err) + } + var dump structs.Sessions + for session := iter.Next(); session != nil; session = iter.Next() { + sess := session.(*structs.Session) + dump = append(dump, sess) + + found := false + for i, _ := range sessions { + if sess.ID == sessions[i].ID { + if !reflect.DeepEqual(sess, sessions[i]) { + t.Fatalf("bad: %#v", sess) + } + found = true + } + } + if !found { + t.Fatalf("bad: %#v", sess) + } + } + + // Restore the sessions into a new state store. + func() { + s := testStateStore(t) + restore := s.Restore() + for _, session := range dump { + if err := restore.Session(session); err != nil { + t.Fatalf("err: %s", err) + } + } + restore.Commit() + + // Read the restored sessions back out and verify that they + // match. + idx, res, err := s.SessionList(nil) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 7 { + t.Fatalf("bad index: %d", idx) + } + for _, sess := range res { + found := false + for i, _ := range sessions { + if sess.ID == sessions[i].ID { + if !reflect.DeepEqual(sess, sessions[i]) { + t.Fatalf("bad: %#v", sess) + } + found = true + } + } + if !found { + t.Fatalf("bad: %#v", sess) + } + } + + // Check that the index was updated. + if idx := s.maxIndex("sessions"); idx != 7 { + t.Fatalf("bad index: %d", idx) + } + + // Manually verify that the session check mapping got restored. + tx := s.db.Txn(false) + defer tx.Abort() + + check, err := tx.First("session_checks", "session", session1) + if err != nil { + t.Fatalf("err: %s", err) + } + if check == nil { + t.Fatalf("missing session check") + } + expectCheck := &sessionCheck{ + Node: "node1", + CheckID: "check1", + Session: session1, + } + if actual := check.(*sessionCheck); !reflect.DeepEqual(actual, expectCheck) { + t.Fatalf("expected %#v, got: %#v", expectCheck, actual) + } + }() +} + +func TestStateStore_Session_Invalidate_DeleteNode(t *testing.T) { + s := testStateStore(t) + + // Set up our test environment. + if err := s.EnsureNode(3, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { + t.Fatalf("err: %v", err) + } + session := &structs.Session{ + ID: testUUID(), + Node: "foo", + } + if err := s.SessionCreate(14, session); err != nil { + t.Fatalf("err: %v", err) + } + + // Delete the node and make sure the watch fires. + ws := memdb.NewWatchSet() + idx, s2, err := s.SessionGet(ws, session.ID) + if err != nil { + t.Fatalf("err: %v", err) + } + if err := s.DeleteNode(15, "foo"); err != nil { + t.Fatalf("err: %v", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Lookup by ID, should be nil. + idx, s2, err = s.SessionGet(nil, session.ID) + if err != nil { + t.Fatalf("err: %v", err) + } + if s2 != nil { + t.Fatalf("session should be invalidated") + } + if idx != 15 { + t.Fatalf("bad index: %d", idx) + } +} + +func TestStateStore_Session_Invalidate_DeleteService(t *testing.T) { + s := testStateStore(t) + + // Set up our test environment. + if err := s.EnsureNode(11, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { + t.Fatalf("err: %v", err) + } + if err := s.EnsureService(12, "foo", &structs.NodeService{ID: "api", Service: "api", Tags: nil, Address: "", Port: 5000}); err != nil { + t.Fatalf("err: %v", err) + } + check := &structs.HealthCheck{ + Node: "foo", + CheckID: "api", + Name: "Can connect", + Status: structs.HealthPassing, + ServiceID: "api", + } + if err := s.EnsureCheck(13, check); err != nil { + t.Fatalf("err: %v", err) + } + session := &structs.Session{ + ID: testUUID(), + Node: "foo", + Checks: []types.CheckID{"api"}, + } + if err := s.SessionCreate(14, session); err != nil { + t.Fatalf("err: %v", err) + } + + // Delete the service and make sure the watch fires. + ws := memdb.NewWatchSet() + idx, s2, err := s.SessionGet(ws, session.ID) + if err != nil { + t.Fatalf("err: %v", err) + } + if err := s.DeleteService(15, "foo", "api"); err != nil { + t.Fatalf("err: %v", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Lookup by ID, should be nil. + idx, s2, err = s.SessionGet(nil, session.ID) + if err != nil { + t.Fatalf("err: %v", err) + } + if s2 != nil { + t.Fatalf("session should be invalidated") + } + if idx != 15 { + t.Fatalf("bad index: %d", idx) + } +} + +func TestStateStore_Session_Invalidate_Critical_Check(t *testing.T) { + s := testStateStore(t) + + // Set up our test environment. + if err := s.EnsureNode(3, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { + t.Fatalf("err: %v", err) + } + check := &structs.HealthCheck{ + Node: "foo", + CheckID: "bar", + Status: structs.HealthPassing, + } + if err := s.EnsureCheck(13, check); err != nil { + t.Fatalf("err: %v", err) + } + session := &structs.Session{ + ID: testUUID(), + Node: "foo", + Checks: []types.CheckID{"bar"}, + } + if err := s.SessionCreate(14, session); err != nil { + t.Fatalf("err: %v", err) + } + + // Invalidate the check and make sure the watches fire. + ws := memdb.NewWatchSet() + idx, s2, err := s.SessionGet(ws, session.ID) + if err != nil { + t.Fatalf("err: %v", err) + } + check.Status = structs.HealthCritical + if err := s.EnsureCheck(15, check); err != nil { + t.Fatalf("err: %v", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Lookup by ID, should be nil. + idx, s2, err = s.SessionGet(nil, session.ID) + if err != nil { + t.Fatalf("err: %v", err) + } + if s2 != nil { + t.Fatalf("session should be invalidated") + } + if idx != 15 { + t.Fatalf("bad index: %d", idx) + } +} + +func TestStateStore_Session_Invalidate_DeleteCheck(t *testing.T) { + s := testStateStore(t) + + // Set up our test environment. + if err := s.EnsureNode(3, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { + t.Fatalf("err: %v", err) + } + check := &structs.HealthCheck{ + Node: "foo", + CheckID: "bar", + Status: structs.HealthPassing, + } + if err := s.EnsureCheck(13, check); err != nil { + t.Fatalf("err: %v", err) + } + session := &structs.Session{ + ID: testUUID(), + Node: "foo", + Checks: []types.CheckID{"bar"}, + } + if err := s.SessionCreate(14, session); err != nil { + t.Fatalf("err: %v", err) + } + + // Delete the check and make sure the watches fire. + ws := memdb.NewWatchSet() + idx, s2, err := s.SessionGet(ws, session.ID) + if err != nil { + t.Fatalf("err: %v", err) + } + if err := s.DeleteCheck(15, "foo", "bar"); err != nil { + t.Fatalf("err: %v", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Lookup by ID, should be nil. + idx, s2, err = s.SessionGet(nil, session.ID) + if err != nil { + t.Fatalf("err: %v", err) + } + if s2 != nil { + t.Fatalf("session should be invalidated") + } + if idx != 15 { + t.Fatalf("bad index: %d", idx) + } + + // Manually make sure the session checks mapping is clear. + tx := s.db.Txn(false) + mapping, err := tx.First("session_checks", "session", session.ID) + if err != nil { + t.Fatalf("err: %s", err) + } + if mapping != nil { + t.Fatalf("unexpected session check") + } + tx.Abort() +} + +func TestStateStore_Session_Invalidate_Key_Unlock_Behavior(t *testing.T) { + s := testStateStore(t) + + // Set up our test environment. + if err := s.EnsureNode(3, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { + t.Fatalf("err: %v", err) + } + session := &structs.Session{ + ID: testUUID(), + Node: "foo", + LockDelay: 50 * time.Millisecond, + } + if err := s.SessionCreate(4, session); err != nil { + t.Fatalf("err: %v", err) + } + + // Lock a key with the session. + d := &structs.DirEntry{ + Key: "/foo", + Flags: 42, + Value: []byte("test"), + Session: session.ID, + } + ok, err := s.KVSLock(5, d) + if err != nil { + t.Fatalf("err: %v", err) + } + if !ok { + t.Fatalf("unexpected fail") + } + + // Delete the node and make sure the watches fire. + ws := memdb.NewWatchSet() + idx, s2, err := s.SessionGet(ws, session.ID) + if err != nil { + t.Fatalf("err: %v", err) + } + if err := s.DeleteNode(6, "foo"); err != nil { + t.Fatalf("err: %v", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Lookup by ID, should be nil. + idx, s2, err = s.SessionGet(nil, session.ID) + if err != nil { + t.Fatalf("err: %v", err) + } + if s2 != nil { + t.Fatalf("session should be invalidated") + } + if idx != 6 { + t.Fatalf("bad index: %d", idx) + } + + // Key should be unlocked. + idx, d2, err := s.KVSGet(nil, "/foo") + if err != nil { + t.Fatalf("err: %s", err) + } + if d2.ModifyIndex != 6 { + t.Fatalf("bad index: %v", d2.ModifyIndex) + } + if d2.LockIndex != 1 { + t.Fatalf("bad: %v", *d2) + } + if d2.Session != "" { + t.Fatalf("bad: %v", *d2) + } + if idx != 6 { + t.Fatalf("bad index: %d", idx) + } + + // Key should have a lock delay. + expires := s.KVSLockDelay("/foo") + if expires.Before(time.Now().Add(30 * time.Millisecond)) { + t.Fatalf("Bad: %v", expires) + } +} + +func TestStateStore_Session_Invalidate_Key_Delete_Behavior(t *testing.T) { + s := testStateStore(t) + + // Set up our test environment. + if err := s.EnsureNode(3, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { + t.Fatalf("err: %v", err) + } + session := &structs.Session{ + ID: testUUID(), + Node: "foo", + LockDelay: 50 * time.Millisecond, + Behavior: structs.SessionKeysDelete, + } + if err := s.SessionCreate(4, session); err != nil { + t.Fatalf("err: %v", err) + } + + // Lock a key with the session. + d := &structs.DirEntry{ + Key: "/bar", + Flags: 42, + Value: []byte("test"), + Session: session.ID, + } + ok, err := s.KVSLock(5, d) + if err != nil { + t.Fatalf("err: %v", err) + } + if !ok { + t.Fatalf("unexpected fail") + } + + // Delete the node and make sure the watches fire. + ws := memdb.NewWatchSet() + idx, s2, err := s.SessionGet(ws, session.ID) + if err != nil { + t.Fatalf("err: %v", err) + } + if err := s.DeleteNode(6, "foo"); err != nil { + t.Fatalf("err: %v", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Lookup by ID, should be nil. + idx, s2, err = s.SessionGet(nil, session.ID) + if err != nil { + t.Fatalf("err: %v", err) + } + if s2 != nil { + t.Fatalf("session should be invalidated") + } + if idx != 6 { + t.Fatalf("bad index: %d", idx) + } + + // Key should be deleted. + idx, d2, err := s.KVSGet(nil, "/bar") + if err != nil { + t.Fatalf("err: %s", err) + } + if d2 != nil { + t.Fatalf("unexpected deleted key") + } + if idx != 6 { + t.Fatalf("bad index: %d", idx) + } + + // Key should have a lock delay. + expires := s.KVSLockDelay("/bar") + if expires.Before(time.Now().Add(30 * time.Millisecond)) { + t.Fatalf("Bad: %v", expires) + } +} + +func TestStateStore_Session_Invalidate_PreparedQuery_Delete(t *testing.T) { + s := testStateStore(t) + + // Set up our test environment. + testRegisterNode(t, s, 1, "foo") + testRegisterService(t, s, 2, "foo", "redis") + session := &structs.Session{ + ID: testUUID(), + Node: "foo", + } + if err := s.SessionCreate(3, session); err != nil { + t.Fatalf("err: %v", err) + } + query := &structs.PreparedQuery{ + ID: testUUID(), + Session: session.ID, + Service: structs.ServiceQuery{ + Service: "redis", + }, + } + if err := s.PreparedQuerySet(4, query); err != nil { + t.Fatalf("err: %s", err) + } + + // Invalidate the session and make sure the watches fire. + ws := memdb.NewWatchSet() + idx, s2, err := s.SessionGet(ws, session.ID) + if err != nil { + t.Fatalf("err: %v", err) + } + if err := s.SessionDestroy(5, session.ID); err != nil { + t.Fatalf("err: %v", err) + } + if !watchFired(ws) { + t.Fatalf("bad") + } + + // Make sure the session is gone. + idx, s2, err = s.SessionGet(nil, session.ID) + if err != nil { + t.Fatalf("err: %v", err) + } + if s2 != nil { + t.Fatalf("session should be invalidated") + } + if idx != 5 { + t.Fatalf("bad index: %d", idx) + } + + // Make sure the query is gone and the index is updated. + idx, q2, err := s.PreparedQueryGet(nil, query.ID) + if err != nil { + t.Fatalf("err: %s", err) + } + if idx != 5 { + t.Fatalf("bad index: %d", idx) + } + if q2 != nil { + t.Fatalf("bad: %v", q2) + } +} diff --git a/consul/state/state_store.go b/consul/state/state_store.go index a2c94b7df6..06481db031 100644 --- a/consul/state/state_store.go +++ b/consul/state/state_store.go @@ -3,13 +3,9 @@ package state import ( "errors" "fmt" - "strings" - "time" - "github.com/hashicorp/consul/consul/structs" "github.com/hashicorp/consul/types" "github.com/hashicorp/go-memdb" - "github.com/hashicorp/serf/coordinate" ) var ( @@ -34,6 +30,18 @@ var ( ErrMissingQueryID = errors.New("Missing Query ID") ) +const ( + // watchLimit is used as a soft limit to cap how many watches we allow + // for a given blocking query. If this is exceeded, then we will use a + // higher-level watch that's less fine-grained. This isn't as bad as it + // seems since we have made the main culprits (nodes and services) more + // efficient by diffing before we update via register requests. + // + // Given the current size of aFew == 32 in memdb's watch_few.go, this + // will allow for up to ~64 goroutines per blocking query. + watchLimit = 2048 +) + // StateStore is where we store all of Consul's state, including // records of node registrations, services, checks, key/value // pairs and more. The DB is entirely in-memory and is constructed @@ -42,11 +50,9 @@ type StateStore struct { schema *memdb.DBSchema db *memdb.MemDB - // tableWatches holds all the full table watches, indexed by table name. - tableWatches map[string]*FullTableWatch - - // kvsWatch holds the special prefix watch for the key value store. - kvsWatch *PrefixWatchManager + // abandonCh is used to signal watchers that this state store has been + // abandoned (usually during a restore). This is only ever closed. + abandonCh chan struct{} // kvsGraveyard manages tombstones for the key value store. kvsGraveyard *Graveyard @@ -66,9 +72,8 @@ type StateSnapshot struct { // StateRestore is used to efficiently manage restoring a large amount of // data to a state store. type StateRestore struct { - store *StateStore - tx *memdb.Txn - watches *DumbWatchManager + store *StateStore + tx *memdb.Txn } // IndexEntry keeps a record of the last index per-table. @@ -96,22 +101,11 @@ func NewStateStore(gc *TombstoneGC) (*StateStore, error) { return nil, fmt.Errorf("Failed setting up state store: %s", err) } - // Build up the all-table watches. - tableWatches := make(map[string]*FullTableWatch) - for table, _ := range schema.Tables { - if table == "kvs" || table == "tombstones" { - continue - } - - tableWatches[table] = NewFullTableWatch() - } - // Create and return the state store. s := &StateStore{ schema: schema, db: db, - tableWatches: tableWatches, - kvsWatch: NewPrefixWatchManager(), + abandonCh: make(chan struct{}), kvsGraveyard: NewGraveyard(gc), lockDelay: NewDelay(), } @@ -141,69 +135,12 @@ func (s *StateSnapshot) Close() { s.tx.Abort() } -// Nodes is used to pull the full list of nodes for use during snapshots. -func (s *StateSnapshot) Nodes() (memdb.ResultIterator, error) { - iter, err := s.tx.Get("nodes", "id") - if err != nil { - return nil, err - } - return iter, nil -} - -// Services is used to pull the full list of services for a given node for use -// during snapshots. -func (s *StateSnapshot) Services(node string) (memdb.ResultIterator, error) { - iter, err := s.tx.Get("services", "node", node) - if err != nil { - return nil, err - } - return iter, nil -} - -// Checks is used to pull the full list of checks for a given node for use -// during snapshots. -func (s *StateSnapshot) Checks(node string) (memdb.ResultIterator, error) { - iter, err := s.tx.Get("checks", "node", node) - if err != nil { - return nil, err - } - return iter, nil -} - -// Sessions is used to pull the full list of sessions for use during snapshots. -func (s *StateSnapshot) Sessions() (memdb.ResultIterator, error) { - iter, err := s.tx.Get("sessions", "id") - if err != nil { - return nil, err - } - return iter, nil -} - -// ACLs is used to pull all the ACLs from the snapshot. -func (s *StateSnapshot) ACLs() (memdb.ResultIterator, error) { - iter, err := s.tx.Get("acls", "id") - if err != nil { - return nil, err - } - return iter, nil -} - -// Coordinates is used to pull all the coordinates from the snapshot. -func (s *StateSnapshot) Coordinates() (memdb.ResultIterator, error) { - iter, err := s.tx.Get("coordinates", "id") - if err != nil { - return nil, err - } - return iter, nil -} - // Restore is used to efficiently manage restoring a large amount of data into // the state store. It works by doing all the restores inside of a single // transaction. func (s *StateStore) Restore() *StateRestore { tx := s.db.Txn(true) - watches := NewDumbWatchManager(s.tableWatches) - return &StateRestore{s, tx, watches} + return &StateRestore{s, tx} } // Abort abandons the changes made by a restore. This or Commit should always be @@ -215,83 +152,19 @@ func (s *StateRestore) Abort() { // Commit commits the changes made by a restore. This or Abort should always be // called. func (s *StateRestore) Commit() { - // Fire off a single KVS watch instead of a zillion prefix ones, and use - // a dumb watch manager to single-fire all the full table watches. - s.tx.Defer(func() { s.store.kvsWatch.Notify("", true) }) - s.tx.Defer(func() { s.watches.Notify() }) - s.tx.Commit() } -// Registration is used to make sure a node, service, and check registration is -// performed within a single transaction to avoid race conditions on state -// updates. -func (s *StateRestore) Registration(idx uint64, req *structs.RegisterRequest) error { - if err := s.store.ensureRegistrationTxn(s.tx, idx, s.watches, req); err != nil { - return err - } - return nil +// AbandonCh returns a channel you can wait on to know if the state store was +// abandoned. +func (s *StateStore) AbandonCh() <-chan struct{} { + return s.abandonCh } -// Session is used when restoring from a snapshot. For general inserts, use -// SessionCreate. -func (s *StateRestore) Session(sess *structs.Session) error { - // Insert the session. - if err := s.tx.Insert("sessions", sess); err != nil { - return fmt.Errorf("failed inserting session: %s", err) - } - - // Insert the check mappings. - for _, checkID := range sess.Checks { - mapping := &sessionCheck{ - Node: sess.Node, - CheckID: checkID, - Session: sess.ID, - } - if err := s.tx.Insert("session_checks", mapping); err != nil { - return fmt.Errorf("failed inserting session check mapping: %s", err) - } - } - - // Update the index. - if err := indexUpdateMaxTxn(s.tx, sess.ModifyIndex, "sessions"); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } - - s.watches.Arm("sessions") - return nil -} - -// ACL is used when restoring from a snapshot. For general inserts, use ACLSet. -func (s *StateRestore) ACL(acl *structs.ACL) error { - if err := s.tx.Insert("acls", acl); err != nil { - return fmt.Errorf("failed restoring acl: %s", err) - } - - if err := indexUpdateMaxTxn(s.tx, acl.ModifyIndex, "acls"); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } - - s.watches.Arm("acls") - return nil -} - -// Coordinates is used when restoring from a snapshot. For general inserts, use -// CoordinateBatchUpdate. We do less vetting of the updates here because they -// already got checked on the way in during a batch update. -func (s *StateRestore) Coordinates(idx uint64, updates structs.Coordinates) error { - for _, update := range updates { - if err := s.tx.Insert("coordinates", update); err != nil { - return fmt.Errorf("failed restoring coordinate: %s", err) - } - } - - if err := indexUpdateMaxTxn(s.tx, idx, "coordinates"); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } - - s.watches.Arm("coordinates") - return nil +// Abandon is used to signal that the given state store has been abandoned. +// Calling this more than one time will panic. +func (s *StateStore) Abandon() { + close(s.abandonCh) } // maxIndex is a helper used to retrieve the highest known index @@ -339,1554 +212,3 @@ func indexUpdateMaxTxn(tx *memdb.Txn, idx uint64, table string) error { return nil } - -// getWatchTables returns the list of tables that should be watched and used for -// max index calculations for the given query method. This is used for all -// methods except for KVS. This will panic if the method is unknown. -func (s *StateStore) getWatchTables(method string) []string { - switch method { - case "GetNode", "Nodes": - return []string{"nodes"} - case "Services": - return []string{"services"} - case "ServiceNodes", "NodeServices": - return []string{"nodes", "services"} - case "NodeChecks", "ServiceChecks", "ChecksInState": - return []string{"checks"} - case "CheckServiceNodes", "NodeInfo", "NodeDump": - return []string{"nodes", "services", "checks"} - case "SessionGet", "SessionList", "NodeSessions": - return []string{"sessions"} - case "ACLGet", "ACLList": - return []string{"acls"} - case "Coordinates": - return []string{"coordinates"} - case "PreparedQueryGet", "PreparedQueryResolve", "PreparedQueryList": - return []string{"prepared-queries"} - } - - panic(fmt.Sprintf("Unknown method %s", method)) -} - -// getTableWatch returns a full table watch for the given table. This will panic -// if the table doesn't have a full table watch. -func (s *StateStore) getTableWatch(table string) Watch { - if watch, ok := s.tableWatches[table]; ok { - return watch - } - - panic(fmt.Sprintf("Unknown watch for table %s", table)) -} - -// GetQueryWatch returns a watch for the given query method. This is -// used for all methods except for KV; you should call GetKVSWatch instead. -// This will panic if the method is unknown. -func (s *StateStore) GetQueryWatch(method string) Watch { - tables := s.getWatchTables(method) - if len(tables) == 1 { - return s.getTableWatch(tables[0]) - } - - var watches []Watch - for _, table := range tables { - watches = append(watches, s.getTableWatch(table)) - } - return NewMultiWatch(watches...) -} - -// GetKVSWatch returns a watch for the given prefix in the key value store. -func (s *StateStore) GetKVSWatch(prefix string) Watch { - return s.kvsWatch.NewPrefixWatch(prefix) -} - -// EnsureRegistration is used to make sure a node, service, and check -// registration is performed within a single transaction to avoid race -// conditions on state updates. -func (s *StateStore) EnsureRegistration(idx uint64, req *structs.RegisterRequest) error { - tx := s.db.Txn(true) - defer tx.Abort() - - watches := NewDumbWatchManager(s.tableWatches) - if err := s.ensureRegistrationTxn(tx, idx, watches, req); err != nil { - return err - } - - tx.Defer(func() { watches.Notify() }) - tx.Commit() - return nil -} - -// ensureRegistrationTxn is used to make sure a node, service, and check -// registration is performed within a single transaction to avoid race -// conditions on state updates. -func (s *StateStore) ensureRegistrationTxn(tx *memdb.Txn, idx uint64, watches *DumbWatchManager, - req *structs.RegisterRequest) error { - // Add the node. - node := &structs.Node{ - Node: req.Node, - Address: req.Address, - TaggedAddresses: req.TaggedAddresses, - } - if err := s.ensureNodeTxn(tx, idx, watches, node); err != nil { - return fmt.Errorf("failed inserting node: %s", err) - } - - // Add the service, if any. - if req.Service != nil { - if err := s.ensureServiceTxn(tx, idx, watches, req.Node, req.Service); err != nil { - return fmt.Errorf("failed inserting service: %s", err) - } - } - - // Add the checks, if any. - if req.Check != nil { - if err := s.ensureCheckTxn(tx, idx, watches, req.Check); err != nil { - return fmt.Errorf("failed inserting check: %s", err) - } - } - for _, check := range req.Checks { - if err := s.ensureCheckTxn(tx, idx, watches, check); err != nil { - return fmt.Errorf("failed inserting check: %s", err) - } - } - - return nil -} - -// EnsureNode is used to upsert node registration or modification. -func (s *StateStore) EnsureNode(idx uint64, node *structs.Node) error { - tx := s.db.Txn(true) - defer tx.Abort() - - // Call the node upsert - watches := NewDumbWatchManager(s.tableWatches) - if err := s.ensureNodeTxn(tx, idx, watches, node); err != nil { - return err - } - - tx.Defer(func() { watches.Notify() }) - tx.Commit() - return nil -} - -// ensureNodeTxn is the inner function called to actually create a node -// registration or modify an existing one in the state store. It allows -// passing in a memdb transaction so it may be part of a larger txn. -func (s *StateStore) ensureNodeTxn(tx *memdb.Txn, idx uint64, watches *DumbWatchManager, - node *structs.Node) error { - // Check for an existing node - existing, err := tx.First("nodes", "id", node.Node) - if err != nil { - return fmt.Errorf("node lookup failed: %s", err) - } - - // Get the indexes - if existing != nil { - node.CreateIndex = existing.(*structs.Node).CreateIndex - node.ModifyIndex = idx - } else { - node.CreateIndex = idx - node.ModifyIndex = idx - } - - // Insert the node and update the index - if err := tx.Insert("nodes", node); err != nil { - return fmt.Errorf("failed inserting node: %s", err) - } - if err := tx.Insert("index", &IndexEntry{"nodes", idx}); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } - - watches.Arm("nodes") - return nil -} - -// GetNode is used to retrieve a node registration by node ID. -func (s *StateStore) GetNode(id string) (uint64, *structs.Node, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("GetNode")...) - - // Retrieve the node from the state store - node, err := tx.First("nodes", "id", id) - if err != nil { - return 0, nil, fmt.Errorf("node lookup failed: %s", err) - } - if node != nil { - return idx, node.(*structs.Node), nil - } - return idx, nil, nil -} - -// Nodes is used to return all of the known nodes. -func (s *StateStore) Nodes() (uint64, structs.Nodes, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("Nodes")...) - - // Retrieve all of the nodes - nodes, err := tx.Get("nodes", "id") - if err != nil { - return 0, nil, fmt.Errorf("failed nodes lookup: %s", err) - } - - // Create and return the nodes list. - var results structs.Nodes - for node := nodes.Next(); node != nil; node = nodes.Next() { - results = append(results, node.(*structs.Node)) - } - return idx, results, nil -} - -// DeleteNode is used to delete a given node by its ID. -func (s *StateStore) DeleteNode(idx uint64, nodeID string) error { - tx := s.db.Txn(true) - defer tx.Abort() - - // Call the node deletion. - if err := s.deleteNodeTxn(tx, idx, nodeID); err != nil { - return err - } - - tx.Commit() - return nil -} - -// deleteNodeTxn is the inner method used for removing a node from -// the store within a given transaction. -func (s *StateStore) deleteNodeTxn(tx *memdb.Txn, idx uint64, nodeID string) error { - // Look up the node. - node, err := tx.First("nodes", "id", nodeID) - if err != nil { - return fmt.Errorf("node lookup failed: %s", err) - } - if node == nil { - return nil - } - - // Use a watch manager since the inner functions can perform multiple - // ops per table. - watches := NewDumbWatchManager(s.tableWatches) - - // Delete all services associated with the node and update the service index. - services, err := tx.Get("services", "node", nodeID) - if err != nil { - return fmt.Errorf("failed service lookup: %s", err) - } - var sids []string - for service := services.Next(); service != nil; service = services.Next() { - sids = append(sids, service.(*structs.ServiceNode).ServiceID) - } - - // Do the delete in a separate loop so we don't trash the iterator. - for _, sid := range sids { - if err := s.deleteServiceTxn(tx, idx, watches, nodeID, sid); err != nil { - return err - } - } - - // Delete all checks associated with the node. This will invalidate - // sessions as necessary. - checks, err := tx.Get("checks", "node", nodeID) - if err != nil { - return fmt.Errorf("failed check lookup: %s", err) - } - var cids []types.CheckID - for check := checks.Next(); check != nil; check = checks.Next() { - cids = append(cids, check.(*structs.HealthCheck).CheckID) - } - - // Do the delete in a separate loop so we don't trash the iterator. - for _, cid := range cids { - if err := s.deleteCheckTxn(tx, idx, watches, nodeID, cid); err != nil { - return err - } - } - - // Delete any coordinate associated with this node. - coord, err := tx.First("coordinates", "id", nodeID) - if err != nil { - return fmt.Errorf("failed coordinate lookup: %s", err) - } - if coord != nil { - if err := tx.Delete("coordinates", coord); err != nil { - return fmt.Errorf("failed deleting coordinate: %s", err) - } - if err := tx.Insert("index", &IndexEntry{"coordinates", idx}); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } - watches.Arm("coordinates") - } - - // Delete the node and update the index. - if err := tx.Delete("nodes", node); err != nil { - return fmt.Errorf("failed deleting node: %s", err) - } - if err := tx.Insert("index", &IndexEntry{"nodes", idx}); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } - - // Invalidate any sessions for this node. - sessions, err := tx.Get("sessions", "node", nodeID) - if err != nil { - return fmt.Errorf("failed session lookup: %s", err) - } - var ids []string - for sess := sessions.Next(); sess != nil; sess = sessions.Next() { - ids = append(ids, sess.(*structs.Session).ID) - } - - // Do the delete in a separate loop so we don't trash the iterator. - for _, id := range ids { - if err := s.deleteSessionTxn(tx, idx, watches, id); err != nil { - return fmt.Errorf("failed session delete: %s", err) - } - } - - watches.Arm("nodes") - tx.Defer(func() { watches.Notify() }) - return nil -} - -// EnsureService is called to upsert creation of a given NodeService. -func (s *StateStore) EnsureService(idx uint64, node string, svc *structs.NodeService) error { - tx := s.db.Txn(true) - defer tx.Abort() - - // Call the service registration upsert - watches := NewDumbWatchManager(s.tableWatches) - if err := s.ensureServiceTxn(tx, idx, watches, node, svc); err != nil { - return err - } - - tx.Defer(func() { watches.Notify() }) - tx.Commit() - return nil -} - -// ensureServiceTxn is used to upsert a service registration within an -// existing memdb transaction. -func (s *StateStore) ensureServiceTxn(tx *memdb.Txn, idx uint64, watches *DumbWatchManager, - node string, svc *structs.NodeService) error { - // Check for existing service - existing, err := tx.First("services", "id", node, svc.ID) - if err != nil { - return fmt.Errorf("failed service lookup: %s", err) - } - - // Create the service node entry and populate the indexes. Note that - // conversion doesn't populate any of the node-specific information - // (Address and TaggedAddresses). That's always populated when we read - // from the state store. - entry := svc.ToServiceNode(node) - if existing != nil { - entry.CreateIndex = existing.(*structs.ServiceNode).CreateIndex - entry.ModifyIndex = idx - } else { - entry.CreateIndex = idx - entry.ModifyIndex = idx - } - - // Get the node - n, err := tx.First("nodes", "id", node) - if err != nil { - return fmt.Errorf("failed node lookup: %s", err) - } - if n == nil { - return ErrMissingNode - } - - // Insert the service and update the index - if err := tx.Insert("services", entry); err != nil { - return fmt.Errorf("failed inserting service: %s", err) - } - if err := tx.Insert("index", &IndexEntry{"services", idx}); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } - - watches.Arm("services") - return nil -} - -// Services returns all services along with a list of associated tags. -func (s *StateStore) Services() (uint64, structs.Services, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("Services")...) - - // List all the services. - services, err := tx.Get("services", "id") - if err != nil { - return 0, nil, fmt.Errorf("failed querying services: %s", err) - } - - // Rip through the services and enumerate them and their unique set of - // tags. - unique := make(map[string]map[string]struct{}) - for service := services.Next(); service != nil; service = services.Next() { - svc := service.(*structs.ServiceNode) - tags, ok := unique[svc.ServiceName] - if !ok { - unique[svc.ServiceName] = make(map[string]struct{}) - tags = unique[svc.ServiceName] - } - for _, tag := range svc.ServiceTags { - tags[tag] = struct{}{} - } - } - - // Generate the output structure. - var results = make(structs.Services) - for service, tags := range unique { - results[service] = make([]string, 0) - for tag, _ := range tags { - results[service] = append(results[service], tag) - } - } - return idx, results, nil -} - -// ServiceNodes returns the nodes associated with a given service name. -func (s *StateStore) ServiceNodes(serviceName string) (uint64, structs.ServiceNodes, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("ServiceNodes")...) - - // List all the services. - services, err := tx.Get("services", "service", serviceName) - if err != nil { - return 0, nil, fmt.Errorf("failed service lookup: %s", err) - } - var results structs.ServiceNodes - for service := services.Next(); service != nil; service = services.Next() { - results = append(results, service.(*structs.ServiceNode)) - } - - // Fill in the address details. - results, err = s.parseServiceNodes(tx, results) - if err != nil { - return 0, nil, fmt.Errorf("failed parsing service nodes: %s", err) - } - return idx, results, nil -} - -// ServiceTagNodes returns the nodes associated with a given service, filtering -// out services that don't contain the given tag. -func (s *StateStore) ServiceTagNodes(service, tag string) (uint64, structs.ServiceNodes, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("ServiceNodes")...) - - // List all the services. - services, err := tx.Get("services", "service", service) - if err != nil { - return 0, nil, fmt.Errorf("failed service lookup: %s", err) - } - - // Gather all the services and apply the tag filter. - var results structs.ServiceNodes - for service := services.Next(); service != nil; service = services.Next() { - svc := service.(*structs.ServiceNode) - if !serviceTagFilter(svc, tag) { - results = append(results, svc) - } - } - - // Fill in the address details. - results, err = s.parseServiceNodes(tx, results) - if err != nil { - return 0, nil, fmt.Errorf("failed parsing service nodes: %s", err) - } - return idx, results, nil -} - -// serviceTagFilter returns true (should filter) if the given service node -// doesn't contain the given tag. -func serviceTagFilter(sn *structs.ServiceNode, tag string) bool { - tag = strings.ToLower(tag) - - // Look for the lower cased version of the tag. - for _, t := range sn.ServiceTags { - if strings.ToLower(t) == tag { - return false - } - } - - // If we didn't hit the tag above then we should filter. - return true -} - -// parseServiceNodes iterates over a services query and fills in the node details, -// returning a ServiceNodes slice. -func (s *StateStore) parseServiceNodes(tx *memdb.Txn, services structs.ServiceNodes) (structs.ServiceNodes, error) { - var results structs.ServiceNodes - for _, sn := range services { - // Note that we have to clone here because we don't want to - // modify the node-related fields on the object in the database, - // which is what we are referencing. - s := sn.PartialClone() - - // Grab the corresponding node record. - n, err := tx.First("nodes", "id", sn.Node) - if err != nil { - return nil, fmt.Errorf("failed node lookup: %s", err) - } - - // Populate the node-related fields. The tagged addresses may be - // used by agents to perform address translation if they are - // configured to do that. - node := n.(*structs.Node) - s.Address = node.Address - s.TaggedAddresses = node.TaggedAddresses - - results = append(results, s) - } - return results, nil -} - -// NodeServices is used to query service registrations by node ID. -func (s *StateStore) NodeServices(nodeID string) (uint64, *structs.NodeServices, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("NodeServices")...) - - // Query the node - n, err := tx.First("nodes", "id", nodeID) - if err != nil { - return 0, nil, fmt.Errorf("node lookup failed: %s", err) - } - if n == nil { - return 0, nil, nil - } - node := n.(*structs.Node) - - // Read all of the services - services, err := tx.Get("services", "node", nodeID) - if err != nil { - return 0, nil, fmt.Errorf("failed querying services for node %q: %s", nodeID, err) - } - - // Initialize the node services struct - ns := &structs.NodeServices{ - Node: node, - Services: make(map[string]*structs.NodeService), - } - - // Add all of the services to the map. - for service := services.Next(); service != nil; service = services.Next() { - svc := service.(*structs.ServiceNode).ToNodeService() - ns.Services[svc.ID] = svc - } - - return idx, ns, nil -} - -// DeleteService is used to delete a given service associated with a node. -func (s *StateStore) DeleteService(idx uint64, nodeID, serviceID string) error { - tx := s.db.Txn(true) - defer tx.Abort() - - // Call the service deletion - watches := NewDumbWatchManager(s.tableWatches) - if err := s.deleteServiceTxn(tx, idx, watches, nodeID, serviceID); err != nil { - return err - } - - tx.Defer(func() { watches.Notify() }) - tx.Commit() - return nil -} - -// deleteServiceTxn is the inner method called to remove a service -// registration within an existing transaction. -func (s *StateStore) deleteServiceTxn(tx *memdb.Txn, idx uint64, watches *DumbWatchManager, nodeID, serviceID string) error { - // Look up the service. - service, err := tx.First("services", "id", nodeID, serviceID) - if err != nil { - return fmt.Errorf("failed service lookup: %s", err) - } - if service == nil { - return nil - } - - // Delete any checks associated with the service. This will invalidate - // sessions as necessary. - checks, err := tx.Get("checks", "node_service", nodeID, serviceID) - if err != nil { - return fmt.Errorf("failed service check lookup: %s", err) - } - var cids []types.CheckID - for check := checks.Next(); check != nil; check = checks.Next() { - cids = append(cids, check.(*structs.HealthCheck).CheckID) - } - - // Do the delete in a separate loop so we don't trash the iterator. - for _, cid := range cids { - if err := s.deleteCheckTxn(tx, idx, watches, nodeID, cid); err != nil { - return err - } - } - - // Update the index. - if err := tx.Insert("index", &IndexEntry{"checks", idx}); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } - - // Delete the service and update the index - if err := tx.Delete("services", service); err != nil { - return fmt.Errorf("failed deleting service: %s", err) - } - if err := tx.Insert("index", &IndexEntry{"services", idx}); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } - - watches.Arm("services") - return nil -} - -// EnsureCheck is used to store a check registration in the db. -func (s *StateStore) EnsureCheck(idx uint64, hc *structs.HealthCheck) error { - tx := s.db.Txn(true) - defer tx.Abort() - - // Call the check registration - watches := NewDumbWatchManager(s.tableWatches) - if err := s.ensureCheckTxn(tx, idx, watches, hc); err != nil { - return err - } - - tx.Defer(func() { watches.Notify() }) - tx.Commit() - return nil -} - -// ensureCheckTransaction is used as the inner method to handle inserting -// a health check into the state store. It ensures safety against inserting -// checks with no matching node or service. -func (s *StateStore) ensureCheckTxn(tx *memdb.Txn, idx uint64, watches *DumbWatchManager, - hc *structs.HealthCheck) error { - // Check if we have an existing health check - existing, err := tx.First("checks", "id", hc.Node, string(hc.CheckID)) - if err != nil { - return fmt.Errorf("failed health check lookup: %s", err) - } - - // Set the indexes - if existing != nil { - hc.CreateIndex = existing.(*structs.HealthCheck).CreateIndex - hc.ModifyIndex = idx - } else { - hc.CreateIndex = idx - hc.ModifyIndex = idx - } - - // Use the default check status if none was provided - if hc.Status == "" { - hc.Status = structs.HealthCritical - } - - // Get the node - node, err := tx.First("nodes", "id", hc.Node) - if err != nil { - return fmt.Errorf("failed node lookup: %s", err) - } - if node == nil { - return ErrMissingNode - } - - // If the check is associated with a service, check that we have - // a registration for the service. - if hc.ServiceID != "" { - service, err := tx.First("services", "id", hc.Node, hc.ServiceID) - if err != nil { - return fmt.Errorf("failed service lookup: %s", err) - } - if service == nil { - return ErrMissingService - } - - // Copy in the service name - hc.ServiceName = service.(*structs.ServiceNode).ServiceName - } - - // Delete any sessions for this check if the health is critical. - if hc.Status == structs.HealthCritical { - mappings, err := tx.Get("session_checks", "node_check", hc.Node, string(hc.CheckID)) - if err != nil { - return fmt.Errorf("failed session checks lookup: %s", err) - } - - var ids []string - for mapping := mappings.Next(); mapping != nil; mapping = mappings.Next() { - ids = append(ids, mapping.(*sessionCheck).Session) - } - - // Delete the session in a separate loop so we don't trash the - // iterator. - watches := NewDumbWatchManager(s.tableWatches) - for _, id := range ids { - if err := s.deleteSessionTxn(tx, idx, watches, id); err != nil { - return fmt.Errorf("failed deleting session: %s", err) - } - } - tx.Defer(func() { watches.Notify() }) - } - - // Persist the check registration in the db. - if err := tx.Insert("checks", hc); err != nil { - return fmt.Errorf("failed inserting check: %s", err) - } - if err := tx.Insert("index", &IndexEntry{"checks", idx}); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } - - watches.Arm("checks") - return nil -} - -// NodeChecks is used to retrieve checks associated with the -// given node from the state store. -func (s *StateStore) NodeChecks(nodeID string) (uint64, structs.HealthChecks, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("NodeChecks")...) - - // Return the checks. - checks, err := tx.Get("checks", "node", nodeID) - if err != nil { - return 0, nil, fmt.Errorf("failed check lookup: %s", err) - } - return s.parseChecks(idx, checks) -} - -// ServiceChecks is used to get all checks associated with a -// given service ID. The query is performed against a service -// _name_ instead of a service ID. -func (s *StateStore) ServiceChecks(serviceName string) (uint64, structs.HealthChecks, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("ServiceChecks")...) - - // Return the checks. - checks, err := tx.Get("checks", "service", serviceName) - if err != nil { - return 0, nil, fmt.Errorf("failed check lookup: %s", err) - } - return s.parseChecks(idx, checks) -} - -// ChecksInState is used to query the state store for all checks -// which are in the provided state. -func (s *StateStore) ChecksInState(state string) (uint64, structs.HealthChecks, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("ChecksInState")...) - - // Query all checks if HealthAny is passed - if state == structs.HealthAny { - checks, err := tx.Get("checks", "status") - if err != nil { - return 0, nil, fmt.Errorf("failed check lookup: %s", err) - } - return s.parseChecks(idx, checks) - } - - // Any other state we need to query for explicitly - checks, err := tx.Get("checks", "status", state) - if err != nil { - return 0, nil, fmt.Errorf("failed check lookup: %s", err) - } - return s.parseChecks(idx, checks) -} - -// parseChecks is a helper function used to deduplicate some -// repetitive code for returning health checks. -func (s *StateStore) parseChecks(idx uint64, iter memdb.ResultIterator) (uint64, structs.HealthChecks, error) { - // Gather the health checks and return them properly type casted. - var results structs.HealthChecks - for check := iter.Next(); check != nil; check = iter.Next() { - results = append(results, check.(*structs.HealthCheck)) - } - return idx, results, nil -} - -// DeleteCheck is used to delete a health check registration. -func (s *StateStore) DeleteCheck(idx uint64, node string, checkID types.CheckID) error { - tx := s.db.Txn(true) - defer tx.Abort() - - // Call the check deletion - watches := NewDumbWatchManager(s.tableWatches) - if err := s.deleteCheckTxn(tx, idx, watches, node, checkID); err != nil { - return err - } - - tx.Defer(func() { watches.Notify() }) - tx.Commit() - return nil -} - -// deleteCheckTxn is the inner method used to call a health -// check deletion within an existing transaction. -func (s *StateStore) deleteCheckTxn(tx *memdb.Txn, idx uint64, watches *DumbWatchManager, node string, checkID types.CheckID) error { - // Try to retrieve the existing health check. - hc, err := tx.First("checks", "id", node, string(checkID)) - if err != nil { - return fmt.Errorf("check lookup failed: %s", err) - } - if hc == nil { - return nil - } - - // Delete the check from the DB and update the index. - if err := tx.Delete("checks", hc); err != nil { - return fmt.Errorf("failed removing check: %s", err) - } - if err := tx.Insert("index", &IndexEntry{"checks", idx}); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } - - // Delete any sessions for this check. - mappings, err := tx.Get("session_checks", "node_check", node, string(checkID)) - if err != nil { - return fmt.Errorf("failed session checks lookup: %s", err) - } - var ids []string - for mapping := mappings.Next(); mapping != nil; mapping = mappings.Next() { - ids = append(ids, mapping.(*sessionCheck).Session) - } - - // Do the delete in a separate loop so we don't trash the iterator. - for _, id := range ids { - if err := s.deleteSessionTxn(tx, idx, watches, id); err != nil { - return fmt.Errorf("failed deleting session: %s", err) - } - } - - watches.Arm("checks") - return nil -} - -// CheckServiceNodes is used to query all nodes and checks for a given service -// The results are compounded into a CheckServiceNodes, and the index returned -// is the maximum index observed over any node, check, or service in the result -// set. -func (s *StateStore) CheckServiceNodes(serviceName string) (uint64, structs.CheckServiceNodes, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("CheckServiceNodes")...) - - // Query the state store for the service. - services, err := tx.Get("services", "service", serviceName) - if err != nil { - return 0, nil, fmt.Errorf("failed service lookup: %s", err) - } - - // Return the results. - var results structs.ServiceNodes - for service := services.Next(); service != nil; service = services.Next() { - results = append(results, service.(*structs.ServiceNode)) - } - return s.parseCheckServiceNodes(tx, idx, results, err) -} - -// CheckServiceTagNodes is used to query all nodes and checks for a given -// service, filtering out services that don't contain the given tag. The results -// are compounded into a CheckServiceNodes, and the index returned is the maximum -// index observed over any node, check, or service in the result set. -func (s *StateStore) CheckServiceTagNodes(serviceName, tag string) (uint64, structs.CheckServiceNodes, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("CheckServiceNodes")...) - - // Query the state store for the service. - services, err := tx.Get("services", "service", serviceName) - if err != nil { - return 0, nil, fmt.Errorf("failed service lookup: %s", err) - } - - // Return the results, filtering by tag. - var results structs.ServiceNodes - for service := services.Next(); service != nil; service = services.Next() { - svc := service.(*structs.ServiceNode) - if !serviceTagFilter(svc, tag) { - results = append(results, svc) - } - } - return s.parseCheckServiceNodes(tx, idx, results, err) -} - -// parseCheckServiceNodes is used to parse through a given set of services, -// and query for an associated node and a set of checks. This is the inner -// method used to return a rich set of results from a more simple query. -func (s *StateStore) parseCheckServiceNodes( - tx *memdb.Txn, idx uint64, services structs.ServiceNodes, - err error) (uint64, structs.CheckServiceNodes, error) { - if err != nil { - return 0, nil, err - } - - // Special-case the zero return value to nil, since this ends up in - // external APIs. - if len(services) == 0 { - return idx, nil, nil - } - - results := make(structs.CheckServiceNodes, 0, len(services)) - for _, sn := range services { - // Retrieve the node. - n, err := tx.First("nodes", "id", sn.Node) - if err != nil { - return 0, nil, fmt.Errorf("failed node lookup: %s", err) - } - if n == nil { - return 0, nil, ErrMissingNode - } - node := n.(*structs.Node) - - // We need to return the checks specific to the given service - // as well as the node itself. Unfortunately, memdb won't let - // us use the index to do the latter query so we have to pull - // them all and filter. - var checks structs.HealthChecks - iter, err := tx.Get("checks", "node", sn.Node) - if err != nil { - return 0, nil, err - } - for check := iter.Next(); check != nil; check = iter.Next() { - hc := check.(*structs.HealthCheck) - if hc.ServiceID == "" || hc.ServiceID == sn.ServiceID { - checks = append(checks, hc) - } - } - - // Append to the results. - results = append(results, structs.CheckServiceNode{ - Node: node, - Service: sn.ToNodeService(), - Checks: checks, - }) - } - - return idx, results, nil -} - -// NodeInfo is used to generate a dump of a single node. The dump includes -// all services and checks which are registered against the node. -func (s *StateStore) NodeInfo(node string) (uint64, structs.NodeDump, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("NodeInfo")...) - - // Query the node by the passed node - nodes, err := tx.Get("nodes", "id", node) - if err != nil { - return 0, nil, fmt.Errorf("failed node lookup: %s", err) - } - return s.parseNodes(tx, idx, nodes) -} - -// NodeDump is used to generate a dump of all nodes. This call is expensive -// as it has to query every node, service, and check. The response can also -// be quite large since there is currently no filtering applied. -func (s *StateStore) NodeDump() (uint64, structs.NodeDump, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("NodeDump")...) - - // Fetch all of the registered nodes - nodes, err := tx.Get("nodes", "id") - if err != nil { - return 0, nil, fmt.Errorf("failed node lookup: %s", err) - } - return s.parseNodes(tx, idx, nodes) -} - -// parseNodes takes an iterator over a set of nodes and returns a struct -// containing the nodes along with all of their associated services -// and/or health checks. -func (s *StateStore) parseNodes(tx *memdb.Txn, idx uint64, - iter memdb.ResultIterator) (uint64, structs.NodeDump, error) { - - var results structs.NodeDump - for n := iter.Next(); n != nil; n = iter.Next() { - node := n.(*structs.Node) - - // Create the wrapped node - dump := &structs.NodeInfo{ - Node: node.Node, - Address: node.Address, - TaggedAddresses: node.TaggedAddresses, - } - - // Query the node services - services, err := tx.Get("services", "node", node.Node) - if err != nil { - return 0, nil, fmt.Errorf("failed services lookup: %s", err) - } - for service := services.Next(); service != nil; service = services.Next() { - ns := service.(*structs.ServiceNode).ToNodeService() - dump.Services = append(dump.Services, ns) - } - - // Query the node checks - checks, err := tx.Get("checks", "node", node.Node) - if err != nil { - return 0, nil, fmt.Errorf("failed node lookup: %s", err) - } - for check := checks.Next(); check != nil; check = checks.Next() { - hc := check.(*structs.HealthCheck) - dump.Checks = append(dump.Checks, hc) - } - - // Add the result to the slice - results = append(results, dump) - } - return idx, results, nil -} - -// SessionCreate is used to register a new session in the state store. -func (s *StateStore) SessionCreate(idx uint64, sess *structs.Session) error { - tx := s.db.Txn(true) - defer tx.Abort() - - // This code is technically able to (incorrectly) update an existing - // session but we never do that in practice. The upstream endpoint code - // always adds a unique ID when doing a create operation so we never hit - // an existing session again. It isn't worth the overhead to verify - // that here, but it's worth noting that we should never do this in the - // future. - - // Call the session creation - if err := s.sessionCreateTxn(tx, idx, sess); err != nil { - return err - } - - tx.Commit() - return nil -} - -// sessionCreateTxn is the inner method used for creating session entries in -// an open transaction. Any health checks registered with the session will be -// checked for failing status. Returns any error encountered. -func (s *StateStore) sessionCreateTxn(tx *memdb.Txn, idx uint64, sess *structs.Session) error { - // Check that we have a session ID - if sess.ID == "" { - return ErrMissingSessionID - } - - // Verify the session behavior is valid - switch sess.Behavior { - case "": - // Release by default to preserve backwards compatibility - sess.Behavior = structs.SessionKeysRelease - case structs.SessionKeysRelease: - case structs.SessionKeysDelete: - default: - return fmt.Errorf("Invalid session behavior: %s", sess.Behavior) - } - - // Assign the indexes. ModifyIndex likely will not be used but - // we set it here anyways for sanity. - sess.CreateIndex = idx - sess.ModifyIndex = idx - - // Check that the node exists - node, err := tx.First("nodes", "id", sess.Node) - if err != nil { - return fmt.Errorf("failed node lookup: %s", err) - } - if node == nil { - return ErrMissingNode - } - - // Go over the session checks and ensure they exist. - for _, checkID := range sess.Checks { - check, err := tx.First("checks", "id", sess.Node, string(checkID)) - if err != nil { - return fmt.Errorf("failed check lookup: %s", err) - } - if check == nil { - return fmt.Errorf("Missing check '%s' registration", checkID) - } - - // Check that the check is not in critical state - status := check.(*structs.HealthCheck).Status - if status == structs.HealthCritical { - return fmt.Errorf("Check '%s' is in %s state", checkID, status) - } - } - - // Insert the session - if err := tx.Insert("sessions", sess); err != nil { - return fmt.Errorf("failed inserting session: %s", err) - } - - // Insert the check mappings - for _, checkID := range sess.Checks { - mapping := &sessionCheck{ - Node: sess.Node, - CheckID: checkID, - Session: sess.ID, - } - if err := tx.Insert("session_checks", mapping); err != nil { - return fmt.Errorf("failed inserting session check mapping: %s", err) - } - } - - // Update the index - if err := tx.Insert("index", &IndexEntry{"sessions", idx}); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } - - tx.Defer(func() { s.tableWatches["sessions"].Notify() }) - return nil -} - -// SessionGet is used to retrieve an active session from the state store. -func (s *StateStore) SessionGet(sessionID string) (uint64, *structs.Session, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("SessionGet")...) - - // Look up the session by its ID - session, err := tx.First("sessions", "id", sessionID) - if err != nil { - return 0, nil, fmt.Errorf("failed session lookup: %s", err) - } - if session != nil { - return idx, session.(*structs.Session), nil - } - return idx, nil, nil -} - -// SessionList returns a slice containing all of the active sessions. -func (s *StateStore) SessionList() (uint64, structs.Sessions, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("SessionList")...) - - // Query all of the active sessions. - sessions, err := tx.Get("sessions", "id") - if err != nil { - return 0, nil, fmt.Errorf("failed session lookup: %s", err) - } - - // Go over the sessions and create a slice of them. - var result structs.Sessions - for session := sessions.Next(); session != nil; session = sessions.Next() { - result = append(result, session.(*structs.Session)) - } - return idx, result, nil -} - -// NodeSessions returns a set of active sessions associated -// with the given node ID. The returned index is the highest -// index seen from the result set. -func (s *StateStore) NodeSessions(nodeID string) (uint64, structs.Sessions, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("NodeSessions")...) - - // Get all of the sessions which belong to the node - sessions, err := tx.Get("sessions", "node", nodeID) - if err != nil { - return 0, nil, fmt.Errorf("failed session lookup: %s", err) - } - - // Go over all of the sessions and return them as a slice - var result structs.Sessions - for session := sessions.Next(); session != nil; session = sessions.Next() { - result = append(result, session.(*structs.Session)) - } - return idx, result, nil -} - -// SessionDestroy is used to remove an active session. This will -// implicitly invalidate the session and invoke the specified -// session destroy behavior. -func (s *StateStore) SessionDestroy(idx uint64, sessionID string) error { - tx := s.db.Txn(true) - defer tx.Abort() - - // Call the session deletion. - watches := NewDumbWatchManager(s.tableWatches) - if err := s.deleteSessionTxn(tx, idx, watches, sessionID); err != nil { - return err - } - - tx.Defer(func() { watches.Notify() }) - tx.Commit() - return nil -} - -// deleteSessionTxn is the inner method, which is used to do the actual -// session deletion and handle session invalidation, watch triggers, etc. -func (s *StateStore) deleteSessionTxn(tx *memdb.Txn, idx uint64, watches *DumbWatchManager, sessionID string) error { - // Look up the session. - sess, err := tx.First("sessions", "id", sessionID) - if err != nil { - return fmt.Errorf("failed session lookup: %s", err) - } - if sess == nil { - return nil - } - - // Delete the session and write the new index. - if err := tx.Delete("sessions", sess); err != nil { - return fmt.Errorf("failed deleting session: %s", err) - } - if err := tx.Insert("index", &IndexEntry{"sessions", idx}); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } - - // Enforce the max lock delay. - session := sess.(*structs.Session) - delay := session.LockDelay - if delay > structs.MaxLockDelay { - delay = structs.MaxLockDelay - } - - // Snag the current now time so that all the expirations get calculated - // the same way. - now := time.Now() - - // Get an iterator over all of the keys with the given session. - entries, err := tx.Get("kvs", "session", sessionID) - if err != nil { - return fmt.Errorf("failed kvs lookup: %s", err) - } - var kvs []interface{} - for entry := entries.Next(); entry != nil; entry = entries.Next() { - kvs = append(kvs, entry) - } - - // Invalidate any held locks. - switch session.Behavior { - case structs.SessionKeysRelease: - for _, obj := range kvs { - // Note that we clone here since we are modifying the - // returned object and want to make sure our set op - // respects the transaction we are in. - e := obj.(*structs.DirEntry).Clone() - e.Session = "" - if err := s.kvsSetTxn(tx, idx, e, true); err != nil { - return fmt.Errorf("failed kvs update: %s", err) - } - - // Apply the lock delay if present. - if delay > 0 { - s.lockDelay.SetExpiration(e.Key, now, delay) - } - } - case structs.SessionKeysDelete: - for _, obj := range kvs { - e := obj.(*structs.DirEntry) - if err := s.kvsDeleteTxn(tx, idx, e.Key); err != nil { - return fmt.Errorf("failed kvs delete: %s", err) - } - - // Apply the lock delay if present. - if delay > 0 { - s.lockDelay.SetExpiration(e.Key, now, delay) - } - } - default: - return fmt.Errorf("unknown session behavior %#v", session.Behavior) - } - - // Delete any check mappings. - mappings, err := tx.Get("session_checks", "session", sessionID) - if err != nil { - return fmt.Errorf("failed session checks lookup: %s", err) - } - { - var objs []interface{} - for mapping := mappings.Next(); mapping != nil; mapping = mappings.Next() { - objs = append(objs, mapping) - } - - // Do the delete in a separate loop so we don't trash the iterator. - for _, obj := range objs { - if err := tx.Delete("session_checks", obj); err != nil { - return fmt.Errorf("failed deleting session check: %s", err) - } - } - } - - // Delete any prepared queries. - queries, err := tx.Get("prepared-queries", "session", sessionID) - if err != nil { - return fmt.Errorf("failed prepared query lookup: %s", err) - } - { - var ids []string - for wrapped := queries.Next(); wrapped != nil; wrapped = queries.Next() { - ids = append(ids, toPreparedQuery(wrapped).ID) - } - - // Do the delete in a separate loop so we don't trash the iterator. - for _, id := range ids { - if err := s.preparedQueryDeleteTxn(tx, idx, watches, id); err != nil { - return fmt.Errorf("failed prepared query delete: %s", err) - } - } - } - - watches.Arm("sessions") - return nil -} - -// ACLSet is used to insert an ACL rule into the state store. -func (s *StateStore) ACLSet(idx uint64, acl *structs.ACL) error { - tx := s.db.Txn(true) - defer tx.Abort() - - // Call set on the ACL - if err := s.aclSetTxn(tx, idx, acl); err != nil { - return err - } - - tx.Commit() - return nil -} - -// aclSetTxn is the inner method used to insert an ACL rule with the -// proper indexes into the state store. -func (s *StateStore) aclSetTxn(tx *memdb.Txn, idx uint64, acl *structs.ACL) error { - // Check that the ID is set - if acl.ID == "" { - return ErrMissingACLID - } - - // Check for an existing ACL - existing, err := tx.First("acls", "id", acl.ID) - if err != nil { - return fmt.Errorf("failed acl lookup: %s", err) - } - - // Set the indexes - if existing != nil { - acl.CreateIndex = existing.(*structs.ACL).CreateIndex - acl.ModifyIndex = idx - } else { - acl.CreateIndex = idx - acl.ModifyIndex = idx - } - - // Insert the ACL - if err := tx.Insert("acls", acl); err != nil { - return fmt.Errorf("failed inserting acl: %s", err) - } - if err := tx.Insert("index", &IndexEntry{"acls", idx}); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } - - tx.Defer(func() { s.tableWatches["acls"].Notify() }) - return nil -} - -// ACLGet is used to look up an existing ACL by ID. -func (s *StateStore) ACLGet(aclID string) (uint64, *structs.ACL, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("ACLGet")...) - - // Query for the existing ACL - acl, err := tx.First("acls", "id", aclID) - if err != nil { - return 0, nil, fmt.Errorf("failed acl lookup: %s", err) - } - if acl != nil { - return idx, acl.(*structs.ACL), nil - } - return idx, nil, nil -} - -// ACLList is used to list out all of the ACLs in the state store. -func (s *StateStore) ACLList() (uint64, structs.ACLs, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("ACLList")...) - - // Return the ACLs. - acls, err := s.aclListTxn(tx) - if err != nil { - return 0, nil, fmt.Errorf("failed acl lookup: %s", err) - } - return idx, acls, nil -} - -// aclListTxn is used to list out all of the ACLs in the state store. This is a -// function vs. a method so it can be called from the snapshotter. -func (s *StateStore) aclListTxn(tx *memdb.Txn) (structs.ACLs, error) { - // Query all of the ACLs in the state store - acls, err := tx.Get("acls", "id") - if err != nil { - return nil, fmt.Errorf("failed acl lookup: %s", err) - } - - // Go over all of the ACLs and build the response - var result structs.ACLs - for acl := acls.Next(); acl != nil; acl = acls.Next() { - a := acl.(*structs.ACL) - result = append(result, a) - } - return result, nil -} - -// ACLDelete is used to remove an existing ACL from the state store. If -// the ACL does not exist this is a no-op and no error is returned. -func (s *StateStore) ACLDelete(idx uint64, aclID string) error { - tx := s.db.Txn(true) - defer tx.Abort() - - // Call the ACL delete - if err := s.aclDeleteTxn(tx, idx, aclID); err != nil { - return err - } - - tx.Commit() - return nil -} - -// aclDeleteTxn is used to delete an ACL from the state store within -// an existing transaction. -func (s *StateStore) aclDeleteTxn(tx *memdb.Txn, idx uint64, aclID string) error { - // Look up the existing ACL - acl, err := tx.First("acls", "id", aclID) - if err != nil { - return fmt.Errorf("failed acl lookup: %s", err) - } - if acl == nil { - return nil - } - - // Delete the ACL from the state store and update indexes - if err := tx.Delete("acls", acl); err != nil { - return fmt.Errorf("failed deleting acl: %s", err) - } - if err := tx.Insert("index", &IndexEntry{"acls", idx}); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } - - tx.Defer(func() { s.tableWatches["acls"].Notify() }) - return nil -} - -// CoordinateGetRaw queries for the coordinate of the given node. This is an -// unusual state store method because it just returns the raw coordinate or -// nil, none of the Raft or node information is returned. This hits the 90% -// internal-to-Consul use case for this data, and this isn't exposed via an -// endpoint, so it doesn't matter that the Raft info isn't available. -func (s *StateStore) CoordinateGetRaw(node string) (*coordinate.Coordinate, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Pull the full coordinate entry. - coord, err := tx.First("coordinates", "id", node) - if err != nil { - return nil, fmt.Errorf("failed coordinate lookup: %s", err) - } - - // Pick out just the raw coordinate. - if coord != nil { - return coord.(*structs.Coordinate).Coord, nil - } - return nil, nil -} - -// Coordinates queries for all nodes with coordinates. -func (s *StateStore) Coordinates() (uint64, structs.Coordinates, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - // Get the table index. - idx := maxIndexTxn(tx, s.getWatchTables("Coordinates")...) - - // Pull all the coordinates. - coords, err := tx.Get("coordinates", "id") - if err != nil { - return 0, nil, fmt.Errorf("failed coordinate lookup: %s", err) - } - var results structs.Coordinates - for coord := coords.Next(); coord != nil; coord = coords.Next() { - results = append(results, coord.(*structs.Coordinate)) - } - return idx, results, nil -} - -// CoordinateBatchUpdate processes a batch of coordinate updates and applies -// them in a single transaction. -func (s *StateStore) CoordinateBatchUpdate(idx uint64, updates structs.Coordinates) error { - tx := s.db.Txn(true) - defer tx.Abort() - - // Upsert the coordinates. - for _, update := range updates { - // Since the cleanup of coordinates is tied to deletion of - // nodes, we silently drop any updates for nodes that we don't - // know about. This might be possible during normal operation - // if we happen to get a coordinate update for a node that - // hasn't been able to add itself to the catalog yet. Since we - // don't carefully sequence this, and since it will fix itself - // on the next coordinate update from that node, we don't return - // an error or log anything. - node, err := tx.First("nodes", "id", update.Node) - if err != nil { - return fmt.Errorf("failed node lookup: %s", err) - } - if node == nil { - continue - } - - if err := tx.Insert("coordinates", update); err != nil { - return fmt.Errorf("failed inserting coordinate: %s", err) - } - } - - // Update the index. - if err := tx.Insert("index", &IndexEntry{"coordinates", idx}); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } - - tx.Defer(func() { s.tableWatches["coordinates"].Notify() }) - tx.Commit() - return nil -} diff --git a/consul/state/state_store_test.go b/consul/state/state_store_test.go index 246dfbc80b..e58b71e6dd 100644 --- a/consul/state/state_store_test.go +++ b/consul/state/state_store_test.go @@ -3,17 +3,12 @@ package state import ( crand "crypto/rand" "fmt" - "math/rand" - "reflect" - "sort" - "strings" "testing" "time" "github.com/hashicorp/consul/consul/structs" - "github.com/hashicorp/consul/lib" "github.com/hashicorp/consul/types" - "github.com/hashicorp/serf/coordinate" + "github.com/hashicorp/go-memdb" ) func testUUID() string { @@ -42,7 +37,11 @@ func testStateStore(t *testing.T) *StateStore { } func testRegisterNode(t *testing.T, s *StateStore, idx uint64, nodeID string) { - node := &structs.Node{Node: nodeID} + testRegisterNodeWithMeta(t, s, idx, nodeID, nil) +} + +func testRegisterNodeWithMeta(t *testing.T, s *StateStore, idx uint64, nodeID string, meta map[string]string) { + node := &structs.Node{Node: nodeID, Meta: meta} if err := s.EnsureNode(idx, node); err != nil { t.Fatalf("err: %s", err) } @@ -125,6 +124,16 @@ func testSetKey(t *testing.T, s *StateStore, idx uint64, key, value string) { } } +// watchFired is a helper for unit tests that returns if the given watch set +// fired (it doesn't care which watch actually fired). This uses a fixed +// timeout since we already expect the event happened before calling this and +// just need to distinguish a fire from a timeout. We do need a little time to +// allow the watch to set up any goroutines, though. +func watchFired(ws memdb.WatchSet) bool { + timedOut := ws.Watch(time.After(50 * time.Millisecond)) + return !timedOut +} + func TestStateStore_Restore_Abort(t *testing.T) { s := testStateStore(t) @@ -143,7 +152,7 @@ func TestStateStore_Restore_Abort(t *testing.T) { } restore.Abort() - idx, entries, err := s.KVSList("") + idx, entries, err := s.KVSList(nil, "") if err != nil { t.Fatalf("err: %s", err) } @@ -155,6 +164,17 @@ func TestStateStore_Restore_Abort(t *testing.T) { } } +func TestStateStore_Abandon(t *testing.T) { + s := testStateStore(t) + abandonCh := s.AbandonCh() + s.Abandon() + select { + case <-abandonCh: + default: + t.Fatalf("bad") + } +} + func TestStateStore_maxIndex(t *testing.T) { s := testStateStore(t) @@ -183,3367 +203,3 @@ func TestStateStore_indexUpdateMaxTxn(t *testing.T) { t.Fatalf("bad max: %d", max) } } - -func TestStateStore_GetWatches(t *testing.T) { - s := testStateStore(t) - - // This test does two things - it makes sure there's no full table - // watch for KVS, and it makes sure that asking for a watch that - // doesn't exist causes a panic. - func() { - defer func() { - if r := recover(); r == nil { - t.Fatalf("didn't get expected panic") - } - }() - s.getTableWatch("kvs") - }() - - // Similar for tombstones; those don't support watches at all. - func() { - defer func() { - if r := recover(); r == nil { - t.Fatalf("didn't get expected panic") - } - }() - s.getTableWatch("tombstones") - }() - - // Make sure requesting a bogus method causes a panic. - func() { - defer func() { - if r := recover(); r == nil { - t.Fatalf("didn't get expected panic") - } - }() - s.GetQueryWatch("dogs") - }() - - // Request valid watches. - if w := s.GetQueryWatch("Nodes"); w == nil { - t.Fatalf("didn't get a watch") - } - if w := s.GetQueryWatch("NodeDump"); w == nil { - t.Fatalf("didn't get a watch") - } - if w := s.GetKVSWatch("/dogs"); w == nil { - t.Fatalf("didn't get a watch") - } -} - -func TestStateStore_EnsureRegistration(t *testing.T) { - s := testStateStore(t) - - // Start with just a node. - req := &structs.RegisterRequest{ - Node: "node1", - Address: "1.2.3.4", - TaggedAddresses: map[string]string{ - "hello": "world", - }, - } - if err := s.EnsureRegistration(1, req); err != nil { - t.Fatalf("err: %s", err) - } - - // Retrieve the node and verify its contents. - verifyNode := func(created, modified uint64) { - _, out, err := s.GetNode("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if out.Node != "node1" || out.Address != "1.2.3.4" || - len(out.TaggedAddresses) != 1 || - out.TaggedAddresses["hello"] != "world" || - out.CreateIndex != created || out.ModifyIndex != modified { - t.Fatalf("bad node returned: %#v", out) - } - } - verifyNode(1, 1) - - // Add in a service definition. - req.Service = &structs.NodeService{ - ID: "redis1", - Service: "redis", - Address: "1.1.1.1", - Port: 8080, - } - if err := s.EnsureRegistration(2, req); err != nil { - t.Fatalf("err: %s", err) - } - - // Verify that the service got registered. - verifyService := func(created, modified uint64) { - idx, out, err := s.NodeServices("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != modified { - t.Fatalf("bad index: %d", idx) - } - if len(out.Services) != 1 { - t.Fatalf("bad: %#v", out.Services) - } - s := out.Services["redis1"] - if s.ID != "redis1" || s.Service != "redis" || - s.Address != "1.1.1.1" || s.Port != 8080 || - s.CreateIndex != created || s.ModifyIndex != modified { - t.Fatalf("bad service returned: %#v", s) - } - } - verifyNode(1, 2) - verifyService(2, 2) - - // Add in a top-level check. - req.Check = &structs.HealthCheck{ - Node: "node1", - CheckID: "check1", - Name: "check", - } - if err := s.EnsureRegistration(3, req); err != nil { - t.Fatalf("err: %s", err) - } - - // Verify that the check got registered. - verifyCheck := func(created, modified uint64) { - idx, out, err := s.NodeChecks("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != modified { - t.Fatalf("bad index: %d", idx) - } - if len(out) != 1 { - t.Fatalf("bad: %#v", out) - } - c := out[0] - if c.Node != "node1" || c.CheckID != "check1" || c.Name != "check" || - c.CreateIndex != created || c.ModifyIndex != modified { - t.Fatalf("bad check returned: %#v", c) - } - } - verifyNode(1, 3) - verifyService(2, 3) - verifyCheck(3, 3) - - // Add in another check via the slice. - req.Checks = structs.HealthChecks{ - &structs.HealthCheck{ - Node: "node1", - CheckID: "check2", - Name: "check", - }, - } - if err := s.EnsureRegistration(4, req); err != nil { - t.Fatalf("err: %s", err) - } - - // Verify that the additional check got registered. - verifyNode(1, 4) - verifyService(2, 4) - func() { - idx, out, err := s.NodeChecks("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 4 { - t.Fatalf("bad index: %d", idx) - } - if len(out) != 2 { - t.Fatalf("bad: %#v", out) - } - c1 := out[0] - if c1.Node != "node1" || c1.CheckID != "check1" || c1.Name != "check" || - c1.CreateIndex != 3 || c1.ModifyIndex != 4 { - t.Fatalf("bad check returned: %#v", c1) - } - - c2 := out[1] - if c2.Node != "node1" || c2.CheckID != "check2" || c2.Name != "check" || - c2.CreateIndex != 4 || c2.ModifyIndex != 4 { - t.Fatalf("bad check returned: %#v", c2) - } - }() -} - -func TestStateStore_EnsureRegistration_Restore(t *testing.T) { - s := testStateStore(t) - - // Start with just a node. - req := &structs.RegisterRequest{ - Node: "node1", - Address: "1.2.3.4", - } - restore := s.Restore() - if err := restore.Registration(1, req); err != nil { - t.Fatalf("err: %s", err) - } - restore.Commit() - - // Retrieve the node and verify its contents. - verifyNode := func(created, modified uint64) { - _, out, err := s.GetNode("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if out.Node != "node1" || out.Address != "1.2.3.4" || - out.CreateIndex != created || out.ModifyIndex != modified { - t.Fatalf("bad node returned: %#v", out) - } - } - verifyNode(1, 1) - - // Add in a service definition. - req.Service = &structs.NodeService{ - ID: "redis1", - Service: "redis", - Address: "1.1.1.1", - Port: 8080, - } - restore = s.Restore() - if err := restore.Registration(2, req); err != nil { - t.Fatalf("err: %s", err) - } - restore.Commit() - - // Verify that the service got registered. - verifyService := func(created, modified uint64) { - idx, out, err := s.NodeServices("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != modified { - t.Fatalf("bad index: %d", idx) - } - if len(out.Services) != 1 { - t.Fatalf("bad: %#v", out.Services) - } - s := out.Services["redis1"] - if s.ID != "redis1" || s.Service != "redis" || - s.Address != "1.1.1.1" || s.Port != 8080 || - s.CreateIndex != created || s.ModifyIndex != modified { - t.Fatalf("bad service returned: %#v", s) - } - } - verifyNode(1, 2) - verifyService(2, 2) - - // Add in a top-level check. - req.Check = &structs.HealthCheck{ - Node: "node1", - CheckID: "check1", - Name: "check", - } - restore = s.Restore() - if err := restore.Registration(3, req); err != nil { - t.Fatalf("err: %s", err) - } - restore.Commit() - - // Verify that the check got registered. - verifyCheck := func(created, modified uint64) { - idx, out, err := s.NodeChecks("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != modified { - t.Fatalf("bad index: %d", idx) - } - if len(out) != 1 { - t.Fatalf("bad: %#v", out) - } - c := out[0] - if c.Node != "node1" || c.CheckID != "check1" || c.Name != "check" || - c.CreateIndex != created || c.ModifyIndex != modified { - t.Fatalf("bad check returned: %#v", c) - } - } - verifyNode(1, 3) - verifyService(2, 3) - verifyCheck(3, 3) - - // Add in another check via the slice. - req.Checks = structs.HealthChecks{ - &structs.HealthCheck{ - Node: "node1", - CheckID: "check2", - Name: "check", - }, - } - restore = s.Restore() - if err := restore.Registration(4, req); err != nil { - t.Fatalf("err: %s", err) - } - restore.Commit() - - // Verify that the additional check got registered. - verifyNode(1, 4) - verifyService(2, 4) - func() { - idx, out, err := s.NodeChecks("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 4 { - t.Fatalf("bad index: %d", idx) - } - if len(out) != 2 { - t.Fatalf("bad: %#v", out) - } - c1 := out[0] - if c1.Node != "node1" || c1.CheckID != "check1" || c1.Name != "check" || - c1.CreateIndex != 3 || c1.ModifyIndex != 4 { - t.Fatalf("bad check returned: %#v", c1) - } - - c2 := out[1] - if c2.Node != "node1" || c2.CheckID != "check2" || c2.Name != "check" || - c2.CreateIndex != 4 || c2.ModifyIndex != 4 { - t.Fatalf("bad check returned: %#v", c2) - } - }() -} - -func TestStateStore_EnsureRegistration_Watches(t *testing.T) { - s := testStateStore(t) - - req := &structs.RegisterRequest{ - Node: "node1", - Address: "1.2.3.4", - } - - // The nodes watch should fire for this one. - verifyWatch(t, s.getTableWatch("nodes"), func() { - verifyNoWatch(t, s.getTableWatch("services"), func() { - verifyNoWatch(t, s.getTableWatch("checks"), func() { - if err := s.EnsureRegistration(1, req); err != nil { - t.Fatalf("err: %s", err) - } - }) - }) - }) - // The nodes watch should fire for this one. - verifyWatch(t, s.getTableWatch("nodes"), func() { - verifyNoWatch(t, s.getTableWatch("services"), func() { - verifyNoWatch(t, s.getTableWatch("checks"), func() { - restore := s.Restore() - if err := restore.Registration(1, req); err != nil { - t.Fatalf("err: %s", err) - } - restore.Commit() - }) - }) - }) - - // With a service definition added it should fire nodes and - // services. - req.Service = &structs.NodeService{ - ID: "redis1", - Service: "redis", - Address: "1.1.1.1", - Port: 8080, - } - verifyWatch(t, s.getTableWatch("nodes"), func() { - verifyWatch(t, s.getTableWatch("services"), func() { - verifyNoWatch(t, s.getTableWatch("checks"), func() { - if err := s.EnsureRegistration(2, req); err != nil { - t.Fatalf("err: %s", err) - } - }) - }) - }) - verifyWatch(t, s.getTableWatch("nodes"), func() { - verifyWatch(t, s.getTableWatch("services"), func() { - verifyNoWatch(t, s.getTableWatch("checks"), func() { - restore := s.Restore() - if err := restore.Registration(2, req); err != nil { - t.Fatalf("err: %s", err) - } - restore.Commit() - }) - }) - }) - - // Now with a check it should hit all three. - req.Check = &structs.HealthCheck{ - Node: "node1", - CheckID: "check1", - Name: "check", - } - verifyWatch(t, s.getTableWatch("nodes"), func() { - verifyWatch(t, s.getTableWatch("services"), func() { - verifyWatch(t, s.getTableWatch("checks"), func() { - if err := s.EnsureRegistration(3, req); err != nil { - t.Fatalf("err: %s", err) - } - }) - }) - }) - verifyWatch(t, s.getTableWatch("nodes"), func() { - verifyWatch(t, s.getTableWatch("services"), func() { - verifyWatch(t, s.getTableWatch("checks"), func() { - restore := s.Restore() - if err := restore.Registration(3, req); err != nil { - t.Fatalf("err: %s", err) - } - restore.Commit() - }) - }) - }) -} - -func TestStateStore_EnsureNode(t *testing.T) { - s := testStateStore(t) - - // Fetching a non-existent node returns nil - if _, node, err := s.GetNode("node1"); node != nil || err != nil { - t.Fatalf("expected (nil, nil), got: (%#v, %#v)", node, err) - } - - // Create a node registration request - in := &structs.Node{ - Node: "node1", - Address: "1.1.1.1", - } - - // Ensure the node is registered in the db - if err := s.EnsureNode(1, in); err != nil { - t.Fatalf("err: %s", err) - } - - // Retrieve the node again - idx, out, err := s.GetNode("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - - // Correct node was returned - if out.Node != "node1" || out.Address != "1.1.1.1" { - t.Fatalf("bad node returned: %#v", out) - } - - // Indexes are set properly - if out.CreateIndex != 1 || out.ModifyIndex != 1 { - t.Fatalf("bad node index: %#v", out) - } - if idx != 1 { - t.Fatalf("bad index: %d", idx) - } - - // Update the node registration - in.Address = "1.1.1.2" - if err := s.EnsureNode(2, in); err != nil { - t.Fatalf("err: %s", err) - } - - // Retrieve the node - idx, out, err = s.GetNode("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - - // Node and indexes were updated - if out.CreateIndex != 1 || out.ModifyIndex != 2 || out.Address != "1.1.1.2" { - t.Fatalf("bad: %#v", out) - } - if idx != 2 { - t.Fatalf("bad index: %d", idx) - } - - // Node upsert preserves the create index - if err := s.EnsureNode(3, in); err != nil { - t.Fatalf("err: %s", err) - } - idx, out, err = s.GetNode("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if out.CreateIndex != 1 || out.ModifyIndex != 3 || out.Address != "1.1.1.2" { - t.Fatalf("node was modified: %#v", out) - } - if idx != 3 { - t.Fatalf("bad index: %d", idx) - } -} - -func TestStateStore_GetNodes(t *testing.T) { - s := testStateStore(t) - - // Listing with no results returns nil - idx, res, err := s.Nodes() - if idx != 0 || res != nil || err != nil { - t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) - } - - // Create some nodes in the state store - testRegisterNode(t, s, 0, "node0") - testRegisterNode(t, s, 1, "node1") - testRegisterNode(t, s, 2, "node2") - - // Retrieve the nodes - idx, nodes, err := s.Nodes() - if err != nil { - t.Fatalf("err: %s", err) - } - - // Highest index was returned - if idx != 2 { - t.Fatalf("bad index: %d", idx) - } - - // All nodes were returned - if n := len(nodes); n != 3 { - t.Fatalf("bad node count: %d", n) - } - - // Make sure the nodes match - for i, node := range nodes { - if node.CreateIndex != uint64(i) || node.ModifyIndex != uint64(i) { - t.Fatalf("bad node index: %d, %d", node.CreateIndex, node.ModifyIndex) - } - name := fmt.Sprintf("node%d", i) - if node.Node != name { - t.Fatalf("bad: %#v", node) - } - } -} - -func BenchmarkGetNodes(b *testing.B) { - s, err := NewStateStore(nil) - if err != nil { - b.Fatalf("err: %s", err) - } - - if err := s.EnsureNode(100, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { - b.Fatalf("err: %v", err) - } - if err := s.EnsureNode(101, &structs.Node{Node: "bar", Address: "127.0.0.2"}); err != nil { - b.Fatalf("err: %v", err) - } - - for i := 0; i < b.N; i++ { - s.Nodes() - } -} - -func TestStateStore_DeleteNode(t *testing.T) { - s := testStateStore(t) - - // Create a node and register a service and health check with it. - testRegisterNode(t, s, 0, "node1") - testRegisterService(t, s, 1, "node1", "service1") - testRegisterCheck(t, s, 2, "node1", "", "check1", structs.HealthPassing) - - // Delete the node - if err := s.DeleteNode(3, "node1"); err != nil { - t.Fatalf("err: %s", err) - } - - // The node was removed - if idx, n, err := s.GetNode("node1"); err != nil || n != nil || idx != 3 { - t.Fatalf("bad: %#v %d (err: %#v)", n, idx, err) - } - - // Associated service was removed. Need to query this directly out of - // the DB to make sure it is actually gone. - tx := s.db.Txn(false) - defer tx.Abort() - services, err := tx.Get("services", "id", "node1", "service1") - if err != nil { - t.Fatalf("err: %s", err) - } - if service := services.Next(); service != nil { - t.Fatalf("bad: %#v", service) - } - - // Associated health check was removed. - checks, err := tx.Get("checks", "id", "node1", "check1") - if err != nil { - t.Fatalf("err: %s", err) - } - if check := checks.Next(); check != nil { - t.Fatalf("bad: %#v", check) - } - - // Indexes were updated. - for _, tbl := range []string{"nodes", "services", "checks"} { - if idx := s.maxIndex(tbl); idx != 3 { - t.Fatalf("bad index: %d (%s)", idx, tbl) - } - } - - // Deleting a nonexistent node should be idempotent and not return - // an error - if err := s.DeleteNode(4, "node1"); err != nil { - t.Fatalf("err: %s", err) - } - if idx := s.maxIndex("nodes"); idx != 3 { - t.Fatalf("bad index: %d", idx) - } -} - -func TestStateStore_Node_Snapshot(t *testing.T) { - s := testStateStore(t) - - // Create some nodes in the state store. - testRegisterNode(t, s, 0, "node0") - testRegisterNode(t, s, 1, "node1") - testRegisterNode(t, s, 2, "node2") - - // Snapshot the nodes. - snap := s.Snapshot() - defer snap.Close() - - // Alter the real state store. - testRegisterNode(t, s, 3, "node3") - - // Verify the snapshot. - if idx := snap.LastIndex(); idx != 2 { - t.Fatalf("bad index: %d", idx) - } - nodes, err := snap.Nodes() - if err != nil { - t.Fatalf("err: %s", err) - } - for i := 0; i < 3; i++ { - node := nodes.Next().(*structs.Node) - if node == nil { - t.Fatalf("unexpected end of nodes") - } - - if node.CreateIndex != uint64(i) || node.ModifyIndex != uint64(i) { - t.Fatalf("bad node index: %d, %d", node.CreateIndex, node.ModifyIndex) - } - if node.Node != fmt.Sprintf("node%d", i) { - t.Fatalf("bad: %#v", node) - } - } - if nodes.Next() != nil { - t.Fatalf("unexpected extra nodes") - } -} - -func TestStateStore_Node_Watches(t *testing.T) { - s := testStateStore(t) - - // Call functions that update the nodes table and make sure a watch fires - // each time. - verifyWatch(t, s.getTableWatch("nodes"), func() { - req := &structs.RegisterRequest{ - Node: "node1", - } - if err := s.EnsureRegistration(1, req); err != nil { - t.Fatalf("err: %s", err) - } - }) - verifyWatch(t, s.getTableWatch("nodes"), func() { - node := &structs.Node{Node: "node2"} - if err := s.EnsureNode(2, node); err != nil { - t.Fatalf("err: %s", err) - } - }) - verifyWatch(t, s.getTableWatch("nodes"), func() { - if err := s.DeleteNode(3, "node2"); err != nil { - t.Fatalf("err: %s", err) - } - }) - - // Check that a delete of a node + service + check + coordinate triggers - // all tables in one shot. - testRegisterNode(t, s, 4, "node1") - testRegisterService(t, s, 5, "node1", "service1") - testRegisterCheck(t, s, 6, "node1", "service1", "check3", structs.HealthPassing) - updates := structs.Coordinates{ - &structs.Coordinate{ - Node: "node1", - Coord: generateRandomCoordinate(), - }, - } - if err := s.CoordinateBatchUpdate(7, updates); err != nil { - t.Fatalf("err: %s", err) - } - verifyWatch(t, s.getTableWatch("nodes"), func() { - verifyWatch(t, s.getTableWatch("services"), func() { - verifyWatch(t, s.getTableWatch("checks"), func() { - verifyWatch(t, s.getTableWatch("coordinates"), func() { - if err := s.DeleteNode(7, "node1"); err != nil { - t.Fatalf("err: %s", err) - } - }) - }) - }) - }) -} - -func TestStateStore_EnsureService(t *testing.T) { - s := testStateStore(t) - - // Fetching services for a node with none returns nil - idx, res, err := s.NodeServices("node1") - if err != nil || res != nil || idx != 0 { - t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) - } - - // Create the service registration - ns1 := &structs.NodeService{ - ID: "service1", - Service: "redis", - Tags: []string{"prod"}, - Address: "1.1.1.1", - Port: 1111, - } - - // Creating a service without a node returns an error - if err := s.EnsureService(1, "node1", ns1); err != ErrMissingNode { - t.Fatalf("expected %#v, got: %#v", ErrMissingNode, err) - } - - // Register the nodes - testRegisterNode(t, s, 0, "node1") - testRegisterNode(t, s, 1, "node2") - - // Service successfully registers into the state store - if err = s.EnsureService(10, "node1", ns1); err != nil { - t.Fatalf("err: %s", err) - } - - // Register a similar service against both nodes - ns2 := *ns1 - ns2.ID = "service2" - for _, n := range []string{"node1", "node2"} { - if err := s.EnsureService(20, n, &ns2); err != nil { - t.Fatalf("err: %s", err) - } - } - - // Register a different service on the bad node - ns3 := *ns1 - ns3.ID = "service3" - if err := s.EnsureService(30, "node2", &ns3); err != nil { - t.Fatalf("err: %s", err) - } - - // Retrieve the services - idx, out, err := s.NodeServices("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 30 { - t.Fatalf("bad index: %d", idx) - } - - // Only the services for the requested node are returned - if out == nil || len(out.Services) != 2 { - t.Fatalf("bad services: %#v", out) - } - - // Results match the inserted services and have the proper indexes set - expect1 := *ns1 - expect1.CreateIndex, expect1.ModifyIndex = 10, 10 - if svc := out.Services["service1"]; !reflect.DeepEqual(&expect1, svc) { - t.Fatalf("bad: %#v", svc) - } - - expect2 := ns2 - expect2.CreateIndex, expect2.ModifyIndex = 20, 20 - if svc := out.Services["service2"]; !reflect.DeepEqual(&expect2, svc) { - t.Fatalf("bad: %#v %#v", ns2, svc) - } - - // Index tables were updated - if idx := s.maxIndex("services"); idx != 30 { - t.Fatalf("bad index: %d", idx) - } - - // Update a service registration - ns1.Address = "1.1.1.2" - if err := s.EnsureService(40, "node1", ns1); err != nil { - t.Fatalf("err: %s", err) - } - - // Retrieve the service again and ensure it matches - idx, out, err = s.NodeServices("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 40 { - t.Fatalf("bad index: %d", idx) - } - if out == nil || len(out.Services) != 2 { - t.Fatalf("bad: %#v", out) - } - expect1.Address = "1.1.1.2" - expect1.ModifyIndex = 40 - if svc := out.Services["service1"]; !reflect.DeepEqual(&expect1, svc) { - t.Fatalf("bad: %#v", svc) - } - - // Index tables were updated - if idx := s.maxIndex("services"); idx != 40 { - t.Fatalf("bad index: %d", idx) - } -} - -func TestStateStore_Services(t *testing.T) { - s := testStateStore(t) - - // Register several nodes and services. - testRegisterNode(t, s, 1, "node1") - ns1 := &structs.NodeService{ - ID: "service1", - Service: "redis", - Tags: []string{"prod", "master"}, - Address: "1.1.1.1", - Port: 1111, - } - if err := s.EnsureService(2, "node1", ns1); err != nil { - t.Fatalf("err: %s", err) - } - testRegisterService(t, s, 3, "node1", "dogs") - testRegisterNode(t, s, 4, "node2") - ns2 := &structs.NodeService{ - ID: "service3", - Service: "redis", - Tags: []string{"prod", "slave"}, - Address: "1.1.1.1", - Port: 1111, - } - if err := s.EnsureService(5, "node2", ns2); err != nil { - t.Fatalf("err: %s", err) - } - - // Pull all the services. - idx, services, err := s.Services() - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 5 { - t.Fatalf("bad index: %d", idx) - } - - // Verify the result. We sort the lists since the order is - // non-deterministic (it's built using a map internally). - expected := structs.Services{ - "redis": []string{"prod", "master", "slave"}, - "dogs": []string{}, - } - sort.Strings(expected["redis"]) - for _, tags := range services { - sort.Strings(tags) - } - if !reflect.DeepEqual(expected, services) { - t.Fatalf("bad: %#v", services) - } -} - -func TestStateStore_ServiceNodes(t *testing.T) { - s := testStateStore(t) - - if err := s.EnsureNode(10, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { - t.Fatalf("err: %v", err) - } - - if err := s.EnsureNode(11, &structs.Node{Node: "bar", Address: "127.0.0.2"}); err != nil { - t.Fatalf("err: %v", err) - } - - if err := s.EnsureService(12, "foo", &structs.NodeService{ID: "api", Service: "api", Tags: nil, Address: "", Port: 5000}); err != nil { - t.Fatalf("err: %v", err) - } - - if err := s.EnsureService(13, "bar", &structs.NodeService{ID: "api", Service: "api", Tags: nil, Address: "", Port: 5000}); err != nil { - t.Fatalf("err: %v", err) - } - - if err := s.EnsureService(14, "foo", &structs.NodeService{ID: "db", Service: "db", Tags: []string{"master"}, Address: "", Port: 8000}); err != nil { - t.Fatalf("err: %v", err) - } - - if err := s.EnsureService(15, "bar", &structs.NodeService{ID: "db", Service: "db", Tags: []string{"slave"}, Address: "", Port: 8000}); err != nil { - t.Fatalf("err: %v", err) - } - - if err := s.EnsureService(16, "bar", &structs.NodeService{ID: "db2", Service: "db", Tags: []string{"slave"}, Address: "", Port: 8001}); err != nil { - t.Fatalf("err: %v", err) - } - - idx, nodes, err := s.ServiceNodes("db") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 16 { - t.Fatalf("bad: %v", 16) - } - if len(nodes) != 3 { - t.Fatalf("bad: %v", nodes) - } - if nodes[0].Node != "bar" { - t.Fatalf("bad: %v", nodes) - } - if nodes[0].Address != "127.0.0.2" { - t.Fatalf("bad: %v", nodes) - } - if nodes[0].ServiceID != "db" { - t.Fatalf("bad: %v", nodes) - } - if !lib.StrContains(nodes[0].ServiceTags, "slave") { - t.Fatalf("bad: %v", nodes) - } - if nodes[0].ServicePort != 8000 { - t.Fatalf("bad: %v", nodes) - } - - if nodes[1].Node != "bar" { - t.Fatalf("bad: %v", nodes) - } - if nodes[1].Address != "127.0.0.2" { - t.Fatalf("bad: %v", nodes) - } - if nodes[1].ServiceID != "db2" { - t.Fatalf("bad: %v", nodes) - } - if !lib.StrContains(nodes[1].ServiceTags, "slave") { - t.Fatalf("bad: %v", nodes) - } - if nodes[1].ServicePort != 8001 { - t.Fatalf("bad: %v", nodes) - } - - if nodes[2].Node != "foo" { - t.Fatalf("bad: %v", nodes) - } - if nodes[2].Address != "127.0.0.1" { - t.Fatalf("bad: %v", nodes) - } - if nodes[2].ServiceID != "db" { - t.Fatalf("bad: %v", nodes) - } - if !lib.StrContains(nodes[2].ServiceTags, "master") { - t.Fatalf("bad: %v", nodes) - } - if nodes[2].ServicePort != 8000 { - t.Fatalf("bad: %v", nodes) - } -} - -func TestStateStore_ServiceTagNodes(t *testing.T) { - s := testStateStore(t) - - if err := s.EnsureNode(15, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { - t.Fatalf("err: %v", err) - } - - if err := s.EnsureNode(16, &structs.Node{Node: "bar", Address: "127.0.0.2"}); err != nil { - t.Fatalf("err: %v", err) - } - - if err := s.EnsureService(17, "foo", &structs.NodeService{ID: "db", Service: "db", Tags: []string{"master"}, Address: "", Port: 8000}); err != nil { - t.Fatalf("err: %v", err) - } - - if err := s.EnsureService(18, "foo", &structs.NodeService{ID: "db2", Service: "db", Tags: []string{"slave"}, Address: "", Port: 8001}); err != nil { - t.Fatalf("err: %v", err) - } - - if err := s.EnsureService(19, "bar", &structs.NodeService{ID: "db", Service: "db", Tags: []string{"slave"}, Address: "", Port: 8000}); err != nil { - t.Fatalf("err: %v", err) - } - - idx, nodes, err := s.ServiceTagNodes("db", "master") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 19 { - t.Fatalf("bad: %v", idx) - } - if len(nodes) != 1 { - t.Fatalf("bad: %v", nodes) - } - if nodes[0].Node != "foo" { - t.Fatalf("bad: %v", nodes) - } - if nodes[0].Address != "127.0.0.1" { - t.Fatalf("bad: %v", nodes) - } - if !lib.StrContains(nodes[0].ServiceTags, "master") { - t.Fatalf("bad: %v", nodes) - } - if nodes[0].ServicePort != 8000 { - t.Fatalf("bad: %v", nodes) - } -} - -func TestStateStore_ServiceTagNodes_MultipleTags(t *testing.T) { - s := testStateStore(t) - - if err := s.EnsureNode(15, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { - t.Fatalf("err: %v", err) - } - - if err := s.EnsureNode(16, &structs.Node{Node: "bar", Address: "127.0.0.2"}); err != nil { - t.Fatalf("err: %v", err) - } - - if err := s.EnsureService(17, "foo", &structs.NodeService{ID: "db", Service: "db", Tags: []string{"master", "v2"}, Address: "", Port: 8000}); err != nil { - t.Fatalf("err: %v", err) - } - - if err := s.EnsureService(18, "foo", &structs.NodeService{ID: "db2", Service: "db", Tags: []string{"slave", "v2", "dev"}, Address: "", Port: 8001}); err != nil { - t.Fatalf("err: %v", err) - } - - if err := s.EnsureService(19, "bar", &structs.NodeService{ID: "db", Service: "db", Tags: []string{"slave", "v2"}, Address: "", Port: 8000}); err != nil { - t.Fatalf("err: %v", err) - } - - idx, nodes, err := s.ServiceTagNodes("db", "master") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 19 { - t.Fatalf("bad: %v", idx) - } - if len(nodes) != 1 { - t.Fatalf("bad: %v", nodes) - } - if nodes[0].Node != "foo" { - t.Fatalf("bad: %v", nodes) - } - if nodes[0].Address != "127.0.0.1" { - t.Fatalf("bad: %v", nodes) - } - if !lib.StrContains(nodes[0].ServiceTags, "master") { - t.Fatalf("bad: %v", nodes) - } - if nodes[0].ServicePort != 8000 { - t.Fatalf("bad: %v", nodes) - } - - idx, nodes, err = s.ServiceTagNodes("db", "v2") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 19 { - t.Fatalf("bad: %v", idx) - } - if len(nodes) != 3 { - t.Fatalf("bad: %v", nodes) - } - - idx, nodes, err = s.ServiceTagNodes("db", "dev") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 19 { - t.Fatalf("bad: %v", idx) - } - if len(nodes) != 1 { - t.Fatalf("bad: %v", nodes) - } - if nodes[0].Node != "foo" { - t.Fatalf("bad: %v", nodes) - } - if nodes[0].Address != "127.0.0.1" { - t.Fatalf("bad: %v", nodes) - } - if !lib.StrContains(nodes[0].ServiceTags, "dev") { - t.Fatalf("bad: %v", nodes) - } - if nodes[0].ServicePort != 8001 { - t.Fatalf("bad: %v", nodes) - } -} - -func TestStateStore_DeleteService(t *testing.T) { - s := testStateStore(t) - - // Register a node with one service and a check - testRegisterNode(t, s, 1, "node1") - testRegisterService(t, s, 2, "node1", "service1") - testRegisterCheck(t, s, 3, "node1", "service1", "check1", structs.HealthPassing) - - // Delete the service - if err := s.DeleteService(4, "node1", "service1"); err != nil { - t.Fatalf("err: %s", err) - } - - // Service doesn't exist. - _, ns, err := s.NodeServices("node1") - if err != nil || ns == nil || len(ns.Services) != 0 { - t.Fatalf("bad: %#v (err: %#v)", ns, err) - } - - // Check doesn't exist. Check using the raw DB so we can test - // that it actually is removed in the state store. - tx := s.db.Txn(false) - defer tx.Abort() - check, err := tx.First("checks", "id", "node1", "check1") - if err != nil || check != nil { - t.Fatalf("bad: %#v (err: %s)", check, err) - } - - // Index tables were updated - if idx := s.maxIndex("services"); idx != 4 { - t.Fatalf("bad index: %d", idx) - } - if idx := s.maxIndex("checks"); idx != 4 { - t.Fatalf("bad index: %d", idx) - } - - // Deleting a nonexistent service should be idempotent and not return an - // error - if err := s.DeleteService(5, "node1", "service1"); err != nil { - t.Fatalf("err: %s", err) - } - if idx := s.maxIndex("services"); idx != 4 { - t.Fatalf("bad index: %d", idx) - } -} - -func TestStateStore_Service_Snapshot(t *testing.T) { - s := testStateStore(t) - - // Register a node with two services. - testRegisterNode(t, s, 0, "node1") - ns := []*structs.NodeService{ - &structs.NodeService{ - ID: "service1", - Service: "redis", - Tags: []string{"prod"}, - Address: "1.1.1.1", - Port: 1111, - }, - &structs.NodeService{ - ID: "service2", - Service: "nomad", - Tags: []string{"dev"}, - Address: "1.1.1.2", - Port: 1112, - }, - } - for i, svc := range ns { - if err := s.EnsureService(uint64(i+1), "node1", svc); err != nil { - t.Fatalf("err: %s", err) - } - } - - // Create a second node/service to make sure node filtering works. This - // will affect the index but not the dump. - testRegisterNode(t, s, 3, "node2") - testRegisterService(t, s, 4, "node2", "service2") - - // Snapshot the service. - snap := s.Snapshot() - defer snap.Close() - - // Alter the real state store. - testRegisterService(t, s, 5, "node2", "service3") - - // Verify the snapshot. - if idx := snap.LastIndex(); idx != 4 { - t.Fatalf("bad index: %d", idx) - } - services, err := snap.Services("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - for i := 0; i < len(ns); i++ { - svc := services.Next().(*structs.ServiceNode) - if svc == nil { - t.Fatalf("unexpected end of services") - } - - ns[i].CreateIndex, ns[i].ModifyIndex = uint64(i+1), uint64(i+1) - if !reflect.DeepEqual(ns[i], svc.ToNodeService()) { - t.Fatalf("bad: %#v != %#v", svc, ns[i]) - } - } - if services.Next() != nil { - t.Fatalf("unexpected extra services") - } -} - -func TestStateStore_Service_Watches(t *testing.T) { - s := testStateStore(t) - - testRegisterNode(t, s, 0, "node1") - ns := &structs.NodeService{ - ID: "service2", - Service: "nomad", - Address: "1.1.1.2", - Port: 8000, - } - - // Call functions that update the services table and make sure a watch - // fires each time. - verifyWatch(t, s.getTableWatch("services"), func() { - if err := s.EnsureService(2, "node1", ns); err != nil { - t.Fatalf("err: %s", err) - } - }) - verifyWatch(t, s.getTableWatch("services"), func() { - if err := s.DeleteService(3, "node1", "service2"); err != nil { - t.Fatalf("err: %s", err) - } - }) - - // Check that a delete of a service + check triggers both tables in one - // shot. - testRegisterService(t, s, 4, "node1", "service1") - testRegisterCheck(t, s, 5, "node1", "service1", "check3", structs.HealthPassing) - verifyWatch(t, s.getTableWatch("services"), func() { - verifyWatch(t, s.getTableWatch("checks"), func() { - if err := s.DeleteService(6, "node1", "service1"); err != nil { - t.Fatalf("err: %s", err) - } - }) - }) -} - -func TestStateStore_EnsureCheck(t *testing.T) { - s := testStateStore(t) - - // Create a check associated with the node - check := &structs.HealthCheck{ - Node: "node1", - CheckID: "check1", - Name: "redis check", - Status: structs.HealthPassing, - Notes: "test check", - Output: "aaa", - ServiceID: "service1", - ServiceName: "redis", - } - - // Creating a check without a node returns error - if err := s.EnsureCheck(1, check); err != ErrMissingNode { - t.Fatalf("expected %#v, got: %#v", ErrMissingNode, err) - } - - // Register the node - testRegisterNode(t, s, 1, "node1") - - // Creating a check with a bad services returns error - if err := s.EnsureCheck(1, check); err != ErrMissingService { - t.Fatalf("expected: %#v, got: %#v", ErrMissingService, err) - } - - // Register the service - testRegisterService(t, s, 2, "node1", "service1") - - // Inserting the check with the prerequisites succeeds - if err := s.EnsureCheck(3, check); err != nil { - t.Fatalf("err: %s", err) - } - - // Retrieve the check and make sure it matches - idx, checks, err := s.NodeChecks("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 3 { - t.Fatalf("bad index: %d", idx) - } - if len(checks) != 1 { - t.Fatalf("wrong number of checks: %d", len(checks)) - } - if !reflect.DeepEqual(checks[0], check) { - t.Fatalf("bad: %#v", checks[0]) - } - - // Modify the health check - check.Output = "bbb" - if err := s.EnsureCheck(4, check); err != nil { - t.Fatalf("err: %s", err) - } - - // Check that we successfully updated - idx, checks, err = s.NodeChecks("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 4 { - t.Fatalf("bad index: %d", idx) - } - if len(checks) != 1 { - t.Fatalf("wrong number of checks: %d", len(checks)) - } - if checks[0].Output != "bbb" { - t.Fatalf("wrong check output: %#v", checks[0]) - } - if checks[0].CreateIndex != 3 || checks[0].ModifyIndex != 4 { - t.Fatalf("bad index: %#v", checks[0]) - } - - // Index tables were updated - if idx := s.maxIndex("checks"); idx != 4 { - t.Fatalf("bad index: %d", idx) - } -} - -func TestStateStore_EnsureCheck_defaultStatus(t *testing.T) { - s := testStateStore(t) - - // Register a node - testRegisterNode(t, s, 1, "node1") - - // Create and register a check with no health status - check := &structs.HealthCheck{ - Node: "node1", - CheckID: "check1", - Status: "", - } - if err := s.EnsureCheck(2, check); err != nil { - t.Fatalf("err: %s", err) - } - - // Get the check again - _, result, err := s.NodeChecks("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - - // Check that the status was set to the proper default - if len(result) != 1 || result[0].Status != structs.HealthCritical { - t.Fatalf("bad: %#v", result) - } -} - -func TestStateStore_NodeChecks(t *testing.T) { - s := testStateStore(t) - - // Create the first node and service with some checks - testRegisterNode(t, s, 0, "node1") - testRegisterService(t, s, 1, "node1", "service1") - testRegisterCheck(t, s, 2, "node1", "service1", "check1", structs.HealthPassing) - testRegisterCheck(t, s, 3, "node1", "service1", "check2", structs.HealthPassing) - - // Create a second node/service with a different set of checks - testRegisterNode(t, s, 4, "node2") - testRegisterService(t, s, 5, "node2", "service2") - testRegisterCheck(t, s, 6, "node2", "service2", "check3", structs.HealthPassing) - - // Try querying for all checks associated with node1 - idx, checks, err := s.NodeChecks("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 6 { - t.Fatalf("bad index: %d", idx) - } - if len(checks) != 2 || checks[0].CheckID != "check1" || checks[1].CheckID != "check2" { - t.Fatalf("bad checks: %#v", checks) - } - - // Try querying for all checks associated with node2 - idx, checks, err = s.NodeChecks("node2") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 6 { - t.Fatalf("bad index: %d", idx) - } - if len(checks) != 1 || checks[0].CheckID != "check3" { - t.Fatalf("bad checks: %#v", checks) - } -} - -func TestStateStore_ServiceChecks(t *testing.T) { - s := testStateStore(t) - - // Create the first node and service with some checks - testRegisterNode(t, s, 0, "node1") - testRegisterService(t, s, 1, "node1", "service1") - testRegisterCheck(t, s, 2, "node1", "service1", "check1", structs.HealthPassing) - testRegisterCheck(t, s, 3, "node1", "service1", "check2", structs.HealthPassing) - - // Create a second node/service with a different set of checks - testRegisterNode(t, s, 4, "node2") - testRegisterService(t, s, 5, "node2", "service2") - testRegisterCheck(t, s, 6, "node2", "service2", "check3", structs.HealthPassing) - - // Try querying for all checks associated with service1 - idx, checks, err := s.ServiceChecks("service1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 6 { - t.Fatalf("bad index: %d", idx) - } - if len(checks) != 2 || checks[0].CheckID != "check1" || checks[1].CheckID != "check2" { - t.Fatalf("bad checks: %#v", checks) - } -} - -func TestStateStore_ChecksInState(t *testing.T) { - s := testStateStore(t) - - // Querying with no results returns nil - idx, res, err := s.ChecksInState(structs.HealthPassing) - if idx != 0 || res != nil || err != nil { - t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) - } - - // Register a node with checks in varied states - testRegisterNode(t, s, 0, "node1") - testRegisterCheck(t, s, 1, "node1", "", "check1", structs.HealthPassing) - testRegisterCheck(t, s, 2, "node1", "", "check2", structs.HealthCritical) - testRegisterCheck(t, s, 3, "node1", "", "check3", structs.HealthPassing) - - // Query the state store for passing checks. - _, checks, err := s.ChecksInState(structs.HealthPassing) - if err != nil { - t.Fatalf("err: %s", err) - } - - // Make sure we only get the checks which match the state - if n := len(checks); n != 2 { - t.Fatalf("expected 2 checks, got: %d", n) - } - if checks[0].CheckID != "check1" || checks[1].CheckID != "check3" { - t.Fatalf("bad: %#v", checks) - } - - // HealthAny just returns everything. - _, checks, err = s.ChecksInState(structs.HealthAny) - if err != nil { - t.Fatalf("err: %s", err) - } - if n := len(checks); n != 3 { - t.Fatalf("expected 3 checks, got: %d", n) - } -} - -func TestStateStore_DeleteCheck(t *testing.T) { - s := testStateStore(t) - - // Register a node and a node-level health check - testRegisterNode(t, s, 1, "node1") - testRegisterCheck(t, s, 2, "node1", "", "check1", structs.HealthPassing) - - // Delete the check - if err := s.DeleteCheck(3, "node1", "check1"); err != nil { - t.Fatalf("err: %s", err) - } - - // Check is gone - _, checks, err := s.NodeChecks("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if len(checks) != 0 { - t.Fatalf("bad: %#v", checks) - } - - // Index tables were updated - if idx := s.maxIndex("checks"); idx != 3 { - t.Fatalf("bad index: %d", idx) - } - - // Deleting a nonexistent check should be idempotent and not return an - // error - if err := s.DeleteCheck(4, "node1", "check1"); err != nil { - t.Fatalf("err: %s", err) - } - if idx := s.maxIndex("checks"); idx != 3 { - t.Fatalf("bad index: %d", idx) - } -} - -func TestStateStore_CheckServiceNodes(t *testing.T) { - s := testStateStore(t) - - // Querying with no matches gives an empty response - idx, res, err := s.CheckServiceNodes("service1") - if idx != 0 || res != nil || err != nil { - t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) - } - - // Register some nodes - testRegisterNode(t, s, 0, "node1") - testRegisterNode(t, s, 1, "node2") - - // Register node-level checks. These should not be returned - // in the final result. - testRegisterCheck(t, s, 2, "node1", "", "check1", structs.HealthPassing) - testRegisterCheck(t, s, 3, "node2", "", "check2", structs.HealthPassing) - - // Register a service against the nodes - testRegisterService(t, s, 4, "node1", "service1") - testRegisterService(t, s, 5, "node2", "service2") - - // Register checks against the services - testRegisterCheck(t, s, 6, "node1", "service1", "check3", structs.HealthPassing) - testRegisterCheck(t, s, 7, "node2", "service2", "check4", structs.HealthPassing) - - // Query the state store for nodes and checks which - // have been registered with a specific service. - idx, results, err := s.CheckServiceNodes("service1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 7 { - t.Fatalf("bad index: %d", idx) - } - - // Make sure we get the expected result (service check + node check) - if n := len(results); n != 1 { - t.Fatalf("expected 1 result, got: %d", n) - } - csn := results[0] - if csn.Node == nil || csn.Service == nil || len(csn.Checks) != 2 { - t.Fatalf("bad output: %#v", csn) - } - - // Node updates alter the returned index - testRegisterNode(t, s, 8, "node1") - idx, results, err = s.CheckServiceNodes("service1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 8 { - t.Fatalf("bad index: %d", idx) - } - - // Service updates alter the returned index - testRegisterService(t, s, 9, "node1", "service1") - idx, results, err = s.CheckServiceNodes("service1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 9 { - t.Fatalf("bad index: %d", idx) - } - - // Check updates alter the returned index - testRegisterCheck(t, s, 10, "node1", "service1", "check1", structs.HealthCritical) - idx, results, err = s.CheckServiceNodes("service1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 10 { - t.Fatalf("bad index: %d", idx) - } -} - -func BenchmarkCheckServiceNodes(b *testing.B) { - s, err := NewStateStore(nil) - if err != nil { - b.Fatalf("err: %s", err) - } - - if err := s.EnsureNode(1, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { - b.Fatalf("err: %v", err) - } - if err := s.EnsureService(2, "foo", &structs.NodeService{ID: "db1", Service: "db", Tags: []string{"master"}, Address: "", Port: 8000}); err != nil { - b.Fatalf("err: %v", err) - } - check := &structs.HealthCheck{ - Node: "foo", - CheckID: "db", - Name: "can connect", - Status: structs.HealthPassing, - ServiceID: "db1", - } - if err := s.EnsureCheck(3, check); err != nil { - b.Fatalf("err: %v", err) - } - check = &structs.HealthCheck{ - Node: "foo", - CheckID: "check1", - Name: "check1", - Status: structs.HealthPassing, - } - if err := s.EnsureCheck(4, check); err != nil { - b.Fatalf("err: %v", err) - } - - for i := 0; i < b.N; i++ { - s.CheckServiceNodes("db") - } -} - -func TestStateStore_CheckServiceTagNodes(t *testing.T) { - s := testStateStore(t) - - if err := s.EnsureNode(1, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { - t.Fatalf("err: %v", err) - } - if err := s.EnsureService(2, "foo", &structs.NodeService{ID: "db1", Service: "db", Tags: []string{"master"}, Address: "", Port: 8000}); err != nil { - t.Fatalf("err: %v", err) - } - check := &structs.HealthCheck{ - Node: "foo", - CheckID: "db", - Name: "can connect", - Status: structs.HealthPassing, - ServiceID: "db1", - } - if err := s.EnsureCheck(3, check); err != nil { - t.Fatalf("err: %v", err) - } - check = &structs.HealthCheck{ - Node: "foo", - CheckID: "check1", - Name: "another check", - Status: structs.HealthPassing, - } - if err := s.EnsureCheck(4, check); err != nil { - t.Fatalf("err: %v", err) - } - - idx, nodes, err := s.CheckServiceTagNodes("db", "master") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 4 { - t.Fatalf("bad: %v", idx) - } - if len(nodes) != 1 { - t.Fatalf("Bad: %v", nodes) - } - if nodes[0].Node.Node != "foo" { - t.Fatalf("Bad: %v", nodes[0]) - } - if nodes[0].Service.ID != "db1" { - t.Fatalf("Bad: %v", nodes[0]) - } - if len(nodes[0].Checks) != 2 { - t.Fatalf("Bad: %v", nodes[0]) - } - if nodes[0].Checks[0].CheckID != "check1" { - t.Fatalf("Bad: %v", nodes[0]) - } - if nodes[0].Checks[1].CheckID != "db" { - t.Fatalf("Bad: %v", nodes[0]) - } -} - -func TestStateStore_Check_Snapshot(t *testing.T) { - s := testStateStore(t) - - // Create a node, a service, and a service check as well as a node check. - testRegisterNode(t, s, 0, "node1") - testRegisterService(t, s, 1, "node1", "service1") - checks := structs.HealthChecks{ - &structs.HealthCheck{ - Node: "node1", - CheckID: "check1", - Name: "node check", - Status: structs.HealthPassing, - }, - &structs.HealthCheck{ - Node: "node1", - CheckID: "check2", - Name: "service check", - Status: structs.HealthCritical, - ServiceID: "service1", - }, - } - for i, hc := range checks { - if err := s.EnsureCheck(uint64(i+1), hc); err != nil { - t.Fatalf("err: %s", err) - } - } - - // Create a second node/service to make sure node filtering works. This - // will affect the index but not the dump. - testRegisterNode(t, s, 3, "node2") - testRegisterService(t, s, 4, "node2", "service2") - testRegisterCheck(t, s, 5, "node2", "service2", "check3", structs.HealthPassing) - - // Snapshot the checks. - snap := s.Snapshot() - defer snap.Close() - - // Alter the real state store. - testRegisterCheck(t, s, 6, "node2", "service2", "check4", structs.HealthPassing) - - // Verify the snapshot. - if idx := snap.LastIndex(); idx != 5 { - t.Fatalf("bad index: %d", idx) - } - iter, err := snap.Checks("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - for i := 0; i < len(checks); i++ { - check := iter.Next().(*structs.HealthCheck) - if check == nil { - t.Fatalf("unexpected end of checks") - } - - checks[i].CreateIndex, checks[i].ModifyIndex = uint64(i+1), uint64(i+1) - if !reflect.DeepEqual(check, checks[i]) { - t.Fatalf("bad: %#v != %#v", check, checks[i]) - } - } - if iter.Next() != nil { - t.Fatalf("unexpected extra checks") - } -} - -func TestStateStore_Check_Watches(t *testing.T) { - s := testStateStore(t) - - testRegisterNode(t, s, 0, "node1") - hc := &structs.HealthCheck{ - Node: "node1", - CheckID: "check1", - Status: structs.HealthPassing, - } - - // Call functions that update the checks table and make sure a watch fires - // each time. - verifyWatch(t, s.getTableWatch("checks"), func() { - if err := s.EnsureCheck(1, hc); err != nil { - t.Fatalf("err: %s", err) - } - }) - verifyWatch(t, s.getTableWatch("checks"), func() { - hc.Status = structs.HealthCritical - if err := s.EnsureCheck(2, hc); err != nil { - t.Fatalf("err: %s", err) - } - }) - verifyWatch(t, s.getTableWatch("checks"), func() { - if err := s.DeleteCheck(3, "node1", "check1"); err != nil { - t.Fatalf("err: %s", err) - } - }) -} - -func TestStateStore_NodeInfo_NodeDump(t *testing.T) { - s := testStateStore(t) - - // Generating a node dump that matches nothing returns empty - idx, dump, err := s.NodeInfo("node1") - if idx != 0 || dump != nil || err != nil { - t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, dump, err) - } - idx, dump, err = s.NodeDump() - if idx != 0 || dump != nil || err != nil { - t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, dump, err) - } - - // Register some nodes - testRegisterNode(t, s, 0, "node1") - testRegisterNode(t, s, 1, "node2") - - // Register services against them - testRegisterService(t, s, 2, "node1", "service1") - testRegisterService(t, s, 3, "node1", "service2") - testRegisterService(t, s, 4, "node2", "service1") - testRegisterService(t, s, 5, "node2", "service2") - - // Register service-level checks - testRegisterCheck(t, s, 6, "node1", "service1", "check1", structs.HealthPassing) - testRegisterCheck(t, s, 7, "node2", "service1", "check1", structs.HealthPassing) - - // Register node-level checks - testRegisterCheck(t, s, 8, "node1", "", "check2", structs.HealthPassing) - testRegisterCheck(t, s, 9, "node2", "", "check2", structs.HealthPassing) - - // Check that our result matches what we expect. - expect := structs.NodeDump{ - &structs.NodeInfo{ - Node: "node1", - Checks: structs.HealthChecks{ - &structs.HealthCheck{ - Node: "node1", - CheckID: "check1", - ServiceID: "service1", - ServiceName: "service1", - Status: structs.HealthPassing, - RaftIndex: structs.RaftIndex{ - CreateIndex: 6, - ModifyIndex: 6, - }, - }, - &structs.HealthCheck{ - Node: "node1", - CheckID: "check2", - ServiceID: "", - ServiceName: "", - Status: structs.HealthPassing, - RaftIndex: structs.RaftIndex{ - CreateIndex: 8, - ModifyIndex: 8, - }, - }, - }, - Services: []*structs.NodeService{ - &structs.NodeService{ - ID: "service1", - Service: "service1", - Address: "1.1.1.1", - Port: 1111, - RaftIndex: structs.RaftIndex{ - CreateIndex: 2, - ModifyIndex: 2, - }, - }, - &structs.NodeService{ - ID: "service2", - Service: "service2", - Address: "1.1.1.1", - Port: 1111, - RaftIndex: structs.RaftIndex{ - CreateIndex: 3, - ModifyIndex: 3, - }, - }, - }, - }, - &structs.NodeInfo{ - Node: "node2", - Checks: structs.HealthChecks{ - &structs.HealthCheck{ - Node: "node2", - CheckID: "check1", - ServiceID: "service1", - ServiceName: "service1", - Status: structs.HealthPassing, - RaftIndex: structs.RaftIndex{ - CreateIndex: 7, - ModifyIndex: 7, - }, - }, - &structs.HealthCheck{ - Node: "node2", - CheckID: "check2", - ServiceID: "", - ServiceName: "", - Status: structs.HealthPassing, - RaftIndex: structs.RaftIndex{ - CreateIndex: 9, - ModifyIndex: 9, - }, - }, - }, - Services: []*structs.NodeService{ - &structs.NodeService{ - ID: "service1", - Service: "service1", - Address: "1.1.1.1", - Port: 1111, - RaftIndex: structs.RaftIndex{ - CreateIndex: 4, - ModifyIndex: 4, - }, - }, - &structs.NodeService{ - ID: "service2", - Service: "service2", - Address: "1.1.1.1", - Port: 1111, - RaftIndex: structs.RaftIndex{ - CreateIndex: 5, - ModifyIndex: 5, - }, - }, - }, - }, - } - - // Get a dump of just a single node - idx, dump, err = s.NodeInfo("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 9 { - t.Fatalf("bad index: %d", idx) - } - if len(dump) != 1 || !reflect.DeepEqual(dump[0], expect[0]) { - t.Fatalf("bad: %#v", dump) - } - - // Generate a dump of all the nodes - idx, dump, err = s.NodeDump() - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 9 { - t.Fatalf("bad index: %d", 9) - } - if !reflect.DeepEqual(dump, expect) { - t.Fatalf("bad: %#v", dump[0].Services[0]) - } -} - -func TestStateStore_SessionCreate_SessionGet(t *testing.T) { - s := testStateStore(t) - - // SessionGet returns nil if the session doesn't exist - idx, session, err := s.SessionGet(testUUID()) - if session != nil || err != nil { - t.Fatalf("expected (nil, nil), got: (%#v, %#v)", session, err) - } - if idx != 0 { - t.Fatalf("bad index: %d", idx) - } - - // Registering without a session ID is disallowed - err = s.SessionCreate(1, &structs.Session{}) - if err != ErrMissingSessionID { - t.Fatalf("expected %#v, got: %#v", ErrMissingSessionID, err) - } - - // Invalid session behavior throws error - sess := &structs.Session{ - ID: testUUID(), - Behavior: "nope", - } - err = s.SessionCreate(1, sess) - if err == nil || !strings.Contains(err.Error(), "session behavior") { - t.Fatalf("expected session behavior error, got: %#v", err) - } - - // Registering with an unknown node is disallowed - sess = &structs.Session{ID: testUUID()} - if err := s.SessionCreate(1, sess); err != ErrMissingNode { - t.Fatalf("expected %#v, got: %#v", ErrMissingNode, err) - } - - // None of the errored operations modified the index - if idx := s.maxIndex("sessions"); idx != 0 { - t.Fatalf("bad index: %d", idx) - } - - // Valid session is able to register - testRegisterNode(t, s, 1, "node1") - sess = &structs.Session{ - ID: testUUID(), - Node: "node1", - } - if err := s.SessionCreate(2, sess); err != nil { - t.Fatalf("err: %s", err) - } - if idx := s.maxIndex("sessions"); idx != 2 { - t.Fatalf("bad index: %s", err) - } - - // Retrieve the session again - idx, session, err = s.SessionGet(sess.ID) - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 2 { - t.Fatalf("bad index: %d", idx) - } - - // Ensure the session looks correct and was assigned the - // proper default value for session behavior. - expect := &structs.Session{ - ID: sess.ID, - Behavior: structs.SessionKeysRelease, - Node: "node1", - RaftIndex: structs.RaftIndex{ - CreateIndex: 2, - ModifyIndex: 2, - }, - } - if !reflect.DeepEqual(expect, session) { - t.Fatalf("bad session: %#v", session) - } - - // Registering with a non-existent check is disallowed - sess = &structs.Session{ - ID: testUUID(), - Node: "node1", - Checks: []types.CheckID{"check1"}, - } - err = s.SessionCreate(3, sess) - if err == nil || !strings.Contains(err.Error(), "Missing check") { - t.Fatalf("expected missing check error, got: %#v", err) - } - - // Registering with a critical check is disallowed - testRegisterCheck(t, s, 3, "node1", "", "check1", structs.HealthCritical) - err = s.SessionCreate(4, sess) - if err == nil || !strings.Contains(err.Error(), structs.HealthCritical) { - t.Fatalf("expected critical state error, got: %#v", err) - } - - // Registering with a healthy check succeeds - testRegisterCheck(t, s, 4, "node1", "", "check1", structs.HealthPassing) - if err := s.SessionCreate(5, sess); err != nil { - t.Fatalf("err: %s", err) - } - - // Register a session against two checks. - testRegisterCheck(t, s, 5, "node1", "", "check2", structs.HealthPassing) - sess2 := &structs.Session{ - ID: testUUID(), - Node: "node1", - Checks: []types.CheckID{"check1", "check2"}, - } - if err := s.SessionCreate(6, sess2); err != nil { - t.Fatalf("err: %s", err) - } - - tx := s.db.Txn(false) - defer tx.Abort() - - // Check mappings were inserted - { - check, err := tx.First("session_checks", "session", sess.ID) - if err != nil { - t.Fatalf("err: %s", err) - } - if check == nil { - t.Fatalf("missing session check") - } - expectCheck := &sessionCheck{ - Node: "node1", - CheckID: "check1", - Session: sess.ID, - } - if actual := check.(*sessionCheck); !reflect.DeepEqual(actual, expectCheck) { - t.Fatalf("expected %#v, got: %#v", expectCheck, actual) - } - } - checks, err := tx.Get("session_checks", "session", sess2.ID) - if err != nil { - t.Fatalf("err: %s", err) - } - for i, check := 0, checks.Next(); check != nil; i, check = i+1, checks.Next() { - expectCheck := &sessionCheck{ - Node: "node1", - CheckID: types.CheckID(fmt.Sprintf("check%d", i+1)), - Session: sess2.ID, - } - if actual := check.(*sessionCheck); !reflect.DeepEqual(actual, expectCheck) { - t.Fatalf("expected %#v, got: %#v", expectCheck, actual) - } - } - - // Pulling a nonexistent session gives the table index. - idx, session, err = s.SessionGet(testUUID()) - if err != nil { - t.Fatalf("err: %s", err) - } - if session != nil { - t.Fatalf("expected not to get a session: %v", session) - } - if idx != 6 { - t.Fatalf("bad index: %d", idx) - } -} - -func TegstStateStore_SessionList(t *testing.T) { - s := testStateStore(t) - - // Listing when no sessions exist returns nil - idx, res, err := s.SessionList() - if idx != 0 || res != nil || err != nil { - t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) - } - - // Register some nodes - testRegisterNode(t, s, 1, "node1") - testRegisterNode(t, s, 2, "node2") - testRegisterNode(t, s, 3, "node3") - - // Create some sessions in the state store - sessions := structs.Sessions{ - &structs.Session{ - ID: testUUID(), - Node: "node1", - Behavior: structs.SessionKeysDelete, - }, - &structs.Session{ - ID: testUUID(), - Node: "node2", - Behavior: structs.SessionKeysRelease, - }, - &structs.Session{ - ID: testUUID(), - Node: "node3", - Behavior: structs.SessionKeysDelete, - }, - } - for i, session := range sessions { - if err := s.SessionCreate(uint64(4+i), session); err != nil { - t.Fatalf("err: %s", err) - } - } - - // List out all of the sessions - idx, sessionList, err := s.SessionList() - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 6 { - t.Fatalf("bad index: %d", idx) - } - if !reflect.DeepEqual(sessionList, sessions) { - t.Fatalf("bad: %#v", sessions) - } -} - -func TestStateStore_NodeSessions(t *testing.T) { - s := testStateStore(t) - - // Listing sessions with no results returns nil - idx, res, err := s.NodeSessions("node1") - if idx != 0 || res != nil || err != nil { - t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) - } - - // Create the nodes - testRegisterNode(t, s, 1, "node1") - testRegisterNode(t, s, 2, "node2") - - // Register some sessions with the nodes - sessions1 := structs.Sessions{ - &structs.Session{ - ID: testUUID(), - Node: "node1", - }, - &structs.Session{ - ID: testUUID(), - Node: "node1", - }, - } - sessions2 := []*structs.Session{ - &structs.Session{ - ID: testUUID(), - Node: "node2", - }, - &structs.Session{ - ID: testUUID(), - Node: "node2", - }, - } - for i, sess := range append(sessions1, sessions2...) { - if err := s.SessionCreate(uint64(3+i), sess); err != nil { - t.Fatalf("err: %s", err) - } - } - - // Query all of the sessions associated with a specific - // node in the state store. - idx, res, err = s.NodeSessions("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if len(res) != len(sessions1) { - t.Fatalf("bad: %#v", res) - } - if idx != 6 { - t.Fatalf("bad index: %d", idx) - } - - idx, res, err = s.NodeSessions("node2") - if err != nil { - t.Fatalf("err: %s", err) - } - if len(res) != len(sessions2) { - t.Fatalf("bad: %#v", res) - } - if idx != 6 { - t.Fatalf("bad index: %d", idx) - } -} - -func TestStateStore_SessionDestroy(t *testing.T) { - s := testStateStore(t) - - // Session destroy is idempotent and returns no error - // if the session doesn't exist. - if err := s.SessionDestroy(1, testUUID()); err != nil { - t.Fatalf("err: %s", err) - } - - // Ensure the index was not updated if nothing was destroyed. - if idx := s.maxIndex("sessions"); idx != 0 { - t.Fatalf("bad index: %d", idx) - } - - // Register a node. - testRegisterNode(t, s, 1, "node1") - - // Register a new session - sess := &structs.Session{ - ID: testUUID(), - Node: "node1", - } - if err := s.SessionCreate(2, sess); err != nil { - t.Fatalf("err: %s", err) - } - - // Destroy the session. - if err := s.SessionDestroy(3, sess.ID); err != nil { - t.Fatalf("err: %s", err) - } - - // Check that the index was updated - if idx := s.maxIndex("sessions"); idx != 3 { - t.Fatalf("bad index: %d", idx) - } - - // Make sure the session is really gone. - tx := s.db.Txn(false) - sessions, err := tx.Get("sessions", "id") - if err != nil || sessions.Next() != nil { - t.Fatalf("session should not exist") - } - tx.Abort() -} - -func TestStateStore_Session_Snapshot_Restore(t *testing.T) { - s := testStateStore(t) - - // Register some nodes and checks. - testRegisterNode(t, s, 1, "node1") - testRegisterNode(t, s, 2, "node2") - testRegisterNode(t, s, 3, "node3") - testRegisterCheck(t, s, 4, "node1", "", "check1", structs.HealthPassing) - - // Create some sessions in the state store. - session1 := testUUID() - sessions := structs.Sessions{ - &structs.Session{ - ID: session1, - Node: "node1", - Behavior: structs.SessionKeysDelete, - Checks: []types.CheckID{"check1"}, - }, - &structs.Session{ - ID: testUUID(), - Node: "node2", - Behavior: structs.SessionKeysRelease, - LockDelay: 10 * time.Second, - }, - &structs.Session{ - ID: testUUID(), - Node: "node3", - Behavior: structs.SessionKeysDelete, - TTL: "1.5s", - }, - } - for i, session := range sessions { - if err := s.SessionCreate(uint64(5+i), session); err != nil { - t.Fatalf("err: %s", err) - } - } - - // Snapshot the sessions. - snap := s.Snapshot() - defer snap.Close() - - // Alter the real state store. - if err := s.SessionDestroy(8, session1); err != nil { - t.Fatalf("err: %s", err) - } - - // Verify the snapshot. - if idx := snap.LastIndex(); idx != 7 { - t.Fatalf("bad index: %d", idx) - } - iter, err := snap.Sessions() - if err != nil { - t.Fatalf("err: %s", err) - } - var dump structs.Sessions - for session := iter.Next(); session != nil; session = iter.Next() { - sess := session.(*structs.Session) - dump = append(dump, sess) - - found := false - for i, _ := range sessions { - if sess.ID == sessions[i].ID { - if !reflect.DeepEqual(sess, sessions[i]) { - t.Fatalf("bad: %#v", sess) - } - found = true - } - } - if !found { - t.Fatalf("bad: %#v", sess) - } - } - - // Restore the sessions into a new state store. - func() { - s := testStateStore(t) - restore := s.Restore() - for _, session := range dump { - if err := restore.Session(session); err != nil { - t.Fatalf("err: %s", err) - } - } - restore.Commit() - - // Read the restored sessions back out and verify that they - // match. - idx, res, err := s.SessionList() - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 7 { - t.Fatalf("bad index: %d", idx) - } - for _, sess := range res { - found := false - for i, _ := range sessions { - if sess.ID == sessions[i].ID { - if !reflect.DeepEqual(sess, sessions[i]) { - t.Fatalf("bad: %#v", sess) - } - found = true - } - } - if !found { - t.Fatalf("bad: %#v", sess) - } - } - - // Check that the index was updated. - if idx := s.maxIndex("sessions"); idx != 7 { - t.Fatalf("bad index: %d", idx) - } - - // Manually verify that the session check mapping got restored. - tx := s.db.Txn(false) - defer tx.Abort() - - check, err := tx.First("session_checks", "session", session1) - if err != nil { - t.Fatalf("err: %s", err) - } - if check == nil { - t.Fatalf("missing session check") - } - expectCheck := &sessionCheck{ - Node: "node1", - CheckID: "check1", - Session: session1, - } - if actual := check.(*sessionCheck); !reflect.DeepEqual(actual, expectCheck) { - t.Fatalf("expected %#v, got: %#v", expectCheck, actual) - } - }() -} - -func TestStateStore_Session_Watches(t *testing.T) { - s := testStateStore(t) - - // Register a test node. - testRegisterNode(t, s, 1, "node1") - - // This just covers the basics. The session invalidation tests above - // cover the more nuanced multiple table watches. - session := testUUID() - verifyWatch(t, s.getTableWatch("sessions"), func() { - sess := &structs.Session{ - ID: session, - Node: "node1", - Behavior: structs.SessionKeysDelete, - } - if err := s.SessionCreate(2, sess); err != nil { - t.Fatalf("err: %s", err) - } - }) - verifyWatch(t, s.getTableWatch("sessions"), func() { - if err := s.SessionDestroy(3, session); err != nil { - t.Fatalf("err: %s", err) - } - }) - verifyWatch(t, s.getTableWatch("sessions"), func() { - restore := s.Restore() - sess := &structs.Session{ - ID: session, - Node: "node1", - Behavior: structs.SessionKeysDelete, - } - if err := restore.Session(sess); err != nil { - t.Fatalf("err: %s", err) - } - restore.Commit() - }) -} - -func TestStateStore_Session_Invalidate_DeleteNode(t *testing.T) { - s := testStateStore(t) - - // Set up our test environment. - if err := s.EnsureNode(3, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { - t.Fatalf("err: %v", err) - } - session := &structs.Session{ - ID: testUUID(), - Node: "foo", - } - if err := s.SessionCreate(14, session); err != nil { - t.Fatalf("err: %v", err) - } - - // Delete the node and make sure the watches fire. - verifyWatch(t, s.getTableWatch("sessions"), func() { - verifyWatch(t, s.getTableWatch("nodes"), func() { - if err := s.DeleteNode(15, "foo"); err != nil { - t.Fatalf("err: %v", err) - } - }) - }) - - // Lookup by ID, should be nil. - idx, s2, err := s.SessionGet(session.ID) - if err != nil { - t.Fatalf("err: %v", err) - } - if s2 != nil { - t.Fatalf("session should be invalidated") - } - if idx != 15 { - t.Fatalf("bad index: %d", idx) - } -} - -func TestStateStore_Session_Invalidate_DeleteService(t *testing.T) { - s := testStateStore(t) - - // Set up our test environment. - if err := s.EnsureNode(11, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { - t.Fatalf("err: %v", err) - } - if err := s.EnsureService(12, "foo", &structs.NodeService{ID: "api", Service: "api", Tags: nil, Address: "", Port: 5000}); err != nil { - t.Fatalf("err: %v", err) - } - check := &structs.HealthCheck{ - Node: "foo", - CheckID: "api", - Name: "Can connect", - Status: structs.HealthPassing, - ServiceID: "api", - } - if err := s.EnsureCheck(13, check); err != nil { - t.Fatalf("err: %v", err) - } - session := &structs.Session{ - ID: testUUID(), - Node: "foo", - Checks: []types.CheckID{"api"}, - } - if err := s.SessionCreate(14, session); err != nil { - t.Fatalf("err: %v", err) - } - - // Delete the service and make sure the watches fire. - verifyWatch(t, s.getTableWatch("sessions"), func() { - verifyWatch(t, s.getTableWatch("services"), func() { - verifyWatch(t, s.getTableWatch("checks"), func() { - if err := s.DeleteService(15, "foo", "api"); err != nil { - t.Fatalf("err: %v", err) - } - }) - }) - }) - - // Lookup by ID, should be nil. - idx, s2, err := s.SessionGet(session.ID) - if err != nil { - t.Fatalf("err: %v", err) - } - if s2 != nil { - t.Fatalf("session should be invalidated") - } - if idx != 15 { - t.Fatalf("bad index: %d", idx) - } -} - -func TestStateStore_Session_Invalidate_Critical_Check(t *testing.T) { - s := testStateStore(t) - - // Set up our test environment. - if err := s.EnsureNode(3, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { - t.Fatalf("err: %v", err) - } - check := &structs.HealthCheck{ - Node: "foo", - CheckID: "bar", - Status: structs.HealthPassing, - } - if err := s.EnsureCheck(13, check); err != nil { - t.Fatalf("err: %v", err) - } - session := &structs.Session{ - ID: testUUID(), - Node: "foo", - Checks: []types.CheckID{"bar"}, - } - if err := s.SessionCreate(14, session); err != nil { - t.Fatalf("err: %v", err) - } - - // Invalidate the check and make sure the watches fire. - verifyWatch(t, s.getTableWatch("sessions"), func() { - verifyWatch(t, s.getTableWatch("checks"), func() { - check.Status = structs.HealthCritical - if err := s.EnsureCheck(15, check); err != nil { - t.Fatalf("err: %v", err) - } - }) - }) - - // Lookup by ID, should be nil. - idx, s2, err := s.SessionGet(session.ID) - if err != nil { - t.Fatalf("err: %v", err) - } - if s2 != nil { - t.Fatalf("session should be invalidated") - } - if idx != 15 { - t.Fatalf("bad index: %d", idx) - } -} - -func TestStateStore_Session_Invalidate_DeleteCheck(t *testing.T) { - s := testStateStore(t) - - // Set up our test environment. - if err := s.EnsureNode(3, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { - t.Fatalf("err: %v", err) - } - check := &structs.HealthCheck{ - Node: "foo", - CheckID: "bar", - Status: structs.HealthPassing, - } - if err := s.EnsureCheck(13, check); err != nil { - t.Fatalf("err: %v", err) - } - session := &structs.Session{ - ID: testUUID(), - Node: "foo", - Checks: []types.CheckID{"bar"}, - } - if err := s.SessionCreate(14, session); err != nil { - t.Fatalf("err: %v", err) - } - - // Delete the check and make sure the watches fire. - verifyWatch(t, s.getTableWatch("sessions"), func() { - verifyWatch(t, s.getTableWatch("checks"), func() { - if err := s.DeleteCheck(15, "foo", "bar"); err != nil { - t.Fatalf("err: %v", err) - } - }) - }) - - // Lookup by ID, should be nil. - idx, s2, err := s.SessionGet(session.ID) - if err != nil { - t.Fatalf("err: %v", err) - } - if s2 != nil { - t.Fatalf("session should be invalidated") - } - if idx != 15 { - t.Fatalf("bad index: %d", idx) - } - - // Manually make sure the session checks mapping is clear. - tx := s.db.Txn(false) - mapping, err := tx.First("session_checks", "session", session.ID) - if err != nil { - t.Fatalf("err: %s", err) - } - if mapping != nil { - t.Fatalf("unexpected session check") - } - tx.Abort() -} - -func TestStateStore_Session_Invalidate_Key_Unlock_Behavior(t *testing.T) { - s := testStateStore(t) - - // Set up our test environment. - if err := s.EnsureNode(3, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { - t.Fatalf("err: %v", err) - } - session := &structs.Session{ - ID: testUUID(), - Node: "foo", - LockDelay: 50 * time.Millisecond, - } - if err := s.SessionCreate(4, session); err != nil { - t.Fatalf("err: %v", err) - } - - // Lock a key with the session. - d := &structs.DirEntry{ - Key: "/foo", - Flags: 42, - Value: []byte("test"), - Session: session.ID, - } - ok, err := s.KVSLock(5, d) - if err != nil { - t.Fatalf("err: %v", err) - } - if !ok { - t.Fatalf("unexpected fail") - } - - // Delete the node and make sure the watches fire. - verifyWatch(t, s.getTableWatch("sessions"), func() { - verifyWatch(t, s.getTableWatch("nodes"), func() { - verifyWatch(t, s.GetKVSWatch("/f"), func() { - if err := s.DeleteNode(6, "foo"); err != nil { - t.Fatalf("err: %v", err) - } - }) - }) - }) - - // Lookup by ID, should be nil. - idx, s2, err := s.SessionGet(session.ID) - if err != nil { - t.Fatalf("err: %v", err) - } - if s2 != nil { - t.Fatalf("session should be invalidated") - } - if idx != 6 { - t.Fatalf("bad index: %d", idx) - } - - // Key should be unlocked. - idx, d2, err := s.KVSGet("/foo") - if err != nil { - t.Fatalf("err: %s", err) - } - if d2.ModifyIndex != 6 { - t.Fatalf("bad index: %v", d2.ModifyIndex) - } - if d2.LockIndex != 1 { - t.Fatalf("bad: %v", *d2) - } - if d2.Session != "" { - t.Fatalf("bad: %v", *d2) - } - if idx != 6 { - t.Fatalf("bad index: %d", idx) - } - - // Key should have a lock delay. - expires := s.KVSLockDelay("/foo") - if expires.Before(time.Now().Add(30 * time.Millisecond)) { - t.Fatalf("Bad: %v", expires) - } -} - -func TestStateStore_Session_Invalidate_Key_Delete_Behavior(t *testing.T) { - s := testStateStore(t) - - // Set up our test environment. - if err := s.EnsureNode(3, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil { - t.Fatalf("err: %v", err) - } - session := &structs.Session{ - ID: testUUID(), - Node: "foo", - LockDelay: 50 * time.Millisecond, - Behavior: structs.SessionKeysDelete, - } - if err := s.SessionCreate(4, session); err != nil { - t.Fatalf("err: %v", err) - } - - // Lock a key with the session. - d := &structs.DirEntry{ - Key: "/bar", - Flags: 42, - Value: []byte("test"), - Session: session.ID, - } - ok, err := s.KVSLock(5, d) - if err != nil { - t.Fatalf("err: %v", err) - } - if !ok { - t.Fatalf("unexpected fail") - } - - // Delete the node and make sure the watches fire. - verifyWatch(t, s.getTableWatch("sessions"), func() { - verifyWatch(t, s.getTableWatch("nodes"), func() { - verifyWatch(t, s.GetKVSWatch("/b"), func() { - if err := s.DeleteNode(6, "foo"); err != nil { - t.Fatalf("err: %v", err) - } - }) - }) - }) - - // Lookup by ID, should be nil. - idx, s2, err := s.SessionGet(session.ID) - if err != nil { - t.Fatalf("err: %v", err) - } - if s2 != nil { - t.Fatalf("session should be invalidated") - } - if idx != 6 { - t.Fatalf("bad index: %d", idx) - } - - // Key should be deleted. - idx, d2, err := s.KVSGet("/bar") - if err != nil { - t.Fatalf("err: %s", err) - } - if d2 != nil { - t.Fatalf("unexpected deleted key") - } - if idx != 6 { - t.Fatalf("bad index: %d", idx) - } - - // Key should have a lock delay. - expires := s.KVSLockDelay("/bar") - if expires.Before(time.Now().Add(30 * time.Millisecond)) { - t.Fatalf("Bad: %v", expires) - } -} - -func TestStateStore_Session_Invalidate_PreparedQuery_Delete(t *testing.T) { - s := testStateStore(t) - - // Set up our test environment. - testRegisterNode(t, s, 1, "foo") - testRegisterService(t, s, 2, "foo", "redis") - session := &structs.Session{ - ID: testUUID(), - Node: "foo", - } - if err := s.SessionCreate(3, session); err != nil { - t.Fatalf("err: %v", err) - } - query := &structs.PreparedQuery{ - ID: testUUID(), - Session: session.ID, - Service: structs.ServiceQuery{ - Service: "redis", - }, - } - if err := s.PreparedQuerySet(4, query); err != nil { - t.Fatalf("err: %s", err) - } - - // Invalidate the session and make sure the watches fire. - verifyWatch(t, s.getTableWatch("sessions"), func() { - verifyWatch(t, s.getTableWatch("prepared-queries"), func() { - if err := s.SessionDestroy(5, session.ID); err != nil { - t.Fatalf("err: %v", err) - } - }) - }) - - // Make sure the session is gone. - idx, s2, err := s.SessionGet(session.ID) - if err != nil { - t.Fatalf("err: %v", err) - } - if s2 != nil { - t.Fatalf("session should be invalidated") - } - if idx != 5 { - t.Fatalf("bad index: %d", idx) - } - - // Make sure the query is gone and the index is updated. - idx, q2, err := s.PreparedQueryGet(query.ID) - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 5 { - t.Fatalf("bad index: %d", idx) - } - if q2 != nil { - t.Fatalf("bad: %v", q2) - } -} - -func TestStateStore_ACLSet_ACLGet(t *testing.T) { - s := testStateStore(t) - - // Querying ACLs with no results returns nil - idx, res, err := s.ACLGet("nope") - if idx != 0 || res != nil || err != nil { - t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) - } - - // Inserting an ACL with empty ID is disallowed - if err := s.ACLSet(1, &structs.ACL{}); err == nil { - t.Fatalf("expected %#v, got: %#v", ErrMissingACLID, err) - } - - // Index is not updated if nothing is saved - if idx := s.maxIndex("acls"); idx != 0 { - t.Fatalf("bad index: %d", idx) - } - - // Inserting valid ACL works - acl := &structs.ACL{ - ID: "acl1", - Name: "First ACL", - Type: structs.ACLTypeClient, - Rules: "rules1", - } - if err := s.ACLSet(1, acl); err != nil { - t.Fatalf("err: %s", err) - } - - // Check that the index was updated - if idx := s.maxIndex("acls"); idx != 1 { - t.Fatalf("bad index: %d", idx) - } - - // Retrieve the ACL again - idx, result, err := s.ACLGet("acl1") - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 1 { - t.Fatalf("bad index: %d", idx) - } - - // Check that the ACL matches the result - expect := &structs.ACL{ - ID: "acl1", - Name: "First ACL", - Type: structs.ACLTypeClient, - Rules: "rules1", - RaftIndex: structs.RaftIndex{ - CreateIndex: 1, - ModifyIndex: 1, - }, - } - if !reflect.DeepEqual(result, expect) { - t.Fatalf("bad: %#v", result) - } - - // Update the ACL - acl = &structs.ACL{ - ID: "acl1", - Name: "First ACL", - Type: structs.ACLTypeClient, - Rules: "rules2", - } - if err := s.ACLSet(2, acl); err != nil { - t.Fatalf("err: %s", err) - } - - // Index was updated - if idx := s.maxIndex("acls"); idx != 2 { - t.Fatalf("bad: %d", idx) - } - - // ACL was updated and matches expected value - expect = &structs.ACL{ - ID: "acl1", - Name: "First ACL", - Type: structs.ACLTypeClient, - Rules: "rules2", - RaftIndex: structs.RaftIndex{ - CreateIndex: 1, - ModifyIndex: 2, - }, - } - if !reflect.DeepEqual(acl, expect) { - t.Fatalf("bad: %#v", acl) - } -} - -func TestStateStore_ACLList(t *testing.T) { - s := testStateStore(t) - - // Listing when no ACLs exist returns nil - idx, res, err := s.ACLList() - if idx != 0 || res != nil || err != nil { - t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err) - } - - // Insert some ACLs - acls := structs.ACLs{ - &structs.ACL{ - ID: "acl1", - Type: structs.ACLTypeClient, - Rules: "rules1", - RaftIndex: structs.RaftIndex{ - CreateIndex: 1, - ModifyIndex: 1, - }, - }, - &structs.ACL{ - ID: "acl2", - Type: structs.ACLTypeClient, - Rules: "rules2", - RaftIndex: structs.RaftIndex{ - CreateIndex: 2, - ModifyIndex: 2, - }, - }, - } - for _, acl := range acls { - if err := s.ACLSet(acl.ModifyIndex, acl); err != nil { - t.Fatalf("err: %s", err) - } - } - - // Query the ACLs - idx, res, err = s.ACLList() - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 2 { - t.Fatalf("bad index: %d", idx) - } - - // Check that the result matches - if !reflect.DeepEqual(res, acls) { - t.Fatalf("bad: %#v", res) - } -} - -func TestStateStore_ACLDelete(t *testing.T) { - s := testStateStore(t) - - // Calling delete on an ACL which doesn't exist returns nil - if err := s.ACLDelete(1, "nope"); err != nil { - t.Fatalf("err: %s", err) - } - - // Index isn't updated if nothing is deleted - if idx := s.maxIndex("acls"); idx != 0 { - t.Fatalf("bad index: %d", idx) - } - - // Insert an ACL - if err := s.ACLSet(1, &structs.ACL{ID: "acl1"}); err != nil { - t.Fatalf("err: %s", err) - } - - // Delete the ACL and check that the index was updated - if err := s.ACLDelete(2, "acl1"); err != nil { - t.Fatalf("err: %s", err) - } - if idx := s.maxIndex("acls"); idx != 2 { - t.Fatalf("bad index: %d", idx) - } - - tx := s.db.Txn(false) - defer tx.Abort() - - // Check that the ACL was really deleted - result, err := tx.First("acls", "id", "acl1") - if err != nil { - t.Fatalf("err: %s", err) - } - if result != nil { - t.Fatalf("expected nil, got: %#v", result) - } -} - -func TestStateStore_ACL_Snapshot_Restore(t *testing.T) { - s := testStateStore(t) - - // Insert some ACLs. - acls := structs.ACLs{ - &structs.ACL{ - ID: "acl1", - Type: structs.ACLTypeClient, - Rules: "rules1", - RaftIndex: structs.RaftIndex{ - CreateIndex: 1, - ModifyIndex: 1, - }, - }, - &structs.ACL{ - ID: "acl2", - Type: structs.ACLTypeClient, - Rules: "rules2", - RaftIndex: structs.RaftIndex{ - CreateIndex: 2, - ModifyIndex: 2, - }, - }, - } - for _, acl := range acls { - if err := s.ACLSet(acl.ModifyIndex, acl); err != nil { - t.Fatalf("err: %s", err) - } - } - - // Snapshot the ACLs. - snap := s.Snapshot() - defer snap.Close() - - // Alter the real state store. - if err := s.ACLDelete(3, "acl1"); err != nil { - t.Fatalf("err: %s", err) - } - - // Verify the snapshot. - if idx := snap.LastIndex(); idx != 2 { - t.Fatalf("bad index: %d", idx) - } - iter, err := snap.ACLs() - if err != nil { - t.Fatalf("err: %s", err) - } - var dump structs.ACLs - for acl := iter.Next(); acl != nil; acl = iter.Next() { - dump = append(dump, acl.(*structs.ACL)) - } - if !reflect.DeepEqual(dump, acls) { - t.Fatalf("bad: %#v", dump) - } - - // Restore the values into a new state store. - func() { - s := testStateStore(t) - restore := s.Restore() - for _, acl := range dump { - if err := restore.ACL(acl); err != nil { - t.Fatalf("err: %s", err) - } - } - restore.Commit() - - // Read the restored ACLs back out and verify that they match. - idx, res, err := s.ACLList() - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 2 { - t.Fatalf("bad index: %d", idx) - } - if !reflect.DeepEqual(res, acls) { - t.Fatalf("bad: %#v", res) - } - - // Check that the index was updated. - if idx := s.maxIndex("acls"); idx != 2 { - t.Fatalf("bad index: %d", idx) - } - }() -} - -func TestStateStore_ACL_Watches(t *testing.T) { - s := testStateStore(t) - - // Call functions that update the acls table and make sure a watch fires - // each time. - verifyWatch(t, s.getTableWatch("acls"), func() { - if err := s.ACLSet(1, &structs.ACL{ID: "acl1"}); err != nil { - t.Fatalf("err: %s", err) - } - }) - verifyWatch(t, s.getTableWatch("acls"), func() { - if err := s.ACLDelete(2, "acl1"); err != nil { - t.Fatalf("err: %s", err) - } - }) - verifyWatch(t, s.getTableWatch("acls"), func() { - restore := s.Restore() - if err := restore.ACL(&structs.ACL{ID: "acl1"}); err != nil { - t.Fatalf("err: %s", err) - } - restore.Commit() - }) -} - -// generateRandomCoordinate creates a random coordinate. This mucks with the -// underlying structure directly, so it's not really useful for any particular -// position in the network, but it's a good payload to send through to make -// sure things come out the other side or get stored correctly. -func generateRandomCoordinate() *coordinate.Coordinate { - config := coordinate.DefaultConfig() - coord := coordinate.NewCoordinate(config) - for i := range coord.Vec { - coord.Vec[i] = rand.NormFloat64() - } - coord.Error = rand.NormFloat64() - coord.Adjustment = rand.NormFloat64() - return coord -} - -func TestStateStore_Coordinate_Updates(t *testing.T) { - s := testStateStore(t) - - // Make sure the coordinates list starts out empty, and that a query for - // a raw coordinate for a nonexistent node doesn't do anything bad. - idx, coords, err := s.Coordinates() - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 0 { - t.Fatalf("bad index: %d", idx) - } - if coords != nil { - t.Fatalf("bad: %#v", coords) - } - coord, err := s.CoordinateGetRaw("nope") - if err != nil { - t.Fatalf("err: %s", err) - } - if coord != nil { - t.Fatalf("bad: %#v", coord) - } - - // Make an update for nodes that don't exist and make sure they get - // ignored. - updates := structs.Coordinates{ - &structs.Coordinate{ - Node: "node1", - Coord: generateRandomCoordinate(), - }, - &structs.Coordinate{ - Node: "node2", - Coord: generateRandomCoordinate(), - }, - } - if err := s.CoordinateBatchUpdate(1, updates); err != nil { - t.Fatalf("err: %s", err) - } - - // Should still be empty, though applying an empty batch does bump - // the table index. - idx, coords, err = s.Coordinates() - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 1 { - t.Fatalf("bad index: %d", idx) - } - if coords != nil { - t.Fatalf("bad: %#v", coords) - } - - // Register the nodes then do the update again. - testRegisterNode(t, s, 1, "node1") - testRegisterNode(t, s, 2, "node2") - if err := s.CoordinateBatchUpdate(3, updates); err != nil { - t.Fatalf("err: %s", err) - } - - // Should go through now. - idx, coords, err = s.Coordinates() - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 3 { - t.Fatalf("bad index: %d", idx) - } - if !reflect.DeepEqual(coords, updates) { - t.Fatalf("bad: %#v", coords) - } - - // Also verify the raw coordinate interface. - for _, update := range updates { - coord, err := s.CoordinateGetRaw(update.Node) - if err != nil { - t.Fatalf("err: %s", err) - } - if !reflect.DeepEqual(coord, update.Coord) { - t.Fatalf("bad: %#v", coord) - } - } - - // Update the coordinate for one of the nodes. - updates[1].Coord = generateRandomCoordinate() - if err := s.CoordinateBatchUpdate(4, updates); err != nil { - t.Fatalf("err: %s", err) - } - - // Verify it got applied. - idx, coords, err = s.Coordinates() - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 4 { - t.Fatalf("bad index: %d", idx) - } - if !reflect.DeepEqual(coords, updates) { - t.Fatalf("bad: %#v", coords) - } - - // And check the raw coordinate version of the same thing. - for _, update := range updates { - coord, err := s.CoordinateGetRaw(update.Node) - if err != nil { - t.Fatalf("err: %s", err) - } - if !reflect.DeepEqual(coord, update.Coord) { - t.Fatalf("bad: %#v", coord) - } - } -} - -func TestStateStore_Coordinate_Cleanup(t *testing.T) { - s := testStateStore(t) - - // Register a node and update its coordinate. - testRegisterNode(t, s, 1, "node1") - updates := structs.Coordinates{ - &structs.Coordinate{ - Node: "node1", - Coord: generateRandomCoordinate(), - }, - } - if err := s.CoordinateBatchUpdate(2, updates); err != nil { - t.Fatalf("err: %s", err) - } - - // Make sure it's in there. - coord, err := s.CoordinateGetRaw("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if !reflect.DeepEqual(coord, updates[0].Coord) { - t.Fatalf("bad: %#v", coord) - } - - // Now delete the node. - if err := s.DeleteNode(3, "node1"); err != nil { - t.Fatalf("err: %s", err) - } - - // Make sure the coordinate is gone. - coord, err = s.CoordinateGetRaw("node1") - if err != nil { - t.Fatalf("err: %s", err) - } - if coord != nil { - t.Fatalf("bad: %#v", coord) - } - - // Make sure the index got updated. - idx, coords, err := s.Coordinates() - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 3 { - t.Fatalf("bad index: %d", idx) - } - if coords != nil { - t.Fatalf("bad: %#v", coords) - } -} - -func TestStateStore_Coordinate_Snapshot_Restore(t *testing.T) { - s := testStateStore(t) - - // Register two nodes and update their coordinates. - testRegisterNode(t, s, 1, "node1") - testRegisterNode(t, s, 2, "node2") - updates := structs.Coordinates{ - &structs.Coordinate{ - Node: "node1", - Coord: generateRandomCoordinate(), - }, - &structs.Coordinate{ - Node: "node2", - Coord: generateRandomCoordinate(), - }, - } - if err := s.CoordinateBatchUpdate(3, updates); err != nil { - t.Fatalf("err: %s", err) - } - - // Snapshot the coordinates. - snap := s.Snapshot() - defer snap.Close() - - // Alter the real state store. - trash := structs.Coordinates{ - &structs.Coordinate{ - Node: "node1", - Coord: generateRandomCoordinate(), - }, - &structs.Coordinate{ - Node: "node2", - Coord: generateRandomCoordinate(), - }, - } - if err := s.CoordinateBatchUpdate(4, trash); err != nil { - t.Fatalf("err: %s", err) - } - - // Verify the snapshot. - if idx := snap.LastIndex(); idx != 3 { - t.Fatalf("bad index: %d", idx) - } - iter, err := snap.Coordinates() - if err != nil { - t.Fatalf("err: %s", err) - } - var dump structs.Coordinates - for coord := iter.Next(); coord != nil; coord = iter.Next() { - dump = append(dump, coord.(*structs.Coordinate)) - } - if !reflect.DeepEqual(dump, updates) { - t.Fatalf("bad: %#v", dump) - } - - // Restore the values into a new state store. - func() { - s := testStateStore(t) - restore := s.Restore() - if err := restore.Coordinates(5, dump); err != nil { - t.Fatalf("err: %s", err) - } - restore.Commit() - - // Read the restored coordinates back out and verify that they match. - idx, res, err := s.Coordinates() - if err != nil { - t.Fatalf("err: %s", err) - } - if idx != 5 { - t.Fatalf("bad index: %d", idx) - } - if !reflect.DeepEqual(res, updates) { - t.Fatalf("bad: %#v", res) - } - - // Check that the index was updated (note that it got passed - // in during the restore). - if idx := s.maxIndex("coordinates"); idx != 5 { - t.Fatalf("bad index: %d", idx) - } - }() - -} - -func TestStateStore_Coordinate_Watches(t *testing.T) { - s := testStateStore(t) - - testRegisterNode(t, s, 1, "node1") - - // Call functions that update the coordinates table and make sure a watch fires - // each time. - verifyWatch(t, s.getTableWatch("coordinates"), func() { - updates := structs.Coordinates{ - &structs.Coordinate{ - Node: "node1", - Coord: generateRandomCoordinate(), - }, - } - if err := s.CoordinateBatchUpdate(2, updates); err != nil { - t.Fatalf("err: %s", err) - } - }) - verifyWatch(t, s.getTableWatch("coordinates"), func() { - if err := s.DeleteNode(3, "node1"); err != nil { - t.Fatalf("err: %s", err) - } - }) -} diff --git a/consul/state/txn.go b/consul/state/txn.go index 00d7905a2c..d2b3c6f1f5 100644 --- a/consul/state/txn.go +++ b/consul/state/txn.go @@ -55,14 +55,14 @@ func (s *StateStore) txnKVS(tx *memdb.Txn, idx uint64, op *structs.TxnKVOp) (str } case structs.KVSGet: - _, entry, err = s.kvsGetTxn(tx, op.DirEnt.Key) + _, entry, err = s.kvsGetTxn(tx, nil, op.DirEnt.Key) if entry == nil && err == nil { err = fmt.Errorf("key %q doesn't exist", op.DirEnt.Key) } case structs.KVSGetTree: var entries structs.DirEntries - _, entries, err = s.kvsListTxn(tx, op.DirEnt.Key) + _, entries, err = s.kvsListTxn(tx, nil, op.DirEnt.Key) if err == nil { results := make(structs.TxnResults, 0, len(entries)) for _, e := range entries { diff --git a/consul/state/txn_test.go b/consul/state/txn_test.go index d868c13523..0949e7aa58 100644 --- a/consul/state/txn_test.go +++ b/consul/state/txn_test.go @@ -295,7 +295,7 @@ func TestStateStore_Txn_KVS(t *testing.T) { } // Pull the resulting state store contents. - idx, actual, err := s.KVSList("") + idx, actual, err := s.KVSList(nil, "") if err != nil { t.Fatalf("err: %s", err) } @@ -364,7 +364,7 @@ func TestStateStore_Txn_KVS_Rollback(t *testing.T) { // This function verifies that the state store wasn't changed. verifyStateStore := func(desc string) { - idx, actual, err := s.KVSList("") + idx, actual, err := s.KVSList(nil, "") if err != nil { t.Fatalf("err (%s): %s", desc, err) } @@ -711,84 +711,3 @@ func TestStateStore_Txn_KVS_RO_Safety(t *testing.T) { } } } - -func TestStateStore_Txn_Watches(t *testing.T) { - s := testStateStore(t) - - // Verify that a basic transaction triggers multiple watches. We call - // the same underlying methods that are called above so this is more - // of a sanity check. - verifyWatch(t, s.GetKVSWatch("multi/one"), func() { - verifyWatch(t, s.GetKVSWatch("multi/two"), func() { - ops := structs.TxnOps{ - &structs.TxnOp{ - KV: &structs.TxnKVOp{ - Verb: structs.KVSSet, - DirEnt: structs.DirEntry{ - Key: "multi/one", - Value: []byte("one"), - }, - }, - }, - &structs.TxnOp{ - KV: &structs.TxnKVOp{ - Verb: structs.KVSSet, - DirEnt: structs.DirEntry{ - Key: "multi/two", - Value: []byte("two"), - }, - }, - }, - } - results, errors := s.TxnRW(15, ops) - if len(results) != len(ops) { - t.Fatalf("bad len: %d != %d", len(results), len(ops)) - } - if len(errors) != 0 { - t.Fatalf("bad len: %d != 0", len(errors)) - } - }) - }) - - // Verify that a rolled back transaction doesn't trigger any watches. - verifyNoWatch(t, s.GetKVSWatch("multi/one"), func() { - verifyNoWatch(t, s.GetKVSWatch("multi/two"), func() { - ops := structs.TxnOps{ - &structs.TxnOp{ - KV: &structs.TxnKVOp{ - Verb: structs.KVSSet, - DirEnt: structs.DirEntry{ - Key: "multi/one", - Value: []byte("one-updated"), - }, - }, - }, - &structs.TxnOp{ - KV: &structs.TxnKVOp{ - Verb: structs.KVSSet, - DirEnt: structs.DirEntry{ - Key: "multi/two", - Value: []byte("two-updated"), - }, - }, - }, - &structs.TxnOp{ - KV: &structs.TxnKVOp{ - Verb: structs.KVSLock, - DirEnt: structs.DirEntry{ - Key: "multi/nope", - Value: []byte("nope"), - }, - }, - }, - } - results, errors := s.TxnRW(16, ops) - if len(errors) != 1 { - t.Fatalf("bad len: %d != 1", len(errors)) - } - if len(results) != 0 { - t.Fatalf("bad len: %d != 0", len(results)) - } - }) - }) -} diff --git a/consul/state/watch.go b/consul/state/watch.go deleted file mode 100644 index 93a3329b07..0000000000 --- a/consul/state/watch.go +++ /dev/null @@ -1,219 +0,0 @@ -package state - -import ( - "fmt" - "sync" - - "github.com/armon/go-radix" -) - -// Watch is the external interface that's common to all the different flavors. -type Watch interface { - // Wait registers the given channel and calls it back when the watch - // fires. - Wait(notifyCh chan struct{}) - - // Clear deregisters the given channel. - Clear(notifyCh chan struct{}) -} - -// FullTableWatch implements a single notify group for a table. -type FullTableWatch struct { - group NotifyGroup -} - -// NewFullTableWatch returns a new full table watch. -func NewFullTableWatch() *FullTableWatch { - return &FullTableWatch{} -} - -// See Watch. -func (w *FullTableWatch) Wait(notifyCh chan struct{}) { - w.group.Wait(notifyCh) -} - -// See Watch. -func (w *FullTableWatch) Clear(notifyCh chan struct{}) { - w.group.Clear(notifyCh) -} - -// Notify wakes up all the watchers registered for this table. -func (w *FullTableWatch) Notify() { - w.group.Notify() -} - -// DumbWatchManager is a wrapper that allows nested code to arm full table -// watches multiple times but fire them only once. This doesn't have any -// way to clear the state, and it's not thread-safe, so it should be used once -// and thrown away inside the context of a single thread. -type DumbWatchManager struct { - // tableWatches holds the full table watches. - tableWatches map[string]*FullTableWatch - - // armed tracks whether the table should be notified. - armed map[string]bool -} - -// NewDumbWatchManager returns a new dumb watch manager. -func NewDumbWatchManager(tableWatches map[string]*FullTableWatch) *DumbWatchManager { - return &DumbWatchManager{ - tableWatches: tableWatches, - armed: make(map[string]bool), - } -} - -// Arm arms the given table's watch. -func (d *DumbWatchManager) Arm(table string) { - if _, ok := d.tableWatches[table]; !ok { - panic(fmt.Sprintf("unknown table: %s", table)) - } - - if _, ok := d.armed[table]; !ok { - d.armed[table] = true - } -} - -// Notify fires watches for all the armed tables. -func (d *DumbWatchManager) Notify() { - for table, _ := range d.armed { - d.tableWatches[table].Notify() - } -} - -// PrefixWatch provides a Watch-compatible interface for a PrefixWatchManager, -// bound to a specific prefix. -type PrefixWatch struct { - // manager is the underlying watch manager. - manager *PrefixWatchManager - - // prefix is the prefix we are watching. - prefix string -} - -// Wait registers the given channel with the notify group for our prefix. -func (w *PrefixWatch) Wait(notifyCh chan struct{}) { - w.manager.Wait(w.prefix, notifyCh) -} - -// Clear deregisters the given channel from the the notify group for our prefix. -func (w *PrefixWatch) Clear(notifyCh chan struct{}) { - w.manager.Clear(w.prefix, notifyCh) -} - -// PrefixWatchManager maintains a notify group for each prefix, allowing for -// much more fine-grained watches. -type PrefixWatchManager struct { - // watches has the set of notify groups, organized by prefix. - watches *radix.Tree - - // lock protects the watches tree. - lock sync.Mutex -} - -// NewPrefixWatchManager returns a new prefix watch manager. -func NewPrefixWatchManager() *PrefixWatchManager { - return &PrefixWatchManager{ - watches: radix.New(), - } -} - -// NewPrefixWatch returns a Watch-compatible interface for watching the given -// prefix. -func (w *PrefixWatchManager) NewPrefixWatch(prefix string) Watch { - return &PrefixWatch{ - manager: w, - prefix: prefix, - } -} - -// Wait registers the given channel on a prefix. -func (w *PrefixWatchManager) Wait(prefix string, notifyCh chan struct{}) { - w.lock.Lock() - defer w.lock.Unlock() - - var group *NotifyGroup - if raw, ok := w.watches.Get(prefix); ok { - group = raw.(*NotifyGroup) - } else { - group = &NotifyGroup{} - w.watches.Insert(prefix, group) - } - group.Wait(notifyCh) -} - -// Clear deregisters the given channel from the notify group for a prefix (if -// one exists). -func (w *PrefixWatchManager) Clear(prefix string, notifyCh chan struct{}) { - w.lock.Lock() - defer w.lock.Unlock() - - if raw, ok := w.watches.Get(prefix); ok { - group := raw.(*NotifyGroup) - group.Clear(notifyCh) - } -} - -// Notify wakes up all the watchers associated with the given prefix. If subtree -// is true then we will also notify all the tree under the prefix, such as when -// a key is being deleted. -func (w *PrefixWatchManager) Notify(prefix string, subtree bool) { - w.lock.Lock() - defer w.lock.Unlock() - - var cleanup []string - fn := func(k string, raw interface{}) bool { - group := raw.(*NotifyGroup) - group.Notify() - if k != "" { - cleanup = append(cleanup, k) - } - return false - } - - // Invoke any watcher on the path downward to the key. - w.watches.WalkPath(prefix, fn) - - // If the entire prefix may be affected (e.g. delete tree), - // invoke the entire prefix. - if subtree { - w.watches.WalkPrefix(prefix, fn) - } - - // Delete the old notify groups. - for i := len(cleanup) - 1; i >= 0; i-- { - w.watches.Delete(cleanup[i]) - } - - // TODO (slackpad) If a watch never fires then we will never clear it - // out of the tree. The old state store had the same behavior, so this - // has been around for a while. We should probably add a prefix scan - // with a function that clears out any notify groups that are empty. -} - -// MultiWatch wraps several watches and allows any of them to trigger the -// caller. -type MultiWatch struct { - // watches holds the list of subordinate watches to forward events to. - watches []Watch -} - -// NewMultiWatch returns a new new multi watch over the given set of watches. -func NewMultiWatch(watches ...Watch) *MultiWatch { - return &MultiWatch{ - watches: watches, - } -} - -// See Watch. -func (w *MultiWatch) Wait(notifyCh chan struct{}) { - for _, watch := range w.watches { - watch.Wait(notifyCh) - } -} - -// See Watch. -func (w *MultiWatch) Clear(notifyCh chan struct{}) { - for _, watch := range w.watches { - watch.Clear(notifyCh) - } -} diff --git a/consul/state/watch_test.go b/consul/state/watch_test.go deleted file mode 100644 index 6eaf85d678..0000000000 --- a/consul/state/watch_test.go +++ /dev/null @@ -1,377 +0,0 @@ -package state - -import ( - "sort" - "strings" - "testing" -) - -// verifyWatch will set up a watch channel, call the given function, and then -// make sure the watch fires. -func verifyWatch(t *testing.T, watch Watch, fn func()) { - ch := make(chan struct{}, 1) - watch.Wait(ch) - - fn() - - select { - case <-ch: - default: - t.Fatalf("watch should have been notified") - } -} - -// verifyNoWatch will set up a watch channel, call the given function, and then -// make sure the watch never fires. -func verifyNoWatch(t *testing.T, watch Watch, fn func()) { - ch := make(chan struct{}, 1) - watch.Wait(ch) - - fn() - - select { - case <-ch: - t.Fatalf("watch should not been notified") - default: - } -} - -func TestWatch_FullTableWatch(t *testing.T) { - w := NewFullTableWatch() - - // Test the basic trigger with a single watcher. - verifyWatch(t, w, func() { - w.Notify() - }) - - // Run multiple watchers and make sure they both fire. - verifyWatch(t, w, func() { - verifyWatch(t, w, func() { - w.Notify() - }) - }) - - // Make sure clear works. - ch := make(chan struct{}, 1) - w.Wait(ch) - w.Clear(ch) - w.Notify() - select { - case <-ch: - t.Fatalf("watch should not have been notified") - default: - } - - // Make sure notify is a one shot. - w.Wait(ch) - w.Notify() - select { - case <-ch: - default: - t.Fatalf("watch should have been notified") - } - w.Notify() - select { - case <-ch: - t.Fatalf("watch should not have been notified") - default: - } -} - -func TestWatch_DumbWatchManager(t *testing.T) { - watches := map[string]*FullTableWatch{ - "alice": NewFullTableWatch(), - "bob": NewFullTableWatch(), - "carol": NewFullTableWatch(), - } - - // Notify with nothing armed and make sure nothing triggers. - func() { - w := NewDumbWatchManager(watches) - verifyNoWatch(t, watches["alice"], func() { - verifyNoWatch(t, watches["bob"], func() { - verifyNoWatch(t, watches["carol"], func() { - w.Notify() - }) - }) - }) - }() - - // Trigger one watch. - func() { - w := NewDumbWatchManager(watches) - verifyWatch(t, watches["alice"], func() { - verifyNoWatch(t, watches["bob"], func() { - verifyNoWatch(t, watches["carol"], func() { - w.Arm("alice") - w.Notify() - }) - }) - }) - }() - - // Trigger two watches. - func() { - w := NewDumbWatchManager(watches) - verifyWatch(t, watches["alice"], func() { - verifyNoWatch(t, watches["bob"], func() { - verifyWatch(t, watches["carol"], func() { - w.Arm("alice") - w.Arm("carol") - w.Notify() - }) - }) - }) - }() - - // Trigger all three watches. - func() { - w := NewDumbWatchManager(watches) - verifyWatch(t, watches["alice"], func() { - verifyWatch(t, watches["bob"], func() { - verifyWatch(t, watches["carol"], func() { - w.Arm("alice") - w.Arm("bob") - w.Arm("carol") - w.Notify() - }) - }) - }) - }() - - // Trigger multiple times. - func() { - w := NewDumbWatchManager(watches) - verifyWatch(t, watches["alice"], func() { - verifyNoWatch(t, watches["bob"], func() { - verifyNoWatch(t, watches["carol"], func() { - w.Arm("alice") - w.Arm("alice") - w.Notify() - }) - }) - }) - }() - - // Make sure it panics when asked to arm an unknown table. - func() { - defer func() { - if r := recover(); r == nil { - t.Fatalf("didn't get expected panic") - } - }() - w := NewDumbWatchManager(watches) - w.Arm("nope") - }() -} - -func verifyWatches(t *testing.T, w *PrefixWatchManager, expected string) { - var found []string - fn := func(k string, v interface{}) bool { - if k == "" { - k = "(full)" - } - found = append(found, k) - return false - } - w.watches.WalkPrefix("", fn) - - sort.Strings(found) - actual := strings.Join(found, "|") - if expected != actual { - t.Fatalf("bad: %s != %s", expected, actual) - } -} - -func TestWatch_PrefixWatchManager(t *testing.T) { - w := NewPrefixWatchManager() - verifyWatches(t, w, "") - - // This will create the watch group. - ch1 := make(chan struct{}, 1) - w.Wait("hello", ch1) - verifyWatches(t, w, "hello") - - // This will add to the existing one. - ch2 := make(chan struct{}, 1) - w.Wait("hello", ch2) - verifyWatches(t, w, "hello") - - // This will add to the existing as well. - ch3 := make(chan struct{}, 1) - w.Wait("hello", ch3) - verifyWatches(t, w, "hello") - - // Remove one of the watches. - w.Clear("hello", ch2) - verifyWatches(t, w, "hello") - - // Do "clear" for one that was never added. - ch4 := make(chan struct{}, 1) - w.Clear("hello", ch4) - verifyWatches(t, w, "hello") - - // Add a full table watch. - full := make(chan struct{}, 1) - w.Wait("", full) - verifyWatches(t, w, "(full)|hello") - - // Add another channel for a different prefix. - nope := make(chan struct{}, 1) - w.Wait("nope", nope) - verifyWatches(t, w, "(full)|hello|nope") - - // Fire off the notification and make sure channels were pinged (or not) - // as expected. - w.Notify("hello", false) - verifyWatches(t, w, "(full)|nope") - select { - case <-ch1: - default: - t.Fatalf("ch1 should have been notified") - } - select { - case <-ch2: - t.Fatalf("ch2 should not have been notified") - default: - } - select { - case <-ch3: - default: - t.Fatalf("ch3 should have been notified") - } - select { - case <-ch4: - t.Fatalf("ch4 should not have been notified") - default: - } - select { - case <-nope: - t.Fatalf("nope should not have been notified") - default: - } - select { - case <-full: - default: - t.Fatalf("full should have been notified") - } -} - -func TestWatch_PrefixWatch(t *testing.T) { - w := NewPrefixWatchManager() - - // Hit a specific key. - verifyWatch(t, w.NewPrefixWatch(""), func() { - verifyWatch(t, w.NewPrefixWatch("foo/bar/baz"), func() { - verifyNoWatch(t, w.NewPrefixWatch("foo/bar/zoo"), func() { - verifyNoWatch(t, w.NewPrefixWatch("nope"), func() { - w.Notify("foo/bar/baz", false) - }) - }) - }) - }) - - // Make sure cleanup is happening. All that should be left is the - // full-table watch and the un-fired watches. - verifyWatches(t, w, "(full)|foo/bar/zoo|nope") - - // Delete a subtree. - verifyWatch(t, w.NewPrefixWatch(""), func() { - verifyWatch(t, w.NewPrefixWatch("foo/bar/baz"), func() { - verifyWatch(t, w.NewPrefixWatch("foo/bar/zoo"), func() { - verifyNoWatch(t, w.NewPrefixWatch("nope"), func() { - w.Notify("foo/", true) - }) - }) - }) - }) - verifyWatches(t, w, "(full)|nope") - - // Hit an unknown key. - verifyWatch(t, w.NewPrefixWatch(""), func() { - verifyNoWatch(t, w.NewPrefixWatch("foo/bar/baz"), func() { - verifyNoWatch(t, w.NewPrefixWatch("foo/bar/zoo"), func() { - verifyNoWatch(t, w.NewPrefixWatch("nope"), func() { - w.Notify("not/in/there", false) - }) - }) - }) - }) - verifyWatches(t, w, "(full)|foo/bar/baz|foo/bar/zoo|nope") - - // Make sure a watch can be reused. - watch := w.NewPrefixWatch("over/and/over") - for i := 0; i < 10; i++ { - verifyWatch(t, watch, func() { - w.Notify("over/and/over", false) - }) - } -} - -type MockWatch struct { - Waits map[chan struct{}]int - Clears map[chan struct{}]int -} - -func NewMockWatch() *MockWatch { - return &MockWatch{ - Waits: make(map[chan struct{}]int), - Clears: make(map[chan struct{}]int), - } -} - -func (m *MockWatch) Wait(notifyCh chan struct{}) { - if _, ok := m.Waits[notifyCh]; ok { - m.Waits[notifyCh]++ - } else { - m.Waits[notifyCh] = 1 - } -} - -func (m *MockWatch) Clear(notifyCh chan struct{}) { - if _, ok := m.Clears[notifyCh]; ok { - m.Clears[notifyCh]++ - } else { - m.Clears[notifyCh] = 1 - } -} - -func TestWatch_MultiWatch(t *testing.T) { - w1, w2 := NewMockWatch(), NewMockWatch() - w := NewMultiWatch(w1, w2) - - // Do some activity. - c1, c2 := make(chan struct{}), make(chan struct{}) - w.Wait(c1) - w.Clear(c1) - w.Wait(c1) - w.Wait(c2) - w.Clear(c1) - w.Clear(c2) - - // Make sure all the events were forwarded. - if cnt, ok := w1.Waits[c1]; !ok || cnt != 2 { - t.Fatalf("bad: %d", w1.Waits[c1]) - } - if cnt, ok := w1.Clears[c1]; !ok || cnt != 2 { - t.Fatalf("bad: %d", w1.Clears[c1]) - } - if cnt, ok := w1.Waits[c2]; !ok || cnt != 1 { - t.Fatalf("bad: %d", w1.Waits[c2]) - } - if cnt, ok := w1.Clears[c2]; !ok || cnt != 1 { - t.Fatalf("bad: %d", w1.Clears[c2]) - } - if cnt, ok := w2.Waits[c1]; !ok || cnt != 2 { - t.Fatalf("bad: %d", w2.Waits[c1]) - } - if cnt, ok := w2.Clears[c1]; !ok || cnt != 2 { - t.Fatalf("bad: %d", w2.Clears[c1]) - } - if cnt, ok := w2.Waits[c2]; !ok || cnt != 1 { - t.Fatalf("bad: %d", w2.Waits[c2]) - } - if cnt, ok := w2.Clears[c2]; !ok || cnt != 1 { - t.Fatalf("bad: %d", w2.Clears[c2]) - } -} diff --git a/consul/structs/prepared_query.go b/consul/structs/prepared_query.go index 5e9c31847b..af535f010b 100644 --- a/consul/structs/prepared_query.go +++ b/consul/structs/prepared_query.go @@ -44,6 +44,11 @@ type ServiceQuery struct { // this list it must be present. If the tag is preceded with "!" then // it is disallowed. Tags []string + + // NodeMeta is a map of required node metadata fields. If a key/value + // pair is in this map it must be present on the node in order for the + // service entry to be returned. + NodeMeta map[string]string } const ( diff --git a/consul/structs/snapshot.go b/consul/structs/snapshot.go new file mode 100644 index 0000000000..3d65e317f0 --- /dev/null +++ b/consul/structs/snapshot.go @@ -0,0 +1,40 @@ +package structs + +type SnapshotOp int + +const ( + SnapshotSave SnapshotOp = iota + SnapshotRestore +) + +// SnapshotRequest is used as a header for a snapshot RPC request. This will +// precede any streaming data that's part of the request and is JSON-encoded on +// the wire. +type SnapshotRequest struct { + // Datacenter is the target datacenter for this request. The request + // will be forwarded if necessary. + Datacenter string + + // Token is the ACL token to use for the operation. If ACLs are enabled + // then all operations require a management token. + Token string + + // If set, any follower can service the request. Results may be + // arbitrarily stale. Only applies to SnapshotSave. + AllowStale bool + + // Op is the operation code for the RPC. + Op SnapshotOp +} + +// SnapshotResponse is used header for a snapshot RPC response. This will +// precede any streaming data that's part of the request and is JSON-encoded on +// the wire. +type SnapshotResponse struct { + // Error is the overall error status of the RPC request. + Error string + + // QueryMeta has freshness information about the server that handled the + // request. It is only filled in for a SnapshotSave. + QueryMeta +} diff --git a/consul/structs/structs.go b/consul/structs/structs.go index 837d34a8bd..13c67b3d55 100644 --- a/consul/structs/structs.go +++ b/consul/structs/structs.go @@ -11,6 +11,8 @@ import ( "github.com/hashicorp/consul/types" "github.com/hashicorp/go-msgpack/codec" "github.com/hashicorp/serf/coordinate" + "regexp" + "strings" ) var ( @@ -56,6 +58,34 @@ const ( HealthPassing = "passing" HealthWarning = "warning" HealthCritical = "critical" + HealthMaint = "maintenance" +) + +const ( + // NodeMaint is the special key set by a node in maintenance mode. + NodeMaint = "_node_maintenance" + + // ServiceMaintPrefix is the prefix for a service in maintenance mode. + ServiceMaintPrefix = "_service_maintenance:" +) + +const ( + // The meta key prefix reserved for Consul's internal use + metaKeyReservedPrefix = "consul-" + + // The maximum number of metadata key pairs allowed to be registered + metaMaxKeyPairs = 64 + + // The maximum allowed length of a metadata key + metaKeyMaxLength = 128 + + // The maximum allowed length of a metadata value + metaValueMaxLength = 512 +) + +var ( + // metaKeyFormat checks if a metadata key string is valid + metaKeyFormat = regexp.MustCompile(`^[a-zA-Z0-9_-]+$`).MatchString ) func ValidStatus(s string) bool { @@ -161,9 +191,11 @@ type QueryMeta struct { // is provided, the node is registered. type RegisterRequest struct { Datacenter string + ID types.NodeID Node string Address string TaggedAddresses map[string]string + NodeMeta map[string]string Service *NodeService Check *HealthCheck Checks HealthChecks @@ -174,6 +206,27 @@ func (r *RegisterRequest) RequestDatacenter() string { return r.Datacenter } +// ChangesNode returns true if the given register request changes the given +// node, which can be nil. This only looks for changes to the node record itself, +// not any of the health checks. +func (r *RegisterRequest) ChangesNode(node *Node) bool { + // This means it's creating the node. + if node == nil { + return true + } + + // Check if any of the node-level fields are being changed. + if r.ID != node.ID || + r.Node != node.Node || + r.Address != node.Address || + !reflect.DeepEqual(r.TaggedAddresses, node.TaggedAddresses) || + !reflect.DeepEqual(r.NodeMeta, node.Meta) { + return true + } + + return false +} + // DeregisterRequest is used for the Catalog.Deregister endpoint // to deregister a node as providing a service. If no service is // provided the entire node is deregistered. @@ -199,8 +252,9 @@ type QuerySource struct { // DCSpecificRequest is used to query about a specific DC type DCSpecificRequest struct { - Datacenter string - Source QuerySource + Datacenter string + NodeMetaFilters map[string]string + Source QuerySource QueryOptions } @@ -210,11 +264,12 @@ func (r *DCSpecificRequest) RequestDatacenter() string { // ServiceSpecificRequest is used to query about a specific service type ServiceSpecificRequest struct { - Datacenter string - ServiceName string - ServiceTag string - TagFilter bool // Controls tag filtering - Source QuerySource + Datacenter string + NodeMetaFilters map[string]string + ServiceName string + ServiceTag string + TagFilter bool // Controls tag filtering + Source QuerySource QueryOptions } @@ -235,9 +290,10 @@ func (r *NodeSpecificRequest) RequestDatacenter() string { // ChecksInStateRequest is used to query for nodes in a state type ChecksInStateRequest struct { - Datacenter string - State string - Source QuerySource + Datacenter string + NodeMetaFilters map[string]string + State string + Source QuerySource QueryOptions } @@ -247,27 +303,76 @@ func (r *ChecksInStateRequest) RequestDatacenter() string { // Used to return information about a node type Node struct { + ID types.NodeID Node string Address string TaggedAddresses map[string]string + Meta map[string]string RaftIndex } type Nodes []*Node +// ValidateMeta validates a set of key/value pairs from the agent config +func ValidateMetadata(meta map[string]string) error { + if len(meta) > metaMaxKeyPairs { + return fmt.Errorf("Node metadata cannot contain more than %d key/value pairs", metaMaxKeyPairs) + } + + for key, value := range meta { + if err := validateMetaPair(key, value); err != nil { + return fmt.Errorf("Couldn't load metadata pair ('%s', '%s'): %s", key, value, err) + } + } + + return nil +} + +// validateMetaPair checks that the given key/value pair is in a valid format +func validateMetaPair(key, value string) error { + if key == "" { + return fmt.Errorf("Key cannot be blank") + } + if !metaKeyFormat(key) { + return fmt.Errorf("Key contains invalid characters") + } + if len(key) > metaKeyMaxLength { + return fmt.Errorf("Key is too long (limit: %d characters)", metaKeyMaxLength) + } + if strings.HasPrefix(key, metaKeyReservedPrefix) { + return fmt.Errorf("Key prefix '%s' is reserved for internal use", metaKeyReservedPrefix) + } + if len(value) > metaValueMaxLength { + return fmt.Errorf("Value is too long (limit: %d characters)", metaValueMaxLength) + } + return nil +} + +// SatisfiesMetaFilters returns true if the metadata map contains the given filters +func SatisfiesMetaFilters(meta map[string]string, filters map[string]string) bool { + for key, value := range filters { + if v, ok := meta[key]; !ok || v != value { + return false + } + } + return true +} + // Used to return information about a provided services. // Maps service name to available tags type Services map[string][]string -// ServiceNode represents a node that is part of a service. Address and -// TaggedAddresses are node-related fields that are always empty in the state -// store and are filled in on the way out by parseServiceNodes(). This is also -// why PartialClone() skips them, because we know they are blank already so it -// would be a waste of time to copy them. +// ServiceNode represents a node that is part of a service. ID, Address, +// TaggedAddresses, and NodeMeta are node-related fields that are always empty +// in the state store and are filled in on the way out by parseServiceNodes(). +// This is also why PartialClone() skips them, because we know they are blank +// already so it would be a waste of time to copy them. type ServiceNode struct { + ID types.NodeID Node string Address string TaggedAddresses map[string]string + NodeMeta map[string]string ServiceID string ServiceName string ServiceTags []string @@ -285,6 +390,7 @@ func (s *ServiceNode) PartialClone() *ServiceNode { copy(tags, s.ServiceTags) return &ServiceNode{ + // Skip ID, see above. Node: s.Node, // Skip Address, see above. // Skip TaggedAddresses, see above. @@ -351,6 +457,7 @@ func (s *NodeService) IsSame(other *NodeService) bool { // ToServiceNode converts the given node service to a service node. func (s *NodeService) ToServiceNode(node string) *ServiceNode { return &ServiceNode{ + // Skip ID, see ServiceNode definition. Node: node, // Skip Address, see ServiceNode definition. // Skip TaggedAddresses, see ServiceNode definition. @@ -412,6 +519,7 @@ func (c *HealthCheck) Clone() *HealthCheck { return clone } +// HealthChecks is a collection of HealthCheck structs. type HealthChecks []*HealthCheck // CheckServiceNode is used to provide the node, its service @@ -456,11 +564,13 @@ OUTER: // a node. This is currently used for the UI only, as it is // rather expensive to generate. type NodeInfo struct { + ID types.NodeID Node string Address string TaggedAddresses map[string]string + Meta map[string]string Services []*NodeService - Checks []*HealthCheck + Checks HealthChecks } // NodeDump is used to dump all the nodes with all their @@ -890,10 +1000,11 @@ const ( // KeyringRequest encapsulates a request to modify an encryption keyring. // It can be used for install, remove, or use key type operations. type KeyringRequest struct { - Operation KeyringOp - Key string - Datacenter string - Forwarded bool + Operation KeyringOp + Key string + Datacenter string + Forwarded bool + RelayFactor uint8 QueryOptions } @@ -906,10 +1017,10 @@ func (r *KeyringRequest) RequestDatacenter() string { type KeyringResponse struct { WAN bool Datacenter string - Messages map[string]string + Messages map[string]string `json:",omitempty"` Keys map[string]int NumNodes int - Error string + Error string `json:",omitempty"` } // KeyringResponses holds multiple responses to keyring queries. Each diff --git a/consul/structs/structs_test.go b/consul/structs/structs_test.go index 11c5b2aea3..c7d02c785c 100644 --- a/consul/structs/structs_test.go +++ b/consul/structs/structs_test.go @@ -105,14 +105,66 @@ func TestStructs_ACL_IsSame(t *testing.T) { check(func() { other.Rules = "" }, func() { other.Rules = "service \"\" { policy = \"read\" }" }) } +func TestStructs_RegisterRequest_ChangesNode(t *testing.T) { + req := &RegisterRequest{ + ID: types.NodeID("40e4a748-2192-161a-0510-9bf59fe950b5"), + Node: "test", + Address: "127.0.0.1", + TaggedAddresses: make(map[string]string), + NodeMeta: map[string]string{ + "role": "server", + }, + } + + node := &Node{ + ID: types.NodeID("40e4a748-2192-161a-0510-9bf59fe950b5"), + Node: "test", + Address: "127.0.0.1", + TaggedAddresses: make(map[string]string), + Meta: map[string]string{ + "role": "server", + }, + } + + check := func(twiddle, restore func()) { + if req.ChangesNode(node) { + t.Fatalf("should not change") + } + + twiddle() + if !req.ChangesNode(node) { + t.Fatalf("should change") + } + + restore() + if req.ChangesNode(node) { + t.Fatalf("should not change") + } + } + + check(func() { req.ID = "nope" }, func() { req.ID = types.NodeID("40e4a748-2192-161a-0510-9bf59fe950b5") }) + check(func() { req.Node = "nope" }, func() { req.Node = "test" }) + check(func() { req.Address = "127.0.0.2" }, func() { req.Address = "127.0.0.1" }) + check(func() { req.TaggedAddresses["wan"] = "nope" }, func() { delete(req.TaggedAddresses, "wan") }) + check(func() { req.NodeMeta["invalid"] = "nope" }, func() { delete(req.NodeMeta, "invalid") }) + + if !req.ChangesNode(nil) { + t.Fatalf("should change") + } +} + // testServiceNode gives a fully filled out ServiceNode instance. func testServiceNode() *ServiceNode { return &ServiceNode{ + ID: types.NodeID("40e4a748-2192-161a-0510-9bf59fe950b5"), Node: "node1", Address: "127.0.0.1", TaggedAddresses: map[string]string{ "hello": "world", }, + NodeMeta: map[string]string{ + "tag": "value", + }, ServiceID: "service1", ServiceName: "dogs", ServiceTags: []string{"prod", "v1"}, @@ -134,12 +186,17 @@ func TestStructs_ServiceNode_PartialClone(t *testing.T) { // Make sure the parts that weren't supposed to be cloned didn't get // copied over, then zero-value them out so we can do a DeepEqual() on // the rest of the contents. - if clone.Address != "" || len(clone.TaggedAddresses) != 0 { + if clone.ID != "" || + clone.Address != "" || + len(clone.TaggedAddresses) != 0 || + len(clone.NodeMeta) != 0 { t.Fatalf("bad: %v", clone) } + sn.ID = "" sn.Address = "" sn.TaggedAddresses = nil + sn.NodeMeta = nil if !reflect.DeepEqual(sn, clone) { t.Fatalf("bad: %v", clone) } @@ -157,8 +214,10 @@ func TestStructs_ServiceNode_Conversions(t *testing.T) { // These two fields get lost in the conversion, so we have to zero-value // them out before we do the compare. + sn.ID = "" sn.Address = "" sn.TaggedAddresses = nil + sn.NodeMeta = nil if !reflect.DeepEqual(sn, sn2) { t.Fatalf("bad: %v", sn2) } @@ -442,3 +501,66 @@ func TestStructs_DirEntry_Clone(t *testing.T) { t.Fatalf("clone wasn't independent of the original") } } + +func TestStructs_ValidateMetadata(t *testing.T) { + // Load a valid set of key/value pairs + meta := map[string]string{ + "key1": "value1", + "key2": "value2", + } + // Should succeed + if err := ValidateMetadata(meta); err != nil { + t.Fatalf("err: %s", err) + } + + // Should get error + meta = map[string]string{ + "": "value1", + } + if err := ValidateMetadata(meta); !strings.Contains(err.Error(), "Couldn't load metadata pair") { + t.Fatalf("should have failed") + } + + // Should get error + meta = make(map[string]string) + for i := 0; i < metaMaxKeyPairs+1; i++ { + meta[string(i)] = "value" + } + if err := ValidateMetadata(meta); !strings.Contains(err.Error(), "cannot contain more than") { + t.Fatalf("should have failed") + } +} + +func TestStructs_validateMetaPair(t *testing.T) { + longKey := strings.Repeat("a", metaKeyMaxLength+1) + longValue := strings.Repeat("b", metaValueMaxLength+1) + pairs := []struct { + Key string + Value string + Error string + }{ + // valid pair + {"key", "value", ""}, + // invalid, blank key + {"", "value", "cannot be blank"}, + // allowed special chars in key name + {"k_e-y", "value", ""}, + // disallowed special chars in key name + {"(%key&)", "value", "invalid characters"}, + // key too long + {longKey, "value", "Key is too long"}, + // reserved prefix + {metaKeyReservedPrefix + "key", "value", "reserved for internal use"}, + // value too long + {"key", longValue, "Value is too long"}, + } + + for _, pair := range pairs { + err := validateMetaPair(pair.Key, pair.Value) + if pair.Error == "" && err != nil { + t.Fatalf("should have succeeded: %v, %v", pair, err) + } else if pair.Error != "" && !strings.Contains(err.Error(), pair.Error) { + t.Fatalf("should have failed: %v, %v", pair, err) + } + } +} diff --git a/consul/txn_endpoint_test.go b/consul/txn_endpoint_test.go index b1e60021c8..e502589a01 100644 --- a/consul/txn_endpoint_test.go +++ b/consul/txn_endpoint_test.go @@ -55,7 +55,7 @@ func TestTxn_Apply(t *testing.T) { // Verify the state store directly. state := s1.fsm.State() - _, d, err := state.KVSGet("test") + _, d, err := state.KVSGet(nil, "test") if err != nil { t.Fatalf("err: %v", err) } diff --git a/consul/util.go b/consul/util.go index 02dda3c116..b0000a1998 100644 --- a/consul/util.go +++ b/consul/util.go @@ -4,8 +4,6 @@ import ( "encoding/binary" "fmt" "net" - "os" - "path/filepath" "runtime" "strconv" @@ -64,14 +62,6 @@ func init() { privateBlocks[5] = block } -// ensurePath is used to make sure a path exists -func ensurePath(path string, dir bool) error { - if !dir { - path = filepath.Dir(path) - } - return os.MkdirAll(path, 0755) -} - // CanServersUnderstandProtocol checks to see if all the servers in the given // list understand the given protocol version. If there are no servers in the // list then this will return false. diff --git a/demo/vagrant-cluster/README.md b/demo/vagrant-cluster/README.md index ad07f76b87..a54e8b1619 100644 --- a/demo/vagrant-cluster/README.md +++ b/demo/vagrant-cluster/README.md @@ -1,27 +1,55 @@ # Vagrant Consul Demo -This demo provides a very simple Vagrantfile that creates two nodes, -one at "172.20.20.10" and another at "172.20.20.11". Both are running -a standard Debian 7 distribution, and Consul is pre-installed. +This demo provides a very simple `Vagrantfile` that creates two Consul +server nodes, one at *172.20.20.10* and another at *172.20.20.11*. Both are +running a standard Debian * distribution, and Consul is pre-installed. -To get started, you can start the cluster by just doing: +To get started, you can start the nodes by just doing: - $ vagrant up +``` +vagrant up +``` + +> NOTE: If you prefer a different Vagrant box, you can set the `DEMO_BOX_NAME` +> environment variable before starting `vagrant` like this: +> `DEMO_BOX_NAME="ubuntu/xenial64" vagrant up` Once it is finished, you should be able to see the following: - $ vagrant status - Current machine states: - n1 running (vmware_fusion) - n2 running (vmware_fusion) +``` +vagrant status +Current machine states: + +n1 running (virtualbox) +n2 running (virtualbox) +``` At this point the two nodes are running and you can SSH in to play with them: - $ vagrant ssh n1 - ... - $ vagrant ssh n2 - ... +``` +vagrant ssh n1 +consul version +Consul v0.7.2 +Protocol 2 spoken by default, understands 2 to 3 (agent will automatically use protocol >2 when speaking to compatible agents) +exit +``` -To learn more about starting Consul, joining nodes and interacting with the agent, -checkout the [getting started guide](https://www.consul.io/intro/getting-started/install.html). +and +``` +vagrant ssh n2 +consul version +Consul v0.7.2 +Protocol 2 spoken by default, understands 2 to 3 (agent will automatically use protocol >2 when speaking to compatible agents) +exit +``` + +> NOTE: This demo will install the latest Consul release version by default, +> but if you prefer a different version, you can set the `CONSUL_DEMO_VERSION` +> environment variable before starting `vagrant` like this: +> `CONSUL_DEMO_VERSION=0.6.4 vagrant up` + +## Where to Next? + +To learn more about starting Consul, joining nodes into a cluster, and +interacting with the agent, check out the [Getting Started guide](https://www.consul.io/intro/getting-started/install.html). diff --git a/demo/vagrant-cluster/Vagrantfile b/demo/vagrant-cluster/Vagrantfile index 475269918e..3bd3479ca1 100644 --- a/demo/vagrant-cluster/Vagrantfile +++ b/demo/vagrant-cluster/Vagrantfile @@ -1,16 +1,17 @@ # -*- mode: ruby -*- # vi: set ft=ruby : + $script = < + + + + <%= yield_content :head %> -displaying-bnr"> + + + +